]> matita.cs.unibo.it Git - helm.git/blob - helm/software/helena/src/text/txtParser.mly
last commit for helena 0.8.2
[helm.git] / helm / software / helena / src / text / txtParser.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    module G  = Options
28    module N  = Layer
29    module T  = Txt
30    
31    let _ = Parsing.set_trace !G.debug_parser
32 %}
33    %token <int> IX
34    %token <string> ID STR
35    %token OP CP OB CB OA CA OC CC FS CN CM EQ STAR HASH TE CT
36    %token GRAPH MAIN DECL AX CONG DEF TH GEN REQ OPEN CLOSE SORTS EOF
37
38    %start entry
39    %type <Txt.command option> entry
40 %%
41    hash:
42       |      {}
43       | HASH {}
44    ;
45    fs:
46       |    {}
47       | FS {}
48    ;
49    main:
50       |      { false }
51       | MAIN { true  }
52    ;
53    comment:
54       |         { "", "" }
55       | STR     { "", $1 }
56       | STR STR { $1, $2 }
57    ;
58    ids:
59       | ID        { [$1]     }
60       | ID CM ids { $1 :: $3 }
61    ;
62    sort:
63       | ID    { None, $1    }
64       | IX ID { Some $1, $2 }
65    ;
66    sorts:
67       | sort          { [$1]     }
68       | sort CM sorts { $1 :: $3 }
69    ;
70    layer:
71       |       { N.infinite  }
72       | CT IX { N.finite $2 }
73    ;
74
75    binder:
76       | OB ID CN term CB layer { T.Abst ($6, $2, true, $4)  }
77       | OB term CB layer       { T.Abst ($4, "", false, $2) }
78       | OB ID TE term CB layer { T.Abst ($6, $2, false, $4) }
79       | OB ID EQ term CB       { T.Abbr ($2, $4)            }
80    ;
81    binders:
82       | binder fs binder       { [$1; $3] }
83       | binder fs binders      { $1 :: $3 }
84    ;
85    lenv:
86       | binder        { [$1] }
87       | OC binders CC { $2   }
88    ;
89
90    atom:
91       | STAR IX          { T.Sort $2       }
92       | STAR ID          { T.NSrt $2       }
93       | hash IX          { T.LRef $2       }
94       | ID               { T.NRef $1       }
95       | HASH ID          { T.NRef $2       }
96       | atom OP terms CP { T.Inst ($1, $3) }
97    ;
98    term:
99       | atom               { $1              }
100       | OA term CA fs term { T.Cast ($2, $5) }
101       | OP term CP fs term { T.Appl ($2, $5) }
102       | lenv fs term       { T.Proj ($1, $3) }
103       | OP term CP         { $2              }
104    ;
105    terms:
106       | term          { [$1] }
107       | term CM terms { $1 :: $3 }
108    ;
109
110    decl:
111       | DECL { T.Decl }
112       | AX   { T.Ax   }
113       | CONG { T.Cong }
114    ;
115    def:   
116       | DEF  { T.Def } 
117       | TH   { T.Th  }
118    ;
119    command:
120       | GRAPH ID
121          { T.Graph $2                                   }
122       | main decl comment ID CN term
123          { T.Constant ($1, $2, $4, $3, $6)              }
124       | main def comment ID EQ term
125          { T.Constant ($1, $2, $4, $3, $6)              }
126       | main def comment ID EQ term CN term
127          { T.Constant ($1, $2, $4, $3, T.Cast ($8, $6)) }
128       | GEN terms
129          { T.Generate $2                                }      
130       | REQ ids
131          { T.Require $2                                 }
132       | OPEN ID                           
133          { T.Section (Some $2)                          }
134       | CLOSE                             
135          { T.Section None                               }
136       | SORTS sorts
137          { T.Sorts $2                                   }
138    ;
139
140    start: 
141       | GRAPH {} | decl {} | def {} | GEN {} |
142       | REQ {} | OPEN {} | CLOSE {} | SORTS {} | EOF {}
143    ;
144    entry:
145       | command start { Some $1 }
146       | EOF           { None    }
147    ;