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