]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/mathql_interpreter/relation.ml
Relation: inverse switch added.
[helm.git] / helm / ocaml / mathql_interpreter / relation.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 (*
28  * implementazione del comando Relation 
29  *)
30
31
32
33
34 open Union;;
35 open Dbconn;;
36 open Utility;;
37
38
39
40
41 let get_prop_id propl =
42   let prop = fst propl in
43   if prop="refObj" then "F"
44   else if prop="backPointer" then "B"
45        else assert false
46 ;;
47
48
49 let relation_ex inv rop path rset attl =
50   let usek = get_prop_id path in
51   let vvar = if attl = [] then "position"
52              else List.hd attl
53   in       
54   let c = pgc () in
55   let rset_list =  (* lista di singoletti:resource_set di un elemento *)
56   (List.fold_left (fun acc (uri,l) ->
57     let tv = pgresult_to_string (c#exec ("select id from registry where uri='" ^ uri ^ "'")) in
58     let qq = "select uri, context from t" ^ tv ^ " where prop_id='" ^ usek ^ "' order by uri asc" in
59     let res = c#exec qq in
60     (List.map
61     (function 
62          [uri;context] -> [(uri,[[((vvar, []),[context])]])]
63        | _ -> assert false ) 
64         res#get_list) @ acc
65                   )                   
66         [] rset                       
67   )
68   in                
69   let rec edup = function
70       [] -> []
71     | rs1::tl -> union_ex rs1 (edup tl) 
72   in 
73   edup rset_list 
74 ;;
75
76
77
78 (**** IMPLEMENTAZIONE DELLA RELATION PER GALAX ****)
79
80
81 (* trasforma un uri in un filename *)
82 let tofname uri =
83     if String.contains uri ':' then
84       (let len = String.length uri in
85        let scuri = String.sub uri 4 (len-4) in (*tolgo cic:*)
86        if String.contains scuri '#' then
87          (let pos = String.index scuri '#' in
88           let s1 = Str.string_before scuri pos in
89           let xp = Str.string_after scuri pos in
90           let xp = Str.global_replace (Str.regexp "#xpointer(1") "" xp in
91           let xp = Str.global_replace (Str.regexp "\/") "," xp in
92           let xp = Str.global_replace (Str.regexp ")") "" xp in
93           let fname = (s1 ^ xp) in
94           fname)
95        else
96          scuri)
97     else uri
98
99
100 (* prende una lista di uri (contenente alternativamente uri e pos) e costruisce una lista di resource *)
101 let rec rsetl uril vvar = 
102     match uril with                   
103     | uri::tl -> let scuri = (*tofname*) uri in
104                    [(scuri, [[((vvar, []), [(List.hd tl)])]])]::(rsetl (List.tl tl) vvar)
105     | [] -> [] 
106
107
108 (* prende una resource e una vvar e  restituisce la lista delle resource in relazione (refObj o backPointer in base al parametro "path") con tale resource e associa alla proprieta' il nome della vvar contenuto in "attl" *)
109 let muse path attl r =
110         let vvar = if attl = [] then "position"
111                    else List.hd attl
112         in          
113         let uri = fst r in
114         let furi = tofname uri in
115         let dtag = fst path in
116         let dir =
117           match dtag with
118               "refObj" -> "/projects/helm/metadata/create4/forward"
119             | _ -> "/projects/helm/metadata/create4/backward"
120         in 
121         let xq ="namespace h=\"http://www.cs.unibo.it/helm/schemas/mattone.rdf#\"
122                 namespace rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"
123                 for $i in document(" ^ "\"" ^ dir ^ furi ^ ".xml" ^ "\"" ^
124                 ")/rdf:RDF/h:Object/h:" ^ dtag ^ "/h:Occurrence
125                 return ($i/h:occurrence, $i/h:position)"
126         
127         in
128         let uril = Toputils.eval_query_string xq in (* e' una lista di liste di stringhe*)
129         let  hd_uril = List.hd uril in(*prendo la testa che contiene altern. lista di uri e pos. *)
130         let rset_list = rsetl hd_uril vvar in (* da hd_uril costruisco una lista di resource_set(singoletti)*)
131         let rec edup = function
132             [] -> []
133           | rs1::tl -> union_ex rs1 (edup tl)
134         in
135         edup rset_list
136                       
137             
138
139
140 (* prende un resource_set, una vvar (primo el. di attl) a cui associare la posizione, e la relazione (refObj o backPointer) e per ogni resource chiama la muse 
141 NOTA: "rop" per ora non viene usato perche' vale sempre "ExactOp" *)
142 let relation_galax_ex inv rop path rset attl =
143     List.stable_sort (fun (uri1,l1) (uri2,l2) -> compare uri1 uri2) (List.concat (List.map (muse path attl) rset))
144
145