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