]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/metadata/metadataTypes.ml
ocaml 3.09 transition
[helm.git] / helm / ocaml / metadata / metadataTypes.ml
1 (* Copyright (C) 2004, 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://helm.cs.unibo.it/
24  *)
25
26 let position_prefix = "http://www.cs.unibo.it/helm/schemas/schema-helm#"
27 (* let position_prefix = "" *)
28
29 let inconcl_pos = position_prefix ^ "InConclusion"
30 let mainconcl_pos = position_prefix ^ "MainConclusion"
31 let mainhyp_pos = position_prefix ^ "MainHypothesis"
32 let inhyp_pos = position_prefix ^ "InHypothesis"
33 let inbody_pos = position_prefix ^ "InBody"
34
35 type relation = 
36   | Eq of int
37   | Le of int
38   | Lt of int
39   | Ge of int
40   | Gt of int
41
42 type main_position =
43   [ `MainConclusion of relation option (* Pi depth *)
44   | `MainHypothesis of relation option (* Pi depth *)
45   ]
46
47 type position =
48   [ main_position
49   | `InConclusion
50   | `InHypothesis
51   | `InBody
52   ]
53
54 type pi_depth = int
55
56 type metadata =
57   [ `Sort of Cic.sort * main_position
58   | `Rel of main_position
59   | `Obj of UriManager.uri * position
60   ]
61
62 type constr =
63   [ `Sort of Cic.sort * main_position list
64   | `Rel of main_position list
65   | `Obj of UriManager.uri * position list
66   ]
67
68 let constr_of_metadata: metadata -> constr = function
69   | `Sort (sort, pos) -> `Sort (sort, [pos])
70   | `Rel pos -> `Rel [pos]
71   | `Obj (uri, pos) -> `Obj (uri, [pos])
72
73   (** the name of the tables in the DB *)
74 let sort_tbl_original = "refSort"
75 let rel_tbl_original = "refRel"
76 let obj_tbl_original = "refObj"
77 let name_tbl_original = "objectName"
78 let count_tbl_original = "count"
79 let hits_tbl_original = "hits"
80
81   (** the names currently used *)
82 let sort_tbl_real = ref sort_tbl_original
83 let rel_tbl_real = ref rel_tbl_original
84 let obj_tbl_real = ref obj_tbl_original
85 let name_tbl_real = ref name_tbl_original 
86 let count_tbl_real = ref count_tbl_original
87
88   (** the exported symbols *)
89 let sort_tbl () = ! sort_tbl_real ;; 
90 let rel_tbl () = ! rel_tbl_real ;; 
91 let obj_tbl () = ! obj_tbl_real ;; 
92 let name_tbl () = ! name_tbl_real ;; 
93 let count_tbl () = ! count_tbl_real ;; 
94
95   (** to use the owned tables *)
96 let ownerize_tables owner =
97   sort_tbl_real := ( sort_tbl_original ^ "_" ^ owner) ;
98   rel_tbl_real := ( rel_tbl_original ^ "_" ^ owner) ;
99   obj_tbl_real := ( obj_tbl_original ^ "_" ^ owner) ;
100   name_tbl_real := ( name_tbl_original ^ "_" ^ owner);
101   count_tbl_real := ( count_tbl_original ^ "_" ^ owner)
102 ;;
103
104 let library_sort_tbl =   sort_tbl_original
105 let library_rel_tbl = rel_tbl_original
106 let library_obj_tbl = obj_tbl_original
107 let library_name_tbl = name_tbl_original
108 let library_count_tbl = count_tbl_original
109 let library_hits_tbl = hits_tbl_original
110
111 let are_tables_ownerized () =
112   sort_tbl () <> library_sort_tbl
113