]> matita.cs.unibo.it Git - helm.git/blob - components/grafite_parser/grafiteParser.ml
GrafiteAst.Print (unused) removed.
[helm.git] / components / grafite_parser / grafiteParser.ml
1 (* Copyright (C) 2005, 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://helm.cs.unibo.it/
24  *)
25
26 (* $Id$ *)
27
28 open Printf
29
30 module Ast = CicNotationPt
31
32 type 'a localized_option =
33    LSome of 'a
34  | LNone of GrafiteAst.loc
35
36 type ast_statement =
37   (CicNotationPt.term, CicNotationPt.term,
38    CicNotationPt.term GrafiteAst.reduction, CicNotationPt.obj, string)
39     GrafiteAst.statement
40
41 type statement =
42   include_paths:string list ->
43   LexiconEngine.status ->
44     LexiconEngine.status * ast_statement localized_option
45
46 let grammar = CicNotationParser.level2_ast_grammar
47
48 let term = CicNotationParser.term
49 let statement = Grammar.Entry.create grammar "statement"
50
51 let add_raw_attribute ~text t = Ast.AttributedTerm (`Raw text, t)
52
53 let default_precedence = 50
54 let default_associativity = Gramext.NonA
55
56 EXTEND
57   GLOBAL: term statement;
58   arg: [
59    [ LPAREN; names = LIST1 IDENT SEP SYMBOL ",";
60       SYMBOL ":"; ty = term; RPAREN -> names,ty
61    | name = IDENT -> [name],Ast.Implicit
62    ]
63   ];
64   constructor: [ [ name = IDENT; SYMBOL ":"; typ = term -> (name, typ) ] ];
65   tactic_term: [ [ t = term LEVEL "90N" -> t ] ];
66   ident_list0: [ [ LPAREN; idents = LIST0 IDENT; RPAREN -> idents ] ];
67   tactic_term_list1: [
68     [ tactic_terms = LIST1 tactic_term SEP SYMBOL "," -> tactic_terms ]
69   ];
70   reduction_kind: [
71     [ IDENT "normalize" -> `Normalize
72     | IDENT "reduce" -> `Reduce
73     | IDENT "simplify" -> `Simpl
74     | IDENT "unfold"; t = OPT tactic_term -> `Unfold t
75     | IDENT "whd" -> `Whd ]
76   ];
77   sequent_pattern_spec: [
78    [ hyp_paths =
79       LIST0
80        [ id = IDENT ;
81          path = OPT [SYMBOL ":" ; path = tactic_term -> path ] ->
82          (id,match path with Some p -> p | None -> Ast.UserInput) ];
83      goal_path = OPT [ SYMBOL <:unicode<vdash>>; term = tactic_term -> term ] ->
84       let goal_path =
85        match goal_path, hyp_paths with
86           None, [] -> Some Ast.UserInput
87         | None, _::_ -> None
88         | Some goal_path, _ -> Some goal_path
89       in
90        hyp_paths,goal_path
91    ]
92   ];
93   pattern_spec: [
94     [ res = OPT [
95        "in";
96        wanted_and_sps =
97         [ "match" ; wanted = tactic_term ;
98           sps = OPT [ "in"; sps = sequent_pattern_spec -> sps ] ->
99            Some wanted,sps
100         | sps = sequent_pattern_spec ->
101            None,Some sps
102         ] ->
103          let wanted,hyp_paths,goal_path =
104           match wanted_and_sps with
105              wanted,None -> wanted, [], Some Ast.UserInput
106            | wanted,Some (hyp_paths,goal_path) -> wanted,hyp_paths,goal_path
107          in
108           wanted, hyp_paths, goal_path ] ->
109       match res with
110          None -> None,[],Some Ast.UserInput
111        | Some ps -> ps]
112   ];
113   direction: [
114     [ SYMBOL ">" -> `LeftToRight
115     | SYMBOL "<" -> `RightToLeft ]
116   ];
117   int: [ [ num = NUMBER -> int_of_string num ] ];
118   intros_spec: [
119     [ num = OPT [ num = int -> num ]; idents = OPT ident_list0 ->
120         let idents = match idents with None -> [] | Some idents -> idents in
121         num, idents
122     ]
123   ];
124   using: [ [ using = OPT [ IDENT "using"; t = tactic_term -> t ] -> using ] ];
125   tactic: [
126     [ IDENT "absurd"; t = tactic_term ->
127         GrafiteAst.Absurd (loc, t)
128     | IDENT "apply"; t = tactic_term ->
129         GrafiteAst.Apply (loc, t)
130     | IDENT "applyS"; t = tactic_term ->
131         GrafiteAst.ApplyS (loc, t)
132     | IDENT "assumption" ->
133         GrafiteAst.Assumption loc
134     | IDENT "auto"; params = 
135         LIST0 [ i = IDENT -> i,"" | i = IDENT ; SYMBOL "="; v = [ v = int ->
136           string_of_int v | v = IDENT -> v ] -> i,v ] ->
137         GrafiteAst.Auto (loc,params)
138     | IDENT "clear"; ids = LIST1 IDENT ->
139         GrafiteAst.Clear (loc, ids)
140     | IDENT "clearbody"; id = IDENT ->
141         GrafiteAst.ClearBody (loc,id)
142     | IDENT "change"; what = pattern_spec; "with"; t = tactic_term ->
143         GrafiteAst.Change (loc, what, t)
144     | IDENT "constructor"; n = int ->
145         GrafiteAst.Constructor (loc, n)
146     | IDENT "contradiction" ->
147         GrafiteAst.Contradiction loc
148     | IDENT "cut"; t = tactic_term; ident = OPT [ "as"; id = IDENT -> id] ->
149         GrafiteAst.Cut (loc, ident, t)
150     | IDENT "decompose"; types = OPT ident_list0; what = OPT IDENT;
151         idents = OPT [ "as"; idents = LIST1 IDENT -> idents ] ->
152         let types = match types with None -> [] | Some types -> types in
153         let idents = match idents with None -> [] | Some idents -> idents in
154         let to_spec id = GrafiteAst.Ident id in
155         GrafiteAst.Decompose (loc, List.rev_map to_spec types, what, idents)
156     | IDENT "demodulate" -> GrafiteAst.Demodulate loc
157     | IDENT "discriminate"; t = tactic_term ->
158         GrafiteAst.Discriminate (loc, t)
159     | IDENT "elim"; what = tactic_term; using = using;
160       (num, idents) = intros_spec ->
161         GrafiteAst.Elim (loc, what, using, num, idents)
162     | IDENT "elimType"; what = tactic_term; using = using;
163       (num, idents) = intros_spec ->
164         GrafiteAst.ElimType (loc, what, using, num, idents)
165     | IDENT "exact"; t = tactic_term ->
166         GrafiteAst.Exact (loc, t)
167     | IDENT "exists" ->
168         GrafiteAst.Exists loc
169     | IDENT "fail" -> GrafiteAst.Fail loc
170     | IDENT "fold"; kind = reduction_kind; t = tactic_term; p = pattern_spec ->
171         let (pt,_,_) = p in
172           if pt <> None then
173             raise (HExtlib.Localized (loc, CicNotationParser.Parse_error
174               ("the pattern cannot specify the term to replace, only its"
175               ^ " paths in the hypotheses and in the conclusion")))
176         else
177          GrafiteAst.Fold (loc, kind, t, p)
178     | IDENT "fourier" ->
179         GrafiteAst.Fourier loc
180     | IDENT "fwd"; hyp = IDENT; idents = OPT [ "as"; idents = LIST1 IDENT -> idents ] ->
181         let idents = match idents with None -> [] | Some idents -> idents in
182         GrafiteAst.FwdSimpl (loc, hyp, idents)
183     | IDENT "generalize"; p=pattern_spec; id = OPT ["as" ; id = IDENT -> id] ->
184        GrafiteAst.Generalize (loc,p,id)
185     | IDENT "goal"; n = int ->
186         GrafiteAst.Goal (loc, n)
187     | IDENT "id" -> GrafiteAst.IdTac loc
188     | IDENT "injection"; t = tactic_term ->
189         GrafiteAst.Injection (loc, t)
190     | IDENT "intro"; ident = OPT IDENT ->
191         let idents = match ident with None -> [] | Some id -> [id] in
192         GrafiteAst.Intros (loc, Some 1, idents)
193     | IDENT "intros"; (num, idents) = intros_spec ->
194         GrafiteAst.Intros (loc, num, idents)
195     | IDENT "inversion"; t = tactic_term ->
196         GrafiteAst.Inversion (loc, t)
197     | IDENT "lapply"; 
198       linear = OPT [ IDENT "linear" ];
199       depth = OPT [ IDENT "depth"; SYMBOL "="; i = int -> i ];
200       what = tactic_term; 
201       to_what = OPT [ "to" ; t = tactic_term_list1 -> t ];
202       ident = OPT [ "as" ; ident = IDENT -> ident ] ->
203         let linear = match linear with None -> false | Some _ -> true in 
204         let to_what = match to_what with None -> [] | Some to_what -> to_what in
205         GrafiteAst.LApply (loc, linear, depth, to_what, what, ident)
206     | IDENT "left" -> GrafiteAst.Left loc
207     | IDENT "letin"; where = IDENT ; SYMBOL <:unicode<def>> ; t = tactic_term ->
208         GrafiteAst.LetIn (loc, t, where)
209     | kind = reduction_kind; p = pattern_spec ->
210         GrafiteAst.Reduce (loc, kind, p)
211     | IDENT "reflexivity" ->
212         GrafiteAst.Reflexivity loc
213     | IDENT "replace"; p = pattern_spec; "with"; t = tactic_term ->
214         GrafiteAst.Replace (loc, p, t)
215     | IDENT "rewrite" ; d = direction; t = tactic_term ; p = pattern_spec ->
216        let (pt,_,_) = p in
217         if pt <> None then
218          raise
219           (HExtlib.Localized (loc,
220            (CicNotationParser.Parse_error
221             "the pattern cannot specify the term to rewrite, only its paths in the hypotheses and in the conclusion")))
222         else
223          GrafiteAst.Rewrite (loc, d, t, p)
224     | IDENT "right" ->
225         GrafiteAst.Right loc
226     | IDENT "ring" ->
227         GrafiteAst.Ring loc
228     | IDENT "split" ->
229         GrafiteAst.Split loc
230     | IDENT "symmetry" ->
231         GrafiteAst.Symmetry loc
232     | IDENT "transitivity"; t = tactic_term ->
233         GrafiteAst.Transitivity (loc, t)
234      (* Produzioni Aggiunte *)
235     | IDENT "assume" ; id = IDENT ; SYMBOL ":" ; t = tactic_term ->
236         GrafiteAst.Assume (loc, id, t)
237     | IDENT "suppose" ; t = tactic_term ; LPAREN ; id = IDENT ; RPAREN ->
238         GrafiteAst.Suppose (loc, t, id)
239     | IDENT "by" ; t = tactic_term ; IDENT "we" ; IDENT "proved" ; ty = tactic_term ; LPAREN ; id = IDENT ; RPAREN ->
240         GrafiteAst.By_term_we_proved (loc, t, ty, id)
241     | IDENT "we" ; IDENT "need" ; "to" ; IDENT "prove" ; t = tactic_term ; LPAREN ; id = IDENT ; RPAREN ->
242         GrafiteAst.We_need_to_prove (loc, t, id)
243     | IDENT "by" ; t = tactic_term ; IDENT "done" ->
244         GrafiteAst.Bydone (loc, t)
245     ]
246   ];
247   atomic_tactical:
248     [ "sequence" LEFTA
249       [ t1 = SELF; SYMBOL ";"; t2 = SELF ->
250           let ts =
251             match t1 with
252             | GrafiteAst.Seq (_, l) -> l @ [ t2 ]
253             | _ -> [ t1; t2 ]
254           in
255           GrafiteAst.Seq (loc, ts)
256       ]
257     | "then" NONA
258       [ tac = SELF; SYMBOL ";";
259         SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
260           (GrafiteAst.Then (loc, tac, tacs))
261       ]
262     | "loops" RIGHTA
263       [ IDENT "do"; count = int; tac = SELF; IDENT "end" ->
264           GrafiteAst.Do (loc, count, tac)
265       | IDENT "repeat"; tac = SELF; IDENT "end" -> GrafiteAst.Repeat (loc, tac)
266       ]
267     | "simple" NONA
268       [ IDENT "first";
269         SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
270           GrafiteAst.First (loc, tacs)
271       | IDENT "try"; tac = SELF -> GrafiteAst.Try (loc, tac)
272       | IDENT "solve";
273         SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
274           GrafiteAst.Solve (loc, tacs)
275       | LPAREN; tac = SELF; RPAREN -> tac
276       | tac = tactic -> GrafiteAst.Tactic (loc, tac)
277       ]
278     ];
279   punctuation_tactical:
280     [
281       [ SYMBOL "[" -> GrafiteAst.Branch loc
282       | SYMBOL "|" -> GrafiteAst.Shift loc
283       | i = LIST1 int SEP SYMBOL ","; SYMBOL ":" -> GrafiteAst.Pos (loc, i)
284       | SYMBOL "*"; SYMBOL ":" -> GrafiteAst.Wildcard loc
285       | SYMBOL "]" -> GrafiteAst.Merge loc
286       | SYMBOL ";" -> GrafiteAst.Semicolon loc
287       | SYMBOL "." -> GrafiteAst.Dot loc
288       ]
289     ];
290   tactical:
291     [ "simple" NONA
292       [ IDENT "focus"; goals = LIST1 int -> GrafiteAst.Focus (loc, goals)
293       | IDENT "unfocus" -> GrafiteAst.Unfocus loc
294       | IDENT "skip" -> GrafiteAst.Skip loc
295       | tac = atomic_tactical LEVEL "loops" -> tac
296       ]
297     ];
298   theorem_flavour: [
299     [ [ IDENT "definition"  ] -> `Definition
300     | [ IDENT "fact"        ] -> `Fact
301     | [ IDENT "lemma"       ] -> `Lemma
302     | [ IDENT "remark"      ] -> `Remark
303     | [ IDENT "theorem"     ] -> `Theorem
304     ]
305   ];
306   inductive_spec: [ [
307     fst_name = IDENT; params = LIST0 [ arg=arg -> arg ];
308     SYMBOL ":"; fst_typ = term; SYMBOL <:unicode<def>>; OPT SYMBOL "|";
309     fst_constructors = LIST0 constructor SEP SYMBOL "|";
310     tl = OPT [ "with";
311       types = LIST1 [
312         name = IDENT; SYMBOL ":"; typ = term; SYMBOL <:unicode<def>>;
313        OPT SYMBOL "|"; constructors = LIST0 constructor SEP SYMBOL "|" ->
314           (name, true, typ, constructors) ] SEP "with" -> types
315     ] ->
316       let params =
317         List.fold_right
318           (fun (names, typ) acc ->
319             (List.map (fun name -> (name, typ)) names) @ acc)
320           params []
321       in
322       let fst_ind_type = (fst_name, true, fst_typ, fst_constructors) in
323       let tl_ind_types = match tl with None -> [] | Some types -> types in
324       let ind_types = fst_ind_type :: tl_ind_types in
325       (params, ind_types)
326   ] ];
327   
328   record_spec: [ [
329     name = IDENT; params = LIST0 [ arg = arg -> arg ] ;
330      SYMBOL ":"; typ = term; SYMBOL <:unicode<def>>; SYMBOL "{" ; 
331      fields = LIST0 [ 
332        name = IDENT ; 
333        coercion = [ SYMBOL ":" -> false | SYMBOL ":"; SYMBOL ">" -> true ] ; 
334        ty = term -> (name,ty,coercion) 
335      ] SEP SYMBOL ";"; SYMBOL "}" -> 
336       let params =
337         List.fold_right
338           (fun (names, typ) acc ->
339             (List.map (fun name -> (name, typ)) names) @ acc)
340           params []
341       in
342       (params,name,typ,fields)
343   ] ];
344   
345   macro: [
346     [ [ IDENT "quit"  ] -> GrafiteAst.Quit loc
347 (*     | [ IDENT "abort" ] -> GrafiteAst.Abort loc *)
348 (*     | [ IDENT "undo"   ]; steps = OPT NUMBER ->
349         GrafiteAst.Undo (loc, int_opt steps)
350     | [ IDENT "redo"   ]; steps = OPT NUMBER ->
351         GrafiteAst.Redo (loc, int_opt steps) *)
352     | [ IDENT "check"   ]; t = term ->
353         GrafiteAst.Check (loc, t)
354     | [ IDENT "hint" ] -> GrafiteAst.Hint loc
355     | [ IDENT "whelp"; "match" ] ; t = term -> 
356         GrafiteAst.WMatch (loc,t)
357     | [ IDENT "whelp"; IDENT "instance" ] ; t = term -> 
358         GrafiteAst.WInstance (loc,t)
359     | [ IDENT "whelp"; IDENT "locate" ] ; id = QSTRING -> 
360         GrafiteAst.WLocate (loc,id)
361     | [ IDENT "whelp"; IDENT "elim" ] ; t = term ->
362         GrafiteAst.WElim (loc, t)
363     | [ IDENT "whelp"; IDENT "hint" ] ; t = term -> 
364         GrafiteAst.WHint (loc,t)
365     ]
366   ];
367   alias_spec: [
368     [ IDENT "id"; id = QSTRING; SYMBOL "="; uri = QSTRING ->
369       let alpha = "[a-zA-Z]" in
370       let num = "[0-9]+" in
371       let ident_cont = "\\("^alpha^"\\|"^num^"\\|_\\|\\\\\\)" in
372       let ident = "\\("^alpha^ident_cont^"*\\|_"^ident_cont^"+\\)" in
373       let rex = Str.regexp ("^"^ident^"$") in
374       if Str.string_match rex id 0 then
375         if (try ignore (UriManager.uri_of_string uri); true
376             with UriManager.IllFormedUri _ -> false)
377         then
378           LexiconAst.Ident_alias (id, uri)
379         else 
380           raise
381            (HExtlib.Localized (loc, CicNotationParser.Parse_error (sprintf "Not a valid uri: %s" uri)))
382       else
383         raise (HExtlib.Localized (loc, CicNotationParser.Parse_error (
384           sprintf "Not a valid identifier: %s" id)))
385     | IDENT "symbol"; symbol = QSTRING;
386       instance = OPT [ LPAREN; IDENT "instance"; n = int; RPAREN -> n ];
387       SYMBOL "="; dsc = QSTRING ->
388         let instance =
389           match instance with Some i -> i | None -> 0
390         in
391         LexiconAst.Symbol_alias (symbol, instance, dsc)
392     | IDENT "num";
393       instance = OPT [ LPAREN; IDENT "instance"; n = int; RPAREN -> n ];
394       SYMBOL "="; dsc = QSTRING ->
395         let instance =
396           match instance with Some i -> i | None -> 0
397         in
398         LexiconAst.Number_alias (instance, dsc)
399     ]
400   ];
401   argument: [
402     [ l = LIST0 [ SYMBOL <:unicode<eta>> (* η *); SYMBOL "." -> () ];
403       id = IDENT ->
404         Ast.IdentArg (List.length l, id)
405     ]
406   ];
407   associativity: [
408     [ IDENT "left";  IDENT "associative" -> Gramext.LeftA
409     | IDENT "right"; IDENT "associative" -> Gramext.RightA
410     | IDENT "non"; IDENT "associative" -> Gramext.NonA
411     ]
412   ];
413   precedence: [
414     [ "with"; IDENT "precedence"; n = NUMBER -> int_of_string n ]
415   ];
416   notation: [
417     [ dir = OPT direction; s = QSTRING;
418       assoc = OPT associativity; prec = OPT precedence;
419       IDENT "for";
420       p2 = 
421         [ blob = UNPARSED_AST ->
422             add_raw_attribute ~text:(sprintf "@{%s}" blob)
423               (CicNotationParser.parse_level2_ast
424                 (Ulexing.from_utf8_string blob))
425         | blob = UNPARSED_META ->
426             add_raw_attribute ~text:(sprintf "${%s}" blob)
427               (CicNotationParser.parse_level2_meta
428                 (Ulexing.from_utf8_string blob))
429         ] ->
430           let assoc =
431             match assoc with
432             | None -> default_associativity
433             | Some assoc -> assoc
434           in
435           let prec =
436             match prec with
437             | None -> default_precedence
438             | Some prec -> prec
439           in
440           let p1 =
441             add_raw_attribute ~text:s
442               (CicNotationParser.parse_level1_pattern
443                 (Ulexing.from_utf8_string s))
444           in
445           (dir, p1, assoc, prec, p2)
446     ]
447   ];
448   level3_term: [
449     [ u = URI -> Ast.UriPattern (UriManager.uri_of_string u)
450     | id = IDENT -> Ast.VarPattern id
451     | SYMBOL "_" -> Ast.ImplicitPattern
452     | LPAREN; terms = LIST1 SELF; RPAREN ->
453         (match terms with
454         | [] -> assert false
455         | [term] -> term
456         | terms -> Ast.ApplPattern terms)
457     ]
458   ];
459   interpretation: [
460     [ s = CSYMBOL; args = LIST0 argument; SYMBOL "="; t = level3_term ->
461         (s, args, t)
462     ]
463   ];
464   
465   include_command: [ [
466       IDENT "include" ; path = QSTRING -> 
467         loc,path,LexiconAst.WithPreferences
468     | IDENT "include'" ; path = QSTRING -> 
469         loc,path,LexiconAst.WithoutPreferences
470    ]];
471
472   grafite_command: [ [
473       IDENT "set"; n = QSTRING; v = QSTRING ->
474         GrafiteAst.Set (loc, n, v)
475     | IDENT "drop" -> GrafiteAst.Drop loc
476     | IDENT "qed" -> GrafiteAst.Qed loc
477     | IDENT "variant" ; name = IDENT; SYMBOL ":"; 
478       typ = term; SYMBOL <:unicode<def>> ; newname = IDENT ->
479         GrafiteAst.Obj (loc, 
480           Ast.Theorem 
481             (`Variant,name,typ,Some (Ast.Ident (newname, None))))
482     | flavour = theorem_flavour; name = IDENT; SYMBOL ":"; typ = term;
483       body = OPT [ SYMBOL <:unicode<def>> (* ≝ *); body = term -> body ] ->
484         GrafiteAst.Obj (loc, Ast.Theorem (flavour, name, typ, body))
485     | flavour = theorem_flavour; name = IDENT; SYMBOL <:unicode<def>> (* ≝ *);
486       body = term ->
487         GrafiteAst.Obj (loc,
488           Ast.Theorem (flavour, name, Ast.Implicit, Some body))
489     | IDENT "axiom"; name = IDENT; SYMBOL ":"; typ = term ->
490         GrafiteAst.Obj (loc, Ast.Theorem (`Axiom, name, typ, None))
491     | "let"; ind_kind = [ "corec" -> `CoInductive | "rec"-> `Inductive ];
492         defs = CicNotationParser.let_defs -> 
493           let name,ty = 
494             match defs with
495             | ((Ast.Ident (name, None), Some ty),_,_) :: _ -> name,ty
496             | ((Ast.Ident (name, None), None),_,_) :: _ ->
497                 name, Ast.Implicit
498             | _ -> assert false 
499           in
500           let body = Ast.Ident (name,None) in
501           GrafiteAst.Obj (loc, Ast.Theorem(`Definition, name, ty,
502             Some (Ast.LetRec (ind_kind, defs, body))))
503     | IDENT "inductive"; spec = inductive_spec ->
504         let (params, ind_types) = spec in
505         GrafiteAst.Obj (loc, Ast.Inductive (params, ind_types))
506     | IDENT "coinductive"; spec = inductive_spec ->
507         let (params, ind_types) = spec in
508         let ind_types = (* set inductive flags to false (coinductive) *)
509           List.map (fun (name, _, term, ctors) -> (name, false, term, ctors))
510             ind_types
511         in
512         GrafiteAst.Obj (loc, Ast.Inductive (params, ind_types))
513     | IDENT "coercion" ; suri = URI ->
514         GrafiteAst.Coercion (loc, UriManager.uri_of_string suri, true)
515     | IDENT "record" ; (params,name,ty,fields) = record_spec ->
516         GrafiteAst.Obj (loc, Ast.Record (params,name,ty,fields))
517     | IDENT "default" ; what = QSTRING ; uris = LIST1 URI ->
518        let uris = List.map UriManager.uri_of_string uris in
519         GrafiteAst.Default (loc,what,uris)
520   ]];
521   lexicon_command: [ [
522       IDENT "alias" ; spec = alias_spec ->
523         LexiconAst.Alias (loc, spec)
524     | IDENT "notation"; (dir, l1, assoc, prec, l2) = notation ->
525         LexiconAst.Notation (loc, dir, l1, assoc, prec, l2)
526     | IDENT "interpretation"; id = QSTRING;
527       (symbol, args, l3) = interpretation ->
528         LexiconAst.Interpretation (loc, id, (symbol, args), l3)
529   ]];
530   executable: [
531     [ cmd = grafite_command; SYMBOL "." -> GrafiteAst.Command (loc, cmd)
532     | tac = tactical; punct = punctuation_tactical ->
533         GrafiteAst.Tactical (loc, tac, Some punct)
534     | punct = punctuation_tactical -> GrafiteAst.Tactical (loc, punct, None)
535     | mac = macro; SYMBOL "." -> GrafiteAst.Macro (loc, mac)
536     ]
537   ];
538   comment: [
539     [ BEGINCOMMENT ; ex = executable ; ENDCOMMENT -> 
540        GrafiteAst.Code (loc, ex)
541     | str = NOTE -> 
542        GrafiteAst.Note (loc, str)
543     ]
544   ];
545   statement: [
546     [ ex = executable ->
547        fun ~include_paths status -> status,LSome(GrafiteAst.Executable (loc,ex))
548     | com = comment ->
549        fun ~include_paths status -> status,LSome (GrafiteAst.Comment (loc, com))
550     | (iloc,fname,mode) = include_command ; SYMBOL "."  ->
551        fun ~include_paths status ->
552         let buri, fullpath = 
553           DependenciesParser.baseuri_of_script ~include_paths fname 
554         in
555         let status =
556          LexiconEngine.eval_command status 
557            (LexiconAst.Include (iloc,buri,mode,fullpath))
558         in
559          status,
560           LSome
561           (GrafiteAst.Executable
562            (loc,GrafiteAst.Command
563             (loc,GrafiteAst.Include (iloc,buri))))
564     | scom = lexicon_command ; SYMBOL "." ->
565        fun ~include_paths status ->
566         let status = LexiconEngine.eval_command status scom in
567          status,LNone loc
568     | EOI -> raise End_of_file
569     ]
570   ];
571 END
572
573 let exc_located_wrapper f =
574   try
575     f ()
576   with
577   | Stdpp.Exc_located (_, End_of_file) -> raise End_of_file
578   | Stdpp.Exc_located (floc, Stream.Error msg) ->
579       raise (HExtlib.Localized (floc,CicNotationParser.Parse_error msg))
580   | Stdpp.Exc_located (floc, exn) ->
581       raise
582        (HExtlib.Localized (floc,CicNotationParser.Parse_error (Printexc.to_string exn)))
583
584 let parse_statement lexbuf =
585   exc_located_wrapper
586     (fun () -> (Grammar.Entry.parse statement (Obj.magic lexbuf)))