]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/mathql_interpreter/use.ml
* New operators (Subset, SetEqual and RVarOccurrence) added to MathQL
[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://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 module S = Mathql_semantics in
49 let _ = print_string ("USE ")
50 and t = Unix.time () in
51 let result =
52  let c = pgc () in
53   Sort.list
54    (fun {S.uri = uri1} {S.uri = uri2} -> uri1 < uri2)
55    (List.fold_left
56     (fun parziale {S.uri = uri ; S.attributes = attributes} ->
57      print_string uri ;
58      (*let r1 = helm_property_id usek
59      and r2 = helm_property_id "position"
60      and r3 = helm_property_id "occurrence"
61      in
62       let qq = "select distinct t" ^ r3 ^ ".att1, t" ^ r2 ^ ".att1 " ^
63        "from t" ^ r3 ^ ", t" ^ r2 ^ ", t" ^ r1 ^ " " ^
64        "where " ^ "t" ^ r1 ^ ".att0 = '" ^ (List.hd xres) ^ "' and t" ^ r1 ^
65        ".att1 = t" ^ r2 ^ ".att0 and t" ^ r1 ^ ".att1 = t" ^ r3 ^
66        ".att0 order by t" ^ r3 ^ ".att1 asc"*)
67       let tv =
68        pgresult_to_string
69         (c#exec ("select id from registry where uri='" ^ uri ^ "'"))
70       in
71       let qq =
72        "select uri, context from t" ^ tv ^ " where back_for='" ^ usek ^
73         "' order by uri asc"
74       in
75       let res = c#exec qq in
76        (List.map
77         (function
78             [uri;context] -> {S.uri = uri ; S.attributes = [asvar, context]}
79           | _ -> assert false
80         ) res#get_list
81        ) @
82        parziale
83     ) [] alist
84    )
85 in
86 print_string (" = " ^ string_of_int (List.length result) ^ ": ") ; 
87 print_endline (string_of_float (Unix.time () -. t) ^ "s") ;
88 flush stdout ;
89    result
90 ;;
91