src/Pure/sign.ML
author wenzelm
Fri, 16 Apr 2010 22:45:07 +0200
changeset 36179 f45c708bcc01
parent 36157 2fb3e278a5d7
child 36449 78721f3adb13
permissions -rw-r--r--
replaced old Sign.add_tyabbrs(_i) by Sign.add_type_abbrev (without mixfix);
misc tuning and simplification;
wenzelm@19
     1
(*  Title:      Pure/sign.ML
wenzelm@251
     2
    Author:     Lawrence C Paulson and Markus Wenzel
clasohm@0
     3
wenzelm@16442
     4
Logical signature content: naming conventions, concrete syntax, type
wenzelm@18062
     5
signature, polymorphic constants.
clasohm@0
     6
*)
clasohm@0
     7
wenzelm@19
     8
signature SIGN =
wenzelm@3791
     9
sig
wenzelm@16442
    10
  val rep_sg: theory ->
wenzelm@33100
    11
   {naming: Name_Space.naming,
wenzelm@16597
    12
    syn: Syntax.syntax,
wenzelm@14784
    13
    tsig: Type.tsig,
wenzelm@18062
    14
    consts: Consts.T}
wenzelm@33165
    15
  val map_naming: (Name_Space.naming -> Name_Space.naming) -> theory -> theory
wenzelm@33100
    16
  val naming_of: theory -> Name_Space.naming
haftmann@29581
    17
  val full_name: theory -> binding -> string
wenzelm@30349
    18
  val full_name_path: theory -> string -> binding -> string
haftmann@28965
    19
  val full_bname: theory -> bstring -> string
haftmann@28965
    20
  val full_bname_path: theory -> string -> bstring -> string
wenzelm@16442
    21
  val syn_of: theory -> Syntax.syntax
wenzelm@16442
    22
  val tsig_of: theory -> Type.tsig
wenzelm@19642
    23
  val classes_of: theory -> Sorts.algebra
wenzelm@21932
    24
  val all_classes: theory -> class list
wenzelm@19407
    25
  val super_classes: theory -> class -> class list
wenzelm@24732
    26
  val minimize_sort: theory -> sort -> sort
wenzelm@24732
    27
  val complete_sort: theory -> sort -> sort
wenzelm@16442
    28
  val defaultS: theory -> sort
wenzelm@16442
    29
  val subsort: theory -> sort * sort -> bool
wenzelm@16442
    30
  val of_sort: theory -> typ * sort -> bool
wenzelm@31946
    31
  val witness_sorts: theory -> (typ * sort) list -> sort list -> (typ * sort) list
wenzelm@24732
    32
  val is_logtype: theory -> string -> bool
wenzelm@16442
    33
  val typ_instance: theory -> typ * typ -> bool
wenzelm@19427
    34
  val typ_equiv: theory -> typ * typ -> bool
wenzelm@16941
    35
  val typ_match: theory -> typ * typ -> Type.tyenv -> Type.tyenv
wenzelm@16941
    36
  val typ_unify: theory -> typ * typ -> Type.tyenv * int -> Type.tyenv * int
wenzelm@18967
    37
  val consts_of: theory -> Consts.T
haftmann@17037
    38
  val the_const_constraint: theory -> string -> typ
wenzelm@16442
    39
  val const_type: theory -> string -> typ option
wenzelm@16442
    40
  val the_const_type: theory -> string -> typ
wenzelm@16442
    41
  val declared_tyname: theory -> string -> bool
wenzelm@16442
    42
  val declared_const: theory -> string -> bool
wenzelm@18062
    43
  val const_monomorphic: theory -> string -> bool
wenzelm@18146
    44
  val const_typargs: theory -> string * typ -> typ list
wenzelm@18164
    45
  val const_instance: theory -> string * typ list -> typ
haftmann@26268
    46
  val mk_const: theory -> string * typ list -> term
wenzelm@33100
    47
  val class_space: theory -> Name_Space.T
wenzelm@33100
    48
  val type_space: theory -> Name_Space.T
wenzelm@33100
    49
  val const_space: theory -> Name_Space.T
wenzelm@35680
    50
  val class_alias: binding -> class -> theory -> theory
wenzelm@35680
    51
  val type_alias: binding -> string -> theory -> theory
wenzelm@35680
    52
  val const_alias: binding -> string -> theory -> theory
wenzelm@16442
    53
  val intern_class: theory -> xstring -> string
wenzelm@16442
    54
  val extern_class: theory -> string -> xstring
wenzelm@16442
    55
  val intern_type: theory -> xstring -> string
wenzelm@16442
    56
  val extern_type: theory -> string -> xstring
wenzelm@16442
    57
  val intern_const: theory -> xstring -> string
wenzelm@16442
    58
  val extern_const: theory -> string -> xstring
wenzelm@19462
    59
  val arity_number: theory -> string -> int
wenzelm@19462
    60
  val arity_sorts: theory -> string -> sort -> sort list
wenzelm@16442
    61
  val certify_class: theory -> class -> class
wenzelm@16442
    62
  val certify_sort: theory -> sort -> sort
wenzelm@16442
    63
  val certify_typ: theory -> typ -> typ
wenzelm@24273
    64
  val certify_typ_mode: Type.mode -> theory -> typ -> typ
wenzelm@24674
    65
  val certify': bool -> Pretty.pp -> bool -> Consts.T -> theory -> term -> term * typ * int
wenzelm@18967
    66
  val certify_term: theory -> term -> term * typ * int
wenzelm@16494
    67
  val cert_term: theory -> term -> term
wenzelm@16494
    68
  val cert_prop: theory -> term -> term
wenzelm@21741
    69
  val no_frees: Pretty.pp -> term -> term
wenzelm@18941
    70
  val no_vars: Pretty.pp -> term -> term
wenzelm@26667
    71
  val add_defsort: string -> theory -> theory
wenzelm@26667
    72
  val add_defsort_i: sort -> theory -> theory
wenzelm@30349
    73
  val add_types: (binding * int * mixfix) list -> theory -> theory
wenzelm@30349
    74
  val add_nonterminals: binding list -> theory -> theory
wenzelm@36179
    75
  val add_type_abbrev: binding * string list * typ -> theory -> theory
wenzelm@30349
    76
  val add_syntax: (string * string * mixfix) list -> theory -> theory
wenzelm@30349
    77
  val add_syntax_i: (string * typ * mixfix) list -> theory -> theory
wenzelm@30349
    78
  val add_modesyntax: Syntax.mode -> (string * string * mixfix) list -> theory -> theory
wenzelm@30349
    79
  val add_modesyntax_i: Syntax.mode -> (string * typ * mixfix) list -> theory -> theory
wenzelm@30349
    80
  val del_modesyntax: Syntax.mode -> (string * string * mixfix) list -> theory -> theory
wenzelm@30349
    81
  val del_modesyntax_i: Syntax.mode -> (string * typ * mixfix) list -> theory -> theory
wenzelm@35417
    82
  val type_notation: bool -> Syntax.mode -> (typ * mixfix) list -> theory -> theory
wenzelm@26667
    83
  val notation: bool -> Syntax.mode -> (term * mixfix) list -> theory -> theory
wenzelm@33173
    84
  val declare_const: (binding * typ) * mixfix -> theory -> term * theory
wenzelm@30349
    85
  val add_consts: (binding * string * mixfix) list -> theory -> theory
wenzelm@30349
    86
  val add_consts_i: (binding * typ * mixfix) list -> theory -> theory
wenzelm@33173
    87
  val add_abbrev: string -> binding * term -> theory -> (term * term) * theory
wenzelm@25049
    88
  val revert_abbrev: string -> string -> theory -> theory
wenzelm@24761
    89
  val add_const_constraint: string * typ option -> theory -> theory
wenzelm@30349
    90
  val primitive_class: binding * class list -> theory -> theory
wenzelm@22811
    91
  val primitive_classrel: class * class -> theory -> theory
wenzelm@22811
    92
  val primitive_arity: arity -> theory -> theory
wenzelm@26667
    93
  val add_trfuns:
wenzelm@26667
    94
    (string * (ast list -> ast)) list *
wenzelm@26667
    95
    (string * (term list -> term)) list *
wenzelm@26667
    96
    (string * (term list -> term)) list *
wenzelm@26667
    97
    (string * (ast list -> ast)) list -> theory -> theory
wenzelm@26667
    98
  val add_trfunsT:
wenzelm@26667
    99
    (string * (bool -> typ -> term list -> term)) list -> theory -> theory
wenzelm@26667
   100
  val add_advanced_trfuns:
wenzelm@26667
   101
    (string * (Proof.context -> ast list -> ast)) list *
wenzelm@26667
   102
    (string * (Proof.context -> term list -> term)) list *
wenzelm@26667
   103
    (string * (Proof.context -> term list -> term)) list *
wenzelm@26667
   104
    (string * (Proof.context -> ast list -> ast)) list -> theory -> theory
wenzelm@26667
   105
  val add_advanced_trfunsT:
wenzelm@26667
   106
    (string * (Proof.context -> bool -> typ -> term list -> term)) list -> theory -> theory
wenzelm@26667
   107
  val add_tokentrfuns:
wenzelm@26701
   108
    (string * string * (Proof.context -> string -> Pretty.T)) list -> theory -> theory
wenzelm@26701
   109
  val add_mode_tokentrfuns: string -> (string * (Proof.context -> string -> Pretty.T)) list
wenzelm@26667
   110
    -> theory -> theory
wenzelm@26667
   111
  val add_trrules: (xstring * string) Syntax.trrule list -> theory -> theory
wenzelm@26667
   112
  val del_trrules: (xstring * string) Syntax.trrule list -> theory -> theory
wenzelm@26667
   113
  val add_trrules_i: ast Syntax.trrule list -> theory -> theory
wenzelm@26667
   114
  val del_trrules_i: ast Syntax.trrule list -> theory -> theory
wenzelm@33734
   115
  val new_group: theory -> theory
wenzelm@33734
   116
  val reset_group: theory -> theory
wenzelm@26667
   117
  val add_path: string -> theory -> theory
wenzelm@30422
   118
  val root_path: theory -> theory
wenzelm@26667
   119
  val parent_path: theory -> theory
wenzelm@30469
   120
  val mandatory_path: string -> theory -> theory
wenzelm@35211
   121
  val qualified_path: bool -> binding -> theory -> theory
wenzelm@26667
   122
  val local_path: theory -> theory
wenzelm@26667
   123
  val restore_naming: theory -> theory -> theory
wenzelm@26667
   124
  val hide_class: bool -> string -> theory -> theory
wenzelm@26667
   125
  val hide_type: bool -> string -> theory -> theory
wenzelm@26667
   126
  val hide_const: bool -> string -> theory -> theory
wenzelm@16442
   127
end
clasohm@0
   128
wenzelm@16442
   129
structure Sign: SIGN =
wenzelm@143
   130
struct
clasohm@0
   131
wenzelm@16442
   132
(** datatype sign **)
wenzelm@3791
   133
wenzelm@16442
   134
datatype sign = Sign of
wenzelm@33100
   135
 {naming: Name_Space.naming,    (*common naming conventions*)
wenzelm@18062
   136
  syn: Syntax.syntax,           (*concrete syntax for terms, types, sorts*)
wenzelm@18062
   137
  tsig: Type.tsig,              (*order-sorted signature of types*)
wenzelm@18062
   138
  consts: Consts.T};            (*polymorphic constants*)
wenzelm@16337
   139
wenzelm@16442
   140
fun make_sign (naming, syn, tsig, consts) =
wenzelm@16442
   141
  Sign {naming = naming, syn = syn, tsig = tsig, consts = consts};
wenzelm@16337
   142
wenzelm@35803
   143
structure Data = Theory_Data_PP
wenzelm@22846
   144
(
wenzelm@16442
   145
  type T = sign;
wenzelm@17405
   146
  fun extend (Sign {syn, tsig, consts, ...}) =
wenzelm@33100
   147
    make_sign (Name_Space.default_naming, syn, tsig, consts);
wenzelm@16442
   148
wenzelm@18062
   149
  val empty =
wenzelm@35676
   150
    make_sign (Name_Space.default_naming, Syntax.basic_syntax, Type.empty_tsig, Consts.empty);
wenzelm@16442
   151
wenzelm@16442
   152
  fun merge pp (sign1, sign2) =
wenzelm@16442
   153
    let
wenzelm@18062
   154
      val Sign {naming = _, syn = syn1, tsig = tsig1, consts = consts1} = sign1;
wenzelm@18062
   155
      val Sign {naming = _, syn = syn2, tsig = tsig2, consts = consts2} = sign2;
wenzelm@16442
   156
wenzelm@33100
   157
      val naming = Name_Space.default_naming;
wenzelm@16597
   158
      val syn = Syntax.merge_syntaxes syn1 syn2;
wenzelm@16442
   159
      val tsig = Type.merge_tsigs pp (tsig1, tsig2);
wenzelm@18062
   160
      val consts = Consts.merge (consts1, consts2);
wenzelm@18062
   161
    in make_sign (naming, syn, tsig, consts) end;
wenzelm@22846
   162
);
wenzelm@16442
   163
wenzelm@35803
   164
fun rep_sg thy = Data.get thy |> (fn Sign args => args);
wenzelm@16442
   165
wenzelm@35803
   166
fun map_sign f = Data.map (fn Sign {naming, syn, tsig, consts} =>
wenzelm@16442
   167
  make_sign (f (naming, syn, tsig, consts)));
wenzelm@16442
   168
wenzelm@16442
   169
fun map_naming f = map_sign (fn (naming, syn, tsig, consts) => (f naming, syn, tsig, consts));
wenzelm@16442
   170
fun map_syn f = map_sign (fn (naming, syn, tsig, consts) => (naming, f syn, tsig, consts));
wenzelm@16442
   171
fun map_tsig f = map_sign (fn (naming, syn, tsig, consts) => (naming, syn, f tsig, consts));
wenzelm@16442
   172
fun map_consts f = map_sign (fn (naming, syn, tsig, consts) => (naming, syn, tsig, f consts));
wenzelm@16442
   173
wenzelm@3791
   174
wenzelm@16133
   175
(* naming *)
wenzelm@16133
   176
wenzelm@16442
   177
val naming_of = #naming o rep_sg;
haftmann@28792
   178
wenzelm@33100
   179
val full_name = Name_Space.full_name o naming_of;
wenzelm@33100
   180
fun full_name_path thy path = Name_Space.full_name (Name_Space.add_path path (naming_of thy));
wenzelm@30349
   181
wenzelm@33100
   182
fun full_bname thy = Name_Space.full_name (naming_of thy) o Binding.name;
wenzelm@30349
   183
fun full_bname_path thy path = full_name_path thy path o Binding.name;
wenzelm@16133
   184
wenzelm@16133
   185
wenzelm@16337
   186
(* syntax *)
wenzelm@16337
   187
wenzelm@16597
   188
val syn_of = #syn o rep_sg;
wenzelm@16337
   189
wenzelm@16337
   190
wenzelm@16337
   191
(* type signature *)
wenzelm@16337
   192
wenzelm@16337
   193
val tsig_of = #tsig o rep_sg;
wenzelm@24732
   194
wenzelm@19642
   195
val classes_of = #2 o #classes o Type.rep_tsig o tsig_of;
wenzelm@21932
   196
val all_classes = Sorts.all_classes o classes_of;
wenzelm@19642
   197
val super_classes = Sorts.super_classes o classes_of;
wenzelm@24732
   198
val minimize_sort = Sorts.minimize_sort o classes_of;
wenzelm@24732
   199
val complete_sort = Sorts.complete_sort o classes_of;
wenzelm@24732
   200
wenzelm@16337
   201
val defaultS = Type.defaultS o tsig_of;
wenzelm@16337
   202
val subsort = Type.subsort o tsig_of;
wenzelm@16337
   203
val of_sort = Type.of_sort o tsig_of;
wenzelm@16337
   204
val witness_sorts = Type.witness_sorts o tsig_of;
wenzelm@24732
   205
val is_logtype = member (op =) o Type.logical_types o tsig_of;
wenzelm@24732
   206
wenzelm@16337
   207
val typ_instance = Type.typ_instance o tsig_of;
wenzelm@19427
   208
fun typ_equiv thy (T, U) = typ_instance thy (T, U) andalso typ_instance thy (U, T);
wenzelm@16941
   209
val typ_match = Type.typ_match o tsig_of;
wenzelm@16941
   210
val typ_unify = Type.unify o tsig_of;
wenzelm@16337
   211
wenzelm@16337
   212
wenzelm@18062
   213
(* polymorphic constants *)
wenzelm@16337
   214
wenzelm@18062
   215
val consts_of = #consts o rep_sg;
wenzelm@21722
   216
val the_const_constraint = Consts.the_constraint o consts_of;
wenzelm@25042
   217
val the_const_type = Consts.the_type o consts_of;
wenzelm@18062
   218
val const_type = try o the_const_type;
wenzelm@21722
   219
val const_monomorphic = Consts.is_monomorphic o consts_of;
wenzelm@18062
   220
val const_typargs = Consts.typargs o consts_of;
wenzelm@18164
   221
val const_instance = Consts.instance o consts_of;
wenzelm@16337
   222
haftmann@26268
   223
fun mk_const thy (c, Ts) = Const (c, const_instance thy (c, Ts));
haftmann@26268
   224
wenzelm@16894
   225
val declared_tyname = Symtab.defined o #2 o #types o Type.rep_tsig o tsig_of;
wenzelm@24761
   226
val declared_const = can o the_const_constraint;
wenzelm@16337
   227
wenzelm@16337
   228
wenzelm@3791
   229
wenzelm@16337
   230
(** intern / extern names **)
wenzelm@3791
   231
wenzelm@35676
   232
val class_space = Type.class_space o tsig_of;
wenzelm@35676
   233
val type_space = Type.type_space o tsig_of;
wenzelm@18967
   234
val const_space = Consts.space_of o consts_of;
wenzelm@16337
   235
wenzelm@35680
   236
fun class_alias b c thy = map_tsig (Type.class_alias (naming_of thy) b c) thy;
wenzelm@35680
   237
fun type_alias b c thy = map_tsig (Type.type_alias (naming_of thy) b c) thy;
wenzelm@35680
   238
fun const_alias b c thy = map_consts (Consts.alias (naming_of thy) b c) thy;
wenzelm@35680
   239
wenzelm@33100
   240
val intern_class = Name_Space.intern o class_space;
wenzelm@33100
   241
val extern_class = Name_Space.extern o class_space;
wenzelm@33100
   242
val intern_type = Name_Space.intern o type_space;
wenzelm@33100
   243
val extern_type = Name_Space.extern o type_space;
wenzelm@33100
   244
val intern_const = Name_Space.intern o const_space;
wenzelm@33100
   245
val extern_const = Name_Space.extern o const_space;
wenzelm@16337
   246
wenzelm@402
   247
clasohm@0
   248
wenzelm@16337
   249
(** certify entities **)    (*exception TYPE*)
wenzelm@8898
   250
wenzelm@16337
   251
(* certify wrt. type signature *)
wenzelm@8898
   252
wenzelm@19462
   253
val arity_number = Type.arity_number o tsig_of;
wenzelm@26939
   254
fun arity_sorts thy = Type.arity_sorts (Syntax.pp_global thy) (tsig_of thy);
wenzelm@19462
   255
wenzelm@24273
   256
val certify_class         = Type.cert_class o tsig_of;
wenzelm@24273
   257
val certify_sort          = Type.cert_sort o tsig_of;
wenzelm@24273
   258
val certify_typ           = Type.cert_typ o tsig_of;
wenzelm@24273
   259
fun certify_typ_mode mode = Type.cert_typ_mode mode o tsig_of;
wenzelm@10443
   260
wenzelm@4961
   261
wenzelm@18967
   262
(* certify term/prop *)
wenzelm@4961
   263
wenzelm@14987
   264
local
nipkow@1494
   265
wenzelm@16337
   266
fun type_check pp tm =
wenzelm@4961
   267
  let
wenzelm@4961
   268
    fun err_appl why bs t T u U =
wenzelm@4961
   269
      let
wenzelm@10404
   270
        val xs = map Free bs;           (*we do not rename here*)
wenzelm@4961
   271
        val t' = subst_bounds (xs, t);
wenzelm@4961
   272
        val u' = subst_bounds (xs, u);
wenzelm@16337
   273
        val msg = cat_lines
wenzelm@14828
   274
          (TypeInfer.appl_error (Syntax.pp_show_brackets pp) why t' T u' U);
wenzelm@16337
   275
      in raise TYPE (msg, [T, U], [t', u']) end;
wenzelm@4961
   276
wenzelm@4961
   277
    fun typ_of (_, Const (_, T)) = T
wenzelm@4961
   278
      | typ_of (_, Free  (_, T)) = T
wenzelm@4961
   279
      | typ_of (_, Var (_, T)) = T
wenzelm@30146
   280
      | typ_of (bs, Bound i) = snd (nth bs i handle Subscript =>
wenzelm@4961
   281
          raise TYPE ("Loose bound variable: B." ^ string_of_int i, [], [Bound i]))
wenzelm@4961
   282
      | typ_of (bs, Abs (x, T, body)) = T --> typ_of ((x, T) :: bs, body)
wenzelm@4961
   283
      | typ_of (bs, t $ u) =
wenzelm@4961
   284
          let val T = typ_of (bs, t) and U = typ_of (bs, u) in
wenzelm@4961
   285
            (case T of
wenzelm@4961
   286
              Type ("fun", [T1, T2]) =>
wenzelm@14828
   287
                if T1 = U then T2 else err_appl "Incompatible operand type" bs t T u U
wenzelm@14828
   288
            | _ => err_appl "Operator not of function type" bs t T u U)
wenzelm@4961
   289
          end;
wenzelm@18967
   290
  in typ_of ([], tm) end;
wenzelm@4961
   291
wenzelm@18967
   292
fun err msg = raise TYPE (msg, [], []);
wenzelm@18967
   293
wenzelm@18967
   294
fun check_vars (t $ u) = (check_vars t; check_vars u)
wenzelm@18967
   295
  | check_vars (Abs (_, _, t)) = check_vars t
wenzelm@27205
   296
  | check_vars (Free (x, _)) =
wenzelm@30364
   297
      if Long_Name.is_qualified x then err ("Malformed variable: " ^ quote x) else ()
wenzelm@18967
   298
  | check_vars (Var (xi as (_, i), _)) =
wenzelm@18967
   299
      if i < 0 then err ("Malformed variable: " ^ quote (Term.string_of_vname xi)) else ()
wenzelm@18967
   300
  | check_vars _ = ();
wenzelm@251
   301
wenzelm@14987
   302
in
wenzelm@14987
   303
wenzelm@24674
   304
fun certify' prop pp do_expand consts thy tm =
wenzelm@169
   305
  let
wenzelm@18967
   306
    val _ = check_vars tm;
wenzelm@20548
   307
    val tm' = Term.map_types (certify_typ thy) tm;
wenzelm@18967
   308
    val T = type_check pp tm';
wenzelm@18967
   309
    val _ = if prop andalso T <> propT then err "Term not of type prop" else ();
wenzelm@24674
   310
    val tm'' = Consts.certify pp (tsig_of thy) do_expand consts tm';
wenzelm@18967
   311
  in (if tm = tm'' then tm else tm'', T, Term.maxidx_of_term tm'') end;
wenzelm@14784
   312
wenzelm@26939
   313
fun certify_term thy = certify' false (Syntax.pp_global thy) true (consts_of thy) thy;
wenzelm@26939
   314
fun cert_term_abbrev thy = #1 o certify' false (Syntax.pp_global thy) false (consts_of thy) thy;
wenzelm@18967
   315
val cert_term = #1 oo certify_term;
wenzelm@32796
   316
fun cert_prop thy = #1 o certify' true (Syntax.pp_global thy) true (consts_of thy) thy;
clasohm@0
   317
wenzelm@14987
   318
end;
wenzelm@14987
   319
wenzelm@251
   320
wenzelm@18941
   321
(* specifications *)
wenzelm@18941
   322
wenzelm@21741
   323
fun no_variables kind add addT mk mkT pp tm =
wenzelm@21741
   324
  (case (add tm [], addT tm []) of
wenzelm@18941
   325
    ([], []) => tm
wenzelm@25117
   326
  | (frees, tfrees) => error (Pretty.string_of (Pretty.block
wenzelm@25117
   327
      (Pretty.str ("Illegal " ^ kind ^ " variable(s) in term:") :: Pretty.brk 1 ::
wenzelm@25117
   328
       Pretty.commas (map (Pretty.term pp o mk) frees @ map (Pretty.typ pp o mkT) tfrees)))));
wenzelm@21741
   329
wenzelm@21741
   330
val no_frees = no_variables "free" Term.add_frees Term.add_tfrees Free TFree;
wenzelm@21741
   331
val no_vars = no_variables "schematic" Term.add_vars Term.add_tvars Var TVar;
wenzelm@18941
   332
wenzelm@18941
   333
wenzelm@16337
   334
wenzelm@16337
   335
(** signature extension functions **)  (*exception ERROR/TYPE*)
wenzelm@386
   336
wenzelm@386
   337
(* add default sort *)
wenzelm@386
   338
wenzelm@16442
   339
fun gen_add_defsort prep_sort s thy =
wenzelm@16442
   340
  thy |> map_tsig (Type.set_defsort (prep_sort thy s));
wenzelm@8898
   341
wenzelm@24707
   342
val add_defsort = gen_add_defsort Syntax.read_sort_global;
wenzelm@16337
   343
val add_defsort_i = gen_add_defsort certify_sort;
wenzelm@386
   344
wenzelm@386
   345
wenzelm@386
   346
(* add type constructors *)
wenzelm@386
   347
wenzelm@16442
   348
fun add_types types thy = thy |> map_sign (fn (naming, syn, tsig, consts) =>
wenzelm@14856
   349
  let
wenzelm@36179
   350
    fun type_syntax (b, n, mx) =
wenzelm@36179
   351
      (Syntax.mark_type (Name_Space.full_name naming b), Syntax.make_type n, mx);
wenzelm@36179
   352
    val syn' = Syntax.update_type_gram true Syntax.mode_default (map type_syntax types) syn;
wenzelm@36157
   353
    val tsig' = fold (fn (a, n, _) => Type.add_type naming (a, n)) types tsig;
wenzelm@16442
   354
  in (naming, syn', tsig', consts) end);
wenzelm@16442
   355
wenzelm@16337
   356
wenzelm@16337
   357
(* add nonterminals *)
wenzelm@16337
   358
wenzelm@36179
   359
fun add_nonterminals ns = map_sign (fn (naming, syn, tsig, consts) =>
wenzelm@36179
   360
  (naming, syn, fold (Type.add_nonterminal naming) ns tsig, consts));
wenzelm@386
   361
wenzelm@386
   362
wenzelm@386
   363
(* add type abbreviations *)
wenzelm@386
   364
wenzelm@36179
   365
fun add_type_abbrev abbr = map_sign (fn (naming, syn, tsig, consts) =>
wenzelm@36179
   366
  (naming, syn, Type.add_abbrev naming abbr tsig, consts));
wenzelm@14784
   367
wenzelm@14784
   368
wenzelm@16337
   369
(* modify syntax *)
wenzelm@16337
   370
wenzelm@25366
   371
fun gen_syntax change_gram parse_typ mode args thy =
wenzelm@386
   372
  let
wenzelm@25366
   373
    val ctxt = ProofContext.init thy;
wenzelm@25366
   374
    fun prep (c, T, mx) = (c, certify_typ_mode Type.mode_syntax thy (parse_typ ctxt T), mx)
wenzelm@35129
   375
      handle ERROR msg => cat_error msg ("in syntax declaration " ^ quote c);
wenzelm@20784
   376
  in thy |> map_syn (change_gram (is_logtype thy) mode (map prep args)) end;
wenzelm@386
   377
wenzelm@35417
   378
fun gen_add_syntax x = gen_syntax (Syntax.update_const_gram true) x;
wenzelm@8898
   379
wenzelm@24707
   380
val add_modesyntax = gen_add_syntax Syntax.parse_typ;
wenzelm@24273
   381
val add_modesyntax_i = gen_add_syntax (K I);
wenzelm@24959
   382
val add_syntax = add_modesyntax Syntax.mode_default;
wenzelm@24959
   383
val add_syntax_i = add_modesyntax_i Syntax.mode_default;
wenzelm@35417
   384
val del_modesyntax = gen_syntax (Syntax.update_const_gram false) Syntax.parse_typ;
wenzelm@35417
   385
val del_modesyntax_i = gen_syntax (Syntax.update_const_gram false) (K I);
wenzelm@35417
   386
wenzelm@35417
   387
fun type_notation add mode args =
wenzelm@35417
   388
  let
wenzelm@35539
   389
    fun type_syntax (Type (c, args), mx) =
wenzelm@35539
   390
          SOME (Syntax.mark_type c, Syntax.make_type (length args), mx)
wenzelm@35417
   391
      | type_syntax _ = NONE;
wenzelm@35417
   392
  in map_syn (Syntax.update_type_gram add mode (map_filter type_syntax args)) end;
wenzelm@386
   393
wenzelm@25383
   394
fun notation add mode args thy =
wenzelm@25383
   395
  let
wenzelm@35255
   396
    fun const_syntax (Const (c, _), mx) =
wenzelm@35255
   397
          (case try (Consts.type_scheme (consts_of thy)) c of
wenzelm@35262
   398
            SOME T => SOME (Syntax.mark_const c, T, mx)
wenzelm@35255
   399
          | NONE => NONE)
wenzelm@25383
   400
      | const_syntax _ = NONE;
wenzelm@35417
   401
  in gen_syntax (Syntax.update_const_gram add) (K I) mode (map_filter const_syntax args) thy end;
wenzelm@19658
   402
wenzelm@386
   403
wenzelm@16337
   404
(* add constants *)
wenzelm@386
   405
wenzelm@17995
   406
local
wenzelm@17995
   407
wenzelm@35255
   408
fun gen_add_consts parse_typ raw_args thy =
wenzelm@386
   409
  let
wenzelm@25366
   410
    val ctxt = ProofContext.init thy;
wenzelm@25366
   411
    val prepT = Type.no_tvars o Term.no_dummyT o certify_typ thy o parse_typ ctxt;
wenzelm@35129
   412
    fun prep (b, raw_T, mx) =
wenzelm@19658
   413
      let
haftmann@28965
   414
        val c = full_name thy b;
wenzelm@19658
   415
        val T = (prepT raw_T handle TYPE (msg, _, _) => error msg) handle ERROR msg =>
wenzelm@30222
   416
          cat_error msg ("in declaration of constant " ^ quote (Binding.str_of b));
wenzelm@35845
   417
        val T' = Logic.varifyT_global T;
wenzelm@35262
   418
      in ((b, T'), (Syntax.mark_const c, T', mx), Const (c, T)) end;
wenzelm@16337
   419
    val args = map prep raw_args;
wenzelm@16442
   420
  in
wenzelm@16442
   421
    thy
wenzelm@35255
   422
    |> map_consts (fold (Consts.declare (naming_of thy) o #1) args)
wenzelm@19658
   423
    |> add_syntax_i (map #2 args)
wenzelm@24959
   424
    |> pair (map #3 args)
wenzelm@16442
   425
  end;
wenzelm@386
   426
wenzelm@17995
   427
in
wenzelm@17995
   428
wenzelm@35255
   429
fun add_consts args = snd o gen_add_consts Syntax.parse_typ args;
wenzelm@35255
   430
fun add_consts_i args = snd o gen_add_consts (K I) args;
wenzelm@24959
   431
wenzelm@33173
   432
fun declare_const ((b, T), mx) thy =
wenzelm@28111
   433
  let
haftmann@28939
   434
    val pos = Binding.pos_of b;
wenzelm@35255
   435
    val ([const as Const (c, _)], thy') = gen_add_consts (K I) [(b, T, mx)] thy;
haftmann@28861
   436
    val _ = Position.report (Markup.const_decl c) pos;
wenzelm@28111
   437
  in (const, thy') end;
wenzelm@386
   438
wenzelm@17995
   439
end;
wenzelm@17995
   440
wenzelm@386
   441
wenzelm@25049
   442
(* abbreviations *)
wenzelm@18941
   443
wenzelm@33173
   444
fun add_abbrev mode (b, raw_t) thy =
wenzelm@18941
   445
  let
wenzelm@26939
   446
    val pp = Syntax.pp_global thy;
wenzelm@26631
   447
    val prep_tm = no_frees pp o Term.no_dummy_patterns o cert_term_abbrev thy;
wenzelm@19806
   448
    val t = (prep_tm raw_t handle TYPE (msg, _, _) => error msg | TERM (msg, _) => error msg)
wenzelm@30222
   449
      handle ERROR msg => cat_error msg ("in constant abbreviation " ^ quote (Binding.str_of b));
wenzelm@21696
   450
    val (res, consts') = consts_of thy
wenzelm@33173
   451
      |> Consts.abbreviate pp (tsig_of thy) (naming_of thy) mode (b, t);
wenzelm@25049
   452
  in (res, thy |> map_consts (K consts')) end;
wenzelm@25049
   453
wenzelm@25049
   454
fun revert_abbrev mode c = map_consts (Consts.revert_abbrev mode c);
wenzelm@18941
   455
wenzelm@18941
   456
wenzelm@16941
   457
(* add constraints *)
wenzelm@16941
   458
wenzelm@24761
   459
fun add_const_constraint (c, opt_T) thy =
wenzelm@16941
   460
  let
wenzelm@19099
   461
    fun prepT raw_T =
wenzelm@35845
   462
      let val T = Logic.varifyT_global (Type.no_tvars (Term.no_dummyT (certify_typ thy raw_T)))
wenzelm@19099
   463
      in cert_term thy (Const (c, T)); T end
wenzelm@16941
   464
      handle TYPE (msg, _, _) => error msg;
wenzelm@19099
   465
  in thy |> map_consts (Consts.constrain (c, Option.map prepT opt_T)) end;
wenzelm@16941
   466
wenzelm@16941
   467
wenzelm@19513
   468
(* primitive classes and arities *)
wenzelm@386
   469
wenzelm@19513
   470
fun primitive_class (bclass, classes) thy =
wenzelm@16442
   471
  thy |> map_sign (fn (naming, syn, tsig, consts) =>
wenzelm@16337
   472
    let
wenzelm@26939
   473
      val tsig' = Type.add_class (Syntax.pp_global thy) naming (bclass, classes) tsig;
wenzelm@35539
   474
    in (naming, syn, tsig', consts) end)
wenzelm@30349
   475
  |> add_consts_i [(Binding.map_name Logic.const_of_class bclass, Term.a_itselfT --> propT, NoSyn)];
wenzelm@386
   476
wenzelm@26939
   477
fun primitive_classrel arg thy = thy |> map_tsig (Type.add_classrel (Syntax.pp_global thy) arg);
wenzelm@26939
   478
fun primitive_arity arg thy = thy |> map_tsig (Type.add_arity (Syntax.pp_global thy) arg);
wenzelm@421
   479
wenzelm@421
   480
wenzelm@14645
   481
(* add translation functions *)
wenzelm@14645
   482
wenzelm@15746
   483
local
wenzelm@15746
   484
wenzelm@15746
   485
fun mk trs = map Syntax.mk_trfun trs;
wenzelm@15746
   486
wenzelm@16597
   487
fun gen_add_trfuns ext non_typed (atrs, trs, tr's, atr's) =
wenzelm@16597
   488
  map_syn (ext (mk atrs, mk trs, mk (map (apsnd non_typed) tr's), mk atr's));
wenzelm@14645
   489
wenzelm@16597
   490
fun gen_add_trfunsT ext tr's = map_syn (ext ([], [], mk tr's, []));
wenzelm@14645
   491
wenzelm@15746
   492
in
wenzelm@15746
   493
wenzelm@25390
   494
val add_trfuns = gen_add_trfuns Syntax.update_trfuns Syntax.non_typed_tr';
wenzelm@25390
   495
val add_trfunsT = gen_add_trfunsT Syntax.update_trfuns;
wenzelm@25390
   496
val add_advanced_trfuns = gen_add_trfuns Syntax.update_advanced_trfuns Syntax.non_typed_tr'';
wenzelm@25390
   497
val add_advanced_trfunsT = gen_add_trfunsT Syntax.update_advanced_trfuns;
wenzelm@14645
   498
wenzelm@15746
   499
end;
wenzelm@15746
   500
wenzelm@16597
   501
val add_tokentrfuns = map_syn o Syntax.extend_tokentrfuns;
wenzelm@16442
   502
fun add_mode_tokentrfuns m = add_tokentrfuns o map (fn (s, f) => (m, s, f));
wenzelm@14645
   503
wenzelm@14645
   504
wenzelm@19258
   505
(* translation rules *)
wenzelm@4619
   506
wenzelm@19258
   507
fun gen_trrules f args thy = thy |> map_syn (fn syn =>
wenzelm@16442
   508
  let val rules = map (Syntax.map_trrule (apfst (intern_type thy))) args
wenzelm@21772
   509
  in f (ProofContext.init thy) (is_logtype thy) syn rules syn end);
wenzelm@4619
   510
wenzelm@25390
   511
val add_trrules = gen_trrules Syntax.update_trrules;
wenzelm@19258
   512
val del_trrules = gen_trrules Syntax.remove_trrules;
wenzelm@25390
   513
val add_trrules_i = map_syn o Syntax.update_trrules_i;
wenzelm@19258
   514
val del_trrules_i = map_syn o Syntax.remove_trrules_i;
wenzelm@3791
   515
wenzelm@3791
   516
wenzelm@26667
   517
(* naming *)
wenzelm@3791
   518
wenzelm@33734
   519
val new_group = map_naming Name_Space.new_group;
wenzelm@33734
   520
val reset_group = map_naming Name_Space.reset_group;
wenzelm@33734
   521
wenzelm@33100
   522
val add_path = map_naming o Name_Space.add_path;
wenzelm@33100
   523
val root_path = map_naming Name_Space.root_path;
wenzelm@33100
   524
val parent_path = map_naming Name_Space.parent_path;
wenzelm@33100
   525
val mandatory_path = map_naming o Name_Space.mandatory_path;
wenzelm@35211
   526
val qualified_path = map_naming oo Name_Space.qualified_path;
wenzelm@3791
   527
wenzelm@16442
   528
fun local_path thy = thy |> root_path |> add_path (Context.theory_name thy);
wenzelm@16442
   529
wenzelm@30522
   530
val restore_naming = map_naming o K o naming_of;
wenzelm@30422
   531
wenzelm@3791
   532
wenzelm@16337
   533
(* hide names *)
wenzelm@3791
   534
wenzelm@26667
   535
val hide_class = map_tsig oo Type.hide_class;
wenzelm@26667
   536
val hide_type = map_tsig oo Type.hide_type;
wenzelm@26667
   537
val hide_const = map_consts oo Consts.hide;
wenzelm@17343
   538
clasohm@0
   539
end;