src/Pure/Isar/theory_target.ML
author wenzelm
Thu, 11 Oct 2007 16:05:23 +0200
changeset 24959 119793c84647
parent 24949 5f00e3532418
child 24983 f2f4ba67cef1
permissions -rw-r--r--
replaced Sign.add_consts_authentic by Sign.declare_const;
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
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    10
  val peek: local_theory -> string option
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
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    19
(** locale targets **)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    20
21006
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    21
(* context data *)
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    22
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    23
structure Data = ProofDataFun
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    24
(
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    25
  type T = string option;
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    26
  fun init _ = NONE;
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    27
);
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    28
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    29
val peek = Data.get;
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    30
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    31
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    32
(* pretty *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    33
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    34
fun pretty loc ctxt =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    35
  let
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    36
    val thy = ProofContext.theory_of ctxt;
24939
wenzelm
parents: 24935
diff changeset
    37
    val loc_kind = if is_some (Class.class_of_locale thy loc) then "class" else "locale";
wenzelm
parents: 24935
diff changeset
    38
    val loc_name = Locale.extern thy loc;
wenzelm
parents: 24935
diff changeset
    39
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    40
    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
    41
    val assumes = map (fn A => (("", []), [(A, [])])) (map Thm.term_of (Assumption.assms_of ctxt));
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    42
    val elems =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    43
      (if null fixes then [] else [Element.Fixes fixes]) @
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    44
      (if null assumes then [] else [Element.Assumes assumes]);
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    45
  in
24939
wenzelm
parents: 24935
diff changeset
    46
    Pretty.block [Pretty.str "theory", Pretty.brk 1, Pretty.str (Context.theory_name thy)] ::
wenzelm
parents: 24935
diff changeset
    47
     (if loc = "" then []
wenzelm
parents: 24935
diff changeset
    48
      else if null elems then [Pretty.str (loc_kind ^ " " ^ loc_name)]
wenzelm
parents: 24935
diff changeset
    49
      else [Pretty.big_list (loc_kind ^ " " ^ loc_name ^ " =")
wenzelm
parents: 24935
diff changeset
    50
        (map (Pretty.chunks o Element.pretty_ctxt ctxt) elems)])
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    51
  end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    52
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    53
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    54
(* target declarations *)
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    55
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    56
fun target_decl add loc d lthy =
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    57
  let
24935
a033971c63a0 removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24914
diff changeset
    58
    val d' = Morphism.transform (LocalTheory.target_morphism lthy) d;
24838
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    59
    val d0 = Morphism.form d';
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    60
  in
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    61
    if loc = "" then
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    62
      lthy
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    63
      |> LocalTheory.theory (Context.theory_map d0)
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    64
      |> LocalTheory.target (Context.proof_map d0)
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    65
    else
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    66
      lthy
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    67
      |> LocalTheory.target (add loc d')
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    68
  end;
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    69
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    70
val type_syntax = target_decl Locale.add_type_syntax;
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    71
val term_syntax = target_decl Locale.add_term_syntax;
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    72
val declaration = target_decl Locale.add_declaration;
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    73
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    74
fun target_naming loc lthy =
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    75
  (if loc = "" then Sign.naming_of (ProofContext.theory_of lthy)
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    76
   else ProofContext.naming_of (LocalTheory.target_of lthy))
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    77
  |> NameSpace.qualified_names;
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    78
1d1bddf87353 put declarations first
haftmann
parents: 24818
diff changeset
    79
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    80
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    81
(* notes *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    82
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    83
fun import_export_proof ctxt (name, raw_th) =
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
    84
  let
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    85
    val thy = ProofContext.theory_of ctxt;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    86
    val thy_ctxt = ProofContext.init thy;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    87
    val certT = Thm.ctyp_of thy;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    88
    val cert = Thm.cterm_of thy;
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
    89
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    90
    (*export assumes/defines*)
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    91
    val th = Goal.norm_result raw_th;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    92
    val (defs, th') = LocalDefs.export ctxt thy_ctxt th;
21708
45e7491bea47 reorganized structure Tactic vs. MetaSimplifier;
wenzelm
parents: 21691
diff changeset
    93
    val concl_conv = MetaSimplifier.rewrite true defs (Thm.cprop_of th);
45e7491bea47 reorganized structure Tactic vs. MetaSimplifier;
wenzelm
parents: 21691
diff changeset
    94
    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
    95
    val nprems = Thm.nprems_of th' - Thm.nprems_of th;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    96
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
    97
    (*export fixes*)
22692
1e057a3f087d proper ProofContext.infer_types;
wenzelm
parents: 22673
diff changeset
    98
    val tfrees = map TFree (Thm.fold_terms Term.add_tfrees th' []);
1e057a3f087d proper ProofContext.infer_types;
wenzelm
parents: 22673
diff changeset
    99
    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
   100
    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
   101
      |> Variable.export ctxt thy_ctxt
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   102
      |> Drule.zero_var_indexes_list;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   103
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   104
    (*thm definition*)
21644
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   105
    val result = th''
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   106
      |> PureThy.name_thm true true ""
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   107
      |> Goal.close_result
24779
2949fb459c7b keep context position as tags for consts/thms;
wenzelm
parents: 24748
diff changeset
   108
      |> fold PureThy.tag_rule (ContextPosition.properties_of ctxt)
21644
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   109
      |> PureThy.name_thm true true name;
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   110
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   111
    (*import fixes*)
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   112
    val (tvars, vars) =
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   113
      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
   114
      |>> map Logic.dest_type;
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
    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
   117
    val inst = filter (is_Var o fst) (vars ~~ frees);
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   118
    val cinstT = map (pairself certT o apfst TVar) instT;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   119
    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
   120
    val result' = Thm.instantiate (cinstT, cinst) result;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   121
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   122
    (*import assumes/defines*)
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   123
    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
   124
    val result'' =
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   125
      (case SINGLE (Seq.INTERVAL assm_tac 1 nprems) result' of
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   126
        NONE => raise THM ("Failed to re-import result", 0, [result'])
21845
da545169fe06 defs/notes: more robust transitivity reasoning;
wenzelm
parents: 21825
diff changeset
   127
      | SOME res => LocalDefs.trans_props ctxt [res, Thm.symmetric concl_conv])
21644
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   128
      |> Goal.norm_result
5154a7213d3c notes: added non-official name;
wenzelm
parents: 21615
diff changeset
   129
      |> PureThy.name_thm false false name;
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   130
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   131
  in (result'', result) end;
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   132
24939
wenzelm
parents: 24935
diff changeset
   133
fun local_notes loc kind facts lthy =
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
   134
  let
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   135
    val is_loc = loc <> "";
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   136
    val thy = ProofContext.theory_of lthy;
21615
1bd558879c44 notes: proper naming of thm proof, activated import_export_proof;
wenzelm
parents: 21613
diff changeset
   137
    val full = LocalTheory.full_name lthy;
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
   138
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   139
    val facts' = facts
21615
1bd558879c44 notes: proper naming of thm proof, activated import_export_proof;
wenzelm
parents: 21613
diff changeset
   140
      |> 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
   141
      |> PureThy.map_facts (import_export_proof lthy);
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   142
    val local_facts = PureThy.map_facts #1 facts'
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   143
      |> Attrib.map_facts (Attrib.attribute_i thy);
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   144
    val target_facts = PureThy.map_facts #1 facts'
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   145
      |> is_loc ? Element.facts_map (Element.morph_ctxt (LocalTheory.target_morphism lthy));
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   146
    val global_facts = PureThy.map_facts #2 facts'
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   147
      |> Attrib.map_facts (if is_loc then K I else Attrib.attribute_i thy);
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   148
  in
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   149
    lthy |> LocalTheory.theory
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   150
      (Sign.qualified_names
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   151
        #> PureThy.note_thmss_i kind global_facts #> snd
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   152
        #> Sign.restore_naming thy)
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
   153
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   154
    |> is_loc ? LocalTheory.target (Locale.add_thmss loc kind target_facts)
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   155
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   156
    |> ProofContext.qualified_names
21611
fc95ff1fe738 notes: proper import/export of proofs (still inactive);
wenzelm
parents: 21594
diff changeset
   157
    |> ProofContext.note_thmss_i kind local_facts
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   158
    ||> ProofContext.restore_naming lthy
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   159
  end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   160
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   161
24939
wenzelm
parents: 24935
diff changeset
   162
(* consts *)
wenzelm
parents: 24935
diff changeset
   163
wenzelm
parents: 24935
diff changeset
   164
fun target_abbrev prmode ((c, mx), rhs) phi =
wenzelm
parents: 24935
diff changeset
   165
  let
wenzelm
parents: 24935
diff changeset
   166
    val c' = Morphism.name phi c;
wenzelm
parents: 24935
diff changeset
   167
    val rhs' = Morphism.term phi rhs;
wenzelm
parents: 24935
diff changeset
   168
    val arg' = (c', rhs');
wenzelm
parents: 24935
diff changeset
   169
    val eq_heads =
wenzelm
parents: 24935
diff changeset
   170
      (case pairself Term.head_of (rhs, rhs') of
wenzelm
parents: 24935
diff changeset
   171
        (Const (a, _), Const (a', _)) => a = a'
wenzelm
parents: 24935
diff changeset
   172
      | _ => false);
wenzelm
parents: 24935
diff changeset
   173
  in
wenzelm
parents: 24935
diff changeset
   174
    eq_heads ? (Context.mapping_result
wenzelm
parents: 24935
diff changeset
   175
      (Sign.add_abbrev Syntax.internalM [] arg') (ProofContext.add_abbrev Syntax.internalM [] arg')
wenzelm
parents: 24935
diff changeset
   176
    #-> (fn (lhs, _) =>
wenzelm
parents: 24935
diff changeset
   177
      Term.equiv_types (rhs, rhs') ?
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24939
diff changeset
   178
        Morphism.form (ProofContext.target_notation true prmode [(lhs, mx)])))
24939
wenzelm
parents: 24935
diff changeset
   179
  end;
wenzelm
parents: 24935
diff changeset
   180
wenzelm
parents: 24935
diff changeset
   181
fun internal_abbrev loc prmode ((c, mx), t) lthy = lthy
wenzelm
parents: 24935
diff changeset
   182
  (* FIXME really permissive *)
wenzelm
parents: 24935
diff changeset
   183
  |> term_syntax loc (perhaps o try o target_abbrev prmode ((c, mx), t))
wenzelm
parents: 24935
diff changeset
   184
  |> ProofContext.add_abbrev Syntax.internalM (ContextPosition.properties_of lthy) (c, t)
wenzelm
parents: 24935
diff changeset
   185
  |> snd;
wenzelm
parents: 24935
diff changeset
   186
wenzelm
parents: 24935
diff changeset
   187
fun declare_consts loc depends decls lthy =
wenzelm
parents: 24935
diff changeset
   188
  let
wenzelm
parents: 24935
diff changeset
   189
    val thy = ProofContext.theory_of lthy;
wenzelm
parents: 24935
diff changeset
   190
    val is_loc = loc <> "";
wenzelm
parents: 24935
diff changeset
   191
    val some_class = Class.class_of_locale thy loc;
wenzelm
parents: 24935
diff changeset
   192
wenzelm
parents: 24935
diff changeset
   193
    val xs = filter depends (#1 (ProofContext.inferred_fixes (LocalTheory.target_of lthy)));
wenzelm
parents: 24935
diff changeset
   194
wenzelm
parents: 24935
diff changeset
   195
    fun const ((c, T), mx) thy =
wenzelm
parents: 24935
diff changeset
   196
      let
wenzelm
parents: 24935
diff changeset
   197
        val U = map #2 xs ---> T;
wenzelm
parents: 24935
diff changeset
   198
        val (mx1, mx2) = Class.fork_mixfix is_loc some_class mx;
wenzelm
parents: 24935
diff changeset
   199
        val mx3 = if is_loc then NoSyn else mx1;
24959
119793c84647 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   200
        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
   201
        val t = Term.list_comb (const, map Free xs);
24939
wenzelm
parents: 24935
diff changeset
   202
      in (((c, mx2), t), thy') end;
wenzelm
parents: 24935
diff changeset
   203
    fun const_class (SOME class) ((c, _), mx) (_, t) =
wenzelm
parents: 24935
diff changeset
   204
          LocalTheory.raw_theory_result (Class.add_const_in_class class ((c, t), mx))
wenzelm
parents: 24935
diff changeset
   205
          #-> Class.remove_constraint [class]
wenzelm
parents: 24935
diff changeset
   206
      | const_class NONE _ _ = I;
wenzelm
parents: 24935
diff changeset
   207
    fun hide_abbrev (SOME class) abbrs thy =
wenzelm
parents: 24935
diff changeset
   208
          let
wenzelm
parents: 24935
diff changeset
   209
            val raw_cs = map (fst o fst) abbrs;
wenzelm
parents: 24935
diff changeset
   210
            val prfx = (Logic.const_of_class o NameSpace.base) class;
wenzelm
parents: 24935
diff changeset
   211
            fun mk_name c =
wenzelm
parents: 24935
diff changeset
   212
              let
wenzelm
parents: 24935
diff changeset
   213
                val n1 = Sign.full_name thy c;
wenzelm
parents: 24935
diff changeset
   214
                val n2 = NameSpace.qualifier n1;
wenzelm
parents: 24935
diff changeset
   215
                val n3 = NameSpace.base n1;
wenzelm
parents: 24935
diff changeset
   216
              in NameSpace.implode [n2, prfx, prfx, n3] end;
wenzelm
parents: 24935
diff changeset
   217
            val cs = map mk_name raw_cs;
wenzelm
parents: 24935
diff changeset
   218
          in
wenzelm
parents: 24935
diff changeset
   219
            Sign.hide_consts_i true cs thy
wenzelm
parents: 24935
diff changeset
   220
          end
wenzelm
parents: 24935
diff changeset
   221
      | hide_abbrev NONE _ thy = thy;
wenzelm
parents: 24935
diff changeset
   222
wenzelm
parents: 24935
diff changeset
   223
    val (abbrs, lthy') = lthy
wenzelm
parents: 24935
diff changeset
   224
      |> LocalTheory.theory_result (fold_map const decls)
wenzelm
parents: 24935
diff changeset
   225
    val defs = map (apsnd (pair ("", []))) abbrs;
wenzelm
parents: 24935
diff changeset
   226
wenzelm
parents: 24935
diff changeset
   227
  in
wenzelm
parents: 24935
diff changeset
   228
    lthy'
wenzelm
parents: 24935
diff changeset
   229
    |> fold2 (const_class some_class) decls abbrs
24959
119793c84647 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   230
    |> is_loc ? fold (internal_abbrev loc Syntax.mode_default) abbrs
24939
wenzelm
parents: 24935
diff changeset
   231
    |> LocalTheory.raw_theory (hide_abbrev some_class abbrs)
wenzelm
parents: 24935
diff changeset
   232
        (*FIXME abbreviations should never occur*)
wenzelm
parents: 24935
diff changeset
   233
    |> LocalDefs.add_defs defs
wenzelm
parents: 24935
diff changeset
   234
    |>> map (apsnd snd)
wenzelm
parents: 24935
diff changeset
   235
  end;
wenzelm
parents: 24935
diff changeset
   236
wenzelm
parents: 24935
diff changeset
   237
wenzelm
parents: 24935
diff changeset
   238
(* abbrev *)
wenzelm
parents: 24935
diff changeset
   239
wenzelm
parents: 24935
diff changeset
   240
fun occ_params ctxt ts =
wenzelm
parents: 24935
diff changeset
   241
  #1 (ProofContext.inferred_fixes ctxt)
wenzelm
parents: 24935
diff changeset
   242
  |> filter (member (op =) (fold (Variable.add_fixed ctxt) ts []));
wenzelm
parents: 24935
diff changeset
   243
wenzelm
parents: 24935
diff changeset
   244
fun local_abbrev (x, rhs) =
wenzelm
parents: 24935
diff changeset
   245
  Variable.add_fixes [x] #-> (fn [x'] =>
wenzelm
parents: 24935
diff changeset
   246
    let
wenzelm
parents: 24935
diff changeset
   247
      val T = Term.fastype_of rhs;
wenzelm
parents: 24935
diff changeset
   248
      val lhs = Free (x', T);
wenzelm
parents: 24935
diff changeset
   249
    in
wenzelm
parents: 24935
diff changeset
   250
      Variable.declare_term lhs #>
wenzelm
parents: 24935
diff changeset
   251
      Variable.declare_term rhs #>
wenzelm
parents: 24935
diff changeset
   252
      Assumption.add_assms (K (K (I, Envir.expand_term_frees [((x', T), rhs)]))) [] #> snd #>
wenzelm
parents: 24935
diff changeset
   253
      pair (lhs, rhs)
wenzelm
parents: 24935
diff changeset
   254
    end);
wenzelm
parents: 24935
diff changeset
   255
wenzelm
parents: 24935
diff changeset
   256
fun abbrev loc prmode ((raw_c, mx), raw_t) lthy =
wenzelm
parents: 24935
diff changeset
   257
  let
wenzelm
parents: 24935
diff changeset
   258
    val thy = ProofContext.theory_of lthy;
wenzelm
parents: 24935
diff changeset
   259
    val is_loc = loc <> "";
wenzelm
parents: 24935
diff changeset
   260
    val some_class = Class.class_of_locale thy loc;
wenzelm
parents: 24935
diff changeset
   261
wenzelm
parents: 24935
diff changeset
   262
    val thy_ctxt = ProofContext.init thy;
wenzelm
parents: 24935
diff changeset
   263
    val target = LocalTheory.target_of lthy;
wenzelm
parents: 24935
diff changeset
   264
    val target_morphism = LocalTheory.target_morphism lthy;
wenzelm
parents: 24935
diff changeset
   265
wenzelm
parents: 24935
diff changeset
   266
    val c = Morphism.name target_morphism raw_c;
wenzelm
parents: 24935
diff changeset
   267
    val t = Morphism.term target_morphism raw_t;
wenzelm
parents: 24935
diff changeset
   268
    val xs = map Free (occ_params target [t]);
wenzelm
parents: 24935
diff changeset
   269
    val u = fold_rev Term.lambda xs t;
wenzelm
parents: 24935
diff changeset
   270
    val U = Term.fastype_of u;
wenzelm
parents: 24935
diff changeset
   271
    val u' = singleton (Variable.export_terms (Variable.declare_term u target) thy_ctxt) u;
wenzelm
parents: 24935
diff changeset
   272
    val (mx1, mx2) = Class.fork_mixfix is_loc some_class mx;
wenzelm
parents: 24935
diff changeset
   273
    val mx3 = if is_loc then NoSyn else mx1;
wenzelm
parents: 24935
diff changeset
   274
    fun add_abbrev_in_class (SOME class) abbr =
wenzelm
parents: 24935
diff changeset
   275
          LocalTheory.raw_theory_result (Class.add_abbrev_in_class class prmode abbr)
wenzelm
parents: 24935
diff changeset
   276
          #-> (fn c => Class.remove_constraint [class] c)
wenzelm
parents: 24935
diff changeset
   277
      | add_abbrev_in_class NONE _ = I;
wenzelm
parents: 24935
diff changeset
   278
  in
wenzelm
parents: 24935
diff changeset
   279
    lthy
wenzelm
parents: 24935
diff changeset
   280
    |> LocalTheory.theory_result
wenzelm
parents: 24935
diff changeset
   281
        (Sign.add_abbrev (#1 prmode) (ContextPosition.properties_of lthy) (c, u'))
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24939
diff changeset
   282
    |-> (fn (lhs as Const (full_c, _), rhs) =>
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24939
diff changeset
   283
          LocalTheory.theory (Sign.notation true prmode [(lhs, mx3)])
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24939
diff changeset
   284
          #> is_loc ? internal_abbrev loc prmode ((c, mx2), Term.list_comb (Const (full_c, U), xs))
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24939
diff changeset
   285
          #> add_abbrev_in_class some_class ((c, Term.list_comb (Const (full_c, U), xs)), mx1)
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24939
diff changeset
   286
          #> local_abbrev (c, rhs))
24939
wenzelm
parents: 24935
diff changeset
   287
  end;
wenzelm
parents: 24935
diff changeset
   288
wenzelm
parents: 24935
diff changeset
   289
wenzelm
parents: 24935
diff changeset
   290
(* defs *)
wenzelm
parents: 24935
diff changeset
   291
wenzelm
parents: 24935
diff changeset
   292
local
wenzelm
parents: 24935
diff changeset
   293
wenzelm
parents: 24935
diff changeset
   294
fun expand_term ctxt t =
wenzelm
parents: 24935
diff changeset
   295
  let
wenzelm
parents: 24935
diff changeset
   296
    val thy = ProofContext.theory_of ctxt;
wenzelm
parents: 24935
diff changeset
   297
    val thy_ctxt = ProofContext.init thy;
wenzelm
parents: 24935
diff changeset
   298
    val ct = Thm.cterm_of thy t;
wenzelm
parents: 24935
diff changeset
   299
    val (defs, ct') = LocalDefs.export ctxt thy_ctxt (Drule.mk_term ct) ||> Drule.dest_term;
wenzelm
parents: 24935
diff changeset
   300
  in (Thm.term_of ct', MetaSimplifier.rewrite true defs ct) end;
wenzelm
parents: 24935
diff changeset
   301
wenzelm
parents: 24935
diff changeset
   302
fun add_def (name, prop) thy =
wenzelm
parents: 24935
diff changeset
   303
  let
wenzelm
parents: 24935
diff changeset
   304
    val tfrees = rev (map TFree (Term.add_tfrees prop []));
wenzelm
parents: 24935
diff changeset
   305
    val tfrees' = map (fn a => TFree (a, [])) (Name.invents Name.context Name.aT (length tfrees));
wenzelm
parents: 24935
diff changeset
   306
    val strip_sorts = tfrees ~~ tfrees';
wenzelm
parents: 24935
diff changeset
   307
    val recover_sorts = map (pairself (Thm.ctyp_of thy o Logic.varifyT)) (tfrees' ~~ tfrees);
wenzelm
parents: 24935
diff changeset
   308
wenzelm
parents: 24935
diff changeset
   309
    val prop' = Term.map_types (Term.map_atyps (perhaps (AList.lookup (op =) strip_sorts))) prop;
wenzelm
parents: 24935
diff changeset
   310
    val thy' = Theory.add_defs_i false false [(name, prop')] thy;
wenzelm
parents: 24935
diff changeset
   311
    val axm' = Thm.get_axiom_i thy' (Sign.full_name thy' name);
wenzelm
parents: 24935
diff changeset
   312
    val def = Thm.instantiate (recover_sorts, []) axm';
wenzelm
parents: 24935
diff changeset
   313
  in (Drule.unvarify def, thy') end;
wenzelm
parents: 24935
diff changeset
   314
wenzelm
parents: 24935
diff changeset
   315
in
wenzelm
parents: 24935
diff changeset
   316
wenzelm
parents: 24935
diff changeset
   317
fun local_def loc kind ((c, mx), ((name, atts), rhs)) lthy1 =
wenzelm
parents: 24935
diff changeset
   318
  let
wenzelm
parents: 24935
diff changeset
   319
    val (rhs', rhs_conv) = expand_term lthy1 rhs;
wenzelm
parents: 24935
diff changeset
   320
    val xs = Variable.add_fixed (LocalTheory.target_of lthy1) rhs' [];
wenzelm
parents: 24935
diff changeset
   321
    val T = Term.fastype_of rhs;
wenzelm
parents: 24935
diff changeset
   322
wenzelm
parents: 24935
diff changeset
   323
    (*consts*)
wenzelm
parents: 24935
diff changeset
   324
    val ([(lhs, lhs_def)], lthy2) = lthy1
wenzelm
parents: 24935
diff changeset
   325
      |> declare_consts loc (member (op =) xs) [((c, T), mx)];
wenzelm
parents: 24935
diff changeset
   326
    val (_, lhs') = Logic.dest_equals (Thm.prop_of lhs_def);
wenzelm
parents: 24935
diff changeset
   327
wenzelm
parents: 24935
diff changeset
   328
    (*def*)
wenzelm
parents: 24935
diff changeset
   329
    val name' = Thm.def_name_optional c name;
wenzelm
parents: 24935
diff changeset
   330
    val (def, lthy3) = lthy2
wenzelm
parents: 24935
diff changeset
   331
      |> LocalTheory.theory_result (add_def (name', Logic.mk_equals (lhs', rhs')));
wenzelm
parents: 24935
diff changeset
   332
    val eq = LocalDefs.trans_terms lthy3
wenzelm
parents: 24935
diff changeset
   333
      [(*c == loc.c xs*) lhs_def,
wenzelm
parents: 24935
diff changeset
   334
       (*lhs' == rhs'*)  def,
wenzelm
parents: 24935
diff changeset
   335
       (*rhs' == rhs*)   Thm.symmetric rhs_conv];
wenzelm
parents: 24935
diff changeset
   336
wenzelm
parents: 24935
diff changeset
   337
    (*notes*)
wenzelm
parents: 24935
diff changeset
   338
    val ([(res_name, [res])], lthy4) = lthy3
wenzelm
parents: 24935
diff changeset
   339
      |> local_notes loc kind [((name', atts), [([eq], [])])];
wenzelm
parents: 24935
diff changeset
   340
  in ((lhs, (res_name, res)), lthy4) end;
wenzelm
parents: 24935
diff changeset
   341
wenzelm
parents: 24935
diff changeset
   342
end;
wenzelm
parents: 24935
diff changeset
   343
wenzelm
parents: 24935
diff changeset
   344
wenzelm
parents: 24935
diff changeset
   345
(* axioms *)
wenzelm
parents: 24935
diff changeset
   346
wenzelm
parents: 24935
diff changeset
   347
local
wenzelm
parents: 24935
diff changeset
   348
wenzelm
parents: 24935
diff changeset
   349
fun add_axiom hyps (name, prop) thy =
wenzelm
parents: 24935
diff changeset
   350
  let
wenzelm
parents: 24935
diff changeset
   351
    val name' = if name = "" then "axiom_" ^ serial_string () else name;
wenzelm
parents: 24935
diff changeset
   352
    val prop' = Logic.list_implies (hyps, prop);
wenzelm
parents: 24935
diff changeset
   353
    val thy' = thy |> Theory.add_axioms_i [(name', prop')];
wenzelm
parents: 24935
diff changeset
   354
    val axm = Drule.unvarify (Thm.get_axiom_i thy' (Sign.full_name thy' name'));
wenzelm
parents: 24935
diff changeset
   355
    val prems = map (Thm.assume o Thm.cterm_of thy') hyps;
wenzelm
parents: 24935
diff changeset
   356
  in (Drule.implies_elim_list axm prems, thy') end;
wenzelm
parents: 24935
diff changeset
   357
wenzelm
parents: 24935
diff changeset
   358
in
wenzelm
parents: 24935
diff changeset
   359
wenzelm
parents: 24935
diff changeset
   360
fun axioms loc kind specs lthy =
wenzelm
parents: 24935
diff changeset
   361
  let
wenzelm
parents: 24935
diff changeset
   362
    val hyps = map Thm.term_of (Assumption.assms_of lthy);
wenzelm
parents: 24935
diff changeset
   363
    fun axiom ((name, atts), props) thy = thy
wenzelm
parents: 24935
diff changeset
   364
      |> fold_map (add_axiom hyps) (PureThy.name_multi name props)
wenzelm
parents: 24935
diff changeset
   365
      |-> (fn ths => pair ((name, atts), [(ths, [])]));
wenzelm
parents: 24935
diff changeset
   366
  in
wenzelm
parents: 24935
diff changeset
   367
    lthy
wenzelm
parents: 24935
diff changeset
   368
    |> fold (fold Variable.declare_term o snd) specs
wenzelm
parents: 24935
diff changeset
   369
    |> LocalTheory.theory_result (fold_map axiom specs)
wenzelm
parents: 24935
diff changeset
   370
    |-> local_notes loc kind
wenzelm
parents: 24935
diff changeset
   371
  end;
wenzelm
parents: 24935
diff changeset
   372
wenzelm
parents: 24935
diff changeset
   373
end;
wenzelm
parents: 24935
diff changeset
   374
wenzelm
parents: 24935
diff changeset
   375
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   376
(* init and exit *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   377
22353
haftmann
parents: 22301
diff changeset
   378
fun begin loc ctxt =
haftmann
parents: 22301
diff changeset
   379
  let
haftmann
parents: 22301
diff changeset
   380
    val thy = ProofContext.theory_of ctxt;
haftmann
parents: 22301
diff changeset
   381
    val is_loc = loc <> "";
haftmann
parents: 22301
diff changeset
   382
  in
haftmann
parents: 22301
diff changeset
   383
    ctxt
haftmann
parents: 22301
diff changeset
   384
    |> Data.put (if is_loc then SOME loc else NONE)
24939
wenzelm
parents: 24935
diff changeset
   385
    |> fold Class.init (the_list (Class.class_of_locale thy loc))
24748
ee0a0eb6b738 proper syntax during class specification
haftmann
parents: 24657
diff changeset
   386
    |> LocalTheory.init (NameSpace.base loc)
21747
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   387
     {pretty = pretty loc,
24939
wenzelm
parents: 24935
diff changeset
   388
      consts = declare_consts loc,
wenzelm
parents: 24935
diff changeset
   389
      axioms = axioms loc,
wenzelm
parents: 24935
diff changeset
   390
      abbrev = abbrev loc,
wenzelm
parents: 24935
diff changeset
   391
      def = local_def loc,
wenzelm
parents: 24935
diff changeset
   392
      notes = local_notes loc,
21747
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   393
      type_syntax = type_syntax loc,
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   394
      term_syntax = term_syntax loc,
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   395
      declaration = declaration loc,
22203
efc0cdc01307 added interface for target_naming;
wenzelm
parents: 21845
diff changeset
   396
      target_naming = target_naming loc,
21804
515499542d84 removed is_class -- handled internally;
wenzelm
parents: 21761
diff changeset
   397
      reinit = fn _ =>
24657
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24389
diff changeset
   398
        (if is_loc then Locale.init loc else ProofContext.init)
185502d54c3d fixed wrong syntax treatment in class target
haftmann
parents: 24389
diff changeset
   399
        #> begin loc,
24935
a033971c63a0 removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24914
diff changeset
   400
      exit = LocalTheory.target_of}
21747
d650305c609a added is_class (approximation);
wenzelm
parents: 21718
diff changeset
   401
  end;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   402
24935
a033971c63a0 removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24914
diff changeset
   403
fun init NONE thy = begin "" (ProofContext.init thy)
a033971c63a0 removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24914
diff changeset
   404
  | init (SOME loc) thy = begin loc (Locale.init loc thy);
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   405
24935
a033971c63a0 removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24914
diff changeset
   406
fun init_cmd (SOME "-") thy = init NONE thy
a033971c63a0 removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24914
diff changeset
   407
  | init_cmd loc thy = init (Option.map (Locale.intern thy) loc) thy;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   408
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   409
end;