src/Pure/Isar/theory_target.ML
author wenzelm
Thu, 30 Nov 2006 14:17:29 +0100
changeset 21605 4e7307e229b3
parent 21594 2859c94d67d4
child 21611 fc95ff1fe738
permissions -rw-r--r--
qualified MetaSimplifier.norm_hhf(_protect);
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
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
     5
Common theory/locale 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
20962
e404275bff33 added begin;
wenzelm
parents: 20915
diff changeset
    11
  val begin: bstring -> Proof.context -> local_theory
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    12
  val init: xstring option -> theory -> local_theory
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    13
  val init_i: string option -> theory -> local_theory
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
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
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
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    24
structure Data = ProofDataFun
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    25
(
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    26
  val name = "Isar/theory_target";
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    27
  type T = string option;
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    28
  fun init _ = NONE;
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    29
  fun print _ _ = ();
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    30
);
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    31
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    32
val _ = Context.add_setup Data.init;
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    33
val peek = Data.get;
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    34
ac2732072403 added peek;
wenzelm
parents: 20984
diff changeset
    35
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    36
(* pretty *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    37
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    38
fun pretty loc ctxt =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    39
  let
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    40
    val thy = ProofContext.theory_of ctxt;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    41
    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
    42
    val assumes = map (fn A => (("", []), [(A, [])])) (map Thm.term_of (Assumption.assms_of ctxt));
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    43
    val elems =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    44
      (if null fixes then [] else [Element.Fixes fixes]) @
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    45
      (if null assumes then [] else [Element.Assumes assumes]);
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    46
  in
20984
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
    47
    if loc = "" then
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
    48
      [Pretty.block
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
    49
        [Pretty.str "theory", Pretty.brk 1, Pretty.str (Context.theory_name thy),
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
    50
          Pretty.str " =", Pretty.brk 1, ThyInfo.pretty_theory thy]]
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
    51
    else if null elems then [Pretty.str ("locale " ^ Locale.extern thy loc)]
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
    52
    else
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
    53
      [Pretty.big_list ("locale " ^ Locale.extern thy loc ^ " =")
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
    54
        (map (Pretty.chunks o Element.pretty_ctxt ctxt) elems)]
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    55
  end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    56
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    57
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    58
(* consts *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    59
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
    60
fun consts is_loc depends decls lthy =
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    61
  let
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
    62
    val xs = filter depends (#1 (ProofContext.inferred_fixes (LocalTheory.target_of lthy)));
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    63
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    64
    fun const ((c, T), mx) thy =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    65
      let
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    66
        val U = map #2 xs ---> T;
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
    67
        val t = Term.list_comb (Const (Sign.full_name thy c, U), map Free xs);
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
    68
        val thy' = Sign.add_consts_authentic [(c, U, Syntax.unlocalize_mixfix is_loc mx)] thy;
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
    69
      in (((c, mx), t), thy') end;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    70
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
    71
    val (abbrs, lthy') = lthy |> LocalTheory.theory_result (fold_map const decls);
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
    72
    val defs = abbrs |> map (fn (x, t) => (x, (("", []), t)));
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    73
  in
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    74
    lthy'
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
    75
    |> is_loc ? LocalTheory.abbrevs Syntax.default_mode abbrs
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
    76
    |> LocalDefs.add_defs defs
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
    77
    |>> map (apsnd snd)
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    78
  end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    79
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    80
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    81
(* axioms *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    82
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    83
local
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    84
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    85
fun add_axiom hyps (name, prop) thy =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    86
  let
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    87
    val name' = if name = "" then "axiom_" ^ serial_string () else name;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    88
    val prop' = Logic.list_implies (hyps, prop);
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    89
    val thy' = thy |> Theory.add_axioms_i [(name', prop')];
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    90
    val axm = Drule.unvarify (Thm.get_axiom_i thy' (Sign.full_name thy' name'));
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    91
    val prems = map (Thm.assume o Thm.cterm_of thy') hyps;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    92
  in (Drule.implies_elim_list axm prems, thy') end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    93
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    94
in
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
    95
21433
89104dca628e LocalTheory.axioms/notes/defs: proper kind;
wenzelm
parents: 21293
diff changeset
    96
fun axioms kind specs lthy =
20915
dcb0a3e2f1bd added exit;
wenzelm
parents: 20894
diff changeset
    97
  let
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
    98
    val hyps = map Thm.term_of (Assumption.assms_of lthy);
20915
dcb0a3e2f1bd added exit;
wenzelm
parents: 20894
diff changeset
    99
    fun axiom ((name, atts), props) thy = thy
dcb0a3e2f1bd added exit;
wenzelm
parents: 20894
diff changeset
   100
      |> fold_map (add_axiom hyps) (PureThy.name_multi name props)
dcb0a3e2f1bd added exit;
wenzelm
parents: 20894
diff changeset
   101
      |-> (fn ths => pair ((name, atts), [(ths, [])]));
dcb0a3e2f1bd added exit;
wenzelm
parents: 20894
diff changeset
   102
  in
dcb0a3e2f1bd added exit;
wenzelm
parents: 20894
diff changeset
   103
    lthy
20984
d09f388fa9db exit: pass interactive flag;
wenzelm
parents: 20962
diff changeset
   104
    |> fold (fold Variable.declare_term o snd) specs
20915
dcb0a3e2f1bd added exit;
wenzelm
parents: 20894
diff changeset
   105
    |> LocalTheory.theory_result (fold_map axiom specs)
21433
89104dca628e LocalTheory.axioms/notes/defs: proper kind;
wenzelm
parents: 21293
diff changeset
   106
    |-> LocalTheory.notes kind
20915
dcb0a3e2f1bd added exit;
wenzelm
parents: 20894
diff changeset
   107
  end;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   108
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   109
end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   110
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   111
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   112
(* defs *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   113
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   114
local
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   115
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   116
infix also;
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   117
fun eq1 also eq2 =
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   118
  eq2 COMP (eq1 COMP (Drule.incr_indexes2 eq1 eq2 transitive_thm));
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   119
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   120
fun expand_term ctxt t =
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   121
  let
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   122
    val thy = ProofContext.theory_of ctxt;
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   123
    val thy_ctxt = ProofContext.init thy;
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   124
    val ct = Thm.cterm_of thy t;
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   125
    val (defs, ct') = LocalDefs.export ctxt thy_ctxt (Drule.mk_term ct) ||> Drule.dest_term;
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   126
  in (Thm.term_of ct', Tactic.rewrite true defs ct) end;
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   127
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   128
fun add_def (name, prop) =
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   129
  Theory.add_defs_i false false [(name, prop)] #>
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   130
  (fn thy => (Drule.unvarify (Thm.get_axiom_i thy (Sign.full_name thy name)), thy));
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   131
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   132
in
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   133
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   134
fun defs kind args lthy0 =
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   135
  let
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   136
    fun def ((c, mx), ((name, atts), rhs)) lthy1 =
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   137
      let
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   138
        val (rhs', rhs_conv) = expand_term lthy0 rhs;
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   139
        val xs = Variable.add_fixed (LocalTheory.target_of lthy0) rhs' [];
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   140
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   141
        val ([(lhs, lhs_def)], lthy2) = lthy1
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   142
          |> LocalTheory.consts (member (op =) xs) [((c, Term.fastype_of rhs), mx)];
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   143
        val lhs' = #2 (Logic.dest_equals (Thm.prop_of lhs_def));
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   144
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   145
        val name' = Thm.def_name_optional c name;
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   146
        val (def, lthy3) = lthy2
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   147
          |> LocalTheory.theory_result (add_def (name', Logic.mk_equals (lhs', rhs')));
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   148
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   149
        val eq =
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   150
          (*c == loc.c xs*) lhs_def
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   151
          (*lhs' == rhs'*)  also def
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   152
          (*rhs' == rhs*)   also Thm.symmetric rhs_conv;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   153
      in ((lhs, ((name', atts), [([eq], [])])), lthy3) end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   154
21570
f20f9304ab48 simplified '?' operator;
wenzelm
parents: 21533
diff changeset
   155
    val ((lhss, facts), lthy') = lthy0 |> fold_map def args |>> split_list;
21433
89104dca628e LocalTheory.axioms/notes/defs: proper kind;
wenzelm
parents: 21293
diff changeset
   156
    val (res, lthy'') = lthy' |> LocalTheory.notes kind facts;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   157
  in (lhss ~~ map (apsnd the_single) res, lthy'') end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   158
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
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   162
(* notes *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   163
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   164
(* FIXME
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   165
fun import_export inner outer (name, raw_th) =
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   166
  let
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   167
    val th = norm_hhf_protect raw_th;
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   168
    val (defs, th') = LocalDefs.export inner outer th;
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   169
    val n = Thm.nprems_of th' - Thm.nprems_of th;
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   170
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   171
    val result = PureThy.name_thm true (name, th');  (* FIXME proper thm definition!? *)
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
   172
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   173
    val concl_conv = Tactic.rewrite true defs (Thm.cprop_of th);
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   174
    val assms = map (Tactic.rewrite_rule defs o Thm.assume) (Assumption.assms_of inner);
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   175
    val assm_tac = FIRST' (map (fn assm => Tactic.compose_tac (false, assm, 0)) assms);
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   176
    val reimported_result =
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   177
      (case SINGLE (Seq.INTERVAL assm_tac 1 n) result of
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   178
        NONE => raise THM ("Failed to re-import result", 0, [result])
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   179
      | SOME res => res) COMP (concl_conv COMP_INCR Drule.equal_elim_rule2);
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   180
    val _ = reimported_result COMP (th COMP_INCR Drule.remdups_rl) handle THM _ =>
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   181
      (warning "FIXME"; asm_rl);
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   182
  in (reimported_result, result) end;
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   183
*)
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   184
fun import_export inner outer (_, th) =
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   185
  (singleton (ProofContext.standard inner) th, Assumption.export false inner outer th);
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
   186
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   187
fun notes loc kind facts lthy =
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
   188
  let
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   189
    val is_loc = loc <> "";
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   190
    val thy = ProofContext.theory_of lthy;
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   191
    val thy_ctxt = ProofContext.init thy;
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
   192
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   193
    val facts' = facts
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   194
      |> map (fn (a, bs) => (a, PureThy.burrow_fact (PureThy.name_multi (fst a)) bs))
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   195
      |> PureThy.map_facts (import_export lthy thy_ctxt);
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   196
    val local_facts = facts'
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   197
      |> PureThy.map_facts #1
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   198
      |> Element.facts_map (Element.morph_ctxt (Morphism.thm_morphism Drule.local_standard));
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   199
    val global_facts = facts'
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   200
      |> PureThy.map_facts #2
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   201
      |> Element.generalize_facts lthy thy_ctxt
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   202
      |> PureThy.map_facts Drule.local_standard
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   203
      |> 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
   204
  in
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   205
    lthy |> LocalTheory.theory (fn thy => thy
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   206
      |> Sign.qualified_names
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   207
      |> PureThy.note_thmss_i kind global_facts |> #2
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   208
      |> Sign.restore_naming thy)
21585
2444f1d1127b Assumption.assms_of: cterm;
wenzelm
parents: 21570
diff changeset
   209
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   210
    |> is_loc ? (fn lthy' => lthy' |> LocalTheory.target
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   211
      (Locale.add_thmss loc kind
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   212
        (Element.facts_map (Element.morph_ctxt (LocalTheory.target_morphism lthy')) local_facts)))
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   213
21433
89104dca628e LocalTheory.axioms/notes/defs: proper kind;
wenzelm
parents: 21293
diff changeset
   214
    |> ProofContext.set_stmt true
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   215
    |> ProofContext.qualified_names
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   216
    |> ProofContext.note_thmss_i kind (Attrib.map_facts (Attrib.attribute_i thy) local_facts)
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   217
    ||> ProofContext.restore_naming lthy
21433
89104dca628e LocalTheory.axioms/notes/defs: proper kind;
wenzelm
parents: 21293
diff changeset
   218
    ||> ProofContext.restore_stmt lthy
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   219
  end;
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   220
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   221
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   222
(* target declarations *)
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   223
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   224
fun decl _ "" f =
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   225
      LocalTheory.theory (Context.theory_map (f Morphism.identity)) #>
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   226
      LocalTheory.target (Context.proof_map (f Morphism.identity))
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   227
  | decl add loc f =
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   228
      LocalTheory.target (add loc (Context.proof_map o f));
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   229
21498
6382c3a1e7cf uniform interface for type_syntax/term_syntax/declaration, dependent on morphism;
wenzelm
parents: 21467
diff changeset
   230
val type_syntax = decl Locale.add_type_syntax;
6382c3a1e7cf uniform interface for type_syntax/term_syntax/declaration, dependent on morphism;
wenzelm
parents: 21467
diff changeset
   231
val term_syntax = decl Locale.add_term_syntax;
6382c3a1e7cf uniform interface for type_syntax/term_syntax/declaration, dependent on morphism;
wenzelm
parents: 21467
diff changeset
   232
val declaration = decl Locale.add_declaration;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   233
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   234
fun target_morphism loc lthy =
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   235
  ProofContext.export_morphism lthy (LocalTheory.target_of lthy) $>
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   236
  Morphism.thm_morphism Drule.local_standard;
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   237
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   238
fun target_name "" lthy = Sign.full_name (ProofContext.theory_of lthy)
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   239
  | target_name _ lthy = ProofContext.full_name (LocalTheory.target_of lthy);
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   240
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   241
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   242
(* init and exit *)
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   243
21293
5f5162f40ac7 removed mapping;
wenzelm
parents: 21276
diff changeset
   244
fun begin loc =
5f5162f40ac7 removed mapping;
wenzelm
parents: 21276
diff changeset
   245
  Data.put (if loc = "" then NONE else SOME loc) #>
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   246
  LocalTheory.init (NameSpace.base loc)
21293
5f5162f40ac7 removed mapping;
wenzelm
parents: 21276
diff changeset
   247
   {pretty = pretty loc,
21594
2859c94d67d4 reworked notes: towards proper import/export of proof terms;
wenzelm
parents: 21585
diff changeset
   248
    consts = consts (loc <> ""),
21293
5f5162f40ac7 removed mapping;
wenzelm
parents: 21276
diff changeset
   249
    axioms = axioms,
5f5162f40ac7 removed mapping;
wenzelm
parents: 21276
diff changeset
   250
    defs = defs,
5f5162f40ac7 removed mapping;
wenzelm
parents: 21276
diff changeset
   251
    notes = notes loc,
21498
6382c3a1e7cf uniform interface for type_syntax/term_syntax/declaration, dependent on morphism;
wenzelm
parents: 21467
diff changeset
   252
    type_syntax = type_syntax loc,
21293
5f5162f40ac7 removed mapping;
wenzelm
parents: 21276
diff changeset
   253
    term_syntax = term_syntax loc,
5f5162f40ac7 removed mapping;
wenzelm
parents: 21276
diff changeset
   254
    declaration = declaration loc,
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   255
    target_morphism = target_morphism loc,
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   256
    target_name = target_name loc,
21293
5f5162f40ac7 removed mapping;
wenzelm
parents: 21276
diff changeset
   257
    reinit = fn _ => begin loc o (if loc = "" then ProofContext.init else Locale.init loc),
21533
bada5ac1216a simplified consts: no auxiliary params, sane mixfix syntax;
wenzelm
parents: 21498
diff changeset
   258
    exit = LocalTheory.target_of};
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   259
20962
e404275bff33 added begin;
wenzelm
parents: 20915
diff changeset
   260
fun init_i NONE thy = begin "" (ProofContext.init thy)
e404275bff33 added begin;
wenzelm
parents: 20915
diff changeset
   261
  | init_i (SOME loc) thy = begin loc (Locale.init loc thy);
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   262
21276
2285cf5a7560 init: '-' refers to global context;
wenzelm
parents: 21037
diff changeset
   263
fun init (SOME "-") thy = init_i NONE thy
2285cf5a7560 init: '-' refers to global context;
wenzelm
parents: 21037
diff changeset
   264
  | init loc thy = init_i (Option.map (Locale.intern thy) loc) thy;
20894
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   265
784eefc906aa Common theory targets.
wenzelm
parents:
diff changeset
   266
end;