]> matita.cs.unibo.it Git - helm.git/blob - matita/components/grafite_parser/grafiteParser.ml
eaf0c4c01097e10ef8aa02ec60ee202ce7cb818a
[helm.git] / matita / 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: grafiteParser.ml 13176 2016-04-18 15:29:33Z fguidi $ *)
27
28 module N  = NotationPt
29 module G  = GrafiteAst
30
31 let exc_located_wrapper f =
32   try
33     f ()
34   with
35   | Ploc.Exc (_, End_of_file) -> raise End_of_file
36   | Ploc.Exc (floc, Stream.Error msg) ->
37       raise (HExtlib.Localized (floc,CicNotationParser.Parse_error msg))
38   | Ploc.Exc (floc, HExtlib.Localized(_,exn)) ->
39       raise (HExtlib.Localized 
40         (floc,CicNotationParser.Parse_error (Printexc.to_string exn)))
41   | Ploc.Exc (floc, exn) ->
42       raise (HExtlib.Localized 
43         (floc,CicNotationParser.Parse_error (Printexc.to_string exn)))
44
45 type parsable = Grammar.parsable * Ulexing.lexbuf
46
47 let parsable_statement status buf =
48  let grammar = CicNotationParser.level2_ast_grammar status in
49   Grammar.parsable grammar (Obj.magic buf), buf
50
51 let parse_statement grafite_parser parsable =
52   exc_located_wrapper
53     (fun () -> (Grammar.Entry.parse_parsable grafite_parser (fst parsable)))
54
55 let strm_of_parsable (_,buf) = buf
56
57 let add_raw_attribute ~text t = N.AttributedTerm (`Raw text, t)
58
59 let default_associativity = Gramext.NonA
60         
61 let mk_rec_corec src flavour ind_kind defs loc = 
62  let attrs = src, flavour, `Regular in
63   (loc, N.LetRec (ind_kind, defs, attrs))
64
65 let nmk_rec_corec src flavour ind_kind defs loc index = 
66  let loc,t = mk_rec_corec src flavour ind_kind defs loc in
67   G.NObj (loc,t,index)
68
69 let shift_vars binder (vars, ty) bo =
70    let map var bo = N.Binder (binder, (var, ty), bo) in
71    List.fold_right map vars bo
72
73 let shift_params binder params bo = 
74    List.fold_right (shift_vars binder) params bo
75 (*
76 let nnon_punct_of_punct = function
77   | G.Skip loc -> G.NSkip loc
78   | G.Unfocus loc -> G.NUnfocus loc
79   | G.Focus (loc,l) -> G.NFocus (loc,l)
80 ;; *)
81
82 type by_continuation =
83    BYC_done
84  | BYC_weproved of N.term * string option * N.term option
85  | BYC_letsuchthat of string * N.term * N.term * string
86  | BYC_wehaveand of string * N.term * string * N.term
87
88 let mk_parser statement lstatus =
89 (*   let grammar = CicNotationParser.level2_ast_grammar lstatus in *)
90   let term = CicNotationParser.term lstatus in
91   let let_defs = CicNotationParser.let_defs lstatus in
92   let let_codefs = CicNotationParser.let_codefs lstatus in
93   let protected_binder_vars = CicNotationParser.protected_binder_vars lstatus in
94   (* {{{ parser initialization *)
95 EXTEND
96   GLOBAL: term statement;
97   constructor: [ [ name = IDENT; SYMBOL ":"; typ = term -> (name, typ) ] ];
98   tactic_term: [ [ t = term LEVEL "90" -> t ] ];
99   ident_list1: [ [ LPAREN; idents = LIST1 IDENT; RPAREN -> idents ] ];
100   nreduction_kind: [
101     [ IDENT "normalize" ; delta = OPT [ IDENT "nodelta" -> () ] ->
102        let delta = match delta with None -> true | _ -> false in
103         `Normalize delta
104     | IDENT "whd" ; delta = OPT [ IDENT "nodelta" -> () ] ->
105        let delta = match delta with None -> true | _ -> false in
106         `Whd delta]
107   ];
108   sequent_pattern_spec: [
109    [ hyp_paths =
110       LIST0
111        [ id = IDENT ;
112          path = OPT [SYMBOL ":" ; path = tactic_term -> path ] ->
113          (id,match path with Some p -> p | None -> N.UserInput) ];
114      goal_path = OPT [ SYMBOL <:unicode<vdash>>; term = tactic_term -> term ] ->
115       let goal_path =
116        match goal_path, hyp_paths with
117           None, [] -> Some N.UserInput
118         | None, _::_ -> None
119         | Some goal_path, _ -> Some goal_path
120       in
121        hyp_paths,goal_path
122    ]
123   ];
124   pattern_spec: [
125     [ res = OPT [
126        "in" ;
127        wanted_and_sps =
128         [ "match" ; wanted = tactic_term ;
129           sps = OPT [ "in"; sps = sequent_pattern_spec -> sps ] ->
130            Some wanted,sps
131         | sps = sequent_pattern_spec ->
132            None,Some sps
133         ];
134        SYMBOL ";" ->
135          let wanted,hyp_paths,goal_path =
136           match wanted_and_sps with
137              wanted,None -> wanted, [], Some N.UserInput
138            | wanted,Some (hyp_paths,goal_path) -> wanted,hyp_paths,goal_path
139          in
140           wanted, hyp_paths, goal_path ] ->
141       match res with
142          None -> None,[],Some N.UserInput
143        | Some ps -> ps]
144   ];
145   inverter_param_list: [ 
146     [ params = tactic_term -> 
147       let deannotate = function
148         | N.AttributedTerm (_,t) | t -> t
149       in match deannotate params with
150       | N.Implicit _ -> [false]
151       | N.UserInput -> [true]
152       | N.Appl l -> 
153          List.map (fun x -> match deannotate x with  
154            | N.Implicit _ -> false
155            | N.UserInput -> true
156            | _ -> raise (Invalid_argument "malformed target parameter list 1")) l
157       | _ ->
158        (*CSC: new NCicPp.status is the best I can do here without changing the
159          result type *)
160        raise (Invalid_argument ("malformed target parameter list 2\n" ^ NotationPp.pp_term (new NCicPp.status) params)) ]
161   ];
162   direction: [
163     [ SYMBOL ">" -> `LeftToRight
164     | SYMBOL "<" -> `RightToLeft ]
165   ];
166   int: [ [ num = NUMBER -> int_of_string num ] ];
167   ntactic: [
168     [ SYMBOL "@"; t = tactic_term -> G.NTactic(loc,[G.NApply (loc, t)])
169     | IDENT "applyS"; t = tactic_term -> G.NTactic(loc,[G.NSmartApply(loc, t)])
170     | IDENT "assert";
171        seqs = LIST0 [
172         hyps = LIST0
173          [ id = IDENT ; SYMBOL ":" ; ty = tactic_term -> id,`Decl ty
174          | id = IDENT ; SYMBOL ":" ; ty = tactic_term ;
175                         SYMBOL <:unicode<def>> ; bo = tactic_term ->
176             id,`Def (bo,ty)];
177         SYMBOL <:unicode<vdash>>;
178         concl = tactic_term -> (List.rev hyps,concl) ] ->
179          G.NTactic(loc,[G.NAssert (loc, seqs)])
180     | SYMBOL "/"; num = OPT NUMBER ; 
181        just_and_params = auto_params; SYMBOL "/" ->
182        let just,params = just_and_params in
183        let depth = match num with Some n -> n | None -> "1" in
184        (match just with
185        | None -> 
186                  G.NTactic(loc,
187             [G.NAuto(loc,(None,["depth",depth]@params))])
188        | Some (`Univ univ) ->
189                  G.NTactic(loc,
190             [G.NAuto(loc,(Some univ,["depth",depth]@params))])
191        | Some `Trace ->
192                  G.NMacro(loc,
193              G.NAutoInteractive (loc, (None,["depth",depth]@params))))
194     | SYMBOL "#"; SYMBOL "#" -> G.NMacro (loc, G.NIntroGuess loc)
195     | IDENT "check"; t = tactic_term -> G.NMacro(loc,G.NCheck (loc,t))
196     | IDENT "screenshot"; fname = QSTRING -> 
197         G.NMacro(loc,G.Screenshot (loc, fname))
198     | IDENT "cases"; what = tactic_term ; where = pattern_spec ->
199         G.NTactic(loc,[G.NCases (loc, what, where)])
200     | IDENT "change";  "with"; with_what = tactic_term; what = pattern_spec -> 
201         G.NTactic(loc,[G.NChange (loc, what, with_what)])
202     | SYMBOL "-"; id = IDENT ->
203         G.NTactic(loc,[G.NClear (loc, [id])])
204     | PLACEHOLDER; num = OPT NUMBER; 
205         l = OPT [ SYMBOL "{"; l = LIST1 tactic_term; SYMBOL "}" -> l ] -> 
206         G.NTactic(loc,[G.NConstructor (loc, (match num with None -> None | Some x -> Some (int_of_string x)),match l with None -> [] | Some l -> l)])
207     | IDENT "cut"; t = tactic_term -> G.NTactic(loc,[G.NCut (loc, t)])
208     | IDENT "destruct"; just = OPT [ dom = ident_list1 -> dom ];
209       exclude = OPT [ IDENT "skip"; skip = ident_list1 -> skip ]
210         -> let exclude' = match exclude with None -> [] | Some l -> l in
211            G.NTactic(loc,[G.NDestruct (loc,just,exclude')])
212     | IDENT "elim"; what = tactic_term ; where = pattern_spec ->
213         G.NTactic(loc,[G.NElim (loc, what, where)])
214     | IDENT "generalize"; p=pattern_spec ->
215         G.NTactic(loc,[G.NGeneralize (loc, p)])
216     | IDENT "inversion"; what = tactic_term ; where = pattern_spec ->
217         G.NTactic(loc,[G.NInversion (loc, what, where)])
218     | IDENT "lapply"; t = tactic_term -> G.NTactic(loc,[G.NLApply (loc, t)])
219     | IDENT "letin"; name = IDENT ; SYMBOL <:unicode<def>> ; t = tactic_term;
220         where = pattern_spec ->
221         G.NTactic(loc,[G.NLetIn (loc,where,t,name)])
222     | kind = nreduction_kind; p = pattern_spec ->
223         G.NTactic(loc,[G.NReduce (loc, kind, p)])
224     | dir = direction; what = tactic_term ; where = pattern_spec ->     
225         G.NTactic(loc,[G.NRewrite (loc, dir, what, where)])
226     | IDENT "try"; tac = SELF -> 
227         let tac = match tac with G.NTactic(_,[t]) -> t | _ -> assert false in
228         G.NTactic(loc,[ G.NTry (loc,tac)])
229     | IDENT "repeat"; tac = SELF -> 
230         let tac = match tac with G.NTactic(_,[t]) -> t | _ -> assert false in
231         G.NTactic(loc,[ G.NRepeat (loc,tac)])
232     | LPAREN; l = LIST1 SELF; RPAREN -> 
233         let l = 
234           List.flatten 
235             (List.map (function G.NTactic(_,t) -> t | _ -> assert false) l) in
236         G.NTactic(loc,[G.NBlock (loc,l)])
237     | IDENT "assumption" -> G.NTactic(loc,[ G.NAssumption loc])
238     | SYMBOL "#"; ns=IDENT -> G.NTactic(loc,[ G.NIntros (loc,[ns])])
239     | SYMBOL "#"; SYMBOL "_" -> G.NTactic(loc,[ G.NIntro (loc,"_")])
240     | SYMBOL "*" -> G.NTactic(loc,[ G.NCase1 (loc,"_")])
241     | SYMBOL "*"; "as"; n=IDENT -> G.NTactic(loc,[ G.NCase1 (loc,n)])
242     | IDENT "assume" ; id = IDENT; SYMBOL ":"; t = tactic_term ; t1 = OPT [IDENT "that"; IDENT "is";
243     IDENT "equivalent"; "to"; t' = tactic_term -> t']-> G.NTactic (loc,[G.Assume (loc,id,t,t1)])
244     | IDENT "suppose" ; t = tactic_term ; LPAREN ; id = IDENT ; RPAREN ; t1 = OPT [IDENT "that"; IDENT
245     "is"; IDENT "equivalent"; "to"; t' = tactic_term -> t'] -> G.NTactic (loc,[G.Suppose (loc,t,id,t1)])
246     | "let"; name = IDENT ; SYMBOL <:unicode<def>> ; t = tactic_term ->
247         G.NTactic(loc,[G.NLetIn (loc,(None,[],Some N.UserInput),t,name)])
248     | just =
249        [ IDENT "using"; t=tactic_term -> `Term t
250        | params = auto_params -> 
251             let just,params = params in
252             `Auto
253             (match just with 
254              | None -> (None,params)
255              | Some (`Univ univ) -> (Some univ,params)
256              (* `Trace behaves exaclty like None for the moment being *)
257              | Some (`Trace) -> (None,params)
258              )
259        ];
260       cont=by_continuation -> G.NTactic (loc,[
261        (match cont with
262            BYC_done -> G.Bydone (loc, just)
263          | BYC_weproved (ty,id,t1) ->
264             G.By_just_we_proved(loc, just, ty, id, t1)
265          | BYC_letsuchthat (id1,t1,t2,id2) ->
266             G.ExistsElim (loc, just, id1, t1, t2, id2)
267          | BYC_wehaveand (id1,t1,id2,t2) ->
268             G.AndElim (loc, just, t1, id1, t2, id2))
269         ])
270     | IDENT "we" ; IDENT "need" ; "to" ; IDENT "prove" ; t = tactic_term ; id = OPT [ LPAREN ; id = IDENT ; RPAREN -> id ] ; t1 = OPT [IDENT "or" ; IDENT "equivalently"; t' = tactic_term -> t']->
271         G.NTactic (loc,[G.We_need_to_prove (loc, t, id, t1)])
272     | IDENT "the" ; IDENT "thesis" ; IDENT "becomes" ; t1=tactic_term ; t2 = OPT [IDENT "or"; IDENT
273     "equivalently"; t2 = tactic_term -> t2] ->
274         G.NTactic (loc,[G.Thesisbecomes(loc,t1,t2)])
275     | IDENT "we" ; IDENT "proceed" ; IDENT "by" ; IDENT "cases" ; "on" ; t=tactic_term ; "to" ; IDENT "prove" ; t1=tactic_term ->  
276         G.NTactic (loc,[G.We_proceed_by_cases_on (loc, t, t1)])
277     | IDENT "we" ; IDENT "proceed" ; IDENT "by" ; IDENT "induction" ; "on" ; t=tactic_term ; "to" ; IDENT "prove" ; t1=tactic_term ->  
278         G.NTactic (loc,[G.We_proceed_by_induction_on (loc, t, t1)])
279     | IDENT "by" ; IDENT "induction" ; IDENT "hypothesis" ; IDENT "we" ; IDENT "know" ; t=tactic_term ; LPAREN ; id = IDENT ; RPAREN ->
280         G.NTactic (loc,[G.Byinduction(loc, t, id)])
281     | IDENT "case" ; id = IDENT ; params=LIST0[LPAREN ; i=IDENT ;
282         SYMBOL":" ; t=tactic_term ; RPAREN -> i,t] ->
283         G.NTactic (loc,[G.Case(loc,id,params)])
284     | IDENT "print_stack" -> G.NTactic (loc,[G.PrintStack loc])
285     (* DO NOT FACTORIZE with the two following, camlp5 sucks*)
286 (*
287     | IDENT "conclude";  
288       termine = tactic_term;
289       SYMBOL "=" ;
290       t1=tactic_term ;
291       t2 =
292        [ IDENT "using"; t=tactic_term -> `Term t
293        | IDENT "using"; IDENT "once"; term=tactic_term -> `SolveWith term
294        | IDENT "proof" -> `Proof
295        | params = auto_params -> `Auto 
296             (
297                let just,params = params in
298                match just with 
299                  | None -> (None,params)
300                  | Some (`Univ univ) -> (Some univ,params)
301                  (* `Trace behaves exaclty like None for the moment being *)
302                  | Some (`Trace) -> (None,params)
303              )
304        ];
305       cont = rewriting_step_continuation ->
306        G.NTactic (loc,[G.RewritingStep(loc, Some (None,termine), t1, t2, cont)])
307     | IDENT "obtain" ; name = IDENT;
308       termine = tactic_term;
309       SYMBOL "=" ;
310       t1=tactic_term ;
311       t2 =
312        [ IDENT "using"; t=tactic_term -> `Term t
313        | IDENT "using"; IDENT "once"; term=tactic_term -> `SolveWith term
314        | IDENT "proof" -> `Proof
315        | params = auto_params -> `Auto 
316             (
317                let just,params = params in
318                match just with 
319                  | None -> (None,params)
320                  | Some (`Univ univ) -> (Some univ,params)
321                  (* `Trace behaves exaclty like None for the moment being *)
322                  | Some (`Trace) -> (None,params)
323              )
324        ];
325       cont = rewriting_step_continuation ->
326        G.NTactic(loc,[G.RewritingStep(loc, Some (Some name,termine), t1, t2, cont)])
327 *)
328     | IDENT "obtain" ; name = IDENT;
329       termine = tactic_term ->
330        G.NTactic(loc,[G.Obtain(loc, name, termine)])
331     | IDENT "conclude" ; termine = tactic_term ->
332        G.NTactic(loc,[G.Conclude(loc, termine)])
333     | SYMBOL "=" ;
334       t1=tactic_term ;
335       t2 =
336        [ IDENT "using"; t=tactic_term -> `Term t
337        | IDENT "using"; IDENT "once"; term=tactic_term -> `SolveWith term
338        | IDENT "proof" -> `Proof
339        | params = auto_params -> `Auto 
340             (
341                let just,params = params in
342                match just with 
343                  | None -> (None,params)
344                  | Some (`Univ univ) -> (Some univ,params)
345                  (* `Trace behaves exaclty like None for the moment being *)
346                  | Some (`Trace) -> (None,params)
347              )
348        ];
349       cont = rewriting_step_continuation ->
350        G.NTactic(loc,[G.RewritingStep(loc, t1, t2, cont)])
351     ]
352   ];
353   auto_fixed_param: [
354    [ IDENT "demod"
355    | IDENT "fast_paramod"
356    | IDENT "paramod"
357    | IDENT "width"
358    | IDENT "size"
359    | IDENT "nohyps"
360 (*   | IDENT "timeout" *)
361    ]
362 ];
363   auto_params: [
364     [ params = 
365       LIST0 [
366          i = auto_fixed_param -> i,""
367        | i = auto_fixed_param ; SYMBOL "="; v = [ v = int ->
368               string_of_int v | v = IDENT -> v ] -> i,v ]; 
369       just = OPT [ IDENT "by"; by = 
370         [ univ = LIST0 tactic_term SEP SYMBOL "," -> `Univ univ
371         | SYMBOL "_" -> `Trace ] -> by ] -> just,params
372    ]
373 ];
374
375   by_continuation: [
376     [ WEPROVED; ty = tactic_term ; LPAREN ; id = IDENT ; RPAREN ; t1 = OPT [IDENT "that" ; IDENT "is" ; IDENT "equivalent" ; "to" ; t2 = tactic_term -> t2] -> BYC_weproved (ty,Some id,t1)
377     | WEPROVED; ty = tactic_term ; t1 = OPT [IDENT "that" ; IDENT "is" ; IDENT "equivalent" ; "to" ; t2 = tactic_term -> t2] ; 
378             "done" -> BYC_weproved (ty,None,t1)
379     | "done" -> BYC_done
380     | "let" ; id1 = IDENT ; SYMBOL ":" ; t1 = tactic_term ;
381       IDENT "such" ; IDENT "that" ; t2=tactic_term ; LPAREN ; 
382       id2 = IDENT ; RPAREN -> BYC_letsuchthat (id1,t1,t2,id2)
383     | WEHAVE; t1=tactic_term ; LPAREN ; id1=IDENT ; RPAREN ;"and" ; t2=tactic_term ; LPAREN ; id2=IDENT ; RPAREN ->
384               BYC_wehaveand (id1,t1,id2,t2)
385     ]
386 ];
387
388   rewriting_step_continuation : [
389     [ "done" -> true
390     | -> false
391     ]
392 ];
393
394 (* MATITA 1.0
395   atomic_tactical:
396     [ "sequence" LEFTA
397       [ t1 = SELF; SYMBOL ";"; t2 = SELF ->
398           let ts =
399             match t1 with
400             | G.Seq (_, l) -> l @ [ t2 ]
401             | _ -> [ t1; t2 ]
402           in
403           G.Seq (loc, ts)
404       ]
405     | "then" NONA
406       [ tac = SELF; SYMBOL ";";
407         SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
408           (G.Then (loc, tac, tacs))
409       ]
410     | "loops" RIGHTA
411       [ IDENT "do"; count = int; tac = SELF ->
412           G.Do (loc, count, tac)
413       | IDENT "repeat"; tac = SELF -> G.Repeat (loc, tac)
414       ]
415     | "simple" NONA
416       [ IDENT "first";
417         SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
418           G.First (loc, tacs)
419       | IDENT "try"; tac = SELF -> G.Try (loc, tac)
420       | IDENT "solve";
421         SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
422           G.Solve (loc, tacs)
423       | IDENT "progress"; tac = SELF -> G.Progress (loc, tac)
424       | LPAREN; tac = SELF; RPAREN -> tac
425       | tac = tactic -> tac
426         ]
427       ];
428 *)
429   npunctuation_tactical:
430     [
431       [ SYMBOL "[" -> G.NBranch loc
432       | SYMBOL "|" -> G.NShift loc
433       | i = LIST1 int SEP SYMBOL ","; SYMBOL ":" -> G.NPos (loc, i)
434       | SYMBOL "*"; SYMBOL ":" -> G.NWildcard loc
435       | name = IDENT; SYMBOL ":" -> G.NPosbyname (loc, name)
436       | SYMBOL "]" -> G.NMerge loc
437       | SYMBOL ";" -> G.NSemicolon loc
438       | SYMBOL "." -> G.NDot loc
439       ]
440     ];
441   nnon_punctuation_tactical:
442     [ "simple" NONA
443       [ IDENT "focus"; goals = LIST1 int -> G.NFocus (loc, goals)
444       | IDENT "unfocus" -> G.NUnfocus loc
445       | IDENT "skip" -> G.NSkip loc
446       ]
447       ];
448   ntheorem_flavour: [
449     [ [ IDENT "definition"  ] -> `Definition
450     | [ IDENT "fact"        ] -> `Fact
451     | [ IDENT "lemma"       ] -> `Lemma
452     | [ IDENT "example"     ] -> `Example
453     | [ IDENT "theorem"     ] -> `Theorem
454     | [ IDENT "corollary"   ] -> `Corollary
455     ]
456   ];
457   inductive_spec: [ [
458     fst_name = IDENT; 
459       params = LIST0 protected_binder_vars;
460     SYMBOL ":"; fst_typ = term; SYMBOL <:unicode<def>>; OPT SYMBOL "|";
461     fst_constructors = LIST0 constructor SEP SYMBOL "|";
462     tl = OPT [ "with";
463         types = LIST1 [
464           name = IDENT; SYMBOL ":"; typ = term; SYMBOL <:unicode<def>>;
465          OPT SYMBOL "|"; constructors = LIST0 constructor SEP SYMBOL "|" ->
466             (name, true, typ, constructors) ] SEP "with" -> types
467       ] ->
468         let params =
469           List.fold_right
470             (fun (names, typ) acc ->
471               (List.map (fun name -> (name, typ)) names) @ acc)
472             params []
473         in
474         let fst_ind_type = (fst_name, true, fst_typ, fst_constructors) in
475         let tl_ind_types = match tl with None -> [] | Some types -> types in
476         let ind_types = fst_ind_type :: tl_ind_types in
477         (params, ind_types)
478     ] ];
479     
480     record_spec: [ [
481       name = IDENT; 
482       params = LIST0 protected_binder_vars;
483        SYMBOL ":"; typ = term; SYMBOL <:unicode<def>>; SYMBOL "{" ; 
484        fields = LIST0 [ 
485          name = IDENT ; 
486          coercion = [ 
487              SYMBOL ":" -> false,0 
488            | SYMBOL ":"; SYMBOL ">" -> true,0
489            | SYMBOL ":"; arity = int ; SYMBOL ">" -> true,arity
490          ]; 
491          ty = term -> 
492            let b,n = coercion in 
493            (name,ty,b,n) 
494        ] SEP SYMBOL ";"; SYMBOL "}" -> 
495         let params =
496           List.fold_right
497             (fun (names, typ) acc ->
498               (List.map (fun name -> (name, typ)) names) @ acc)
499             params []
500         in
501         (params,name,typ,fields)
502     ] ];
503
504     alias_spec: [
505       [ IDENT "id"; id = QSTRING; SYMBOL "="; uri = QSTRING ->
506         let alpha = "[a-zA-Z]" in
507         let num = "[0-9]+" in
508         let ident_cont = "\\("^alpha^"\\|"^num^"\\|_\\|\\\\\\)" in
509         let decoration = "\\'" in
510         let ident = "\\("^alpha^ident_cont^"*"^decoration^"*\\|_"^ident_cont^"+"^decoration^"*\\)" in
511         let rex = Str.regexp ("^"^ident^"$") in
512         if Str.string_match rex id 0 then
513           if (try ignore (NReference.reference_of_string uri); true
514               with NReference.IllFormedReference _ -> false)
515           then
516             G.Ident_alias (id, uri)
517           else
518             raise
519              (HExtlib.Localized (loc, CicNotationParser.Parse_error (Printf.sprintf "Not a valid uri: %s" uri)))
520         else
521           raise (HExtlib.Localized (loc, CicNotationParser.Parse_error (
522             Printf.sprintf "Not a valid identifier: %s" id)))
523       | IDENT "symbol"; symbol = QSTRING;
524         instance = OPT [ LPAREN; IDENT "instance"; n = int; RPAREN -> n ];
525         SYMBOL "="; dsc = QSTRING ->
526           let instance =
527             match instance with Some i -> i | None -> 0
528           in
529           G.Symbol_alias (symbol, instance, dsc)
530       | IDENT "num";
531         instance = OPT [ LPAREN; IDENT "instance"; n = int; RPAREN -> n ];
532         SYMBOL "="; dsc = QSTRING ->
533           let instance =
534             match instance with Some i -> i | None -> 0
535           in
536           G.Number_alias (instance, dsc)
537       ]
538      ];
539     argument: [
540       [ l = LIST0 [ SYMBOL <:unicode<eta>> (* η *); SYMBOL "." -> () ];
541         id = IDENT ->
542           N.IdentArg (List.length l, id)
543       ]
544     ];
545     associativity: [
546       [ IDENT "left";  IDENT "associative" -> Gramext.LeftA
547       | IDENT "right"; IDENT "associative" -> Gramext.RightA
548       | IDENT "non"; IDENT "associative" -> Gramext.NonA
549       ]
550     ];
551     precedence: [
552       [ "with"; IDENT "precedence"; n = NUMBER -> int_of_string n ]
553     ];
554     notation: [
555       [ dir = OPT direction; s = QSTRING;
556         assoc = OPT associativity; prec = precedence;
557         IDENT "for";
558         p2 = 
559           [ blob = UNPARSED_AST ->
560               add_raw_attribute ~text:(Printf.sprintf "@{%s}" blob)
561                 (CicNotationParser.parse_level2_ast lstatus
562                   (Ulexing.from_utf8_string blob))
563           | blob = UNPARSED_META ->
564               add_raw_attribute ~text:(Printf.sprintf "${%s}" blob)
565                 (CicNotationParser.parse_level2_meta lstatus
566                   (Ulexing.from_utf8_string blob))
567           ] ->
568             let assoc =
569               match assoc with
570               | None -> default_associativity
571               | Some assoc -> assoc
572             in
573             let p1 =
574               add_raw_attribute ~text:s
575                 (CicNotationParser.parse_level1_pattern lstatus prec
576                   (Ulexing.from_utf8_string s))
577             in
578             (dir, p1, assoc, prec, p2)
579       ]
580     ];
581     level3_term: [
582       [ r = NREF -> N.NRefPattern (NReference.reference_of_string r)
583       | IMPLICIT -> N.ImplicitPattern
584       | id = IDENT -> N.VarPattern id
585       | LPAREN; terms = LIST1 SELF; RPAREN ->
586           (match terms with
587           | [] -> assert false
588           | [term] -> term
589           | terms -> N.ApplPattern terms)
590       ]
591     ];
592     interpretation: [
593       [ s = CSYMBOL; args = LIST0 argument; SYMBOL "="; t = level3_term ->
594           (s, args, t)
595       ]
596     ];
597     
598     include_command: [ [
599         IDENT "include" ; path = QSTRING -> 
600           loc,path,G.WithPreferences
601       | IDENT "include" ; IDENT "alias"; path = QSTRING -> 
602           loc,path,G.OnlyPreferences
603       | IDENT "include'" ; path = QSTRING -> 
604           loc,path,G.WithoutPreferences
605      ]];
606
607   index: [[ b = OPT SYMBOL "-" -> match b with None -> true | _ -> false ]];
608
609   source: [[
610      src = OPT [ IDENT "implied" ] ->
611         match src with None -> `Provided | _ -> `Implied
612   ]];
613
614   grafite_ncommand: [ [
615       lc = lexicon_command -> lc
616     | IDENT "qed" ;  i = index -> G.NQed (loc,i)
617     | IDENT "defined" ;  i = index -> G.NQed (loc,i) (* FG: presentational qed for definitions *)
618     | src = source; nflavour = ntheorem_flavour; name = IDENT;
619       params = LIST0 protected_binder_vars; SYMBOL ":"; typ = term; (* FG: params added *)
620       body = OPT [ SYMBOL <:unicode<def>> (* ≝ *); body = term -> body ] ->
621         let typ = shift_params `Forall params typ in
622         let body = match body with
623            | Some bo -> Some (shift_params `Lambda params bo)
624            | None    -> None
625         in
626         let attrs = src, nflavour, `Regular in
627         G.NObj (loc, N.Theorem (name, typ, body, attrs),true)
628     | src = source; nflavour = ntheorem_flavour; name = IDENT;
629       params = LIST0 protected_binder_vars; SYMBOL <:unicode<def>> (* ≝ *); (* FG: params added *)
630       body = term ->
631         let body = shift_params `Lambda params body in
632         let attrs = src, nflavour, `Regular in
633         G.NObj (loc, 
634           N.Theorem(name, N.Implicit `JustOne, Some body, attrs),
635           true)
636     | src = source; IDENT "axiom"; i = index; name = IDENT;
637         params = LIST0 protected_binder_vars; SYMBOL ":"; typ = term -> (* FG: params added *)
638         let typ = shift_params `Forall params typ in
639         let attrs = src, `Axiom, `Regular in
640         G.NObj (loc, N.Theorem (name, typ, None, attrs),i)
641     | src = source; IDENT "inductive"; spec = inductive_spec ->
642         let (params, ind_types) = spec in
643         G.NObj (loc, N.Inductive (params, ind_types, src),true)
644     | src = source; IDENT "coinductive"; spec = inductive_spec ->
645         let (params, ind_types) = spec in
646         let ind_types = (* set inductive flags to false (coinductive) *)
647           List.map (fun (name, _, term, ctors) -> (name, false, term, ctors))
648             ind_types
649         in
650         G.NObj (loc, N.Inductive (params, ind_types, src),true)
651     | src = source; IDENT "record" ; (params,name,ty,fields) = record_spec ->
652         G.NObj (loc, N.Record (params,name,ty,fields,src),true)
653 (* FG: new syntax for inductive/coinductive definitions and statements *)
654     | src = source; IDENT "rec"; nflavour = ntheorem_flavour; defs = let_defs -> 
655         nmk_rec_corec src nflavour `Inductive defs loc true
656     | src = source; IDENT "corec"; nflavour = ntheorem_flavour; defs = let_codefs ->
657         nmk_rec_corec src nflavour `CoInductive defs loc true
658 (**)
659     | LETCOREC ; defs = let_codefs -> 
660         nmk_rec_corec `Provided `Definition `CoInductive defs loc true
661     | LETREC ; defs = let_defs -> 
662         nmk_rec_corec `Provided `Definition `Inductive defs loc true
663     | IDENT "discriminator" ; indty = tactic_term -> G.NDiscriminator (loc,indty)
664     | IDENT "inverter"; name = IDENT; IDENT "for" ; indty = tactic_term ;
665       paramspec = OPT inverter_param_list ; 
666       outsort = OPT [ SYMBOL ":" ; outsort = term -> outsort ] -> 
667         G.NInverter (loc,name,indty,paramspec,outsort)
668     | IDENT "universe"; cyclic = OPT [ IDENT "cyclic" -> () ] ; IDENT "constraint"; u1 = tactic_term; 
669         SYMBOL <:unicode<lt>> ; u2 = tactic_term ->
670         let acyclic = match cyclic with None -> true | Some () -> false in
671         let urify = function 
672           | NotationPt.AttributedTerm (_, NotationPt.Sort (`NType i)) ->
673               NUri.uri_of_string ("cic:/matita/pts/Type"^i^".univ")
674           | _ -> raise (Failure "only a Type[…] sort can be constrained")
675         in
676         let u1 = urify u1 in
677         let u2 = urify u2 in
678          G.NUnivConstraint (loc,acyclic,u1,u2)
679     | IDENT "unification"; IDENT "hint"; n = int; t = tactic_term ->
680         G.UnificationHint (loc, t, n)
681     | IDENT "coercion"; name = IDENT;
682         compose = OPT [ IDENT "nocomposites" -> () ];
683         spec = OPT [ SYMBOL ":"; ty = term; 
684         SYMBOL <:unicode<def>>; t = term; "on"; 
685         id = [ IDENT | PIDENT ]; SYMBOL ":"; source = term;
686         "to"; target = term -> t,ty,(id,source),target ] ->
687           let compose = compose = None in
688           G.NCoercion(loc,name,compose,spec)
689     | IDENT "copy" ; s = IDENT; IDENT "from"; u = URI; "with"; 
690       m = LIST0 [ u1 = URI; SYMBOL <:unicode<mapsto>>; u2 = URI -> u1,u2 ] ->
691         G.NCopy (loc,s,NUri.uri_of_string u,
692           List.map (fun a,b -> NUri.uri_of_string a, NUri.uri_of_string b) m)
693   ]];
694
695   lexicon_command: [ [
696       IDENT "alias" ; spec = alias_spec ->
697         G.Alias (loc, spec)
698     | IDENT "notation"; (dir, l1, assoc, prec, l2) = notation ->
699         G.Notation (loc, dir, l1, assoc, prec, l2)
700     | IDENT "interpretation"; id = QSTRING;
701       (symbol, args, l3) = interpretation ->
702         G.Interpretation (loc, id, (symbol, args), l3)
703   ]];
704   executable: [
705     [ ncmd = grafite_ncommand; SYMBOL "." -> G.NCommand (loc, ncmd)
706     | punct = npunctuation_tactical -> G.NTactic (loc, [punct])
707     | tac = nnon_punctuation_tactical(*; punct = npunctuation_tactical*) ->
708           G.NTactic (loc, [tac])
709     | tac = ntactic (*; punct = npunctuation_tactical*) ->
710          tac 
711 (*
712     | tac = nnon_punctuation_tactical; 
713         punct = npunctuation_tactical ->
714           G.NTactic (loc, [tac; punct])
715 *)
716     ]
717   ];
718   comment: [
719     [ BEGINCOMMENT ; ex = executable ; ENDCOMMENT -> 
720        G.Code (loc, ex)
721     | str = NOTE -> 
722        G.Note (loc, str)
723     ]
724   ];
725   statement: [
726     [ ex = executable -> G.Executable (loc, ex)
727     | com = comment -> G.Comment (loc, com)
728     | (iloc,fname,mode) = include_command ; SYMBOL "."  ->
729                G.Executable (loc,G.NCommand (loc,G.Include (iloc,mode,fname)))
730     | EOI -> raise End_of_file
731     ]
732   ];
733   END;
734 (* }}} *)
735   statement
736 ;;
737
738 type db = GrafiteAst.statement Grammar.Entry.e ;;
739
740 class type g_status =
741  object
742   inherit CicNotationParser.g_status
743   method parser_db: db
744  end
745
746 class virtual status =
747  object(self)
748   inherit CicNotationParser.status ~keywords:[]
749   val mutable db = None (* mutable only to initialize it :-( *)
750   method parser_db = match db with None -> assert false | Some x -> x
751   method set_parser_db v = {< db = Some v >}
752   method set_parser_status
753    : 'status. #g_status as 'status -> 'self
754    = fun o -> {< db = Some o#parser_db >}#set_notation_parser_status o
755   initializer
756    let grammar = CicNotationParser.level2_ast_grammar self in
757    db <- Some (mk_parser (Grammar.Entry.create grammar "statement") self)
758  end
759
760 let extend status l1 action = 
761   let status = CicNotationParser.extend status l1 action in
762   let grammar = CicNotationParser.level2_ast_grammar status in
763   status#set_parser_db
764     (mk_parser (Grammar.Entry.create grammar "statement") status)
765 ;;
766
767
768 let parse_statement status = 
769   parse_statement status#parser_db
770
771 (* vim:set foldmethod=marker: *)