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