]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/mathql_interpreter/use.ml
93ed9a8a4a722e1ca329fd803fa57386271d12f3
[helm.git] / helm / ocaml / mathql_interpreter / use.ml
1 (* Copyright (C) 2000, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://www.cs.unibo.it/helm/.
24  *)
25
26 (*
27  * implementazione dei comandi USE/USED BY
28  *)
29
30 open Utility;;
31 open Dbconn;;
32
33 (*
34  * implementazione dei comandi USE/USED BY
35  *
36  * parametri:
37  * alist: string list list; lista su cui eseguire il comando USE/USED BY
38  * asvar: string; nome della variabile del comando use
39  * usek: string; nome della tabella in cui ricercare le occorrenze;
40  *               la distinzione fra l'esecuzione del comando USE e USED BY
41  *               sta nell'utilizzo della tabella 'backPointer' per USE
42  *               e 'refObj' per USED BY
43  *
44  * output: string list list; lista su cui e' stato eseguito il 
45  *                           comando USE/USED BY
46  *)
47 let use_ex alist asvar usek =
48  (*(*let _ = print_string ("USE ")
49  and t = Unix.time () in*)
50  let result =
51   let c = pgc ()
52   in
53    [ (List.hd alist) @ [asvar] ]
54    @
55    Sort.list
56     (fun l m -> List.hd l < List.hd m)
57     (List.fold_left
58      (fun parziale xres ->
59       (*let r1 = helm_property_id usek
60       and r2 = helm_property_id "position"
61       and r3 = helm_property_id "occurrence"
62       in
63        let qq = "select distinct t" ^ r3 ^ ".att1, t" ^ r2 ^ ".att1 " ^
64         "from t" ^ r3 ^ ", t" ^ r2 ^ ", t" ^ r1 ^ " " ^
65         "where " ^ "t" ^ r1 ^ ".att0 = '" ^ (List.hd xres) ^ "' and t" ^ r1 ^
66         ".att1 = t" ^ r2 ^ ".att0 and t" ^ r1 ^ ".att1 = t" ^ r3 ^
67         ".att0 order by t" ^ r3 ^ ".att1 asc"*)
68        let tv = pgresult_to_string (c#exec ("select id from registry where uri='" ^ (List.hd xres) ^ "'")) in
69         let _ = print_endline ("DEBUG (use.ml): " ^ tv) in
70         let qq = "select uri, context from t" ^ tv ^ " where back_for='" ^ usek ^ "'" in
71          let res = c#exec qq in
72           (List.map
73            (fun l -> [List.hd l] @ List.tl xres @ List.tl l)
74            res#get_list
75           )
76           @
77           parziale
78      )
79      []
80      (List.tl alist)
81     )
82   in
83    (*let _ = print_endline (string_of_float (Unix.time () -. t)); flush stdout in*)
84
85  *)
86 let module S = Mathql_semantics in
87 let _ = print_string ("USE ")
88 and t = Unix.time () in
89 let result =
90  let c = pgc () in
91   Sort.list
92    (fun {S.uri = uri1} {S.uri = uri2} -> uri1 < uri2)
93    (List.fold_left
94     (fun parziale {S.uri = uri ; S.attributes = attributes} ->
95      print_string uri ;
96      (* RSSDB
97      let r1 = helm_property_id usek
98      and r2 = helm_property_id "position"
99      and r3 = helm_property_id "occurrence"
100      in
101       let qq = "select distinct t" ^ r3 ^ ".att1, t" ^ r2 ^ ".att1 " ^
102        "from t" ^ r3 ^ ", t" ^ r2 ^ ", t" ^ r1 ^ " " ^
103        "where " ^ "t" ^ r1 ^ ".att0 = '" ^ (List.hd xres) ^ "' and t" ^ r1 ^
104        ".att1 = t" ^ r2 ^ ".att0 and t" ^ r1 ^ ".att1 = t" ^ r3 ^
105        ".att0 order by t" ^ r3 ^ ".att1 asc"
106       *)
107       let tv =
108        pgresult_to_string
109         (c#exec ("select id from registry where uri='" ^ uri ^ "'"))
110       in
111       let qq =
112        "select uri, context from t" ^ tv ^ " where prop_id='" ^ usek ^
113         "' order by uri asc"
114       in
115       let res = c#exec qq in
116        (List.map
117         (function
118             [uri;context] -> {S.uri = uri ; S.attributes = [asvar, context] ; S.extra = ""}
119           | _ -> assert false
120         ) res#get_list
121        ) @
122        parziale
123     ) [] alist
124    )
125 in
126 print_string (" = " ^ string_of_int (List.length result) ^ ": ") ; 
127 print_endline (string_of_float (Unix.time () -. t) ^ "s") ;
128 flush stdout ;
129    result
130 ;;
131