]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/mathql_interpreter/mqint.ml
mathQL modified, stderr corrected to stdout im mathql_interpreter,
[helm.git] / helm / ocaml / mathql_interpreter / mqint.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 del'interprete MathQL
28  *)
29 open MathQL;;
30 open Eval;;
31 open Utility;;
32 open Dbconn;;
33 open Pattern;;
34 open Union;;
35 open Intersect;;
36 open Diff;;
37 open Sortedby;;
38 open Use;;
39 open Select;;
40 open Letin;;
41 open Mathql_semantics;;
42
43 let prop_pool = ref None;;
44
45 let fi_to_string fi =
46  match fi with
47     (None, _)   ->
48      ""
49  |  (Some i, y) ->
50      "#xpointer(1/"       ^
51      string_of_int i      ^
52      (
53       match y with
54          None   ->
55           ""
56       |  Some j ->
57           "/" ^ (string_of_int j)
58      )                    ^
59      ")"
60 ;;
61
62 let see_prop_pool () =
63  let _ = print_endline "eccomi" in
64  List.iter
65   (fun elem -> print_endline (fst elem ^ ": " ^ snd elem))
66   (match !prop_pool with Some l -> l | _ -> print_endline "ciao"; assert false)
67 ;;
68
69 (*
70  * inizializzazione della connessione al database
71  *)
72 let init () =
73  let _ = Dbconn.init () in
74   let c = pgc () in
75    let res = 
76     c#exec "select name,id from property where ns_id in (select id from namespace where url='http://www.cs.unibo.it/helm/schemas/mattone.rdf#')"
77    in
78     prop_pool := Some
79      (
80       List.map
81        (function
82            a::b::_ -> (a, b)
83          | _       -> print_endline "no"; assert false
84        )
85        res#get_list
86      )
87 ;;
88
89 let get_prop_id prop =
90  if prop="refObj" then "F"
91  else if prop="backPointer" then "B"
92  else List.assoc prop (match !prop_pool with Some l -> l | _ -> assert false)
93 ;;
94
95 (* execute_ex env q                                                   *)
96 (*  [env] is the attributed uri environment in which the query [q]    *)
97 (*        must be evaluated                                           *)
98 (*  [q]   is the query to evaluate                                    *)
99 (*  It returns a [Mathql_semantics.result]                            *)
100 let rec execute_ex env =
101  function
102     MQSelect (apvar, alist, abool) ->
103      select_ex env apvar (execute_ex env alist) abool
104  |  MQUsedBy (alist, asvar) ->
105      use_ex (execute_ex env alist) asvar (get_prop_id "refObj")      (* "F" (*"refObj"*) *)
106  |  MQUse (alist, asvar) ->
107      use_ex (execute_ex env alist) asvar (get_prop_id "backPointer") (* "B" (*"backPointer"*) *)
108  |  MQPattern (apreamble, apattern, afragid) ->
109      pattern_ex (apreamble, apattern, afragid)
110  |  MQUnion (l1, l2) ->
111      union_ex (execute_ex env l1) (execute_ex env l2)
112  |  MQDiff (l1, l2) ->
113      diff_ex (execute_ex env l1) (execute_ex env l2)
114  |  MQSortedBy (l, o, f) ->
115      sortedby_ex (execute_ex env l) o f
116  |  MQIntersect (l1, l2) ->
117      intersect_ex (execute_ex env l1) (execute_ex env l2)
118  |  MQListRVar rvar -> [List.assoc rvar env]
119  |  MQLetIn (lvar, l1, l2) ->
120      let t = Unix.time () in
121       let res =
122        (*CSC: The interesting code *)
123        let _ = letin_ex lvar (execute_ex env l1) in
124         execute_ex env l2
125        (*CSC: end of the interesting code *)
126       in
127        letdispose ();
128        print_string ("LETIN = " ^ string_of_int (List.length res) ^ ": ") ;
129        print_endline (string_of_float (Unix.time () -. t) ^ "s") ;
130        flush stdout ;
131        res
132  |  MQListLVar lvar ->
133      letref_ex lvar
134  |  MQReference l ->
135      let rec build_result = function
136        | [] -> []
137        | s :: tail -> 
138          {uri = s ; attributes = [] ; extra = ""} :: build_result tail
139      in build_result (List.sort compare l)
140 ;;
141
142 (* Let's initialize the execute in Select, creating a cyclical recursion *)
143 Select.execute := execute_ex;;
144
145 (*
146  * converte il risultato interno di una query (uri + contesto)
147  * in un risultato di sole uri
148  *
149  * parametri:
150  * l: string list list;
151  *
152  * output: mqresult;
153  *
154  * note:
155  * il tipo del risultato mantenuto internamente e' diverso dal tipo di risultato
156  * restituito in output poiche', mentre chi effettua le query vuole come risultato
157  * solo le eventuali uri che soddisfano le query stesse, internamente ad una uri
158  * sono associati anche i valori delle variabili che ancora non sono state valutate
159  * perche', ad esempio, si trovano in altri rami dell'albero.
160  *
161  * Esempio:
162  * SELECT x IN USE PATTERN "cic:/**.con" POSITION $a WHERE $a IS MainConclusion
163  * L'albero corrispondente a questa query e':
164  *
165  *                  SELECT
166  *                /   |    \
167  *               x   USE    IS
168  *                  /   \    /\
169  *           PATTERN    $a  $a MainConclusion
170  *
171  * Nel momento in cui si esegue il ramo USE non sono noti i vincoli sullla variabile $a
172  * percui e' necessario considerare, oltre alle uri, i valori della variabile per i quali
173  * la uri puo' far parte del risultato.
174  *)
175 let xres_to_res l =
176  MQRefs (List.map (function {Mathql_semantics.uri = uri} -> uri) l)
177 (*
178  let tmp = List.map (function {Mathql_semantics.uri = uri} -> uri) l in
179   MQRefs
180    (List.map
181     (function l ->
182       (*let _ = print_endline ("DEBUG: (mqint.ml: xres_to_res)" ^ l) in*)
183       match Str.split (Str.regexp ":\|#\|/\|(\|)") l with
184          hd::""::tl -> (
185           match List.rev tl with
186              n::"1"::"xpointer"::tail    ->
187               (
188                Some hd,
189                List.fold_left
190                 (fun par t ->
191                  match par with
192                     [] -> [MQBC t] 
193                  |  _  -> (MQBC t) :: MQBD :: par
194                 )
195                 []
196                 tail, 
197                [MQFC (int_of_string n)]
198               )
199           |  n::m::"1"::"xpointer"::tail ->
200               (
201                Some hd,
202                List.fold_left
203                 (fun par t ->
204                  match par with
205                     [] -> [MQBC t] 
206                  |  _  -> (MQBC t) :: MQBD :: par
207                 )
208                 []
209                 tail,
210                [MQFC (int_of_string m); MQFC (int_of_string n)]
211               )
212           |  tail                          ->
213               (
214                Some hd,
215                List.fold_left
216                 (fun par t ->
217                  match par with
218                     [] -> [MQBC t] 
219                  |  _  -> (MQBC t) :: MQBD :: par
220                 )
221                 []
222                 tail, 
223                []
224               )
225       )  
226        | _ -> assert false
227     )
228     tmp
229    )
230 *)
231 ;;
232
233
234 (*
235  * 
236  *)
237 let execute q =
238  match q with
239     MQList qq -> xres_to_res (execute_ex [] qq)
240 ;;
241
242 (*
243  * chiusura della connessione al database
244  *)
245 let close () = Dbconn.close ();;
246