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