]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/mathql_test/mQGTopParser.mly
e36dd5435c6b4c1e3adba2b6c83dedb1afff2e6a
[helm.git] / helm / ocaml / mathql_test / mQGTopParser.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 /*  AUTOR: Ferruccio Guidi <fguidi@cs.unibo.it>
27  */
28
29 %{
30    let f (x, y, z) = x
31    let s (x, y, z) = y
32    let t (x, y, z) = z
33    
34    module G = MQueryGenerator
35 %}
36    %token <string> ID
37    %token <UriManager.uri> CONURI
38    %token <UriManager.uri> VARURI
39    %token <UriManager.uri * int> INDTYURI
40    %token <UriManager.uri * int * int> INDCONURI
41    %token ALIAS EOF
42
43    %start interp
44    %type  <CicTextualParser0.interpretation_domain_item -> CicTextualParser0.interpretation_codomain_item option> interp
45    
46    %token <string> STR
47    %token DL DQ LC RC CM 
48    %token MOBJ MSORT MREL OOBJ OSORT OREL UNIV
49    
50    %start qstr specs
51    %type  <string>                    qstr
52    %type  <MQueryGenerator.spec list> specs
53 %%
54    uri:
55       | CONURI    { CicTextualParser0.ConUri $1                           }
56       | VARURI    { CicTextualParser0.VarUri $1                           }
57       | INDTYURI  { CicTextualParser0.IndTyUri ((fst $1), (snd $1))       }
58       | INDCONURI { CicTextualParser0.IndConUri ((f $1), (s $1), (t $1))  }
59    ;
60    alias:      
61       | ALIAS ID uri { ($2, CicTextualParser0.Uri $3) }
62    ;
63    aliases:
64       | alias aliases { $1 :: $2 } 
65       | EOF           { []       }
66    ;
67    interp:
68       | aliases { function CicTextualParser0.Id s -> (try Some (List.assoc s $1) 
69                                     with Not_found -> None)
70                          | _ -> None }
71    ;
72
73    qstr:
74       | DQ       { ""      }
75       | STR qstr { $1 ^ $2 }
76    ;
77    str:
78       | STR   { $1                            }
79       | DL ID { try G.builtin $2 with _ -> "" }
80    ;
81    strs:
82       | str CM strs { $1 :: $3 }
83       | str         { [$1]     }
84       |             { []       }
85    ;
86    list:
87       | LC strs RC { $2 }
88    ;
89    spec:
90       | MOBJ  list list list { G.MustObj  ($2, $3, $4) }
91       | MSORT list list list { G.MustSort ($2, $3, $4) }
92       | MREL  list list      { G.MustRel  ($2, $3)     }
93       | OOBJ  list list list { G.OnlyObj  ($2, $3, $4) }
94       | OSORT list list list { G.OnlySort ($2, $3, $4) }
95       | OREL  list list      { G.OnlyRel  ($2, $3)     }
96       | UNIV  list           { G.Universe $2           }
97    ;   
98    specs:
99       | spec specs { $1 :: $2 }
100       | EOF        { []       }
101    ;