src/Pure/Isar/theory_target.ML
author wenzelm
Sun, 14 Oct 2007 00:18:11 +0200
changeset 25028 e0f74efc210f
parent 25022 bb0dcb603a13
child 25040 4e54c5ae6852
permissions -rw-r--r--
tuned various Class interfaces; tuned;
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
    ID:         $Id$
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     3
    Author:     Makarius
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     4
24935
a033971c63a0 removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24914
diff changeset
     5
Common theory/locale/class targets.
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     6
*)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     7
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     8
signature THEORY_TARGET =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
     9
sig
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    10
  val peek: local_theory -> {target: string, is_locale: bool, is_class: bool}
24935
a033971c63a0 removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24914
diff changeset
    11
  val begin: string -> Proof.context -> local_theory
a033971c63a0 removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24914
diff changeset
    12
  val init: string option -> theory -> local_theory
a033971c63a0 removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24914
diff changeset
    13
  val init_cmd: xstring option -> theory -> local_theory
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    14
end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    15
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    16
structure TheoryTarget: THEORY_TARGET =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    17
struct
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    18
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    19
(* context data *)
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    20
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    21
datatype target = Target of {target: string, is_locale: bool, is_class: bool};
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    22
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    23
fun make_target target is_locale is_class =
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    24
  Target {target = target, is_locale = is_locale, is_class = is_class};
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    25
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    26
structure Data = ProofDataFun
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    27
(
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    28
  type T = target;
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    29
  fun init _ = make_target "" false false;
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    30
);
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    31
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    32
val peek = (fn Target args => args) o Data.get;
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    33
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    34
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    35
(* pretty *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    36
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    37
fun pretty (Target {target, is_locale, is_class}) ctxt =
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    38
  let
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    39
    val thy = ProofContext.theory_of ctxt;
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    40
    val target_name = (if is_class then "class " else "locale ") ^ Locale.extern thy target;
24939
wenzelm
parents: 24935
diff changeset
    41
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    42
    val fixes = map (fn (x, T) => (x, SOME T, NoSyn)) (#1 (ProofContext.inferred_fixes ctxt));
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
    43
    val assumes = map (fn A => (("", []), [(A, [])])) (map Thm.term_of (Assumption.assms_of ctxt));
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    44
    val elems =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    45
      (if null fixes then [] else [Element.Fixes fixes]) @
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    46
      (if null assumes then [] else [Element.Assumes assumes]);
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    47
  in
24939
wenzelm
parents: 24935
diff changeset
    48
    Pretty.block [Pretty.str "theory", Pretty.brk 1, Pretty.str (Context.theory_name thy)] ::
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    49
     (if target = "" then []
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    50
      else if null elems then [Pretty.str target_name]
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    51
      else [Pretty.big_list (target_name ^ " =")
24939
wenzelm
parents: 24935
diff changeset
    52
        (map (Pretty.chunks o Element.pretty_ctxt ctxt) elems)])
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    53
  end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    54
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    55
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    56
(* target declarations *)
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    57
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    58
fun target_decl add (Target {target, ...}) d lthy =
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    59
  let
24935
a033971c63a0 removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24914
diff changeset
    60
    val d' = Morphism.transform (LocalTheory.target_morphism lthy) d;
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    61
    val d0 = Morphism.form d';
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    62
  in
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    63
    if target = "" then
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    64
      lthy
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    65
      |> LocalTheory.theory (Context.theory_map d0)
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    66
      |> LocalTheory.target (Context.proof_map d0)
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    67
    else
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    68
      lthy
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    69
      |> LocalTheory.target (add target d')
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    70
  end;
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    71
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    72
val type_syntax = target_decl Locale.add_type_syntax;
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    73
val term_syntax = target_decl Locale.add_term_syntax;
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    74
val declaration = target_decl Locale.add_declaration;
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    75
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    76
fun target_naming (Target {target, ...}) lthy =
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
    77
  (if target = "" then Sign.naming_of (ProofContext.theory_of lthy)
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    78
   else ProofContext.naming_of (LocalTheory.target_of lthy))
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    79
  |> NameSpace.qualified_names;
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    80
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    81
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    82
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    83
(* notes *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    84
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    85
fun import_export_proof ctxt (name, raw_th) =
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
    86
  let
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    87
    val thy = ProofContext.theory_of ctxt;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    88
    val thy_ctxt = ProofContext.init thy;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    89
    val certT = Thm.ctyp_of thy;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    90
    val cert = Thm.cterm_of thy;
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
    91
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    92
    (*export assumes/defines*)
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    93
    val th = Goal.norm_result raw_th;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    94
    val (defs, th') = LocalDefs.export ctxt thy_ctxt th;
21708
45e7491bea47 reorganized structure Tactic vs. MetaSimplifier;
wenzelm
parents: 21691
diff changeset
    95
    val concl_conv = MetaSimplifier.rewrite true defs (Thm.cprop_of th);
45e7491bea47 reorganized structure Tactic vs. MetaSimplifier;
wenzelm
parents: 21691
diff changeset
    96
    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
    97
    val nprems = Thm.nprems_of th' - Thm.nprems_of th;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    98
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    99
    (*export fixes*)
22692
1e057a3f087d proper ProofContext.infer_types;
wenzelm
parents: 22673
diff changeset
   100
    val tfrees = map TFree (Thm.fold_terms Term.add_tfrees th' []);
1e057a3f087d proper ProofContext.infer_types;
wenzelm
parents: 22673
diff changeset
   101
    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
   102
    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
   103
      |> Variable.export ctxt thy_ctxt
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   104
      |> Drule.zero_var_indexes_list;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   105
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   106
    (*thm definition*)
21644
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   107
    val result = th''
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   108
      |> PureThy.name_thm true true ""
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   109
      |> Goal.close_result
24779
2949fb459c7b keep context position as tags for consts/thms;
wenzelm
parents: 24748
diff changeset
   110
      |> fold PureThy.tag_rule (ContextPosition.properties_of ctxt)
21644
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   111
      |> PureThy.name_thm true true name;
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   112
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   113
    (*import fixes*)
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   114
    val (tvars, vars) =
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   115
      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
   116
      |>> map Logic.dest_type;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   117
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   118
    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
   119
    val inst = filter (is_Var o fst) (vars ~~ frees);
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   120
    val cinstT = map (pairself certT o apfst TVar) instT;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   121
    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
   122
    val result' = Thm.instantiate (cinstT, cinst) result;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   123
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   124
    (*import assumes/defines*)
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   125
    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
   126
    val result'' =
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   127
      (case SINGLE (Seq.INTERVAL assm_tac 1 nprems) result' of
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   128
        NONE => raise THM ("Failed to re-import result", 0, [result'])
21845
da545169fe06 defs/notes: more robust transitivity reasoning;
wenzelm
parents: 21825
diff changeset
   129
      | SOME res => LocalDefs.trans_props ctxt [res, Thm.symmetric concl_conv])
21644
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   130
      |> Goal.norm_result
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   131
      |> PureThy.name_thm false false name;
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   132
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   133
  in (result'', result) end;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   134
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   135
fun notes (Target {target, is_locale, ...}) kind facts lthy =
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
   136
  let
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   137
    val thy = ProofContext.theory_of lthy;
21615
1bd558879c44 notes: proper naming of thm proof, activated import_export_proof;
wenzelm
parents: 21613
diff changeset
   138
    val full = LocalTheory.full_name lthy;
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
   139
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   140
    val facts' = facts
21615
1bd558879c44 notes: proper naming of thm proof, activated import_export_proof;
wenzelm
parents: 21613
diff changeset
   141
      |> map (fn (a, bs) => (a, PureThy.burrow_fact (PureThy.name_multi (full (fst a))) bs))
1bd558879c44 notes: proper naming of thm proof, activated import_export_proof;
wenzelm
parents: 21613
diff changeset
   142
      |> PureThy.map_facts (import_export_proof lthy);
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   143
    val local_facts = PureThy.map_facts #1 facts'
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   144
      |> Attrib.map_facts (Attrib.attribute_i thy);
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   145
    val target_facts = PureThy.map_facts #1 facts'
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   146
      |> 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
   147
    val global_facts = PureThy.map_facts #2 facts'
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   148
      |> 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
   149
  in
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   150
    lthy |> LocalTheory.theory
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   151
      (Sign.qualified_names
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   152
        #> PureThy.note_thmss_i kind global_facts #> snd
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   153
        #> Sign.restore_naming thy)
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
   154
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   155
    |> is_locale ? LocalTheory.target (Locale.add_thmss target kind target_facts)
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   156
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   157
    |> ProofContext.qualified_names
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   158
    |> ProofContext.note_thmss_i kind local_facts
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   159
    ||> ProofContext.restore_naming lthy
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   160
  end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   161
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   162
24939
wenzelm
parents: 24935
diff changeset
   163
(* consts *)
wenzelm
parents: 24935
diff changeset
   164
wenzelm
parents: 24935
diff changeset
   165
fun target_abbrev prmode ((c, mx), rhs) phi =
wenzelm
parents: 24935
diff changeset
   166
  let
wenzelm
parents: 24935
diff changeset
   167
    val c' = Morphism.name phi c;
wenzelm
parents: 24935
diff changeset
   168
    val rhs' = Morphism.term phi rhs;
wenzelm
parents: 24935
diff changeset
   169
    val arg' = (c', rhs');
wenzelm
parents: 24935
diff changeset
   170
    val eq_heads =
wenzelm
parents: 24935
diff changeset
   171
      (case pairself Term.head_of (rhs, rhs') of
wenzelm
parents: 24935
diff changeset
   172
        (Const (a, _), Const (a', _)) => a = a'
wenzelm
parents: 24935
diff changeset
   173
      | _ => false);
wenzelm
parents: 24935
diff changeset
   174
  in
wenzelm
parents: 24935
diff changeset
   175
    eq_heads ? (Context.mapping_result
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   176
        (Sign.add_abbrev Syntax.internalM [] arg')
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   177
        (ProofContext.add_abbrev Syntax.internalM [] arg')
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   178
      #-> (fn (lhs, _) =>
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   179
        Type.similar_types (rhs, rhs') ?
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   180
          Morphism.form (ProofContext.target_notation true prmode [(lhs, mx)])))
24939
wenzelm
parents: 24935
diff changeset
   181
  end;
wenzelm
parents: 24935
diff changeset
   182
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   183
fun internal_abbrev ta prmode ((c, mx), t) lthy = lthy
24939
wenzelm
parents: 24935
diff changeset
   184
  (* FIXME really permissive *)
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   185
  |> term_syntax ta (perhaps o try o target_abbrev prmode ((c, mx), t))
24939
wenzelm
parents: 24935
diff changeset
   186
  |> ProofContext.add_abbrev Syntax.internalM (ContextPosition.properties_of lthy) (c, t)
wenzelm
parents: 24935
diff changeset
   187
  |> snd;
wenzelm
parents: 24935
diff changeset
   188
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   189
fun declare_consts (ta as Target {target, is_locale, is_class}) depends decls lthy =
24939
wenzelm
parents: 24935
diff changeset
   190
  let
wenzelm
parents: 24935
diff changeset
   191
    val thy = ProofContext.theory_of lthy;
wenzelm
parents: 24935
diff changeset
   192
    val xs = filter depends (#1 (ProofContext.inferred_fixes (LocalTheory.target_of lthy)));
wenzelm
parents: 24935
diff changeset
   193
wenzelm
parents: 24935
diff changeset
   194
    fun const ((c, T), mx) thy =
wenzelm
parents: 24935
diff changeset
   195
      let
wenzelm
parents: 24935
diff changeset
   196
        val U = map #2 xs ---> T;
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   197
        val (mx1, mx2) = Class.fork_mixfix is_locale is_class mx;
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   198
        val mx3 = if is_locale then NoSyn else mx1;
24959
119793c84647 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   199
        val (const, thy') = Sign.declare_const (ContextPosition.properties_of lthy) (c, U, mx3) thy;
119793c84647 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   200
        val t = Term.list_comb (const, map Free xs);
24939
wenzelm
parents: 24935
diff changeset
   201
      in (((c, mx2), t), thy') end;
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   202
    fun const_class ((c, _), mx) (_, t) =
25028
e0f74efc210f tuned various Class interfaces;
wenzelm
parents: 25022
diff changeset
   203
      LocalTheory.raw_theory_result (Class.add_const_in_class target ((c, mx), t))
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   204
      #-> Class.remove_constraint target;
24939
wenzelm
parents: 24935
diff changeset
   205
wenzelm
parents: 24935
diff changeset
   206
    val (abbrs, lthy') = lthy
wenzelm
parents: 24935
diff changeset
   207
      |> LocalTheory.theory_result (fold_map const decls)
wenzelm
parents: 24935
diff changeset
   208
  in
wenzelm
parents: 24935
diff changeset
   209
    lthy'
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   210
    |> is_class ? fold2 const_class decls abbrs
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   211
    |> is_locale ? fold (internal_abbrev ta Syntax.mode_default) abbrs
25028
e0f74efc210f tuned various Class interfaces;
wenzelm
parents: 25022
diff changeset
   212
    |> fold_map (apfst (apsnd snd) oo LocalDefs.add_def) abbrs
24939
wenzelm
parents: 24935
diff changeset
   213
  end;
wenzelm
parents: 24935
diff changeset
   214
wenzelm
parents: 24935
diff changeset
   215
wenzelm
parents: 24935
diff changeset
   216
(* abbrev *)
wenzelm
parents: 24935
diff changeset
   217
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   218
fun abbrev (ta as Target {target, is_locale, is_class}) prmode ((raw_c, mx), raw_t) lthy =
24939
wenzelm
parents: 24935
diff changeset
   219
  let
wenzelm
parents: 24935
diff changeset
   220
    val thy = ProofContext.theory_of lthy;
wenzelm
parents: 24935
diff changeset
   221
    val thy_ctxt = ProofContext.init thy;
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   222
    val target_ctxt = LocalTheory.target_of lthy;
24939
wenzelm
parents: 24935
diff changeset
   223
    val target_morphism = LocalTheory.target_morphism lthy;
wenzelm
parents: 24935
diff changeset
   224
wenzelm
parents: 24935
diff changeset
   225
    val c = Morphism.name target_morphism raw_c;
wenzelm
parents: 24935
diff changeset
   226
    val t = Morphism.term target_morphism raw_t;
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   227
    val xs = map Free (Variable.add_fixed target_ctxt t []);
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   228
    val u = fold_rev lambda xs t;
24939
wenzelm
parents: 24935
diff changeset
   229
    val U = Term.fastype_of u;
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   230
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   231
    val u' = singleton (Variable.export_terms (Variable.declare_term u target_ctxt) thy_ctxt) u;
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   232
    val (mx1, mx2) = Class.fork_mixfix is_locale is_class mx;
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   233
    val mx3 = if is_locale then NoSyn else mx1;
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   234
    fun add_abbrev_in_class abbr =
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   235
      LocalTheory.raw_theory_result (Class.add_abbrev_in_class target prmode abbr)
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   236
      #-> Class.remove_constraint target;
24939
wenzelm
parents: 24935
diff changeset
   237
  in
wenzelm
parents: 24935
diff changeset
   238
    lthy
wenzelm
parents: 24935
diff changeset
   239
    |> LocalTheory.theory_result
wenzelm
parents: 24935
diff changeset
   240
        (Sign.add_abbrev (#1 prmode) (ContextPosition.properties_of lthy) (c, u'))
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   241
    |-> (fn (lhs, rhs) =>
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24939
diff changeset
   242
          LocalTheory.theory (Sign.notation true prmode [(lhs, mx3)])
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   243
          #> is_locale ? internal_abbrev ta prmode ((c, mx2), Term.list_comb (lhs, xs))
25028
e0f74efc210f tuned various Class interfaces;
wenzelm
parents: 25022
diff changeset
   244
          #> is_class ? add_abbrev_in_class ((c, mx1), Term.list_comb (lhs, xs)))
e0f74efc210f tuned various Class interfaces;
wenzelm
parents: 25022
diff changeset
   245
    |> LocalDefs.add_def ((c, NoSyn), raw_t)
24939
wenzelm
parents: 24935
diff changeset
   246
  end;
wenzelm
parents: 24935
diff changeset
   247
wenzelm
parents: 24935
diff changeset
   248
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   249
(* define *)
24939
wenzelm
parents: 24935
diff changeset
   250
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   251
fun define (ta as Target {target, is_locale, is_class})
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   252
    kind ((c, mx), ((name, atts), rhs)) lthy =
24939
wenzelm
parents: 24935
diff changeset
   253
  let
24987
50b07326da38 local_theory: incorporated consts into axioms;
wenzelm
parents: 24983
diff changeset
   254
    val thy = ProofContext.theory_of lthy;
24939
wenzelm
parents: 24935
diff changeset
   255
    val thy_ctxt = ProofContext.init thy;
wenzelm
parents: 24935
diff changeset
   256
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   257
    val name' = Thm.def_name_optional c name;
24987
50b07326da38 local_theory: incorporated consts into axioms;
wenzelm
parents: 24983
diff changeset
   258
    val (rhs', rhs_conv) =
50b07326da38 local_theory: incorporated consts into axioms;
wenzelm
parents: 24983
diff changeset
   259
      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
   260
    val xs = Variable.add_fixed (LocalTheory.target_of lthy) rhs' [];
24939
wenzelm
parents: 24935
diff changeset
   261
    val T = Term.fastype_of rhs;
wenzelm
parents: 24935
diff changeset
   262
wenzelm
parents: 24935
diff changeset
   263
    (*consts*)
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   264
    val ([(lhs, local_def)], lthy2) = lthy
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   265
      |> declare_consts ta (member (op =) xs) [((c, T), mx)];
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   266
    val (_, lhs') = Logic.dest_equals (Thm.prop_of local_def);
24939
wenzelm
parents: 24935
diff changeset
   267
wenzelm
parents: 24935
diff changeset
   268
    (*def*)
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   269
    val (global_def, lthy3) = lthy2
24983
f2f4ba67cef1 replaced Term.equiv_types by Type.similar_types;
wenzelm
parents: 24959
diff changeset
   270
      |> LocalTheory.theory_result (Thm.add_def false (name', Logic.mk_equals (lhs', rhs')));
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   271
    val def = LocalDefs.trans_terms lthy3
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   272
      [(*c == global.c xs*)     local_def,
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   273
       (*global.c xs == rhs'*)  global_def,
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   274
       (*rhs' == rhs*)          Thm.symmetric rhs_conv];
24939
wenzelm
parents: 24935
diff changeset
   275
wenzelm
parents: 24935
diff changeset
   276
    (*notes*)
wenzelm
parents: 24935
diff changeset
   277
    val ([(res_name, [res])], lthy4) = lthy3
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   278
      |> notes ta kind [((name', atts), [([def], [])])];
24939
wenzelm
parents: 24935
diff changeset
   279
  in ((lhs, (res_name, res)), lthy4) end;
wenzelm
parents: 24935
diff changeset
   280
wenzelm
parents: 24935
diff changeset
   281
wenzelm
parents: 24935
diff changeset
   282
(* axioms *)
wenzelm
parents: 24935
diff changeset
   283
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   284
fun axioms ta kind (vars, specs) lthy =
24939
wenzelm
parents: 24935
diff changeset
   285
  let
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   286
    val thy_ctxt = ProofContext.init (ProofContext.theory_of lthy);
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   287
    val expanded_props = map (Assumption.export_term lthy thy_ctxt) (maps snd specs);
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   288
    val xs = fold Term.add_frees expanded_props [];
24989
e656aeaa8b28 local_axioms: impose hyps stemming from local consts as well
wenzelm
parents: 24987
diff changeset
   289
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   290
    (*consts*)
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   291
    val (consts, lthy') = declare_consts ta (member (op =) xs) vars lthy;
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   292
    val global_consts = map (Term.dest_Const o Term.head_of o Thm.term_of o Thm.rhs_of o #2) consts;
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   293
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   294
    (*axioms*)
24989
e656aeaa8b28 local_axioms: impose hyps stemming from local consts as well
wenzelm
parents: 24987
diff changeset
   295
    val hyps = map Thm.term_of (Assumption.assms_of lthy');
24939
wenzelm
parents: 24935
diff changeset
   296
    fun axiom ((name, atts), props) thy = thy
24983
f2f4ba67cef1 replaced Term.equiv_types by Type.similar_types;
wenzelm
parents: 24959
diff changeset
   297
      |> fold_map (Thm.add_axiom hyps) (PureThy.name_multi name props)
24939
wenzelm
parents: 24935
diff changeset
   298
      |-> (fn ths => pair ((name, atts), [(ths, [])]));
wenzelm
parents: 24935
diff changeset
   299
  in
24987
50b07326da38 local_theory: incorporated consts into axioms;
wenzelm
parents: 24983
diff changeset
   300
    lthy'
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   301
    |> fold Variable.declare_term expanded_props
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   302
    |> LocalTheory.theory (fold (fn c => Theory.add_deps "" c []) global_consts)
24939
wenzelm
parents: 24935
diff changeset
   303
    |> LocalTheory.theory_result (fold_map axiom specs)
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   304
    |-> notes ta kind
24987
50b07326da38 local_theory: incorporated consts into axioms;
wenzelm
parents: 24983
diff changeset
   305
    |>> pair (map #1 consts)
24939
wenzelm
parents: 24935
diff changeset
   306
  end;
wenzelm
parents: 24935
diff changeset
   307
wenzelm
parents: 24935
diff changeset
   308
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   309
(* init and exit *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   310
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   311
fun begin target ctxt =
22353
haftmann
parents: 22301
diff changeset
   312
  let
haftmann
parents: 22301
diff changeset
   313
    val thy = ProofContext.theory_of ctxt;
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   314
    val is_locale = target <> "";
25028
e0f74efc210f tuned various Class interfaces;
wenzelm
parents: 25022
diff changeset
   315
    val is_class = Class.is_class thy target;
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   316
    val ta = Target {target = target, is_locale = is_locale, is_class = is_class};
22353
haftmann
parents: 22301
diff changeset
   317
  in
haftmann
parents: 22301
diff changeset
   318
    ctxt
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   319
    |> Data.put ta
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   320
    |> is_class ? Class.init target
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   321
    |> LocalTheory.init (NameSpace.base target)
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   322
     {pretty = pretty ta,
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   323
      axioms = axioms ta,
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   324
      abbrev = abbrev ta,
25022
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   325
      define = define ta,
bb0dcb603a13 abbrev: return hypothetical def;
wenzelm
parents: 25012
diff changeset
   326
      notes = notes ta,
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   327
      type_syntax = type_syntax ta,
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   328
      term_syntax = term_syntax ta,
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   329
      declaration = declaration ta,
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   330
      target_naming = target_naming ta,
21804
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   331
      reinit = fn _ =>
25028
e0f74efc210f tuned various Class interfaces;
wenzelm
parents: 25022
diff changeset
   332
        begin target o (if is_locale then Locale.init target else ProofContext.init),
24935
a033971c63a0 removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24914
diff changeset
   333
      exit = LocalTheory.target_of}
21747
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   334
  end;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   335
24935
a033971c63a0 removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24914
diff changeset
   336
fun init NONE thy = begin "" (ProofContext.init thy)
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   337
  | init (SOME target) thy = begin target (Locale.init target thy);
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   338
24935
a033971c63a0 removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24914
diff changeset
   339
fun init_cmd (SOME "-") thy = init NONE thy
25012
448af76a1ba3 pass explicit target record -- more informative peek operation;
wenzelm
parents: 25002
diff changeset
   340
  | init_cmd target thy = init (Option.map (Locale.intern thy) target) thy;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   341
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   342
end;