]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/mathql/mathQL.ml
mathQL and mqint updated
[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 (******************************************************************************)
27 (*                                                                            *)
28 (*                               PROJECT HELM                                 *)
29 (*                                                                            *)
30 (*                     Ferruccio Guidi <fguidi@cs.unibo.it>                   *)
31 (*                     Domenico Lordi  <lordi@cs.unibo.it>                    *)
32 (*                                 30/04/2002                                 *)
33 (*                                                                            *)
34 (*                                                                            *)
35 (******************************************************************************)
36
37 exception MQInvalidURI of string
38 exception MQConnectionFailed of string
39 exception MQInvalidConnection of string
40
41 (* Input types **************************************************************)
42 (* main type is mquery                                                      *)
43
44 type mqrvar = string (* name *)
45
46 type mqsvar = string (* name *)
47
48 type mqlvar = string (* name *)
49
50 type mqpt = string option (* PROTOCOL TOKENS *)
51                           (* Some = constant string *)
52                           (* None = single star: '*' *)
53
54 type mqbt =               (* BODY TOKENS *)
55    | MQBC of string       (* a constant string *)
56    | MQBD                 (* a slash: '/' *)
57    | MQBQ                 (* a question mark: '?' *)
58    | MQBS                 (* a single star: '*' *)
59    | MQBSS                (* a double star: '**' *)
60
61 type mqft =               (* FRAGMENT TOKENS *)
62    | MQFC of int          (* a constant integer *)
63    | MQFS                 (* a single star: '*' *)
64    | MQFSS                (* a double star: '**' *)
65
66 type mquref = UriManager.uri * (int list) (* uri, fragment identifier *)
67
68 type mqtref = mqpt * (mqbt list) * (mqft list) (* tokenized pattern reference *)
69
70 type mqref = string (* format for references (helper) *)
71
72 type mqfunc =
73    | MQName         (* Name *)
74    | MQTheory       (* theory *)
75    | MQTitle        (* DC properties *)
76    | MQContributor
77    | MQCreator
78    | MQPublisher
79    | MQSubject
80    | MQDescription
81    | MQDate
82    | MQType
83    | MQFormat
84    | MQIdentifier
85    | MQLanguage
86    | MQRelation
87    | MQSource
88    | MQCoverage
89    | MQRights
90    | MQInstitution
91    | MQContact
92    | MQFirstVersion 
93    | MQModified
94
95 type mqstring =
96    | MQCons of string          (* constant *)
97    | MQFunc of mqfunc * mqrvar (* function, rvar *)
98    | MQStringRVar of mqrvar    (* rvar *)
99    | MQStringSVar of mqsvar    (* svar *)
100    | MQMConclusion             (* main conclusion *)
101    | MQConclusion              (* inner conclusion *)
102
103 type mqorder =
104    | MQAsc     (* ascending order *)
105    | MQDesc    (* descending order *)
106
107 type mqbool =
108    | MQTrue                        (* true *)
109    | MQFalse                       (* false *)
110    | MQAnd of mqbool * mqbool      (* conjunction *)
111    | MQOr of mqbool * mqbool       (* disjunction *)
112    | MQNot of mqbool               (* negation *)
113    | MQIs of mqstring * mqstring   (* case-sensitive comparison  *)
114    | MQSetEqual of mqlist * mqlist (* the two lists denote the same set *)
115    | MQSubset of mqlist * mqlist   (* the two lists denote two sets, the 1st subset of the 2nd *)
116
117 and mqlist =
118    | MQReference of mqref list               (* reference list *)
119    | MQPattern of mqtref list                (* pattern list *)
120    | MQListLVar of mqlvar                    (* lvar *)
121    | MQListRVar of mqrvar                    (* rvar *)
122    | MQSelect of mqrvar * mqlist * mqbool    (* rvar, list, boolean *) 
123    | MQUse of mqlist * mqsvar                (* list, Position attribute *)
124    | MQUsedBy of mqlist * mqsvar             (* list, Position attribute *)
125    | MQUnion of mqlist * mqlist              (* operands *)
126    | MQIntersect of mqlist * mqlist          (* operands *)
127    | MQSortedBy of mqlist * mqorder * mqfunc (* ordering *)
128    | MQDiff of mqlist * mqlist               (* set difference  *)
129    | MQLetIn of mqlvar * mqlist * mqlist     (* explicit lvar assignment *)
130    | MQMinimize of mqlist                    (* list minimization *)
131    
132 type mquery =
133    | MQList of mqlist
134    
135 (* Output types *************************************************************)
136 (* main type is mqresult                                                    *)
137
138 type mqresult =
139    | MQRefs of mqref list