1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771
|
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2014 *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
open Pp
open Compat
open Tok
open Util
open Names
open Extend
open Libnames
open Glob_term
open Topconstr
open Genarg
open Tacexpr
open Extrawit
open Ppextend
(** The parser of Coq *)
module G = GrammarMake (Lexer)
(* TODO: this is a workaround, since there isn't such
[warning_verbose] in new camlp4. In camlp5, this ref
gets hidden by [Gramext.warning_verbose] *)
let warning_verbose = ref true
IFDEF CAMLP5 THEN
open Gramext
ELSE
open G
END
(** Compatibility with Camlp5 6.x *)
IFDEF CAMLP5_6_00 THEN
let slist0sep x y = Slist0sep (x, y, false)
let slist1sep x y = Slist1sep (x, y, false)
ELSE
let slist0sep x y = Slist0sep (x, y)
let slist1sep x y = Slist1sep (x, y)
END
let gram_token_of_token tok =
IFDEF CAMLP5 THEN
Stoken (Tok.to_pattern tok)
ELSE
match tok with
| KEYWORD s -> Skeyword s
| tok -> Stoken ((=) tok, to_string tok)
END
let gram_token_of_string s = gram_token_of_token (Lexer.terminal s)
let camlp4_verbosity silent f x =
let a = !warning_verbose in
warning_verbose := silent;
f x;
warning_verbose := a
let camlp4_verbose f x = camlp4_verbosity (Flags.is_verbose ()) f x
(** General entry keys *)
(** This intermediate abstract representation of entries can
both be reified into mlexpr for the ML extensions and
dynamically interpreted as entries for the Coq level extensions
*)
type prod_entry_key =
| Alist1 of prod_entry_key
| Alist1sep of prod_entry_key * string
| Alist0 of prod_entry_key
| Alist0sep of prod_entry_key * string
| Aopt of prod_entry_key
| Amodifiers of prod_entry_key
| Aself
| Anext
| Atactic of int
| Agram of G.internal_entry
| Aentry of string * string
(** [grammar_object] is the superclass of all grammar entries *)
module type Gramobj =
sig
type grammar_object
val weaken_entry : 'a G.entry -> grammar_object G.entry
end
module Gramobj : Gramobj =
struct
type grammar_object = Obj.t
let weaken_entry e = Obj.magic e
end
(** Grammar entries with associated types *)
type entry_type = argument_type
type grammar_object = Gramobj.grammar_object
type typed_entry = argument_type * grammar_object G.entry
let in_typed_entry t e = (t,Gramobj.weaken_entry e)
let type_of_typed_entry (t,e) = t
let object_of_typed_entry (t,e) = e
let weaken_entry x = Gramobj.weaken_entry x
module type Gramtypes =
sig
open Decl_kinds
val inGramObj : 'a raw_abstract_argument_type -> 'a G.entry -> typed_entry
val outGramObj : 'a raw_abstract_argument_type -> typed_entry -> 'a G.entry
end
module Gramtypes : Gramtypes =
struct
let inGramObj rawwit = in_typed_entry (unquote rawwit)
let outGramObj (a:'a raw_abstract_argument_type) o =
if type_of_typed_entry o <> unquote a
then anomaly "outGramObj: wrong type";
(* downcast from grammar_object *)
Obj.magic (object_of_typed_entry o)
end
open Gramtypes
(** Grammar extensions *)
(** NB: [extend_statment =
gram_position option * single_extend_statment list]
and [single_extend_statment =
string option * gram_assoc option * production_rule list]
and [production_rule = symbol list * action]
In [single_extend_statement], first two parameters are name and
assoc iff a level is created *)
type ext_kind =
| ByGrammar of
grammar_object G.entry
* gram_assoc option (** for reinitialization if ever needed *)
* G.extend_statment
| ByEXTEND of (unit -> unit) * (unit -> unit)
(** The list of extensions *)
let camlp4_state = ref []
(** Deletion
Caveat: deletion is not the converse of extension: when an
empty level is extended, deletion removes the level instead
of keeping it empty. This has an effect on the empty levels 8,
99 and 200. We didn't find a good solution to this problem
(e.g. using G.extend to know if the level exists results in a
printed error message as side effect). As a consequence an
extension at 99 or 8 (and for pattern 200 too) inside a section
corrupts the parser. *)
let grammar_delete e reinit (pos,rls) =
List.iter
(fun (n,ass,lev) ->
List.iter (fun (pil,_) -> G.delete_rule e pil) (List.rev lev))
(List.rev rls);
if reinit <> None then
let lev = match pos with Some (Level n) -> n | _ -> assert false in
let pos =
if lev = "200" then First
else After (string_of_int (int_of_string lev + 1)) in
maybe_uncurry (G.extend e) (Some pos, [Some lev,reinit,[]])
(** The apparent parser of Coq; encapsulate G to keep track
of the extensions. *)
module Gram =
struct
include G
let extend e =
maybe_curry
(fun ext ->
camlp4_state :=
(ByEXTEND ((fun () -> grammar_delete e None ext),
(fun () -> maybe_uncurry (G.extend e) ext)))
:: !camlp4_state;
maybe_uncurry (G.extend e) ext)
let delete_rule e pil =
(* spiwack: if you use load an ML module which contains GDELETE_RULE
in a section, God kills a kitty. As it would corrupt remove_grammars.
There does not seem to be a good way to undo a delete rule. As deleting
takes fewer arguments than extending. The production rule isn't returned
by delete_rule. If we could retrieve the necessary information, then
ByEXTEND provides just the framework we need to allow this in section.
I'm not entirely sure it makes sense, but at least it would be more correct.
*)
G.delete_rule e pil
end
(** This extension command is used by the Grammar constr *)
let grammar_extend e reinit ext =
camlp4_state := ByGrammar (weaken_entry e,reinit,ext) :: !camlp4_state;
camlp4_verbose (maybe_uncurry (G.extend e)) ext
(** Remove extensions
[n] is the number of extended entries (not the number of Grammar commands!)
to remove. *)
let rec remove_grammars n =
if n>0 then
(match !camlp4_state with
| [] -> anomaly "Pcoq.remove_grammars: too many rules to remove"
| ByGrammar(g,reinit,ext)::t ->
grammar_delete g reinit ext;
camlp4_state := t;
remove_grammars (n-1)
| ByEXTEND (undo,redo)::t ->
undo();
camlp4_state := t;
remove_grammars n;
redo();
camlp4_state := ByEXTEND (undo,redo) :: !camlp4_state)
(** An entry that checks we reached the end of the input. *)
let eoi_entry en =
let e = Gram.entry_create ((Gram.Entry.name en) ^ "_eoi") in
GEXTEND Gram
e: [ [ x = en; EOI -> x ] ]
;
END;
e
let map_entry f en =
let e = Gram.entry_create ((Gram.Entry.name en) ^ "_map") in
GEXTEND Gram
e: [ [ x = en -> f x ] ]
;
END;
e
(* Parse a string, does NOT check if the entire string was read
(use eoi_entry) *)
let parse_string f x =
let strm = Stream.of_string x in Gram.entry_parse f (Gram.parsable strm)
type gram_universe = string * (string, typed_entry) Hashtbl.t
let trace = ref false
(* The univ_tab is not part of the state. It contains all the grammars that
exist or have existed before in the session. *)
let univ_tab = (Hashtbl.create 7 : (string, gram_universe) Hashtbl.t)
let create_univ s =
let u = s, Hashtbl.create 29 in Hashtbl.add univ_tab s u; u
let uprim = create_univ "prim"
let uconstr = create_univ "constr"
let utactic = create_univ "tactic"
let uvernac = create_univ "vernac"
let get_univ s =
try
Hashtbl.find univ_tab s
with Not_found ->
anomaly ("Unknown grammar universe: "^s)
let get_entry (u, utab) s = Hashtbl.find utab s
let new_entry etyp (u, utab) s =
if !trace then (Printf.eprintf "[Creating entry %s:%s]\n" u s; flush stderr);
let ename = u ^ ":" ^ s in
let e = in_typed_entry etyp (Gram.entry_create ename) in
Hashtbl.add utab s e; e
let create_entry (u, utab) s etyp =
try
let e = Hashtbl.find utab s in
if type_of_typed_entry e <> etyp then
failwith ("Entry " ^ u ^ ":" ^ s ^ " already exists with another type");
e
with Not_found ->
new_entry etyp (u, utab) s
let create_constr_entry s =
outGramObj rawwit_constr (create_entry uconstr s ConstrArgType)
let create_generic_entry s wit =
outGramObj wit (create_entry utactic s (unquote wit))
(* [make_gen_entry] builds entries extensible by giving its name (a string) *)
(* For entries extensible only via the ML name, Gram.entry_create is enough *)
let make_gen_entry (u,univ) rawwit s =
let e = Gram.entry_create (u ^ ":" ^ s) in
Hashtbl.add univ s (inGramObj rawwit e); e
(* Initial grammar entries *)
module Prim =
struct
let gec_gen x = make_gen_entry uprim x
(* Entries that can be refered via the string -> Gram.entry table *)
(* Typically for tactic or vernac extensions *)
let preident = gec_gen rawwit_pre_ident "preident"
let ident = gec_gen rawwit_ident "ident"
let natural = gec_gen rawwit_int "natural"
let integer = gec_gen rawwit_int "integer"
let bigint = Gram.entry_create "Prim.bigint"
let string = gec_gen rawwit_string "string"
let reference = make_gen_entry uprim rawwit_ref "reference"
let by_notation = Gram.entry_create "by_notation"
let smart_global = Gram.entry_create "smart_global"
(* parsed like ident but interpreted as a term *)
let var = gec_gen rawwit_var "var"
let name = Gram.entry_create "Prim.name"
let identref = Gram.entry_create "Prim.identref"
let pattern_ident = gec_gen rawwit_pattern_ident "pattern_ident"
let pattern_identref = Gram.entry_create "pattern_identref"
(* A synonym of ident - maybe ident will be located one day *)
let base_ident = Gram.entry_create "Prim.base_ident"
let qualid = Gram.entry_create "Prim.qualid"
let fullyqualid = Gram.entry_create "Prim.fullyqualid"
let dirpath = Gram.entry_create "Prim.dirpath"
let ne_string = Gram.entry_create "Prim.ne_string"
let ne_lstring = Gram.entry_create "Prim.ne_lstring"
end
module Constr =
struct
let gec_constr = make_gen_entry uconstr rawwit_constr
(* Entries that can be refered via the string -> Gram.entry table *)
let constr = gec_constr "constr"
let operconstr = gec_constr "operconstr"
let constr_eoi = eoi_entry constr
let lconstr = gec_constr "lconstr"
let binder_constr = create_constr_entry "binder_constr"
let ident = make_gen_entry uconstr rawwit_ident "ident"
let global = make_gen_entry uconstr rawwit_ref "global"
let sort = make_gen_entry uconstr rawwit_sort "sort"
let pattern = Gram.entry_create "constr:pattern"
let constr_pattern = gec_constr "constr_pattern"
let lconstr_pattern = gec_constr "lconstr_pattern"
let closed_binder = Gram.entry_create "constr:closed_binder"
let binder = Gram.entry_create "constr:binder"
let binders = Gram.entry_create "constr:binders"
let open_binders = Gram.entry_create "constr:open_binders"
let binders_fixannot = Gram.entry_create "constr:binders_fixannot"
let typeclass_constraint = Gram.entry_create "constr:typeclass_constraint"
let record_declaration = Gram.entry_create "constr:record_declaration"
let appl_arg = Gram.entry_create "constr:appl_arg"
end
module Module =
struct
let module_expr = Gram.entry_create "module_expr"
let module_type = Gram.entry_create "module_type"
end
module Tactic =
struct
(* Main entry for extensions *)
let simple_tactic = Gram.entry_create "tactic:simple_tactic"
(* Entries that can be refered via the string -> Gram.entry table *)
(* Typically for tactic user extensions *)
let open_constr =
make_gen_entry utactic (rawwit_open_constr_gen (false,false)) "open_constr"
let casted_open_constr =
make_gen_entry utactic (rawwit_open_constr_gen (true,false)) "casted_open_constr"
let open_constr_wTC =
make_gen_entry utactic (rawwit_open_constr_gen (false,true)) "open_constr_wTC"
let constr_with_bindings =
make_gen_entry utactic rawwit_constr_with_bindings "constr_with_bindings"
let bindings =
make_gen_entry utactic rawwit_bindings "bindings"
let constr_may_eval = make_gen_entry utactic rawwit_constr_may_eval "constr_may_eval"
let quantified_hypothesis =
make_gen_entry utactic rawwit_quant_hyp "quantified_hypothesis"
let int_or_var = make_gen_entry utactic rawwit_int_or_var "int_or_var"
let red_expr = make_gen_entry utactic rawwit_red_expr "red_expr"
let simple_intropattern =
make_gen_entry utactic rawwit_intro_pattern "simple_intropattern"
(* Main entries for ltac *)
let tactic_arg = Gram.entry_create "tactic:tactic_arg"
let tactic_expr = Gram.entry_create "tactic:tactic_expr"
let binder_tactic = Gram.entry_create "tactic:binder_tactic"
let tactic = make_gen_entry utactic (rawwit_tactic tactic_main_level) "tactic"
(* Main entry for quotations *)
let tactic_eoi = eoi_entry tactic
end
module Vernac_ =
struct
let gec_vernac s = Gram.entry_create ("vernac:" ^ s)
(* The different kinds of vernacular commands *)
let gallina = gec_vernac "gallina"
let gallina_ext = gec_vernac "gallina_ext"
let command = gec_vernac "command"
let syntax = gec_vernac "syntax_command"
let vernac = gec_vernac "Vernac.vernac"
let vernac_eoi = eoi_entry vernac
let rec_definition = gec_vernac "Vernac.rec_definition"
(* Main vernac entry *)
let main_entry = Gram.entry_create "vernac"
GEXTEND Gram
main_entry:
[ [ a = vernac -> Some (loc,a) | EOI -> None ] ]
;
END
end
let main_entry = Vernac_.main_entry
(**********************************************************************)
(* This determines (depending on the associativity of the current
level and on the expected associativity) if a reference to constr_n is
a reference to the current level (to be translated into "SELF" on the
left border and into "constr LEVEL n" elsewhere), to the level below
(to be translated into "NEXT") or to an below wrt associativity (to be
translated in camlp4 into "constr" without level) or to another level
(to be translated into "constr LEVEL n")
The boolean is true if the entry was existing _and_ empty; this to
circumvent a weakness of camlp4/camlp5 whose undo mechanism is not the
converse of the extension mechanism *)
let constr_level = string_of_int
let default_levels =
[200,RightA,false;
100,RightA,false;
99,RightA,true;
90,RightA,false;
10,RightA,false;
9,RightA,false;
8,RightA,true;
1,LeftA,false;
0,RightA,false]
let default_pattern_levels =
[200,RightA,true;
100,RightA,false;
99,RightA,true;
10,LeftA,false;
9,RightA,false;
1,LeftA,false;
0,RightA,false]
let level_stack =
ref [(default_levels, default_pattern_levels)]
(* At a same level, LeftA takes precedence over RightA and NoneA *)
(* In case, several associativity exists for a level, we make two levels, *)
(* first LeftA, then RightA and NoneA together *)
open Ppextend
let admissible_assoc = function
| LeftA, Some (RightA | NonA) -> false
| RightA, Some LeftA -> false
| _ -> true
let create_assoc = function
| None -> RightA
| Some a -> a
let error_level_assoc p current expected =
let pr_assoc = function
| LeftA -> str "left"
| RightA -> str "right"
| NonA -> str "non" in
errorlabstrm ""
(str "Level " ++ int p ++ str " is already declared " ++
pr_assoc current ++ str " associative while it is now expected to be " ++
pr_assoc expected ++ str " associative.")
let find_position_gen forpat ensure assoc lev =
let ccurrent,pcurrent as current = List.hd !level_stack in
match lev with
| None ->
level_stack := current :: !level_stack;
None, None, None, None
| Some n ->
let after = ref None in
let init = ref None in
let rec add_level q = function
| (p,_,_ as pa)::l when p > n -> pa :: add_level (Some p) l
| (p,a,reinit)::l when p = n ->
if reinit then
let a' = create_assoc assoc in (init := Some a'; (p,a',false)::l)
else if admissible_assoc (a,assoc) then
raise Exit
else
error_level_assoc p a (Option.get assoc)
| l -> after := q; (n,create_assoc assoc,ensure)::l
in
try
let updated =
if forpat then (ccurrent, add_level None pcurrent)
else (add_level None ccurrent, pcurrent) in
level_stack := updated:: !level_stack;
let assoc = create_assoc assoc in
if !init = None then
(* Create the entry *)
(if !after = None then Some First
else Some (After (constr_level (Option.get !after)))),
Some assoc, Some (constr_level n), None
else
(* The reinit flag has been updated *)
Some (Level (constr_level n)), None, None, !init
with
(* Nothing has changed *)
Exit ->
level_stack := current :: !level_stack;
(* Just inherit the existing associativity and name (None) *)
Some (Level (constr_level n)), None, None, None
let remove_levels n =
level_stack := list_skipn n !level_stack
let rec list_mem_assoc_triple x = function
| [] -> false
| (a,b,c) :: l -> a = x or list_mem_assoc_triple x l
let register_empty_levels forpat levels =
map_succeed (fun n ->
let levels = (if forpat then snd else fst) (List.hd !level_stack) in
if not (list_mem_assoc_triple n levels) then
find_position_gen forpat true None (Some n)
else
failwith "") levels
let find_position forpat assoc level =
find_position_gen forpat false assoc level
(* Synchronise the stack of level updates *)
let synchronize_level_positions () =
let _ = find_position true None None in ()
(**********************************************************************)
(* Binding constr entry keys to entries *)
(* Camlp4 levels do not treat NonA: use RightA with a NEXT on the left *)
let camlp4_assoc = function
| Some NonA | Some RightA -> RightA
| None | Some LeftA -> LeftA
(* [adjust_level assoc from prod] where [assoc] and [from] are the name
and associativity of the level where to add the rule; the meaning of
the result is
None = SELF
Some None = NEXT
Some (Some (n,cur)) = constr LEVEL n
s.t. if [cur] is set then [n] is the same as the [from] level *)
let adjust_level assoc from = function
(* Associativity is None means force the level *)
| (NumLevel n,BorderProd (_,None)) -> Some (Some (n,true))
(* Compute production name on the right side *)
(* If NonA or LeftA on the right-hand side, set to NEXT *)
| (NumLevel n,BorderProd (Right,Some (NonA|LeftA))) ->
Some None
(* If RightA on the right-hand side, set to the explicit (current) level *)
| (NumLevel n,BorderProd (Right,Some RightA)) ->
Some (Some (n,true))
(* Compute production name on the left side *)
(* If NonA on the left-hand side, adopt the current assoc ?? *)
| (NumLevel n,BorderProd (Left,Some NonA)) -> None
(* If the expected assoc is the current one, set to SELF *)
| (NumLevel n,BorderProd (Left,Some a)) when a = camlp4_assoc assoc ->
None
(* Otherwise, force the level, n or n-1, according to expected assoc *)
| (NumLevel n,BorderProd (Left,Some a)) ->
if a = LeftA then Some (Some (n,true)) else Some None
(* None means NEXT *)
| (NextLevel,_) -> Some None
(* Compute production name elsewhere *)
| (NumLevel n,InternalProd) ->
match from with
| ETConstr (p,()) when p = n+1 -> Some None
| ETConstr (p,()) -> Some (Some (n,n=p))
| _ -> Some (Some (n,false))
let compute_entry allow_create adjust forpat = function
| ETConstr (n,q) ->
(if forpat then weaken_entry Constr.pattern
else weaken_entry Constr.operconstr),
adjust (n,q), false
| ETName -> weaken_entry Prim.name, None, false
| ETBinder true -> anomaly "Should occur only as part of BinderList"
| ETBinder false -> weaken_entry Constr.binder, None, false
| ETBinderList (true,tkl) ->
assert (tkl=[]); weaken_entry Constr.open_binders, None, false
| ETBinderList (false,_) -> anomaly "List of entries cannot be registered."
| ETBigint -> weaken_entry Prim.bigint, None, false
| ETReference -> weaken_entry Constr.global, None, false
| ETPattern -> weaken_entry Constr.pattern, None, false
| ETConstrList _ -> anomaly "List of entries cannot be registered."
| ETOther (u,n) ->
let u = get_univ u in
let e =
try get_entry u n
with Not_found when allow_create -> create_entry u n ConstrArgType in
object_of_typed_entry e, None, true
(* This computes the name of the level where to add a new rule *)
let interp_constr_entry_key forpat = function
| ETConstr(200,()) when not forpat ->
weaken_entry Constr.binder_constr, None
| e ->
let (e,level,_) = compute_entry true (fun (n,()) -> Some n) forpat e in
(e, level)
(* This computes the name to give to a production knowing the name and
associativity of the level where it must be added *)
let interp_constr_prod_entry_key ass from forpat en =
compute_entry false (adjust_level ass from) forpat en
(**********************************************************************)
(* Binding constr entry keys to symbols *)
let is_self from e =
match from, e with
ETConstr(n,()), ETConstr(NumLevel n',
BorderProd(Right, _ (* Some(NonA|LeftA) *))) -> false
| ETConstr(n,()), ETConstr(NumLevel n',BorderProd(Left,_)) -> n=n'
| (ETName,ETName | ETReference, ETReference | ETBigint,ETBigint
| ETPattern, ETPattern) -> true
| ETOther(s1,s2), ETOther(s1',s2') -> s1=s1' & s2=s2'
| _ -> false
let is_binder_level from e =
match from, e with
ETConstr(200,()),
ETConstr(NumLevel 200,(BorderProd(Right,_)|InternalProd)) -> true
| _ -> false
let make_sep_rules tkl =
Gram.srules'
[List.map gram_token_of_token tkl,
List.fold_right (fun _ v -> Gram.action (fun _ -> v)) tkl
(Gram.action (fun loc -> ()))]
let rec symbol_of_constr_prod_entry_key assoc from forpat typ =
if is_binder_level from typ then
if forpat then
Snterml (Gram.Entry.obj Constr.pattern,"200")
else
Snterml (Gram.Entry.obj Constr.operconstr,"200")
else if is_self from typ then
Sself
else
match typ with
| ETConstrList (typ',[]) ->
Slist1 (symbol_of_constr_prod_entry_key assoc from forpat (ETConstr typ'))
| ETConstrList (typ',tkl) ->
slist1sep
(symbol_of_constr_prod_entry_key assoc from forpat (ETConstr typ'))
(make_sep_rules tkl)
| ETBinderList (false,[]) ->
Slist1
(symbol_of_constr_prod_entry_key assoc from forpat (ETBinder false))
| ETBinderList (false,tkl) ->
slist1sep
(symbol_of_constr_prod_entry_key assoc from forpat (ETBinder false))
(make_sep_rules tkl)
| _ ->
match interp_constr_prod_entry_key assoc from forpat typ with
| (eobj,None,_) -> Snterm (Gram.Entry.obj eobj)
| (eobj,Some None,_) -> Snext
| (eobj,Some (Some (lev,cur)),_) ->
Snterml (Gram.Entry.obj eobj,constr_level lev)
(** Binding general entry keys to symbol *)
let rec symbol_of_prod_entry_key = function
| Alist1 s -> Slist1 (symbol_of_prod_entry_key s)
| Alist1sep (s,sep) ->
slist1sep (symbol_of_prod_entry_key s) (gram_token_of_string sep)
| Alist0 s -> Slist0 (symbol_of_prod_entry_key s)
| Alist0sep (s,sep) ->
slist0sep (symbol_of_prod_entry_key s) (gram_token_of_string sep)
| Aopt s -> Sopt (symbol_of_prod_entry_key s)
| Amodifiers s ->
Gram.srules'
[([], Gram.action (fun _loc -> []));
([gram_token_of_string "(";
slist1sep (symbol_of_prod_entry_key s) (gram_token_of_string ",");
gram_token_of_string ")"],
Gram.action (fun _ l _ _loc -> l))]
| Aself -> Sself
| Anext -> Snext
| Atactic 5 -> Snterm (Gram.Entry.obj Tactic.binder_tactic)
| Atactic n ->
Snterml (Gram.Entry.obj Tactic.tactic_expr, string_of_int n)
| Agram s -> Snterm s
| Aentry (u,s) ->
Snterm (Gram.Entry.obj
(object_of_typed_entry (get_entry (get_univ u) s)))
let level_of_snterml = function
| Snterml (_,l) -> int_of_string l
| _ -> failwith "level_of_snterml"
(**********************************************************************)
(* Interpret entry names of the form "ne_constr_list" as entry keys *)
let rec interp_entry_name static up_level s sep =
let l = String.length s in
if l > 8 & String.sub s 0 3 = "ne_" & String.sub s (l-5) 5 = "_list" then
let t, g = interp_entry_name static up_level (String.sub s 3 (l-8)) "" in
List1ArgType t, Alist1 g
else if l > 12 & String.sub s 0 3 = "ne_" &
String.sub s (l-9) 9 = "_list_sep" then
let t, g = interp_entry_name static up_level (String.sub s 3 (l-12)) "" in
List1ArgType t, Alist1sep (g,sep)
else if l > 5 & String.sub s (l-5) 5 = "_list" then
let t, g = interp_entry_name static up_level (String.sub s 0 (l-5)) "" in
List0ArgType t, Alist0 g
else if l > 9 & String.sub s (l-9) 9 = "_list_sep" then
let t, g = interp_entry_name static up_level (String.sub s 0 (l-9)) "" in
List0ArgType t, Alist0sep (g,sep)
else if l > 4 & String.sub s (l-4) 4 = "_opt" then
let t, g = interp_entry_name static up_level (String.sub s 0 (l-4)) "" in
OptArgType t, Aopt g
else if l > 5 & String.sub s (l-5) 5 = "_mods" then
let t, g = interp_entry_name static up_level (String.sub s 0 (l-1)) "" in
List0ArgType t, Amodifiers g
else
let s = if s = "hyp" then "var" else s in
let t, se =
match Extrawit.tactic_genarg_level s with
| Some n when Some n = up_level & up_level <> Some 5 -> None, Aself
| Some n when Some (n+1) = up_level & up_level <> Some 5 -> None, Anext
| Some n -> None, Atactic n
| None ->
try Some (get_entry uprim s), Aentry ("prim",s) with Not_found ->
try Some (get_entry uconstr s), Aentry ("constr",s) with Not_found ->
try Some (get_entry utactic s), Aentry ("tactic",s) with Not_found ->
if static then
error ("Unknown entry "^s^".")
else
None, Aentry ("",s) in
let t =
match t with
| Some t -> type_of_typed_entry t
| None -> ExtraArgType s in
t, se
|