]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/metadata/metadataTypes.ml
- changed metadata type so that positions contains depth
[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 main_position =
36   [ `MainConclusion of int option (* Pi depth *)
37   | `MainHypothesis of int option (* Pi depth *)
38   ]
39
40 type position =
41   [ main_position
42   | `InConclusion
43   | `InHypothesis
44   | `InBody
45   ]
46
47 type pi_depth = int
48
49 type metadata =
50   [ `Sort of Cic.sort * main_position
51   | `Rel of main_position
52   | `Obj of string * position
53   ]
54
55 type constr =
56   [ `Sort of Cic.sort * main_position list
57   | `Rel of main_position list
58   | `Obj of string * position list
59   ]
60
61 let constr_of_metadata: metadata -> constr = function
62   | `Sort (sort, pos) -> `Sort (sort, [pos])
63   | `Rel pos -> `Rel [pos]
64   | `Obj (uri, pos) -> `Obj (uri, [pos])
65
66 let sort_tbl = "refSort"
67 let rel_tbl = "refRel"
68 let obj_tbl = "refObj"
69 let owners_tbl = "owners"
70 let conclno_tbl = "no_inconcl_aux"
71 let conclno_hyp_tbl = "no_concl_hyp"
72 let name_tbl = "objectName"
73