]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/mathql/mQueryTParser.mly
structurated attribute names added
[helm.git] / helm / ocaml / mathql / mQueryTParser.mly
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 /******************************************************************************/
27 /*                                                                            */
28 /*                               PROJECT HELM                                 */
29 /*                                                                            */
30 /*                     Ferruccio Guidi <fguidi@cs.unibo.it>                   */
31 /*                                 23/05/2002                                 */
32 /*                                                                            */
33 /*                                                                            */
34 /******************************************************************************/
35
36 %{
37    let analyze x =
38       let module M = MathQL in
39       let rec join l1 l2 = match l1, l2 with
40          | [], _                           -> l2
41          | _, []                           -> l1
42          | s1 :: tl1, s2 :: _ when s1 < s2 -> s1 :: join tl1 l2                     
43          | s1 :: _, s2 :: tl2 when s2 < s1 -> s2 :: join l1 tl2 
44          | s1 :: tl1, s2 :: tl2            -> s1 :: join tl1 tl2 
45       in
46       let rec an_val = function
47          | M.Const _                -> []
48          | M.VVar _                 -> []
49          | M.Record (rv, _)         -> [rv]
50          | M.Fun (_, x)             -> an_val x
51          | M.Attribute (_, _, _, x) -> an_val x
52          | M.RefOf x                -> an_set x
53       and an_boole = function
54          | M.False       -> []
55          | M.True        -> []
56          | M.Ex _        -> []
57          | M.Not x       -> an_boole x
58          | M.And (x, y)  -> join (an_boole x) (an_boole y)
59          | M.Or (x, y)   -> join (an_boole x) (an_boole y)
60          | M.Sub (x, y)  -> join (an_val x) (an_val y)
61          | M.Meet (x, y) -> join (an_val x) (an_val y)
62          | M.Eq (x, y)   -> join (an_val x) (an_val y)
63       and an_set = function
64          | M.SVar _                   -> []
65          | M.RVar _                   -> []
66          | M.Relation (_, _, _, x, _) -> an_set x
67          | M.Pattern x                -> an_val x
68          | M.Ref x                    -> an_val x
69          | M.Union (x, y)             -> join (an_set x) (an_set y)
70          | M.Intersect (x, y)         -> join (an_set x) (an_set y)
71          | M.Diff (x, y)              -> join (an_set x) (an_set y)
72          | M.LetSVar (_, x, y)        -> join (an_set x) (an_set y)
73          | M.LetVVar (_, x, y)        -> join (an_val x) (an_set y)
74          | M.Select (_, x, y)         -> join (an_set x) (an_boole y)
75       in
76       an_boole x
77 %}
78    %token    <string> ID STR
79    %token    SL IS LC RC CM SC LP RP AT PC DL FS DQ EOF 
80    %token    AND ATTR ATTRIB BE DIFF EQ EX FALSE FUN IN INTER INV LET MEET NOT
81    %token    OR PAT REF REFOF REL SELECT SUB SUPER TRUE UNION WHERE
82    %left     DIFF WHERE REFOF  
83    %left     OR UNION
84    %left     AND INTER
85    %nonassoc REL
86    %nonassoc NOT EX IN ATTR
87
88    %start    qstr query result
89    %type     <string>        qstr      
90    %type     <MathQL.query>  query
91    %type     <MathQL.result> result 
92 %%
93    qstr:
94       | DQ       { ""      }
95       | STR qstr { $1 ^ $2 }
96    ;
97    svar:
98       | PC ID { $2 }
99    ;
100    rvar:
101       | AT ID { $2 }
102    ;
103    vvar:
104       | DL ID { $2 }
105    ;
106    strs:
107       | STR CM strs { $1 :: $3 }
108       | STR         { [$1]     } 
109    ;
110    subpath:
111       | STR SL subpath { $1 :: $3 }
112       | STR            { [$1]     } 
113    ;
114    path:
115       | STR SL subpath { ($1, $3) }
116       | STR            { ($1, []) }
117    ;   
118    inv:
119       | INV { true  }
120       |     { false }
121    ;
122    ref:
123       | SUB   { MathQL.RefineSub   }
124       | SUPER { MathQL.RefineSuper }
125       |       { MathQL.RefineExact }
126    ;
127    val_exp:
128       | STR                         { MathQL.Const [$1]                 } 
129       | FUN STR val_exp             { MathQL.Fun ($2, $3)               }
130       | ATTRIB inv ref path val_exp { MathQL.Attribute ($2, $3, $4, $5) }
131       | rvar FS path                { MathQL.Record ($1, $3)            }
132       | vvar                        { MathQL.VVar $1                    }
133       | LC strs RC                  { MathQL.Const $2                   }
134       | LC RC                       { MathQL.Const []                   }
135       | REFOF set_exp               { MathQL.RefOf $2                   }
136       | LP val_exp RP               { $2                                }
137    ;
138    boole_exp:
139       | TRUE                    { MathQL.True               }
140       | FALSE                   { MathQL.False              }
141       | LP boole_exp RP         { $2                        }
142       | NOT boole_exp           { MathQL.Not $2             }
143       | EX boole_exp            { MathQL.Ex (analyze $2) $2 }
144       | val_exp SUB val_exp     { MathQL.Sub ($1, $3)       }
145       | val_exp MEET val_exp    { MathQL.Meet ($1, $3)      }
146       | val_exp EQ val_exp      { MathQL.Eq ($1, $3)        }
147       | boole_exp AND boole_exp { MathQL.And ($1, $3)       }
148       | boole_exp OR boole_exp  { MathQL.Or ($1, $3)        }
149    ;   
150    set_exp:
151       | REF val_exp                            { MathQL.Ref $2                    }
152       | PAT val_exp                            { MathQL.Pattern $2                } 
153       | LP set_exp RP                          { $2                               }
154       | SELECT rvar IN set_exp WHERE boole_exp { MathQL.Select ($2, $4, $6)       }
155       | REL inv ref path set_exp ATTR strs     { MathQL.Relation ($2, $3, $4, $5, $7) }
156       | REL inv ref path set_exp               { MathQL.Relation ($2, $3, $4, $5, []) }
157       | svar                                   { MathQL.SVar $1                   }
158       | rvar                                   { MathQL.RVar $1                   }
159       | set_exp UNION set_exp                  { MathQL.Union ($1, $3)            }
160       | set_exp INTER set_exp                  { MathQL.Intersect ($1, $3)        }
161       | set_exp DIFF set_exp                   { MathQL.Diff ($1, $3)             }
162       | LET svar BE set_exp IN set_exp         { MathQL.LetSVar ($2, $4, $6)      }      
163       | LET vvar BE val_exp IN set_exp         { MathQL.LetVVar ($2, $4, $6)      }      
164    ;
165    query:
166       | set_exp EOF { $1 }
167    ;
168    attr:
169       | path IS strs { ($1, $3) }
170       | path         { ($1, []) }
171    ;
172    attrs:
173       | attr SC attrs { $1 :: $3 }
174       | attr          { [$1]     }
175    ;
176    group:
177       LC attrs RC { $2 }
178    ;
179    groups:
180       | group CM groups { $1 :: $3 }
181       | group           { [$1]     }
182    ;
183    resource:
184       | STR ATTR groups { ($1, $3) }
185       | STR             { ($1, []) }
186    ;
187    resources:
188       | resource SC resources { $1 :: $3 }
189       | resource              { [$1]     }
190       |                       { []       }
191    ;   
192    result:
193       | resources EOF { $1 }