1 (* Copyright (C) 2005, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
30 module Ast = CicNotationPt
31 module Env = CicNotationEnv
33 exception Parse_error of string
34 exception Level_not_found of int
36 let min_precedence = 0
37 let max_precedence = 100
39 type ('a,'b,'c,'d) grammars = {
40 level1_pattern: 'a Grammar.Entry.e;
41 level2_ast: 'b Grammar.Entry.e;
42 level2_ast_grammar : Grammar.g;
43 term: 'b Grammar.Entry.e;
44 let_defs: 'c Grammar.Entry.e;
45 protected_binder_vars: 'd Grammar.Entry.e;
46 level2_meta: 'b Grammar.Entry.e;
49 let initial_grammars () =
50 let level1_pattern_grammar =
51 Grammar.gcreate (CicNotationLexer.level1_pattern_lexer ()) in
52 let level2_ast_grammar =
53 Grammar.gcreate (CicNotationLexer.level2_ast_lexer ()) in
54 let level2_meta_grammar =
55 Grammar.gcreate (CicNotationLexer.level2_meta_lexer ()) in
57 Grammar.Entry.create level1_pattern_grammar "level1_pattern" in
58 let level2_ast = Grammar.Entry.create level2_ast_grammar "level2_ast" in
59 let term = Grammar.Entry.create level2_ast_grammar "term" in
60 let let_defs = Grammar.Entry.create level2_ast_grammar "let_defs" in
61 let protected_binder_vars =
62 Grammar.Entry.create level2_ast_grammar "protected_binder_vars" in
63 let level2_meta = Grammar.Entry.create level2_meta_grammar "level2_meta" in
64 { level1_pattern=level1_pattern;
65 level2_ast=level2_ast;
68 protected_binder_vars=protected_binder_vars;
69 level2_meta=level2_meta;
70 level2_ast_grammar=level2_ast_grammar;
74 let grammars = ref (initial_grammars ());;
78 Pervasives.int_of_string s
80 failwith (sprintf "Lexer failure: string_of_int \"%s\" failed" s)
82 (** {2 Grammar extension} *)
84 let level_of precedence =
85 if precedence < min_precedence || precedence > max_precedence then
86 raise (Level_not_found precedence);
87 string_of_int precedence
89 let gram_symbol s = Gramext.Stoken ("SYMBOL", s)
90 let gram_ident s = Gramext.Stoken ("IDENT", s)
91 let gram_number s = Gramext.Stoken ("NUMBER", s)
92 let gram_keyword s = Gramext.Stoken ("", s)
93 let gram_term = function
94 | Ast.Self _ -> Gramext.Sself
95 | Ast.Level precedence ->
97 (Grammar.Entry.obj (!grammars.term: 'a Grammar.Entry.e),
101 let gram_of_literal =
103 | `Symbol s -> gram_symbol s
104 | `Keyword s -> gram_keyword s
105 | `Number s -> gram_number s
109 | Binding of string * Env.value_type
110 | Env of (string * Env.value_type) list
112 let make_action action bindings =
113 let rec aux (vl : CicNotationEnv.t) =
115 [] -> Gramext.action (fun (loc: Ast.location) -> action vl loc)
116 | NoBinding :: tl -> Gramext.action (fun _ -> aux vl tl)
117 (* LUCA: DEFCON 3 BEGIN *)
118 | Binding (name, Env.TermType l) :: tl ->
121 aux ((name, (Env.TermType l, Env.TermValue v))::vl) tl)
122 | Binding (name, Env.StringType) :: tl ->
125 aux ((name, (Env.StringType, Env.StringValue v)) :: vl) tl)
126 | Binding (name, Env.NumType) :: tl ->
129 aux ((name, (Env.NumType, Env.NumValue v)) :: vl) tl)
130 | Binding (name, Env.OptType t) :: tl ->
132 (fun (v:'a option) ->
133 aux ((name, (Env.OptType t, Env.OptValue v)) :: vl) tl)
134 | Binding (name, Env.ListType t) :: tl ->
137 aux ((name, (Env.ListType t, Env.ListValue v)) :: vl) tl)
139 Gramext.action (fun (v:CicNotationEnv.t) -> aux (v @ vl) tl)
140 (* LUCA: DEFCON 3 END *)
142 aux [] (List.rev bindings)
148 | NoBinding :: tl -> aux acc tl
149 | Env names :: tl -> aux (List.rev names @ acc) tl
150 | Binding (name, ty) :: tl -> aux ((name, ty) :: acc) tl
154 (* given a level 1 pattern computes the new RHS of "term" grammar entry *)
155 let extract_term_production pattern =
156 let rec aux = function
157 | Ast.AttributedTerm (_, t) -> aux t
158 | Ast.Literal l -> aux_literal l
159 | Ast.Layout l -> aux_layout l
160 | Ast.Magic m -> aux_magic m
161 | Ast.Variable v -> aux_variable v
163 prerr_endline (CicNotationPp.pp_term t);
167 | `Symbol s -> [NoBinding, gram_symbol s]
169 (* assumption: s will be registered as a keyword with the lexer *)
170 [NoBinding, gram_keyword s]
171 | `Number s -> [NoBinding, gram_number s]
172 and aux_layout = function
173 | Ast.Sub (p1, p2) -> aux p1 @ [NoBinding, gram_symbol "\\sub"] @ aux p2
174 | Ast.Sup (p1, p2) -> aux p1 @ [NoBinding, gram_symbol "\\sup"] @ aux p2
175 | Ast.Below (p1, p2) -> aux p1 @ [NoBinding, gram_symbol "\\below"] @ aux p2
176 | Ast.Above (p1, p2) -> aux p1 @ [NoBinding, gram_symbol "\\above"] @ aux p2
177 | Ast.Frac (p1, p2) -> aux p1 @ [NoBinding, gram_symbol "\\frac"] @ aux p2
178 | Ast.InfRule (p1, p2, p3) -> [NoBinding, gram_symbol "\\infrule"] @ aux p1 @ aux p2 @ aux p3
179 | Ast.Atop (p1, p2) -> aux p1 @ [NoBinding, gram_symbol "\\atop"] @ aux p2
180 | Ast.Over (p1, p2) -> aux p1 @ [NoBinding, gram_symbol "\\over"] @ aux p2
181 | Ast.Root (p1, p2) ->
182 [NoBinding, gram_symbol "\\root"] @ aux p2
183 @ [NoBinding, gram_symbol "\\of"] @ aux p1
184 | Ast.Sqrt p -> [NoBinding, gram_symbol "\\sqrt"] @ aux p
186 | Ast.Box (_, pl) -> List.flatten (List.map aux pl)
187 | Ast.Group pl -> List.flatten (List.map aux pl)
188 | Ast.Mstyle (_,pl) -> List.flatten (List.map aux pl)
189 | Ast.Mpadded (_,pl) -> List.flatten (List.map aux pl)
190 | Ast.Maction l -> List.flatten (List.map aux l)
191 and aux_magic magic =
194 let p_bindings, p_atoms, p_names, p_action = inner_pattern p in
195 let action (env_opt : CicNotationEnv.t option) (loc : Ast.location) =
197 | Some env -> List.map Env.opt_binding_some env
198 | None -> List.map Env.opt_binding_of_name p_names
200 [ Env (List.map Env.opt_declaration p_names),
202 [ [ Gramext.Sopt (Gramext.srules [ p_atoms, p_action ]) ],
203 Gramext.action action ] ]
205 | Ast.List1 (p, _) ->
206 let p_bindings, p_atoms, p_names, p_action = inner_pattern p in
207 let action (env_list : CicNotationEnv.t list) (loc : Ast.location) =
208 CicNotationEnv.coalesce_env p_names env_list
212 | Ast.List0 (_, None) -> Gramext.Slist0 s
213 | Ast.List1 (_, None) -> Gramext.Slist1 s
214 | Ast.List0 (_, Some l) -> Gramext.Slist0sep (s, gram_of_literal l)
215 | Ast.List1 (_, Some l) -> Gramext.Slist1sep (s, gram_of_literal l)
218 [ Env (List.map Env.list_declaration p_names),
220 [ [ gram_of_list (Gramext.srules [ p_atoms, p_action ]) ],
221 Gramext.action action ] ]
225 | Ast.NumVar s -> [Binding (s, Env.NumType), gram_number ""]
226 | Ast.TermVar (s,(Ast.Self level|Ast.Level level as lv)) ->
227 [Binding (s, Env.TermType level), gram_term lv]
228 | Ast.IdentVar s -> [Binding (s, Env.StringType), gram_ident ""]
229 | Ast.Ascription (p, s) -> assert false (* TODO *)
230 | Ast.FreshVar _ -> assert false
231 and inner_pattern p =
232 let p_bindings, p_atoms = List.split (aux p) in
233 let p_names = flatten_opt p_bindings in
235 make_action (fun (env : CicNotationEnv.t) (loc : Ast.location) -> env)
238 p_bindings, p_atoms, p_names, action
242 type rule_id = Grammar.token Gramext.g_symbol list
244 let compare_rule_id x y =
245 let rec aux = function
249 | ((s1::tl1) as x),((s2::tl2) as y) ->
250 if Gramext.eq_symbol s1 s2 then aux (tl1,tl2)
251 else Pervasives.compare x y
255 (* mapping: rule_id -> owned keywords. (rule_id, string list) Hashtbl.t *)
256 let initial_owned_keywords () = Hashtbl.create 23
257 let owned_keywords = ref (initial_owned_keywords ())
259 type checked_l1_pattern = CL1P of CicNotationPt.term * int
261 let check_l1_pattern level1_pattern pponly level associativity =
262 let variables = ref 0 in
263 let symbols = ref 0 in
264 let rec aux = function
265 | Ast.AttributedTerm (att, t) -> Ast.AttributedTerm (att,aux t)
266 | Ast.Literal _ as l -> incr symbols; l
267 | Ast.Layout l -> Ast.Layout (aux_layout l)
268 | Ast.Magic m -> Ast.Magic (aux_magic m)
269 | Ast.Variable v -> (aux_variable v)
271 and aux_layout = function
272 | Ast.Sub (p1, p2) -> let p1 = aux p1 in let p2 = aux p2 in Ast.Sub (p1, p2)
273 | Ast.Sup (p1, p2) -> let p1 = aux p1 in let p2 = aux p2 in Ast.Sup (p1, p2)
274 | Ast.Below (p1, p2) -> let p1 = aux p1 in let p2 = aux p2 in Ast.Below (p1, p2)
275 | Ast.Above (p1, p2) -> let p1 = aux p1 in let p2 = aux p2 in Ast.Above (p1, p2)
276 | Ast.Frac (p1, p2) -> let p1 = aux p1 in let p2 = aux p2 in Ast.Frac (p1, p2)
277 | Ast.InfRule (p1, p2, p3) -> let p1 = aux p1 in let p2 = aux p2 in let p3 = aux p3 in Ast.InfRule (p1, p2, p3)
278 | Ast.Atop (p1, p2) -> let p1 = aux p1 in let p2 = aux p2 in Ast.Atop (p1, p2)
279 | Ast.Over (p1, p2) -> let p1 = aux p1 in let p2 = aux p2 in Ast.Over (p1, p2)
280 | Ast.Root (p1, p2) -> let p1 = aux p1 in let p2 = aux p2 in Ast.Root (p1, p2)
281 | Ast.Sqrt p -> Ast.Sqrt (aux p)
282 | Ast.Break as t -> t
283 | Ast.Box (b, pl) -> Ast.Box(b, List.map aux pl)
284 | Ast.Group pl -> Ast.Group (List.map aux pl)
285 | Ast.Mstyle (l,pl) -> Ast.Mstyle (l, List.map aux pl)
286 | Ast.Mpadded (l,pl) -> Ast.Mpadded (l, List.map aux pl)
287 | Ast.Maction l as t ->
289 raise(Parse_error("Maction can be used only in output notations"))
291 and aux_magic magic =
293 | Ast.Opt p -> Ast.Opt (aux p)
294 | Ast.List0 (p, x) -> Ast.List0 (aux p, x)
295 | Ast.List1 (p, x) -> Ast.List1 (aux p, x)
299 | Ast.NumVar _ as t -> Ast.Variable t
300 | Ast.TermVar (s,Ast.Self _) when associativity <> Gramext.NonA ->
302 if !variables > 2 then
303 raise (Parse_error ("Exactly 2 variables must be specified in an "^
304 "associative notation"));
305 (match !variables, associativity with
307 Ast.Variable (Ast.TermVar (s, Ast.Self level))
308 | 1,Gramext.RightA ->
309 Ast.Variable (Ast.TermVar (s, Ast.Self (level+1)))
311 Ast.Variable (Ast.TermVar (s, Ast.Self (level+1)))
312 | 2,Gramext.RightA ->
313 Ast.Variable (Ast.TermVar (s, Ast.Level (level-1)))
315 | Ast.TermVar (s,Ast.Level _) when associativity <> Gramext.NonA ->
316 raise (Parse_error ("Variables can not be declared with a " ^
317 "precedence in an associative notation"))
318 (*avoid camlp5 divergence due to non-Sself recursion at the same level *)
319 | Ast.TermVar (s,Ast.Level l) when l<=level && !variables=0 && !symbols=0->
320 raise(Parse_error("Left recursive rule with precedence not greater " ^
321 "than " ^ string_of_int level ^ " is not allowed to avoid divergence"))
322 | Ast.TermVar _ as t -> incr variables; Ast.Variable t
323 | Ast.IdentVar _ as t -> Ast.Variable t
324 | Ast.Ascription _ -> assert false (* TODO *)
325 | Ast.FreshVar _ -> assert false
327 if associativity <> Gramext.NonA && level = min_precedence then
328 raise (Parse_error ("You can not specify an associative notation " ^
329 "at level "^string_of_int min_precedence ^ "; increase it"));
330 let cp = aux level1_pattern in
331 (* prerr_endline ("checked_pattern: " ^ CicNotationPp.pp_term cp); *)
332 if !variables <> 2 && associativity <> Gramext.NonA then
333 raise (Parse_error ("Exactly 2 variables must be specified in an "^
334 "associative notation"));
338 let extend (CL1P (level1_pattern,precedence)) action =
339 let p_bindings, p_atoms =
340 List.split (extract_term_production level1_pattern)
342 let level = level_of precedence in
345 [ Grammar.Entry.obj (!grammars.term: 'a Grammar.Entry.e),
346 Some (Gramext.Level level),
348 Some (*Gramext.NonA*) Gramext.NonA,
351 (fun (env: CicNotationEnv.t) (loc: Ast.location) ->
355 let keywords = CicNotationUtil.keywords_of_term level1_pattern in
356 let rule_id = p_atoms in
357 List.iter CicNotationLexer.add_level2_ast_keyword keywords;
358 Hashtbl.add !owned_keywords rule_id keywords; (* keywords may be [] *)
362 let atoms = rule_id in
364 let keywords = Hashtbl.find !owned_keywords rule_id in
365 List.iter CicNotationLexer.remove_level2_ast_keyword keywords
366 with Not_found -> assert false);
367 Grammar.delete_rule !grammars.term atoms
371 let parse_level1_pattern_ref = ref (fun _ _ -> assert false)
372 let parse_level2_ast_ref = ref (fun _ -> assert false)
373 let parse_level2_meta_ref = ref (fun _ -> assert false)
375 let fold_cluster binder terms ty body =
377 (fun term body -> Ast.Binder (binder, (term, ty), body))
378 terms body (* terms are names: either Ident or FreshVar *)
380 let fold_exists terms ty body =
383 let lambda = Ast.Binder (`Lambda, (term, ty), body) in
384 Ast.Appl [ Ast.Symbol ("exists", 0); lambda ])
387 let fold_binder binder pt_names body =
389 (fun (names, ty) body -> fold_cluster binder names ty body)
392 let return_term loc term = Ast.AttributedTerm (`Loc loc, term)
393 let return_term_of_level loc term l =
394 Ast.AttributedTerm (`Loc loc, term l)
396 (* create empty precedence level for "term" *)
397 let initialize_grammars () =
399 Gramext.action (fun _ ->
400 failwith "internal error, lexer generated a dummy token")
402 (* Needed since campl4 on "delete_rule" remove the precedence level if it gets
403 * empty after the deletion. The lexer never generate the Stoken below. *)
404 let dummy_prod = [ [ Gramext.Stoken ("DUMMY", "") ], dummy_action ] in
405 let mk_level_list first last =
406 let rec aux acc = function
407 | i when i < first -> acc
410 ((Some (level_of i), Some Gramext.NonA, dummy_prod)
417 [ Grammar.Entry.obj (!grammars.term: 'a Grammar.Entry.e),
419 mk_level_list min_precedence max_precedence ];
420 (* {{{ Grammar for concrete syntax patterns, notation level 1 *)
422 let level1_pattern = !grammars.level1_pattern in
424 GLOBAL: level1_pattern;
427 [ p = l1_pattern; EOI -> fun l -> CicNotationUtil.boxify (p l) ]
430 [ p = LIST1 l1_simple_pattern ->
431 fun l -> List.map (fun x -> x l) p ]
434 [ s = SYMBOL -> `Symbol s
435 | k = QKEYWORD -> `Keyword k
436 | n = NUMBER -> `Number n
439 sep: [ [ "sep"; sep = literal -> sep ] ];
441 [ "list0"; p = l1_simple_pattern; sep = OPT sep ->
442 fun l -> Ast.List0 (p l, sep)
443 | "list1"; p = l1_simple_pattern; sep = OPT sep ->
444 fun l -> Ast.List1 (p l, sep)
445 | "opt"; p = l1_simple_pattern -> fun l -> Ast.Opt (p l)
448 l1_pattern_variable: [
449 [ "term"; precedence = NUMBER; id = IDENT ->
450 Ast.TermVar (id, Ast.Level (int_of_string precedence))
451 | "number"; id = IDENT -> Ast.NumVar id
452 | "ident"; id = IDENT -> Ast.IdentVar id
457 v = [ IDENT | NUMBER | COLOR | FLOATWITHUNIT ] -> id, v]];
460 v = [ PERCENTAGE ] -> id, v]];
463 [ p1 = SELF; SYMBOL "\\sub"; p2 = SELF ->
464 return_term_of_level loc
465 (fun l -> Ast.Layout (Ast.Sub (p1 l, p2 l)))
466 | p1 = SELF; SYMBOL "\\sup"; p2 = SELF ->
467 return_term_of_level loc
468 (fun l -> Ast.Layout (Ast.Sup (p1 l, p2 l)))
469 | p1 = SELF; SYMBOL "\\below"; p2 = SELF ->
470 return_term_of_level loc
471 (fun l -> Ast.Layout (Ast.Below (p1 l, p2 l)))
472 | p1 = SELF; SYMBOL "\\above"; p2 = SELF ->
473 return_term_of_level loc
474 (fun l -> Ast.Layout (Ast.Above (p1 l, p2 l)))
475 | p1 = SELF; SYMBOL "\\over"; p2 = SELF ->
476 return_term_of_level loc
477 (fun l -> Ast.Layout (Ast.Over (p1 l, p2 l)))
478 | p1 = SELF; SYMBOL "\\atop"; p2 = SELF ->
479 return_term_of_level loc
480 (fun l -> Ast.Layout (Ast.Atop (p1 l, p2 l)))
481 | p1 = SELF; SYMBOL "\\frac"; p2 = SELF ->
482 return_term_of_level loc
483 (fun l -> Ast.Layout (Ast.Frac (p1 l, p2 l)))
484 | SYMBOL "\\infrule"; p1 = SELF; p2 = SELF; p3 = SELF ->
485 return_term_of_level loc
486 (fun l -> Ast.Layout (Ast.InfRule (p1 l, p2 l, p3 l)))
487 | SYMBOL "\\sqrt"; p = SELF ->
488 return_term_of_level loc (fun l -> Ast.Layout (Ast.Sqrt p l))
489 | SYMBOL "\\root"; index = SELF; SYMBOL "\\of"; arg = SELF ->
490 return_term_of_level loc
491 (fun l -> Ast.Layout (Ast.Root (arg l, index l)))
492 | "hbox"; LPAREN; p = l1_pattern; RPAREN ->
493 return_term_of_level loc
494 (fun l -> Ast.Layout (Ast.Box ((Ast.H, false, false), p l)))
495 | "vbox"; LPAREN; p = l1_pattern; RPAREN ->
496 return_term_of_level loc
497 (fun l -> Ast.Layout (Ast.Box ((Ast.V, false, false), p l)))
498 | "hvbox"; LPAREN; p = l1_pattern; RPAREN ->
499 return_term_of_level loc
500 (fun l -> Ast.Layout (Ast.Box ((Ast.HV, false, false), p l)))
501 | "hovbox"; LPAREN; p = l1_pattern; RPAREN ->
502 return_term_of_level loc
503 (fun l -> Ast.Layout (Ast.Box ((Ast.HOV, false, false), p l)))
504 | "break" -> return_term_of_level loc (fun _ -> Ast.Layout Ast.Break)
505 | "mstyle"; m = LIST1 mstyle ; LPAREN; t = l1_pattern; RPAREN ->
506 return_term_of_level loc
508 Ast.Layout (Ast.Mstyle (m, t l)))
509 | "mpadded"; m = LIST1 mpadded ; LPAREN; t = l1_pattern; RPAREN ->
510 return_term_of_level loc
512 Ast.Layout (Ast.Mpadded (m, t l)))
513 | "maction"; m = LIST1 [ LPAREN; l = l1_pattern; RPAREN -> l ] ->
514 return_term_of_level loc
515 (fun l -> Ast.Layout (Ast.Maction (List.map (fun x ->
516 CicNotationUtil.group (x l)) m)))
517 | LPAREN; p = l1_pattern; RPAREN ->
518 return_term_of_level loc (fun l -> CicNotationUtil.group (p l))
522 return_term_of_level loc
523 (fun l -> Ast.Variable (Ast.TermVar (i,Ast.Self l)))
524 | m = l1_magic_pattern ->
525 return_term_of_level loc (fun l -> Ast.Magic (m l))
526 | v = l1_pattern_variable ->
527 return_term_of_level loc (fun _ -> Ast.Variable v)
528 | l = literal -> return_term_of_level loc (fun _ -> Ast.Literal l)
534 (* {{{ Grammar for ast magics, notation level 2 *)
536 let level2_meta = !grammars.level2_meta in
540 [ "term"; precedence = NUMBER; id = IDENT ->
541 Ast.TermVar (id,Ast.Level (int_of_string precedence))
542 | "number"; id = IDENT -> Ast.NumVar id
543 | "ident"; id = IDENT -> Ast.IdentVar id
544 | "fresh"; id = IDENT -> Ast.FreshVar id
545 | "anonymous" -> Ast.TermVar ("_",Ast.Self 0) (* is the level relevant?*)
546 | id = IDENT -> Ast.TermVar (id,Ast.Self 0)
550 [ "fold"; kind = [ "left" -> `Left | "right" -> `Right ];
551 base = level2_meta; "rec"; id = IDENT; recursive = level2_meta ->
552 Ast.Fold (kind, base, [id], recursive)
553 | "default"; some = level2_meta; none = level2_meta ->
554 Ast.Default (some, none)
555 | "if"; p_test = level2_meta;
556 "then"; p_true = level2_meta;
557 "else"; p_false = level2_meta ->
558 Ast.If (p_test, p_true, p_false)
563 [ magic = l2_magic -> Ast.Magic magic
564 | var = l2_variable -> Ast.Variable var
565 | blob = UNPARSED_AST ->
566 !parse_level2_ast_ref (Ulexing.from_utf8_string blob)
572 (* {{{ Grammar for ast patterns, notation level 2 *)
574 let level2_ast = !grammars.level2_ast in
575 let term = !grammars.term in
576 let let_defs = !grammars.let_defs in
577 let protected_binder_vars = !grammars.protected_binder_vars in
579 GLOBAL: level2_ast term let_defs protected_binder_vars;
580 level2_ast: [ [ p = term -> p ] ];
584 | "Type"; SYMBOL "["; n = NUMBER; SYMBOL "]" -> `NType n
585 | "Type" -> `Type (CicUniv.fresh ())
586 | "CProp" -> `CProp (CicUniv.fresh ())
590 [ SYMBOL "\\subst"; (* to avoid catching frequent "a [1]" cases *)
593 i = IDENT; SYMBOL <:unicode<Assign>> (* ≔ *); t = term -> (i, t)
600 [ s = SYMBOL "_" -> None
601 | p = term -> Some p ]
604 [ SYMBOL "["; substs = LIST0 meta_subst; SYMBOL "]" -> substs ]
606 possibly_typed_name: [
607 [ LPAREN; id = single_arg; SYMBOL ":"; typ = term; RPAREN ->
609 | arg = single_arg -> arg, None
610 | SYMBOL "_" -> Ast.Ident ("_", None), None
611 | LPAREN; SYMBOL "_"; SYMBOL ":"; typ = term; RPAREN ->
612 Ast.Ident ("_", None), Some typ
616 [ id = IDENT -> Ast.Pattern (id, None, [])
617 | LPAREN; id = IDENT; vars = LIST1 possibly_typed_name; RPAREN ->
618 Ast.Pattern (id, None, vars)
619 | id = IDENT; vars = LIST1 possibly_typed_name ->
620 Ast.Pattern (id, None, vars)
621 | SYMBOL "_" -> Ast.Wildcard
625 [ SYMBOL <:unicode<Pi>> (* Π *) -> `Pi
626 | SYMBOL <:unicode<forall>> (* ∀ *) -> `Forall
627 | SYMBOL <:unicode<lambda>> (* λ *) -> `Lambda
631 [ LPAREN; names = LIST1 IDENT SEP SYMBOL ",";
632 SYMBOL ":"; ty = term; RPAREN ->
633 List.map (fun n -> Ast.Ident (n, None)) names, Some ty
634 | name = IDENT -> [Ast.Ident (name, None)], None
635 | blob = UNPARSED_META ->
636 let meta = !parse_level2_meta_ref (Ulexing.from_utf8_string blob) in
638 | Ast.Variable (Ast.FreshVar _) -> [meta], None
639 | Ast.Variable (Ast.TermVar ("_",_)) -> [Ast.Ident ("_", None)], None
640 | _ -> failwith "Invalid bound name."
644 [ name = IDENT -> Ast.Ident (name, None)
645 | blob = UNPARSED_META ->
646 let meta = !parse_level2_meta_ref (Ulexing.from_utf8_string blob) in
648 | Ast.Variable (Ast.FreshVar _)
649 | Ast.Variable (Ast.IdentVar _) -> meta
650 | Ast.Variable (Ast.TermVar ("_",_)) -> Ast.Ident ("_", None)
651 | _ -> failwith "Invalid index name."
658 index_name = OPT [ "on"; id = single_arg -> id ];
659 ty = OPT [ SYMBOL ":" ; p = term -> p ];
660 SYMBOL <:unicode<def>> (* ≝ *); body = term ->
661 let rec position_of name p = function
663 | n :: _ when n = name -> Some p, p
664 | _ :: tl -> position_of name (p + 1) tl
666 let rec find_arg name n = function
668 Ast.fail loc (sprintf "Argument %s not found"
669 (CicNotationPp.pp_term name))
671 (match position_of name 0 l with
672 | None, len -> find_arg name (n + len) tl
673 | Some where, len -> n + where)
676 match index_name with
678 | Some index_name -> find_arg index_name 0 args
683 (function (names,ty) -> List.map (function x -> x,ty) names
686 args, (name, ty), body, index
693 l = LIST1 single_arg SEP SYMBOL "," -> l
694 | SYMBOL "_" -> [Ast.Ident ("_", None)] ];
695 typ = OPT [ SYMBOL ":"; t = term -> t ] -> (vars, typ)
698 protected_binder_vars: [
699 [ LPAREN; vars = binder_vars; RPAREN -> vars
702 maybe_protected_binder_vars: [
703 [ vars = binder_vars -> vars
704 | vars = protected_binder_vars -> vars
709 [ "let"; var = possibly_typed_name; SYMBOL <:unicode<def>> (* ≝ *);
710 p1 = term; "in"; p2 = term ->
711 return_term loc (Ast.LetIn (var, p1, p2))
712 | LETCOREC; defs = let_defs; "in";
714 return_term loc (Ast.LetRec (`CoInductive, defs, body))
715 | LETREC; defs = let_defs; "in";
717 return_term loc (Ast.LetRec (`Inductive, defs, body))
722 [ b = binder; (vars, typ) = maybe_protected_binder_vars; SYMBOL "."; body = term LEVEL "19" ->
723 return_term loc (fold_cluster b vars typ body)
728 [ p1 = term; p2 = term LEVEL "71" ->
729 let rec aux = function
730 | Ast.Appl (hd :: tl)
731 | Ast.AttributedTerm (_, Ast.Appl (hd :: tl)) ->
735 return_term loc (Ast.Appl (aux p1 @ [p2]))
740 [ id = IDENT -> return_term loc (Ast.Ident (id, None))
741 | id = IDENT; s = explicit_subst ->
742 return_term loc (Ast.Ident (id, Some s))
743 | s = CSYMBOL -> return_term loc (Ast.Symbol (s, 0))
744 | u = URI -> return_term loc (Ast.Uri (u, None))
745 | n = NUMBER -> return_term loc (Ast.Num (n, 0))
746 | IMPLICIT -> return_term loc (Ast.Implicit)
747 | PLACEHOLDER -> return_term loc Ast.UserInput
748 | m = META -> return_term loc (Ast.Meta (int_of_string m, []))
749 | m = META; s = meta_substs ->
750 return_term loc (Ast.Meta (int_of_string m, s))
751 | s = sort -> return_term loc (Ast.Sort s)
753 indty_ident = OPT [ "in"; id = IDENT -> id, None ];
754 outtyp = OPT [ "return"; ty = term -> ty ];
757 lhs = match_pattern; SYMBOL <:unicode<Rightarrow>> (* ⇒ *);
762 return_term loc (Ast.Case (t, indty_ident, outtyp, patterns))
763 | LPAREN; p1 = term; SYMBOL ":"; p2 = term; RPAREN ->
764 return_term loc (Ast.Cast (p1, p2))
765 | LPAREN; p = term; RPAREN -> p
766 | blob = UNPARSED_META ->
767 !parse_level2_meta_ref (Ulexing.from_utf8_string blob)
775 let _ = initialize_grammars ();;
777 let history = ref [];;
780 CicNotationLexer.push ();
781 history := (!owned_keywords,!grammars) :: !history;
782 owned_keywords := (initial_owned_keywords ());
783 grammars := initial_grammars ();
784 initialize_grammars ()
788 CicNotationLexer.pop ();
791 | (kw,gram) :: old_history ->
792 owned_keywords := kw;
794 history := old_history
797 (** {2 API implementation} *)
799 let exc_located_wrapper f =
803 | Stdpp.Exc_located (floc, Stream.Error msg) ->
804 raise (HExtlib.Localized (floc, Parse_error msg))
805 | Stdpp.Exc_located (floc, exn) ->
806 raise (HExtlib.Localized (floc, (Parse_error (Printexc.to_string exn))))
808 let parse_level1_pattern precedence lexbuf =
810 (fun () -> Grammar.Entry.parse !grammars.level1_pattern (Obj.magic lexbuf) precedence)
812 let parse_level2_ast lexbuf =
814 (fun () -> Grammar.Entry.parse !grammars.level2_ast (Obj.magic lexbuf))
816 let parse_level2_meta lexbuf =
818 (fun () -> Grammar.Entry.parse !grammars.level2_meta (Obj.magic lexbuf))
821 parse_level1_pattern_ref := parse_level1_pattern;
822 parse_level2_ast_ref := parse_level2_ast;
823 parse_level2_meta_ref := parse_level2_meta
825 let parse_term lexbuf =
827 (fun () -> (Grammar.Entry.parse !grammars.term (Obj.magic lexbuf)))
829 let level2_ast_grammar () = !grammars.level2_ast_grammar
830 let term () = !grammars.term
831 let let_defs () = !grammars.let_defs
832 let protected_binder_vars () = !grammars.protected_binder_vars
837 let print_l2_pattern () =
838 Grammar.print_entry Format.std_formatter (Grammar.Entry.obj !grammars.term);
839 Format.pp_print_flush Format.std_formatter ();
842 (* vim:set encoding=utf8 foldmethod=marker: *)