src/Pure/ML/ml_antiquote.ML
author wenzelm
Sun, 20 May 2012 11:34:33 +0200
changeset 47884 21c42b095c84
parent 47815 43f677b3ae91
child 48646 91281e9472d8
permissions -rw-r--r--
try to avoid races again (cf. 8c37cb84065f and fd3a36e48b09);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/ML/ml_antiquote.ML
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
     3
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
     4
Common ML antiquotations.
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
     5
*)
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
     6
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
     7
signature ML_ANTIQUOTE =
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
     8
sig
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
     9
  val variant: string -> Proof.context -> string * Proof.context
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    10
  val macro: binding -> Proof.context context_parser -> theory -> theory
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    11
  val inline: binding -> string context_parser -> theory -> theory
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    12
  val declaration: string -> binding -> string context_parser -> theory -> theory
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    13
  val value: binding -> string context_parser -> theory -> theory
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    14
end;
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    15
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    16
structure ML_Antiquote: ML_ANTIQUOTE =
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    17
struct
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    18
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    19
(** generic tools **)
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    20
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    21
(* ML names *)
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    22
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36950
diff changeset
    23
structure Names = Proof_Data
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    24
(
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    25
  type T = Name.context;
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    26
  fun init _ = ML_Syntax.reserved;
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    27
);
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    28
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    29
fun variant a ctxt =
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    30
  let
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36950
diff changeset
    31
    val names = Names.get ctxt;
43326
47cf4bc789aa simplified Name.variant -- discontinued builtin fold_map;
wenzelm
parents: 42468
diff changeset
    32
    val (b, names') = Name.variant a names;
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36950
diff changeset
    33
    val ctxt' = Names.put names' ctxt;
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    34
  in (b, ctxt') end;
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    35
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    36
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    37
(* specific antiquotations *)
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    38
27379
c706b7201826 added macro interface;
wenzelm
parents: 27370
diff changeset
    39
fun macro name scan = ML_Context.add_antiq name
27868
a28b3cd0077b ML_Context.add_antiq: pass position;
wenzelm
parents: 27809
diff changeset
    40
  (fn _ => scan :|-- (fn ctxt => Scan.depend (fn _ => Scan.succeed
35019
1ec0a3ff229e simplified interface for ML antiquotations, struct_name is always "Isabelle";
wenzelm
parents: 33519
diff changeset
    41
    (Context.Proof ctxt, fn background => (K ("", ""), background)))));
27379
c706b7201826 added macro interface;
wenzelm
parents: 27370
diff changeset
    42
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    43
fun inline name scan = ML_Context.add_antiq name
35019
1ec0a3ff229e simplified interface for ML antiquotations, struct_name is always "Isabelle";
wenzelm
parents: 33519
diff changeset
    44
  (fn _ => scan >> (fn s => fn background => (K ("", s), background)));
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    45
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    46
fun declaration kind name scan = ML_Context.add_antiq name
35019
1ec0a3ff229e simplified interface for ML antiquotations, struct_name is always "Isabelle";
wenzelm
parents: 33519
diff changeset
    47
  (fn _ => scan >> (fn s => fn background =>
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    48
    let
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    49
      val (a, background') =
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    50
        variant (translate_string (fn "." => "_" | c => c) (Binding.name_of name)) background;
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    51
      val env = kind ^ " " ^ a ^ " = " ^ s ^ ";\n";
41486
82c1e348bc18 reverted 08240feb69c7 -- breaks positions of reports;
wenzelm
parents: 41376
diff changeset
    52
      val body = "Isabelle." ^ a;
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    53
    in (K (env, body), background') end));
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    54
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    55
val value = declaration "val";
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    56
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    57
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    58
30231
b3f3ad327d4d added @{binding} ML antiquotations;
wenzelm
parents: 29606
diff changeset
    59
(** misc antiquotations **)
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    60
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    61
val _ = Context.>> (Context.map_theory
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    62
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    63
 (inline (Binding.name "assert")
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    64
    (Scan.succeed "(fn b => if b then () else raise General.Fail \"Assertion failed\")") #>
40110
93e7935d4cb5 added ML antiquotation @{assert};
wenzelm
parents: 37868
diff changeset
    65
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    66
  inline (Binding.name "make_string") (Scan.succeed ml_make_string) #>
36162
0bd034a80a9a added ML antiquotation @{make_string}, which produces proper pretty printed version in Poly/ML 5.3.0 or later;
wenzelm
parents: 35670
diff changeset
    67
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    68
  value (Binding.name "binding")
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
    69
    (Scan.lift (Parse.position Args.name) >> ML_Syntax.make_binding) #>
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    70
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    71
  value (Binding.name "theory")
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    72
    (Scan.lift Args.name >> (fn name =>
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    73
      "Context.get_theory (ML_Context.the_global_context ()) " ^ ML_Syntax.print_string name)
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    74
    || Scan.succeed "ML_Context.the_global_context ()") #>
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    75
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    76
  value (Binding.name "context") (Scan.succeed "ML_Context.the_local_context ()") #>
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    77
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    78
  inline (Binding.name "typ") (Args.typ >> (ML_Syntax.atomic o ML_Syntax.print_typ)) #>
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    79
  inline (Binding.name "term") (Args.term >> (ML_Syntax.atomic o ML_Syntax.print_term)) #>
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    80
  inline (Binding.name "prop") (Args.prop >> (ML_Syntax.atomic o ML_Syntax.print_term)) #>
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    81
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    82
  macro (Binding.name "let")
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    83
    (Args.context --
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    84
      Scan.lift
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    85
        (Parse.and_list1 (Parse.and_list1 Args.name_source -- (Args.$$$ "=" |-- Args.name_source)))
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    86
        >> (fn (ctxt, args) => #2 (Proof_Context.match_bind true args ctxt))) #>
27379
c706b7201826 added macro interface;
wenzelm
parents: 27370
diff changeset
    87
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    88
  macro (Binding.name "note")
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    89
    (Args.context :|-- (fn ctxt =>
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    90
      Parse.and_list1' (Scan.lift (Args.opt_thm_name I "=") -- Attrib.thms
47815
43f677b3ae91 clarified signature;
wenzelm
parents: 46987
diff changeset
    91
        >> (fn ((a, srcs), ths) => ((a, map (Attrib.attribute_cmd ctxt) srcs), [(ths, [])])))
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    92
      >> (fn args => #2 (Proof_Context.note_thmss "" args ctxt)))) #>
27379
c706b7201826 added macro interface;
wenzelm
parents: 27370
diff changeset
    93
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    94
  value (Binding.name "ctyp") (Args.typ >> (fn T =>
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    95
    "Thm.ctyp_of (ML_Context.the_global_context ()) " ^ ML_Syntax.atomic (ML_Syntax.print_typ T))) #>
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    96
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
    97
  value (Binding.name "cterm") (Args.term >> (fn t =>
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
    98
    "Thm.cterm_of (ML_Context.the_global_context ()) " ^ ML_Syntax.atomic (ML_Syntax.print_term t))) #>
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
    99
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   100
  value (Binding.name "cprop") (Args.prop >> (fn t =>
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   101
    "Thm.cterm_of (ML_Context.the_global_context ()) " ^ ML_Syntax.atomic (ML_Syntax.print_term t))) #>
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
   102
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   103
  value (Binding.name "cpat")
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   104
    (Args.context --
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   105
      Scan.lift Args.name_source >> uncurry Proof_Context.read_term_pattern >> (fn t =>
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   106
        "Thm.cterm_of (ML_Context.the_global_context ()) " ^
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   107
          ML_Syntax.atomic (ML_Syntax.print_term t)))));
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
   108
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
   109
35396
041bb8d18916 ML antiquotations for type classes;
wenzelm
parents: 35361
diff changeset
   110
(* type classes *)
041bb8d18916 ML antiquotations for type classes;
wenzelm
parents: 35361
diff changeset
   111
35670
3007b46c1660 ProofContext.read_class/read_type_name_proper;
wenzelm
parents: 35429
diff changeset
   112
fun class syn = Args.context -- Scan.lift Args.name_source >> (fn (ctxt, s) =>
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42298
diff changeset
   113
  Proof_Context.read_class ctxt s
42290
b1f544c84040 discontinued special treatment of structure Lexicon;
wenzelm
parents: 41486
diff changeset
   114
  |> syn ? Lexicon.mark_class
35396
041bb8d18916 ML antiquotations for type classes;
wenzelm
parents: 35361
diff changeset
   115
  |> ML_Syntax.print_string);
041bb8d18916 ML antiquotations for type classes;
wenzelm
parents: 35361
diff changeset
   116
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   117
val _ = Context.>> (Context.map_theory
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   118
 (inline (Binding.name "class") (class false) #>
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   119
  inline (Binding.name "class_syntax") (class true) #>
35396
041bb8d18916 ML antiquotations for type classes;
wenzelm
parents: 35361
diff changeset
   120
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   121
  inline (Binding.name "sort")
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   122
    (Args.context -- Scan.lift Args.name_source >> (fn (ctxt, s) =>
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   123
      ML_Syntax.atomic (ML_Syntax.print_sort (Syntax.read_sort ctxt s))))));
35396
041bb8d18916 ML antiquotations for type classes;
wenzelm
parents: 35361
diff changeset
   124
041bb8d18916 ML antiquotations for type classes;
wenzelm
parents: 35361
diff changeset
   125
35361
4c7c849b70aa more orthogonal antiquotations for type constructors;
wenzelm
parents: 35262
diff changeset
   126
(* type constructors *)
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
   127
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36162
diff changeset
   128
fun type_name kind check = Args.context -- Scan.lift (Parse.position Args.name_source)
35401
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   129
  >> (fn (ctxt, (s, pos)) =>
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   130
    let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42298
diff changeset
   131
      val Type (c, _) = Proof_Context.read_type_name_proper ctxt false s;
42468
aea61c5f88c3 clarified Type.the_decl;
wenzelm
parents: 42360
diff changeset
   132
      val decl = Type.the_decl (Proof_Context.tsig_of ctxt) (c, pos);
35401
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   133
      val res =
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   134
        (case try check (c, decl) of
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   135
          SOME res => res
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   136
        | NONE => error ("Not a " ^ kind ^ ": " ^ quote c ^ Position.str_of pos));
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   137
    in ML_Syntax.print_string res end);
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
   138
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   139
val _ = Context.>> (Context.map_theory
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   140
 (inline (Binding.name "type_name")
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   141
    (type_name "logical type" (fn (c, Type.LogicalType _) => c)) #>
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   142
  inline (Binding.name "type_abbrev")
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   143
    (type_name "type abbreviation" (fn (c, Type.Abbreviation _) => c)) #>
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   144
  inline (Binding.name "nonterminal")
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   145
    (type_name "nonterminal" (fn (c, Type.Nonterminal) => c)) #>
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   146
  inline (Binding.name "type_syntax")
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   147
    (type_name "type" (fn (c, _) => Lexicon.mark_type c))));
35361
4c7c849b70aa more orthogonal antiquotations for type constructors;
wenzelm
parents: 35262
diff changeset
   148
4c7c849b70aa more orthogonal antiquotations for type constructors;
wenzelm
parents: 35262
diff changeset
   149
4c7c849b70aa more orthogonal antiquotations for type constructors;
wenzelm
parents: 35262
diff changeset
   150
(* constants *)
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
   151
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 36162
diff changeset
   152
fun const_name check = Args.context -- Scan.lift (Parse.position Args.name_source)
35401
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   153
  >> (fn (ctxt, (s, pos)) =>
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   154
    let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42298
diff changeset
   155
      val Const (c, _) = Proof_Context.read_const_proper ctxt false s;
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42298
diff changeset
   156
      val res = check (Proof_Context.consts_of ctxt, c)
35401
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   157
        handle TYPE (msg, _, _) => error (msg ^ Position.str_of pos);
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   158
    in ML_Syntax.print_string res end);
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
   159
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   160
val _ = Context.>> (Context.map_theory
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   161
 (inline (Binding.name "const_name")
43794
49cbbe2768a8 sub-structural sharing after Syntax.check phase, with global interning of logical entities (the latter is relevant when bypassing default parsing via YXML);
wenzelm
parents: 43560
diff changeset
   162
    (const_name (fn (consts, c) => (Consts.the_const consts c; c))) #>
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   163
  inline (Binding.name "const_abbrev")
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   164
    (const_name (fn (consts, c) => (Consts.the_abbreviation consts c; c))) #>
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   165
  inline (Binding.name "const_syntax")
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   166
    (const_name (fn (_, c) => Lexicon.mark_const c)) #>
35401
bfcbab8592ba clarified @{const_name} (only logical consts) vs. @{const_abbrev};
wenzelm
parents: 35396
diff changeset
   167
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   168
  inline (Binding.name "syntax_const")
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   169
    (Args.context -- Scan.lift (Parse.position Args.name) >> (fn (ctxt, (c, pos)) =>
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   170
      if is_some (Syntax.lookup_const (Proof_Context.syn_of ctxt) c)
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   171
      then ML_Syntax.print_string c
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   172
      else error ("Unknown syntax const: " ^ quote c ^ Position.str_of pos))) #>
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
   173
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   174
  inline (Binding.name "const")
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   175
    (Args.context -- Scan.lift Args.name_source -- Scan.optional
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   176
        (Scan.lift (Args.$$$ "(") |-- Parse.enum1' "," Args.typ --| Scan.lift (Args.$$$ ")")) []
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   177
      >> (fn ((ctxt, raw_c), Ts) =>
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   178
        let
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   179
          val Const (c, _) = Proof_Context.read_const_proper ctxt true raw_c;
46987
15ce93dfe6da tuned message;
wenzelm
parents: 46961
diff changeset
   180
          val consts = Proof_Context.consts_of ctxt;
15ce93dfe6da tuned message;
wenzelm
parents: 46961
diff changeset
   181
          val n = length (Consts.typargs consts (c, Consts.type_scheme consts c));
15ce93dfe6da tuned message;
wenzelm
parents: 46961
diff changeset
   182
          val _ = length Ts <> n andalso
15ce93dfe6da tuned message;
wenzelm
parents: 46961
diff changeset
   183
            error ("Constant requires " ^ string_of_int n ^ " type argument(s): " ^
15ce93dfe6da tuned message;
wenzelm
parents: 46961
diff changeset
   184
              quote c ^ enclose "(" ")" (commas (replicate n "_")));
15ce93dfe6da tuned message;
wenzelm
parents: 46961
diff changeset
   185
          val const = Const (c, Consts.instance consts (c, Ts));
43560
d1650e3720fd ML antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43326
diff changeset
   186
        in ML_Syntax.atomic (ML_Syntax.print_term const) end))));
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
   187
46948
aae5566d6756 added ML antiquotation @{keyword};
wenzelm
parents: 43794
diff changeset
   188
aae5566d6756 added ML antiquotation @{keyword};
wenzelm
parents: 43794
diff changeset
   189
(* outer syntax *)
aae5566d6756 added ML antiquotation @{keyword};
wenzelm
parents: 43794
diff changeset
   190
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   191
fun with_keyword f =
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   192
  Args.theory -- Scan.lift (Parse.position Parse.string) >> (fn (thy, (name, pos)) =>
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   193
    (f (name, Thy_Header.the_keyword thy name)
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   194
      handle ERROR msg => error (msg ^ Position.str_of pos)));
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   195
46948
aae5566d6756 added ML antiquotation @{keyword};
wenzelm
parents: 43794
diff changeset
   196
val _ = Context.>> (Context.map_theory
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   197
 (value (Binding.name "keyword")
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   198
    (with_keyword
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   199
      (fn (name, NONE) => "Parse.$$$ " ^ ML_Syntax.print_string name
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   200
        | (name, SOME _) => error ("Expected minor keyword " ^ quote name))) #>
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   201
  value (Binding.name "command_spec")
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   202
    (with_keyword
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   203
      (fn (name, SOME kind) =>
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   204
          "Keyword.command_spec " ^ ML_Syntax.atomic
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   205
            (ML_Syntax.print_pair ML_Syntax.print_string
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   206
              (ML_Syntax.print_pair ML_Syntax.print_string
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   207
                (ML_Syntax.print_list ML_Syntax.print_string)) (name, kind))
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46948
diff changeset
   208
        | (name, NONE) => error ("Expected command keyword " ^ quote name)))));
46948
aae5566d6756 added ML antiquotation @{keyword};
wenzelm
parents: 43794
diff changeset
   209
27340
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
   210
end;
3de9f20f4e28 Common ML antiquotations.
wenzelm
parents:
diff changeset
   211