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