]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/mathql/mathQL.ml
8ba562ab210648bea3c44a2c8cce9b9fd883093c
[helm.git] / helm / ocaml / mathql / mathQL.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 (*  AUTOR: Ferruccio Guidi <fguidi@cs.unibo.it>
27  *)
28
29 (* output data structures ***************************************************)
30
31 type path            = string list            (* the name of an attribute *)
32
33 type value           = string list            (* the value of an attribute *)
34
35 type attribute       = path * value           (* an attribute *)
36
37 type attribute_group = attribute list         (* a group of attributes *)
38
39 type attribute_set   = attribute_group list   (* the attributes of an URI *)
40
41 type resource        = string * attribute_set (* an attributed URI *)
42
43 type resource_set    = resource list          (* the query result *)
44
45 type result = resource_set
46
47
48 (* input data structures ****************************************************)
49
50 type svar = string (* the name of a variable for a resource set *)
51
52 type avar = string (* the name of a variable for a resource *)
53
54 type inverse = bool 
55
56 type refine = RefineExact
57             | RefineSub
58             | RefineSuper
59
60 type main = path
61
62 type pattern = bool
63
64 type exp = path * (path option) 
65
66 type exp_list = exp list
67
68 type allbut = bool
69
70 type xml = bool
71
72 type source = bool
73
74 type gen = GenFJoin (* full union - with attr handling *)
75          | GenFMeet (* full intersection - with attr handling *)
76
77 type query = Const of result
78            | SVar of svar
79            | AVar of avar
80            | Dot of avar * path
81            | Ex of avar list * query
82            | Select of avar * query * query
83            | Let of svar option * query * query
84            | Fun of path * path list * query list
85            | Gen of path * query list
86            | Add of bool * groups * query
87            | For of gen * avar * query * query
88            | While of gen * query * query
89            | Property of inverse * refine * path * 
90                          main * istrue * isfalse list * exp_list *
91                          pattern * query
92
93 and groups = Attr of (path * query) list list
94            | From of avar
95
96 and con = pattern * path * query
97
98 and istrue = con list
99
100 and isfalse = con list