]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/mathql/mQueryTParser.mly
be861dc82f8aff4eca1719b6fbe673acf9cd14c8
[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 %}
38    %token    <string> ID STR
39    %token    IS LC RC CM SC LP RP AT PC DL FS DQ EOF 
40    %token    AND ATTR ATTRIB BE DIFF EQ EX FALSE FUN IN INTER LET MEET NOT OR
41    %token    PAT REF REFOF REL SELECT SUB SUPER TRUE UNION WHERE
42    %left     DIFF WHERE REFOF  
43    %left     OR UNION
44    %left     AND INTER
45    %nonassoc NOT EX IN STR ATTR
46    %start    qstr query result
47    %type     <string>        qstr      
48    %type     <MathQL.query>  query
49    %type     <MathQL.result> result 
50 %%
51    qstr:
52       | DQ       { ""      }
53       | STR qstr { $1 ^ $2 }
54    ;
55    svar:
56       | PC ID { $2 }
57    ;
58    rvar:
59       | AT ID { $2 }
60    ;
61    vvar:
62       | DL ID { $2 }
63    ;
64    qstr_list:
65       | STR CM qstr_list { $1 :: $3 }
66       | STR              { [$1]     } 
67    ;
68    vvar_list:
69       | vvar CM vvar_list { $1 :: $3 }
70       | vvar              { [$1]     }
71    ;
72    ref_op:
73       | SUB   { MathQL.SubOp   }
74       | SUPER { MathQL.SuperOp }
75       |       { MathQL.ExactOp }
76    ;
77    val_exp:
78       | STR                       { MathQL.Const [$1]             } 
79       | FUN STR val_exp           { MathQL.Fun ($2, $3)           }
80       | ATTRIB ref_op STR val_exp { MathQL.Attribute ($2, $3, $4) }
81       | rvar FS vvar              { MathQL.Record ($1, $3)        }
82       | LC qstr_list RC           { MathQL.Const $2               }
83       | LC RC                     { MathQL.Const []               }
84       | REFOF set_exp             { MathQL.RefOf $2               }
85    ;
86    boole_exp:
87       | TRUE                    { MathQL.True          }
88       | FALSE                   { MathQL.False         }
89       | LP boole_exp RP         { $2                   }
90       | NOT boole_exp           { MathQL.Not $2        }
91       | EX boole_exp            { MathQL.Ex $2         }
92       | val_exp SUB val_exp     { MathQL.Sub ($1, $3)  }
93       | val_exp MEET val_exp    { MathQL.Meet ($1, $3) }
94       | val_exp EQ val_exp      { MathQL.Eq ($1, $3)   }
95       | boole_exp AND boole_exp { MathQL.And ($1, $3)  }
96       | boole_exp OR boole_exp  { MathQL.Or ($1, $3)   }
97    ;   
98    set_exp:
99       | REF val_exp                            { MathQL.Ref $2                    }
100       | PAT val_exp                            { MathQL.Pattern $2                } 
101       | LP set_exp RP                          { $2                               }
102       | SELECT rvar IN set_exp WHERE boole_exp { MathQL.Select ($2, $4, $6)       }
103       | REL ref_op STR set_exp ATTR vvar_list  { MathQL.Relation ($2, $3, $4, $6) }
104       | REL ref_op STR set_exp                 { MathQL.Relation ($2, $3, $4, []) }
105       | svar                                   { MathQL.SVar $1                   }
106       | rvar                                   { MathQL.RVar $1                   }
107       | set_exp UNION set_exp                  { MathQL.Union ($1, $3)            }
108       | set_exp INTER set_exp                  { MathQL.Intersect ($1, $3)        }
109       | set_exp DIFF set_exp                   { MathQL.Diff ($1, $3)             }
110       | LET svar BE set_exp IN set_exp         { MathQL.Let ($2, $4, $6)          }      
111    ;
112    query:
113       | set_exp EOF { $1 }
114    ;
115    attribute:
116       | STR IS qstr_list { ($1, $3) }
117       | STR              { ($1, []) }
118    ;
119    attr_list:
120       | attribute SC attr_list { $1 :: $3 }
121       | attribute              { [$1]     }
122    ;
123    group:
124       LC attr_list RC { $2 }
125    ;
126    group_list:
127       | group CM group_list { $1 :: $3 }
128       | group               { [$1]     }
129    ;
130    resource:
131       | STR ATTR group_list { ($1, $3) }
132       | STR                 { ($1, []) }
133    ;
134    resource_list:
135       | resource SC resource_list { $1 :: $3 }
136       | resource                  { [$1]     }
137       |                           { []       }
138    ;   
139    result:
140       | resource_list EOF         { $1 }