]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/mathql_interpreter/mQIMap.ml
- the mathql interpreter is not helm-dependent any more
[helm.git] / helm / ocaml / mathql_interpreter / mQIMap.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 (*  AUTOR: Ferruccio Guidi <fguidi@cs.unibo.it>
27  *)
28
29 module U = MQueryUtil
30
31 type pg_map = (MathQL.path * (bool * string * string option)) list
32
33 type pg_tables = (bool * string) list
34
35 type pg_alias = (string * string) list
36
37 let empty_map () = "", [], []
38
39 let read_map () =
40    let default_map = "mathql_db_map.txt" in
41    let map = 
42       try Sys.getenv "MATHQL_DB_MAP"
43       with Not_found -> default_map 
44    in
45    let ich = open_in map in 
46    let pgs = input_line ich in
47    let rec aux r s =
48       let d = input_line ich in 
49       match Str.split (Str.regexp "[ \t]+") d with
50          | []                  -> aux r s
51          | t ::      "<-" :: p -> aux ((p, (false, t, None)) :: r) s 
52          | t :: c :: "<-" :: p -> aux ((p, (false, t, Some c)) :: r) s
53          | t :: c :: "<+" :: p -> aux ((p, (true, t, Some c)) :: r) s
54          | [a; "->"; t]        -> aux r ((a, t) :: s) 
55          | ["->"]              -> r, s
56          | _                   -> raise (Failure "MQIMap.read_map")
57    in
58    let pgm, pga = aux [] [] in
59    close_in ich;
60    pgs, pgm, pga
61
62 let comp c1 c2 = match c1, c2 with
63    | (_, t1), (_, t2) when t1 < t2 -> U.Lt
64    | (_, t1), (_, t2) when t1 > t2 -> U.Gt
65    | (b1, t), (b2, _)              -> U.Eq (b1 || b2, t)
66
67 let get_tables pgm p =
68    let aux l = function
69       | q, (b, t, _) when q = p -> U.list_join comp l [(b, t)]
70       | _, _                    -> l
71     in
72     List.fold_left aux [] pgm  
73
74 let rec refine_tables l1 l2 = 
75    U.list_meet comp l1 l2
76       
77 let default_table = function
78    | [(_, a)] -> a
79    | l        -> 
80       try List.assoc true l 
81       with Not_found -> raise (Failure "MQIMap.default_table")
82
83 let get_field pgm p t =
84    let aux = function
85       | q, (_, u, _) when q = p && u = t -> true
86       | _                                -> false
87    in 
88    match List.filter aux pgm with
89       | [_, (_, _, None)]   -> "" 
90       | [_, (_, _, Some c)] -> c
91       | _                   -> raise (Failure "MQIMap.get_field")
92
93 let resolve pga a =
94    try List.assoc a pga with Not_found -> a