src/Pure/Isar/local_theory.ML
author wenzelm
Wed, 28 Oct 2009 16:25:10 +0100
changeset 33276 f2bc8bc6e73d
parent 33166 55f250ef9e31
child 33281 223ef9bc399a
permissions -rw-r--r--
added restore_naming;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18744
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Isar/local_theory.ML
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
     3
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
     4
Local theory operations, with abstract target context.
18744
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
     5
*)
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
     6
18951
4f5f6c632127 type local_theory = Proof.context;
wenzelm
parents: 18876
diff changeset
     7
type local_theory = Proof.context;
4f5f6c632127 type local_theory = Proof.context;
wenzelm
parents: 18876
diff changeset
     8
18744
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
     9
signature LOCAL_THEORY =
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    10
sig
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    11
  type operations
33166
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
    12
  val affirm: local_theory -> local_theory
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
    13
  val naming_of: local_theory -> Name_Space.naming
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
    14
  val full_name: local_theory -> binding -> string
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
    15
  val map_naming: (Name_Space.naming -> Name_Space.naming) -> local_theory -> local_theory
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
    16
  val conceal: local_theory -> local_theory
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
    17
  val set_group: serial -> local_theory -> local_theory
33276
f2bc8bc6e73d added restore_naming;
wenzelm
parents: 33166
diff changeset
    18
  val restore_naming: local_theory -> local_theory -> local_theory
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    19
  val target_of: local_theory -> Proof.context
20960
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
    20
  val raw_theory_result: (theory -> 'a * theory) -> local_theory -> 'a * local_theory
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
    21
  val raw_theory: (theory -> theory) -> local_theory -> local_theory
28379
0de8a35b866a Theory.checkpoint for main operations, admits concurrent proofs;
wenzelm
parents: 28115
diff changeset
    22
  val checkpoint: local_theory -> local_theory
20960
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
    23
  val theory_result: (theory -> 'a * theory) -> local_theory -> 'a * local_theory
18951
4f5f6c632127 type local_theory = Proof.context;
wenzelm
parents: 18876
diff changeset
    24
  val theory: (theory -> theory) -> local_theory -> local_theory
20960
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
    25
  val target_result: (Proof.context -> 'a * Proof.context) -> local_theory -> 'a * local_theory
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    26
  val target: (Proof.context -> Proof.context) -> local_theory -> local_theory
30578
9863745880db added map_contexts (cf. Proof.map_contexts);
wenzelm
parents: 30469
diff changeset
    27
  val map_contexts: (Context.generic -> Context.generic) -> local_theory -> local_theory
20960
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
    28
  val pretty: local_theory -> Pretty.T list
29581
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29134
diff changeset
    29
  val abbrev: Syntax.mode -> (binding * mixfix) * term -> local_theory ->
25120
23fbc38f6432 tuned abbrev interface;
wenzelm
parents: 25104
diff changeset
    30
    (term * term) * local_theory
29581
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29134
diff changeset
    31
  val define: string -> (binding * mixfix) * (Attrib.binding * term) -> local_theory ->
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
    32
    (term * (string * thm)) * local_theory
28084
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28083
diff changeset
    33
  val note: string -> Attrib.binding * thm list -> local_theory -> (string * thm list) * local_theory
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28083
diff changeset
    34
  val notes: string -> (Attrib.binding * (thm list * Attrib.src list) list) list ->
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
    35
    local_theory -> (string * thm list) list * local_theory
24020
ed4d7abffee7 tuned signature;
wenzelm
parents: 22846
diff changeset
    36
  val type_syntax: declaration -> local_theory -> local_theory
ed4d7abffee7 tuned signature;
wenzelm
parents: 22846
diff changeset
    37
  val term_syntax: declaration -> local_theory -> local_theory
ed4d7abffee7 tuned signature;
wenzelm
parents: 22846
diff changeset
    38
  val declaration: declaration -> local_theory -> local_theory
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24933
diff changeset
    39
  val notation: bool -> Syntax.mode -> (term * mixfix) list -> local_theory -> local_theory
21529
bfe99f603933 abbrevs: no result;
wenzelm
parents: 21498
diff changeset
    40
  val target_morphism: local_theory -> morphism
bfe99f603933 abbrevs: no result;
wenzelm
parents: 21498
diff changeset
    41
  val init: string -> operations -> Proof.context -> local_theory
21273
3b01db9504a8 abbrevs: return result;
wenzelm
parents: 21206
diff changeset
    42
  val restore: local_theory -> local_theory
25289
3d332d8a827c simplified LocalTheory.reinit;
wenzelm
parents: 25120
diff changeset
    43
  val reinit: local_theory -> local_theory
21292
11143b6ad87f simplified exit;
wenzelm
parents: 21273
diff changeset
    44
  val exit: local_theory -> Proof.context
28395
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
    45
  val exit_global: local_theory -> theory
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
    46
  val exit_result: (morphism -> 'a -> 'b) -> 'a * local_theory -> 'b * Proof.context
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
    47
  val exit_result_global: (morphism -> 'a -> 'b) -> 'a * local_theory -> 'b * theory
18744
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    48
end;
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    49
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    50
structure LocalTheory: LOCAL_THEORY =
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    51
struct
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    52
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    53
(** local theory data **)
19059
b4ca3100e818 init/exit no longer change the theory (no naming);
wenzelm
parents: 19032
diff changeset
    54
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    55
(* type lthy *)
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    56
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    57
type operations =
20960
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
    58
 {pretty: local_theory -> Pretty.T list,
29581
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29134
diff changeset
    59
  abbrev: Syntax.mode -> (binding * mixfix) * term -> local_theory ->
28084
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28083
diff changeset
    60
    (term * term) * local_theory,
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
    61
  define: string ->
29581
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29134
diff changeset
    62
    (binding * mixfix) * (Attrib.binding * term) -> local_theory ->
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
    63
    (term * (string * thm)) * local_theory,
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
    64
  notes: string ->
28084
a05ca48ef263 type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents: 28083
diff changeset
    65
    (Attrib.binding * (thm list * Attrib.src list) list) list ->
28083
103d9282a946 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
    66
    local_theory -> (string * thm list) list * local_theory,
24020
ed4d7abffee7 tuned signature;
wenzelm
parents: 22846
diff changeset
    67
  type_syntax: declaration -> local_theory -> local_theory,
ed4d7abffee7 tuned signature;
wenzelm
parents: 22846
diff changeset
    68
  term_syntax: declaration -> local_theory -> local_theory,
ed4d7abffee7 tuned signature;
wenzelm
parents: 22846
diff changeset
    69
  declaration: declaration -> local_theory -> local_theory,
25289
3d332d8a827c simplified LocalTheory.reinit;
wenzelm
parents: 25120
diff changeset
    70
  reinit: local_theory -> local_theory,
21292
11143b6ad87f simplified exit;
wenzelm
parents: 21273
diff changeset
    71
  exit: local_theory -> Proof.context};
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    72
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    73
datatype lthy = LThy of
33166
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
    74
 {naming: Name_Space.naming,
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
    75
  theory_prefix: string,
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    76
  operations: operations,
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    77
  target: Proof.context};
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    78
33166
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
    79
fun make_lthy (naming, theory_prefix, operations, target) =
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
    80
  LThy {naming = naming, theory_prefix = theory_prefix,
33157
56f836b9414f allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents: 33095
diff changeset
    81
    operations = operations, target = target};
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    82
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    83
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    84
(* context data *)
18744
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    85
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    86
structure Data = ProofDataFun
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    87
(
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    88
  type T = lthy option;
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    89
  fun init _ = NONE;
18744
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    90
);
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
    91
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    92
fun get_lthy lthy =
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    93
  (case Data.get lthy of
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    94
    NONE => error "No local theory context"
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    95
  | SOME (LThy data) => data);
18951
4f5f6c632127 type local_theory = Proof.context;
wenzelm
parents: 18876
diff changeset
    96
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
    97
fun map_lthy f lthy =
33166
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
    98
  let val {naming, theory_prefix, operations, target} = get_lthy lthy
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
    99
  in Data.put (SOME (make_lthy (f (naming, theory_prefix, operations, target)))) lthy end;
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   100
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   101
val affirm = tap get_lthy;
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
   102
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
   103
33166
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   104
(* naming *)
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
   105
33166
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   106
val naming_of = #naming o get_lthy;
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   107
val full_name = Name_Space.full_name o naming_of;
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
   108
33166
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   109
fun map_naming f = map_lthy (fn (naming, theory_prefix, operations, target) =>
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   110
  (f naming, theory_prefix, operations, target));
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
   111
33166
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   112
val conceal = map_naming Name_Space.conceal;
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   113
val set_group = map_naming o Name_Space.set_group;
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
   114
33276
f2bc8bc6e73d added restore_naming;
wenzelm
parents: 33166
diff changeset
   115
val restore_naming = map_naming o K o naming_of;
f2bc8bc6e73d added restore_naming;
wenzelm
parents: 33166
diff changeset
   116
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
   117
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
   118
(* target *)
18767
2f064e6bea7e added actual operations;
wenzelm
parents: 18744
diff changeset
   119
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   120
val target_of = #target o get_lthy;
18767
2f064e6bea7e added actual operations;
wenzelm
parents: 18744
diff changeset
   121
33166
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   122
fun map_target f = map_lthy (fn (naming, theory_prefix, operations, target) =>
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   123
  (naming, theory_prefix, operations, f target));
18767
2f064e6bea7e added actual operations;
wenzelm
parents: 18744
diff changeset
   124
2f064e6bea7e added actual operations;
wenzelm
parents: 18744
diff changeset
   125
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   126
(* substructure mappings *)
19661
baab85f25e0e added syntax interface;
wenzelm
parents: 19630
diff changeset
   127
20960
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
   128
fun raw_theory_result f lthy =
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
   129
  let
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
   130
    val (res, thy') = f (ProofContext.theory_of lthy);
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
   131
    val lthy' = lthy
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
   132
      |> map_target (ProofContext.transfer thy')
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
   133
      |> ProofContext.transfer thy';
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
   134
  in (res, lthy') end;
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
   135
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
   136
fun raw_theory f = #2 o raw_theory_result (f #> pair ());
f342e82f4e58 added raw_theory(_result);
wenzelm
parents: 20910
diff changeset
   137
28379
0de8a35b866a Theory.checkpoint for main operations, admits concurrent proofs;
wenzelm
parents: 28115
diff changeset
   138
val checkpoint = raw_theory Theory.checkpoint;
0de8a35b866a Theory.checkpoint for main operations, admits concurrent proofs;
wenzelm
parents: 28115
diff changeset
   139
33166
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   140
fun theory_result f lthy =
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   141
  lthy |> raw_theory_result (fn thy =>
33157
56f836b9414f allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents: 33095
diff changeset
   142
    thy
33166
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   143
    |> Sign.map_naming (K (naming_of lthy))
33157
56f836b9414f allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents: 33095
diff changeset
   144
    |> f
33166
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   145
    ||> Sign.restore_naming thy);
19661
baab85f25e0e added syntax interface;
wenzelm
parents: 19630
diff changeset
   146
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   147
fun theory f = #2 o theory_result (f #> pair ());
19661
baab85f25e0e added syntax interface;
wenzelm
parents: 19630
diff changeset
   148
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   149
fun target_result f lthy =
18744
a9a5ee0e43e2 Local theory operations, with optional target locale.
wenzelm
parents:
diff changeset
   150
  let
28406
daeb21fec18f target update: invisible context position avoids duplication of reports etc.;
wenzelm
parents: 28395
diff changeset
   151
    val (res, ctxt') = target_of lthy
daeb21fec18f target update: invisible context position avoids duplication of reports etc.;
wenzelm
parents: 28395
diff changeset
   152
      |> ContextPosition.set_visible false
daeb21fec18f target update: invisible context position avoids duplication of reports etc.;
wenzelm
parents: 28395
diff changeset
   153
      |> f
daeb21fec18f target update: invisible context position avoids duplication of reports etc.;
wenzelm
parents: 28395
diff changeset
   154
      ||> ContextPosition.restore_visible lthy;
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   155
    val thy' = ProofContext.theory_of ctxt';
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   156
    val lthy' = lthy
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   157
      |> map_target (K ctxt')
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   158
      |> ProofContext.transfer thy';
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   159
  in (res, lthy') end;
18876
ddb6803da197 added consts_retricted;
wenzelm
parents: 18823
diff changeset
   160
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   161
fun target f = #2 o target_result (f #> pair ());
18767
2f064e6bea7e added actual operations;
wenzelm
parents: 18744
diff changeset
   162
30578
9863745880db added map_contexts (cf. Proof.map_contexts);
wenzelm
parents: 30469
diff changeset
   163
fun map_contexts f =
9863745880db added map_contexts (cf. Proof.map_contexts);
wenzelm
parents: 30469
diff changeset
   164
  theory (Context.theory_map f) #>
9863745880db added map_contexts (cf. Proof.map_contexts);
wenzelm
parents: 30469
diff changeset
   165
  target (Context.proof_map f) #>
9863745880db added map_contexts (cf. Proof.map_contexts);
wenzelm
parents: 30469
diff changeset
   166
  Context.proof_map f;
9863745880db added map_contexts (cf. Proof.map_contexts);
wenzelm
parents: 30469
diff changeset
   167
18767
2f064e6bea7e added actual operations;
wenzelm
parents: 18744
diff changeset
   168
21664
dd4e89123359 notation/abbreviation: more serious handling of morphisms;
wenzelm
parents: 21614
diff changeset
   169
(* basic operations *)
18781
ea3b5e22eab5 added constant definition;
wenzelm
parents: 18767
diff changeset
   170
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   171
fun operation f lthy = f (#operations (get_lthy lthy)) lthy;
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   172
fun operation1 f x = operation (fn ops => f ops x);
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
   173
fun operation2 f x y lthy = operation (fn ops => f ops x y) lthy;
18781
ea3b5e22eab5 added constant definition;
wenzelm
parents: 18767
diff changeset
   174
20888
0ddd2f297ae7 turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents: 20784
diff changeset
   175
val pretty = operation #pretty;
28379
0de8a35b866a Theory.checkpoint for main operations, admits concurrent proofs;
wenzelm
parents: 28115
diff changeset
   176
val abbrev = apsnd checkpoint ooo operation2 #abbrev;
0de8a35b866a Theory.checkpoint for main operations, admits concurrent proofs;
wenzelm
parents: 28115
diff changeset
   177
val define = apsnd checkpoint ooo operation2 #define;
0de8a35b866a Theory.checkpoint for main operations, admits concurrent proofs;
wenzelm
parents: 28115
diff changeset
   178
val notes = apsnd checkpoint ooo operation2 #notes;
0de8a35b866a Theory.checkpoint for main operations, admits concurrent proofs;
wenzelm
parents: 28115
diff changeset
   179
val type_syntax = checkpoint oo operation1 #type_syntax;
0de8a35b866a Theory.checkpoint for main operations, admits concurrent proofs;
wenzelm
parents: 28115
diff changeset
   180
val term_syntax = checkpoint oo operation1 #term_syntax;
0de8a35b866a Theory.checkpoint for main operations, admits concurrent proofs;
wenzelm
parents: 28115
diff changeset
   181
val declaration = checkpoint oo operation1 #declaration;
18781
ea3b5e22eab5 added constant definition;
wenzelm
parents: 18767
diff changeset
   182
26131
91024979b9eb maintain group in lthy data, implicit use in operations;
wenzelm
parents: 25984
diff changeset
   183
fun note kind (a, ths) = notes kind [(a, [(ths, [])])] #>> the_single;
18781
ea3b5e22eab5 added constant definition;
wenzelm
parents: 18767
diff changeset
   184
24933
5471b164813b removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24554
diff changeset
   185
fun target_morphism lthy =
28395
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   186
  ProofContext.norm_export_morphism lthy (target_of lthy);
24933
5471b164813b removed LocalTheory.defs/target_morphism operations;
wenzelm
parents: 24554
diff changeset
   187
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24933
diff changeset
   188
fun notation add mode raw_args lthy =
21743
fe94c6797c09 added notation/abbrev (from term_syntax.ML);
wenzelm
parents: 21700
diff changeset
   189
  let val args = map (apfst (Morphism.term (target_morphism lthy))) raw_args
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24933
diff changeset
   190
  in term_syntax (ProofContext.target_notation add mode args) lthy end;
21743
fe94c6797c09 added notation/abbrev (from term_syntax.ML);
wenzelm
parents: 21700
diff changeset
   191
21664
dd4e89123359 notation/abbreviation: more serious handling of morphisms;
wenzelm
parents: 21614
diff changeset
   192
28395
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   193
(* init *)
20910
0e129a1df180 added exit;
wenzelm
parents: 20888
diff changeset
   194
33166
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   195
fun init theory_prefix operations target =
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   196
  let val naming =
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   197
    Sign.naming_of (ProofContext.theory_of target)
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   198
    |> Name_Space.mandatory_path theory_prefix;
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   199
  in
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   200
    target |> Data.map
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   201
      (fn NONE => SOME (make_lthy (naming, theory_prefix, operations, target))
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   202
        | SOME _ => error "Local theory already initialized")
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   203
    |> checkpoint
55f250ef9e31 maintain proper Name_Space.naming, with conceal and set_group;
wenzelm
parents: 33157
diff changeset
   204
  end;
20910
0e129a1df180 added exit;
wenzelm
parents: 20888
diff changeset
   205
21273
3b01db9504a8 abbrevs: return result;
wenzelm
parents: 21206
diff changeset
   206
fun restore lthy =
33157
56f836b9414f allow name space entries to be "concealed" -- via binding/naming/local_theory;
wenzelm
parents: 33095
diff changeset
   207
  let val {theory_prefix, operations, target, ...} = get_lthy lthy
20910
0e129a1df180 added exit;
wenzelm
parents: 20888
diff changeset
   208
  in init theory_prefix operations target end;
0e129a1df180 added exit;
wenzelm
parents: 20888
diff changeset
   209
28379
0de8a35b866a Theory.checkpoint for main operations, admits concurrent proofs;
wenzelm
parents: 28115
diff changeset
   210
val reinit = checkpoint o operation #reinit;
28395
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   211
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   212
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   213
(* exit *)
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   214
28379
0de8a35b866a Theory.checkpoint for main operations, admits concurrent proofs;
wenzelm
parents: 28115
diff changeset
   215
val exit = ProofContext.theory Theory.checkpoint o operation #exit;
28395
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   216
val exit_global = ProofContext.theory_of o exit;
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   217
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   218
fun exit_result f (x, lthy) =
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   219
  let
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   220
    val ctxt = exit lthy;
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   221
    val phi = ProofContext.norm_export_morphism lthy ctxt;
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   222
  in (f phi x, ctxt) end;
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   223
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   224
fun exit_result_global f (x, lthy) =
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   225
  let
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   226
    val thy = exit_global lthy;
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   227
    val thy_ctxt = ProofContext.init thy;
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   228
    val phi = ProofContext.norm_export_morphism lthy thy_ctxt;
984fcc8feb24 added exit_global, exit_result, exit_result_global;
wenzelm
parents: 28379
diff changeset
   229
  in (f phi x, thy) end;
20910
0e129a1df180 added exit;
wenzelm
parents: 20888
diff changeset
   230
18781
ea3b5e22eab5 added constant definition;
wenzelm
parents: 18767
diff changeset
   231
end;