src/Pure/Isar/theory_target.ML
author ballarin
Tue, 30 Dec 2008 11:10:01 +0100
changeset 29252 ea97aa6aeba2
parent 29249 4dc278c8dc59
parent 29102 2e1011dcd577
child 29358 efdfe5dfe008
permissions -rw-r--r--
Merged.
wenzelm@20894
     1
(*  Title:      Pure/Isar/theory_target.ML
wenzelm@20894
     2
    Author:     Makarius
wenzelm@20894
     3
haftmann@25542
     4
Common theory/locale/class/instantiation/overloading targets.
wenzelm@20894
     5
*)
wenzelm@20894
     6
wenzelm@20894
     7
signature THEORY_TARGET =
wenzelm@20894
     8
sig
ballarin@29228
     9
  val peek: local_theory -> {target: string, new_locale: bool, is_locale: bool,
haftmann@25864
    10
    is_class: bool, instantiation: string list * (string * sort) list * sort,
haftmann@25864
    11
    overloading: (string * (string * typ) * bool) list}
haftmann@25269
    12
  val init: string option -> theory -> local_theory
wenzelm@24935
    13
  val begin: string -> Proof.context -> local_theory
wenzelm@25291
    14
  val context: xstring -> theory -> local_theory
haftmann@25864
    15
  val instantiation: string list * (string * sort) list * sort -> theory -> local_theory
haftmann@25864
    16
  val overloading: (string * (string * typ) * bool) list -> theory -> local_theory
wenzelm@26049
    17
  val overloading_cmd: (string * string * bool) list -> theory -> local_theory
wenzelm@20894
    18
end;
wenzelm@20894
    19
wenzelm@20894
    20
structure TheoryTarget: THEORY_TARGET =
wenzelm@20894
    21
struct
wenzelm@20894
    22
ballarin@28834
    23
(* new locales *)
ballarin@28834
    24
ballarin@29228
    25
fun locale_extern new_locale x = 
ballarin@29249
    26
  if new_locale then NewLocale.extern x else Locale.extern x;
ballarin@29228
    27
fun locale_add_type_syntax new_locale x =
ballarin@29249
    28
  if new_locale then NewLocale.add_type_syntax x else Locale.add_type_syntax x;
ballarin@29228
    29
fun locale_add_term_syntax new_locale x =
ballarin@29249
    30
  if new_locale then NewLocale.add_term_syntax x else Locale.add_term_syntax x;
ballarin@29228
    31
fun locale_add_declaration new_locale x =
ballarin@29249
    32
  if new_locale then NewLocale.add_declaration x else Locale.add_declaration x;
ballarin@29228
    33
fun locale_add_thmss new_locale x =
ballarin@29249
    34
  if new_locale then NewLocale.add_thmss x else Locale.add_thmss x;
ballarin@29228
    35
fun locale_init new_locale x =
ballarin@29249
    36
  if new_locale then NewLocale.init x else Locale.init x;
ballarin@29228
    37
fun locale_intern new_locale x =
ballarin@29249
    38
  if new_locale then NewLocale.intern x else Locale.intern x;
ballarin@28834
    39
wenzelm@21006
    40
(* context data *)
wenzelm@21006
    41
ballarin@29228
    42
datatype target = Target of {target: string, new_locale: bool, is_locale: bool,
haftmann@25864
    43
  is_class: bool, instantiation: string list * (string * sort) list * sort,
haftmann@25864
    44
  overloading: (string * (string * typ) * bool) list};
wenzelm@25012
    45
ballarin@29228
    46
fun make_target target new_locale is_locale is_class instantiation overloading =
ballarin@29228
    47
  Target {target = target, new_locale = new_locale, is_locale = is_locale,
haftmann@25519
    48
    is_class = is_class, instantiation = instantiation, overloading = overloading};
wenzelm@25291
    49
ballarin@29228
    50
val global_target = make_target "" false false false ([], [], []) [];
wenzelm@25012
    51
wenzelm@21006
    52
structure Data = ProofDataFun
wenzelm@21006
    53
(
wenzelm@25012
    54
  type T = target;
wenzelm@25291
    55
  fun init _ = global_target;
wenzelm@21006
    56
);
wenzelm@21006
    57
wenzelm@25012
    58
val peek = (fn Target args => args) o Data.get;
wenzelm@21006
    59
wenzelm@21006
    60
wenzelm@20894
    61
(* pretty *)
wenzelm@20894
    62
haftmann@25607
    63
fun pretty_thy ctxt target is_locale is_class =
wenzelm@20894
    64
  let
wenzelm@20894
    65
    val thy = ProofContext.theory_of ctxt;
ballarin@29223
    66
    val target_name = (if is_class then "class " else "locale ") ^ locale_extern is_class thy target;
haftmann@28965
    67
    val fixes = map (fn (x, T) => (Binding.name x, SOME T, NoSyn))
wenzelm@28094
    68
      (#1 (ProofContext.inferred_fixes ctxt));
haftmann@28965
    69
    val assumes = map (fn A => (Attrib.empty_binding, [(Thm.term_of A, [])]))
wenzelm@28094
    70
      (Assumption.assms_of ctxt);
wenzelm@20894
    71
    val elems =
wenzelm@20894
    72
      (if null fixes then [] else [Element.Fixes fixes]) @
wenzelm@20894
    73
      (if null assumes then [] else [Element.Assumes assumes]);
wenzelm@26049
    74
  in
wenzelm@26049
    75
    if target = "" then []
haftmann@25607
    76
    else if null elems then [Pretty.str target_name]
haftmann@25607
    77
    else [Pretty.big_list (target_name ^ " =")
haftmann@25607
    78
      (map (Pretty.chunks o Element.pretty_ctxt ctxt) elems)]
wenzelm@20894
    79
  end;
wenzelm@20894
    80
ballarin@29228
    81
fun pretty (Target {target, is_locale, is_class, instantiation, overloading, ...}) ctxt =
haftmann@25607
    82
  Pretty.block [Pretty.str "theory", Pretty.brk 1,
haftmann@25607
    83
      Pretty.str (Context.theory_name (ProofContext.theory_of ctxt))] ::
haftmann@25607
    84
    (if not (null overloading) then [Overloading.pretty ctxt]
wenzelm@26049
    85
     else if not (null (#1 instantiation)) then [Class.pretty_instantiation ctxt]
wenzelm@26049
    86
     else pretty_thy ctxt target is_locale is_class);
haftmann@25607
    87
wenzelm@20894
    88
haftmann@24838
    89
(* target declarations *)
haftmann@24838
    90
ballarin@29228
    91
fun target_decl add (Target {target, new_locale, ...}) d lthy =
haftmann@24838
    92
  let
wenzelm@24935
    93
    val d' = Morphism.transform (LocalTheory.target_morphism lthy) d;
haftmann@24838
    94
    val d0 = Morphism.form d';
haftmann@24838
    95
  in
wenzelm@25012
    96
    if target = "" then
haftmann@24838
    97
      lthy
haftmann@24838
    98
      |> LocalTheory.theory (Context.theory_map d0)
haftmann@24838
    99
      |> LocalTheory.target (Context.proof_map d0)
haftmann@24838
   100
    else
haftmann@24838
   101
      lthy
ballarin@29228
   102
      |> LocalTheory.target (add new_locale target d')
haftmann@24838
   103
  end;
haftmann@24838
   104
ballarin@28834
   105
val type_syntax = target_decl locale_add_type_syntax;
ballarin@28834
   106
val term_syntax = target_decl locale_add_term_syntax;
ballarin@28834
   107
val declaration = target_decl locale_add_declaration;
haftmann@24838
   108
wenzelm@25105
   109
fun class_target (Target {target, ...}) f =
wenzelm@25105
   110
  LocalTheory.raw_theory f #>
wenzelm@25105
   111
  LocalTheory.target (Class.refresh_syntax target);
haftmann@24838
   112
wenzelm@21611
   113
wenzelm@20894
   114
(* notes *)
wenzelm@20894
   115
wenzelm@21611
   116
fun import_export_proof ctxt (name, raw_th) =
wenzelm@21594
   117
  let
wenzelm@21611
   118
    val thy = ProofContext.theory_of ctxt;
wenzelm@21611
   119
    val thy_ctxt = ProofContext.init thy;
wenzelm@21611
   120
    val certT = Thm.ctyp_of thy;
wenzelm@21611
   121
    val cert = Thm.cterm_of thy;
wenzelm@21585
   122
wenzelm@21611
   123
    (*export assumes/defines*)
wenzelm@21611
   124
    val th = Goal.norm_result raw_th;
wenzelm@21611
   125
    val (defs, th') = LocalDefs.export ctxt thy_ctxt th;
wenzelm@21708
   126
    val concl_conv = MetaSimplifier.rewrite true defs (Thm.cprop_of th);
wenzelm@21708
   127
    val assms = map (MetaSimplifier.rewrite_rule defs o Thm.assume) (Assumption.assms_of ctxt);
wenzelm@21611
   128
    val nprems = Thm.nprems_of th' - Thm.nprems_of th;
wenzelm@21585
   129
wenzelm@21611
   130
    (*export fixes*)
wenzelm@22692
   131
    val tfrees = map TFree (Thm.fold_terms Term.add_tfrees th' []);
wenzelm@22692
   132
    val frees = map Free (Thm.fold_terms Term.add_frees th' []);
wenzelm@21611
   133
    val (th'' :: vs) = (th' :: map (Drule.mk_term o cert) (map Logic.mk_type tfrees @ frees))
wenzelm@21611
   134
      |> Variable.export ctxt thy_ctxt
wenzelm@21611
   135
      |> Drule.zero_var_indexes_list;
wenzelm@21611
   136
wenzelm@21611
   137
    (*thm definition*)
wenzelm@28083
   138
    val result = PureThy.name_thm true true Position.none name th'';
wenzelm@21611
   139
wenzelm@21611
   140
    (*import fixes*)
wenzelm@21611
   141
    val (tvars, vars) =
wenzelm@21611
   142
      chop (length tfrees) (map (Thm.term_of o Drule.dest_term) vs)
wenzelm@21611
   143
      |>> map Logic.dest_type;
wenzelm@21611
   144
wenzelm@21611
   145
    val instT = map_filter (fn (TVar v, T) => SOME (v, T) | _ => NONE) (tvars ~~ tfrees);
wenzelm@21611
   146
    val inst = filter (is_Var o fst) (vars ~~ frees);
wenzelm@21611
   147
    val cinstT = map (pairself certT o apfst TVar) instT;
wenzelm@21611
   148
    val cinst = map (pairself (cert o Term.map_types (TermSubst.instantiateT instT))) inst;
wenzelm@21611
   149
    val result' = Thm.instantiate (cinstT, cinst) result;
wenzelm@21611
   150
wenzelm@21611
   151
    (*import assumes/defines*)
wenzelm@21594
   152
    val assm_tac = FIRST' (map (fn assm => Tactic.compose_tac (false, assm, 0)) assms);
wenzelm@21611
   153
    val result'' =
wenzelm@21611
   154
      (case SINGLE (Seq.INTERVAL assm_tac 1 nprems) result' of
wenzelm@21611
   155
        NONE => raise THM ("Failed to re-import result", 0, [result'])
wenzelm@21845
   156
      | SOME res => LocalDefs.trans_props ctxt [res, Thm.symmetric concl_conv])
wenzelm@21644
   157
      |> Goal.norm_result
wenzelm@28083
   158
      |> PureThy.name_thm false false Position.none name;
wenzelm@21611
   159
wenzelm@21611
   160
  in (result'', result) end;
wenzelm@21611
   161
haftmann@25684
   162
fun note_local kind facts ctxt =
haftmann@25684
   163
  ctxt
haftmann@25684
   164
  |> ProofContext.qualified_names
haftmann@25684
   165
  |> ProofContext.note_thmss_i kind facts
haftmann@25684
   166
  ||> ProofContext.restore_naming ctxt;
haftmann@25684
   167
ballarin@29228
   168
fun notes (Target {target, is_locale, new_locale, ...}) kind facts lthy =
wenzelm@21585
   169
  let
wenzelm@21594
   170
    val thy = ProofContext.theory_of lthy;
wenzelm@21594
   171
    val facts' = facts
haftmann@28991
   172
      |> map (fn (a, bs) => (a, PureThy.burrow_fact (PureThy.name_multi
haftmann@28991
   173
          (LocalTheory.full_name lthy (fst a))) bs))
wenzelm@21615
   174
      |> PureThy.map_facts (import_export_proof lthy);
wenzelm@21611
   175
    val local_facts = PureThy.map_facts #1 facts'
wenzelm@21611
   176
      |> Attrib.map_facts (Attrib.attribute_i thy);
wenzelm@21611
   177
    val target_facts = PureThy.map_facts #1 facts'
wenzelm@25012
   178
      |> is_locale ? Element.facts_map (Element.morph_ctxt (LocalTheory.target_morphism lthy));
wenzelm@21611
   179
    val global_facts = PureThy.map_facts #2 facts'
wenzelm@25012
   180
      |> Attrib.map_facts (if is_locale then K I else Attrib.attribute_i thy);
wenzelm@21594
   181
  in
wenzelm@21611
   182
    lthy |> LocalTheory.theory
wenzelm@21611
   183
      (Sign.qualified_names
wenzelm@26132
   184
        #> PureThy.note_thmss_grouped kind (LocalTheory.group_of lthy) global_facts #> snd
wenzelm@21611
   185
        #> Sign.restore_naming thy)
haftmann@25684
   186
    |> not is_locale ? LocalTheory.target (note_local kind global_facts #> snd)
ballarin@29228
   187
    |> is_locale ? LocalTheory.target (locale_add_thmss new_locale target kind target_facts)
haftmann@25684
   188
    |> note_local kind local_facts
wenzelm@20894
   189
  end;
wenzelm@20894
   190
wenzelm@20894
   191
wenzelm@25105
   192
(* declare_const *)
wenzelm@24939
   193
wenzelm@25105
   194
fun fork_mixfix (Target {is_locale, is_class, ...}) mx =
wenzelm@25105
   195
  if not is_locale then (NoSyn, NoSyn, mx)
wenzelm@25105
   196
  else if not is_class then (NoSyn, mx, NoSyn)
wenzelm@25105
   197
  else (mx, NoSyn, NoSyn);
wenzelm@25068
   198
haftmann@28861
   199
fun locale_const (Target {target, is_class, ...}) (prmode as (mode, _)) tags ((b, mx), rhs) phi =
wenzelm@24939
   200
  let
haftmann@28965
   201
    val b' = Morphism.binding phi b;
wenzelm@24939
   202
    val rhs' = Morphism.term phi rhs;
haftmann@28861
   203
    val legacy_arg = (b', Term.close_schematic_term (Logic.legacy_varify rhs'));
haftmann@28861
   204
    val arg = (b', Term.close_schematic_term rhs');
wenzelm@25372
   205
    val similar_body = Type.similar_types (rhs, rhs');
wenzelm@25212
   206
    (* FIXME workaround based on educated guess *)
haftmann@28965
   207
    val (prefix', _) = Binding.dest b';
haftmann@28999
   208
    val class_global = Binding.base_name b = Binding.base_name b'
haftmann@28861
   209
      andalso not (null prefix')
haftmann@28861
   210
      andalso (fst o snd o split_last) prefix' = Class.class_prefix target;
wenzelm@24939
   211
  in
wenzelm@25372
   212
    not (is_class andalso (similar_body orelse class_global)) ?
wenzelm@25212
   213
      (Context.mapping_result
haftmann@28822
   214
        (fn thy => thy |> 
haftmann@28822
   215
          Sign.no_base_names
haftmann@28822
   216
          |> Sign.add_abbrev PrintMode.internal tags legacy_arg
haftmann@28822
   217
          ||> Sign.restore_naming thy)
wenzelm@26132
   218
        (ProofContext.add_abbrev PrintMode.internal tags arg)
wenzelm@25212
   219
      #-> (fn (lhs' as Const (d, _), _) =>
wenzelm@25372
   220
          similar_body ?
wenzelm@25212
   221
            (Context.mapping (Sign.revert_abbrev mode d) (ProofContext.revert_abbrev mode d) #>
wenzelm@25212
   222
             Morphism.form (ProofContext.target_notation true prmode [(lhs', mx)]))))
wenzelm@24939
   223
  end;
wenzelm@24939
   224
wenzelm@28083
   225
fun declare_const (ta as Target {target, is_locale, is_class, ...}) depends ((b, T), mx) lthy =
wenzelm@24939
   226
  let
haftmann@28999
   227
    val c = Binding.base_name b;
wenzelm@26132
   228
    val tags = LocalTheory.group_position_of lthy;
wenzelm@24939
   229
    val xs = filter depends (#1 (ProofContext.inferred_fixes (LocalTheory.target_of lthy)));
wenzelm@25105
   230
    val U = map #2 xs ---> T;
wenzelm@25105
   231
    val (mx1, mx2, mx3) = fork_mixfix ta mx;
haftmann@25519
   232
    fun syntax_error c = error ("Illegal mixfix syntax for overloaded constant " ^ quote c);
wenzelm@26049
   233
    val declare_const =
wenzelm@26049
   234
      (case Class.instantiation_param lthy c of
wenzelm@26049
   235
        SOME c' =>
wenzelm@26049
   236
          if mx3 <> NoSyn then syntax_error c'
haftmann@25597
   237
          else LocalTheory.theory_result (AxClass.declare_overloaded (c', U))
haftmann@25485
   238
            ##> Class.confirm_declaration c
wenzelm@26049
   239
        | NONE =>
wenzelm@26049
   240
            (case Overloading.operation lthy c of
wenzelm@26049
   241
              SOME (c', _) =>
wenzelm@26049
   242
                if mx3 <> NoSyn then syntax_error c'
wenzelm@26049
   243
                else LocalTheory.theory_result (Overloading.declare (c', U))
wenzelm@26049
   244
                  ##> Overloading.confirm c
wenzelm@28115
   245
            | NONE => LocalTheory.theory_result (Sign.declare_const tags ((b, U), mx3))));
haftmann@25485
   246
    val (const, lthy') = lthy |> declare_const;
wenzelm@25105
   247
    val t = Term.list_comb (const, map Free xs);
wenzelm@24939
   248
  in
wenzelm@24939
   249
    lthy'
wenzelm@28083
   250
    |> is_locale ? term_syntax ta (locale_const ta Syntax.mode_default tags ((b, mx2), t))
wenzelm@26132
   251
    |> is_class ? class_target ta (Class.declare target tags ((c, mx1), t))
wenzelm@28083
   252
    |> LocalDefs.add_def ((b, NoSyn), t)
wenzelm@24939
   253
  end;
wenzelm@24939
   254
wenzelm@24939
   255
wenzelm@24939
   256
(* abbrev *)
wenzelm@24939
   257
wenzelm@28083
   258
fun abbrev (ta as Target {target, is_locale, is_class, ...}) prmode ((b, mx), t) lthy =
wenzelm@24939
   259
  let
haftmann@28999
   260
    val c = Binding.base_name b;
wenzelm@26132
   261
    val tags = LocalTheory.group_position_of lthy;
wenzelm@25053
   262
    val thy_ctxt = ProofContext.init (ProofContext.theory_of lthy);
wenzelm@25012
   263
    val target_ctxt = LocalTheory.target_of lthy;
wenzelm@25053
   264
wenzelm@25105
   265
    val (mx1, mx2, mx3) = fork_mixfix ta mx;
wenzelm@25105
   266
    val t' = Assumption.export_term lthy target_ctxt t;
wenzelm@25105
   267
    val xs = map Free (rev (Variable.add_fixed target_ctxt t' []));
wenzelm@25105
   268
    val u = fold_rev lambda xs t';
wenzelm@25105
   269
    val global_rhs =
wenzelm@25105
   270
      singleton (Variable.export_terms (Variable.declare_term u target_ctxt) thy_ctxt) u;
wenzelm@25121
   271
  in
wenzelm@25121
   272
    lthy |>
wenzelm@25121
   273
     (if is_locale then
haftmann@28861
   274
        LocalTheory.theory_result (Sign.add_abbrev PrintMode.internal tags (b, global_rhs))
wenzelm@25121
   275
        #-> (fn (lhs, _) =>
wenzelm@25105
   276
          let val lhs' = Term.list_comb (Logic.unvarify lhs, xs) in
wenzelm@28083
   277
            term_syntax ta (locale_const ta prmode tags ((b, mx2), lhs')) #>
wenzelm@26132
   278
            is_class ? class_target ta (Class.abbrev target prmode tags ((c, mx1), t'))
wenzelm@25105
   279
          end)
wenzelm@25105
   280
      else
wenzelm@25121
   281
        LocalTheory.theory
haftmann@28861
   282
          (Sign.add_abbrev (#1 prmode) tags (b, global_rhs) #-> (fn (lhs, _) =>
wenzelm@25121
   283
           Sign.notation true prmode [(lhs, mx3)])))
haftmann@28861
   284
    |> ProofContext.add_abbrev PrintMode.internal tags (b, t) |> snd
wenzelm@28083
   285
    |> LocalDefs.fixed_abbrev ((b, NoSyn), t)
wenzelm@25053
   286
  end;
haftmann@25040
   287
wenzelm@24939
   288
wenzelm@25022
   289
(* define *)
wenzelm@24939
   290
haftmann@25485
   291
fun define (ta as Target {target, is_locale, is_class, ...})
wenzelm@28083
   292
    kind ((b, mx), ((name, atts), rhs)) lthy =
wenzelm@24987
   293
  let
wenzelm@24987
   294
    val thy = ProofContext.theory_of lthy;
wenzelm@24987
   295
    val thy_ctxt = ProofContext.init thy;
wenzelm@24939
   296
haftmann@28999
   297
    val c = Binding.base_name b;
haftmann@28965
   298
    val name' = Binding.map_base (Thm.def_name_optional c) name;
wenzelm@24987
   299
    val (rhs', rhs_conv) =
wenzelm@24987
   300
      LocalDefs.export_cterm lthy thy_ctxt (Thm.cterm_of thy rhs) |>> Thm.term_of;
wenzelm@24987
   301
    val xs = Variable.add_fixed (LocalTheory.target_of lthy) rhs' [];
wenzelm@24939
   302
    val T = Term.fastype_of rhs;
wenzelm@24939
   303
wenzelm@25105
   304
    (*const*)
wenzelm@28083
   305
    val ((lhs, local_def), lthy2) = lthy |> declare_const ta (member (op =) xs) ((b, T), mx);
wenzelm@25022
   306
    val (_, lhs') = Logic.dest_equals (Thm.prop_of local_def);
wenzelm@24939
   307
wenzelm@24939
   308
    (*def*)
wenzelm@26049
   309
    val define_const =
wenzelm@26049
   310
      (case Overloading.operation lthy c of
wenzelm@26049
   311
        SOME (_, checked) =>
haftmann@25519
   312
          (fn name => fn (Const (c, _), rhs) => Overloading.define checked name (c, rhs))
wenzelm@26049
   313
      | NONE =>
wenzelm@26049
   314
          if is_none (Class.instantiation_param lthy c)
haftmann@25519
   315
          then (fn name => fn eq => Thm.add_def false false (name, Logic.mk_equals eq))
wenzelm@26049
   316
          else (fn name => fn (Const (c, _), rhs) => AxClass.define_overloaded name (c, rhs)));
wenzelm@25022
   317
    val (global_def, lthy3) = lthy2
haftmann@28999
   318
      |> LocalTheory.theory_result (define_const (Binding.base_name name') (lhs', rhs'));
haftmann@25485
   319
    val def = LocalDefs.trans_terms lthy3
wenzelm@25022
   320
      [(*c == global.c xs*)     local_def,
wenzelm@25022
   321
       (*global.c xs == rhs'*)  global_def,
haftmann@25485
   322
       (*rhs' == rhs*)          Thm.symmetric rhs_conv];
wenzelm@24939
   323
wenzelm@25105
   324
    (*note*)
wenzelm@24939
   325
    val ([(res_name, [res])], lthy4) = lthy3
wenzelm@26132
   326
      |> notes ta kind [((name', atts), [([def], [])])];
wenzelm@24939
   327
  in ((lhs, (res_name, res)), lthy4) end;
wenzelm@24939
   328
wenzelm@24939
   329
wenzelm@25291
   330
(* init *)
wenzelm@20894
   331
wenzelm@25291
   332
local
haftmann@25269
   333
wenzelm@25291
   334
fun init_target _ NONE = global_target
wenzelm@26049
   335
  | init_target thy (SOME target) =
ballarin@29228
   336
      make_target target (NewLocale.test_locale thy (NewLocale.intern thy target))
ballarin@29228
   337
      true (Class.is_class thy target) ([], [], []) [];
haftmann@25519
   338
ballarin@29228
   339
fun init_ctxt (Target {target, new_locale, is_locale, is_class, instantiation, overloading}) =
wenzelm@26049
   340
  if not (null (#1 instantiation)) then Class.init_instantiation instantiation
haftmann@25519
   341
  else if not (null overloading) then Overloading.init overloading
haftmann@25485
   342
  else if not is_locale then ProofContext.init
ballarin@29228
   343
  else if not is_class then locale_init new_locale target
haftmann@25485
   344
  else Class.init target;
haftmann@25462
   345
haftmann@25542
   346
fun init_lthy (ta as Target {target, instantiation, overloading, ...}) =
wenzelm@25291
   347
  Data.put ta #>
wenzelm@25291
   348
  LocalTheory.init (NameSpace.base target)
wenzelm@25291
   349
   {pretty = pretty ta,
wenzelm@25291
   350
    abbrev = abbrev ta,
wenzelm@25291
   351
    define = define ta,
wenzelm@25291
   352
    notes = notes ta,
wenzelm@25291
   353
    type_syntax = type_syntax ta,
wenzelm@25291
   354
    term_syntax = term_syntax ta,
wenzelm@25291
   355
    declaration = declaration ta,
wenzelm@25291
   356
    reinit = fn lthy => init_lthy_ctxt ta (ProofContext.theory_of lthy),
wenzelm@26049
   357
    exit = LocalTheory.target_of o
wenzelm@26049
   358
      (if not (null (#1 instantiation)) then Class.conclude_instantiation
wenzelm@26049
   359
       else if not (null overloading) then Overloading.conclude
wenzelm@26049
   360
       else I)}
wenzelm@25291
   361
and init_lthy_ctxt ta = init_lthy ta o init_ctxt ta;
haftmann@25269
   362
wenzelm@26049
   363
fun gen_overloading prep_const raw_ops thy =
wenzelm@26049
   364
  let
wenzelm@26049
   365
    val ctxt = ProofContext.init thy;
wenzelm@26049
   366
    val ops = raw_ops |> map (fn (name, const, checked) =>
wenzelm@26049
   367
      (name, Term.dest_Const (prep_const ctxt const), checked));
ballarin@29228
   368
  in thy |> init_lthy_ctxt (make_target "" false false false ([], [], []) ops) end;
wenzelm@26049
   369
wenzelm@25291
   370
in
wenzelm@25291
   371
wenzelm@25291
   372
fun init target thy = init_lthy_ctxt (init_target thy target) thy;
wenzelm@26049
   373
fun begin target ctxt = init_lthy (init_target (ProofContext.theory_of ctxt) (SOME target)) ctxt;
wenzelm@25291
   374
wenzelm@25291
   375
fun context "-" thy = init NONE thy
ballarin@29223
   376
  | context target thy = init (SOME (locale_intern
ballarin@29228
   377
      (NewLocale.test_locale thy (NewLocale.intern thy target)) thy target)) thy;
wenzelm@20894
   378
ballarin@29228
   379
fun instantiation arities = init_lthy_ctxt (make_target "" false false false arities []);
haftmann@25519
   380
wenzelm@26049
   381
val overloading = gen_overloading (fn ctxt => Syntax.check_term ctxt o Const);
wenzelm@26049
   382
val overloading_cmd = gen_overloading Syntax.read_term;
haftmann@25462
   383
wenzelm@20894
   384
end;
wenzelm@25291
   385
wenzelm@25291
   386
end;
wenzelm@25291
   387