]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/mathql_interpreter/use.ml
cb65699e970c3955067b633c0ca4689028ea7213
[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 c = pgc () in
49   List.fold_left
50    (fun parziale xres ->
51     let r1 = helm_property_id usek
52     and r2 = helm_property_id "position"
53     and r3 = helm_property_id "occurrence"
54     in
55      let qq = "select distinct t" ^ r3 ^ ".att1, t" ^ r2 ^ ".att1 " ^
56       "from t" ^ r3 ^ ", t" ^ r2 ^ ", t" ^ r1 ^ " " ^
57       "where " ^ "t" ^ r1 ^ ".att0 = '" ^ (List.hd xres) ^ "' and t" ^ r1 ^
58       ".att1 = t" ^ r2 ^ ".att0 and t" ^ r1 ^ ".att1 = t" ^ r3 ^
59       ".att0"
60      in
61      (*let _ = print_endline ("use: " ^ qq) in*)
62      let res = c#exec qq in
63       parziale
64       @
65       if not (List.mem asvar (List.tl (List.hd alist))) then
66        List.map
67         (fun l -> [List.hd l] @ List.tl xres @ List.tl l)
68         res#get_list
69       else
70        List.map
71         (fun l ->
72          let t =
73           match xres with
74              hd::tl -> (List.hd l)::tl
75           |  [] -> []
76          in
77           List.map
78            snd
79            (Utility.set_assoc
80             asvar
81             (List.hd (List.tl l))
82             (List.combine (List.hd alist) t)
83            )
84         )
85         (List.find_all
86          (fun l ->
87           let currv =
88            List.hd (List.tl l)
89           and xresv =
90            try (
91             List.assoc
92              asvar
93              (List.combine
94               (List.tl (List.hd alist))
95               (List.tl xres)
96              )
97            ) with
98             Not_found -> ""
99           in
100            xresv = "" or xresv = currv
101          )
102          res#get_list
103         )
104    )
105    [ (List.hd alist)
106      @
107      if not (List.mem asvar (List.tl (List.hd alist))) then
108       [asvar]
109      else
110       []
111    ]
112    (List.tl alist)
113 ;;
114