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