| author | wenzelm | 
| Sat, 10 Oct 2020 21:12:20 +0200 | |
| changeset 72425 | d0937d55eb90 | 
| parent 72154 | 2b41b710f6ef | 
| child 72433 | 7e0e497dacbc | 
| permissions | -rw-r--r-- | 
| 18744 | 1 | (* Title: Pure/Isar/local_theory.ML | 
| 2 | Author: Makarius | |
| 3 | ||
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 4 | Local theory operations, with abstract target context. | 
| 18744 | 5 | *) | 
| 6 | ||
| 18951 | 7 | type local_theory = Proof.context; | 
| 37949 
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
 wenzelm parents: 
36610diff
changeset | 8 | type generic_theory = Context.generic; | 
| 18951 | 9 | |
| 57926 
59b2572e8e93
load local_theory.ML before attrib.ML, with subtle change of semantics due to canonical Local_Theory.map_contexts instead of private Local_Theory.map_top;
 wenzelm parents: 
57925diff
changeset | 10 | structure Attrib = | 
| 
59b2572e8e93
load local_theory.ML before attrib.ML, with subtle change of semantics due to canonical Local_Theory.map_contexts instead of private Local_Theory.map_top;
 wenzelm parents: 
57925diff
changeset | 11 | struct | 
| 58011 
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
 wenzelm parents: 
57941diff
changeset | 12 | type binding = binding * Token.src list; | 
| 63267 | 13 | type thms = (thm list * Token.src list) list; | 
| 67652 | 14 | type fact = binding * thms; | 
| 57926 
59b2572e8e93
load local_theory.ML before attrib.ML, with subtle change of semantics due to canonical Local_Theory.map_contexts instead of private Local_Theory.map_top;
 wenzelm parents: 
57925diff
changeset | 15 | end; | 
| 
59b2572e8e93
load local_theory.ML before attrib.ML, with subtle change of semantics due to canonical Local_Theory.map_contexts instead of private Local_Theory.map_top;
 wenzelm parents: 
57925diff
changeset | 16 | |
| 68851 
6c9825c1e26b
clarified signature: explicit type Locale.registration;
 wenzelm parents: 
67652diff
changeset | 17 | structure Locale = | 
| 
6c9825c1e26b
clarified signature: explicit type Locale.registration;
 wenzelm parents: 
67652diff
changeset | 18 | struct | 
| 69058 | 19 |   type registration = {inst: string * morphism, mixin: (morphism * bool) option, export: morphism};
 | 
| 68851 
6c9825c1e26b
clarified signature: explicit type Locale.registration;
 wenzelm parents: 
67652diff
changeset | 20 | end; | 
| 
6c9825c1e26b
clarified signature: explicit type Locale.registration;
 wenzelm parents: 
67652diff
changeset | 21 | |
| 18744 | 22 | signature LOCAL_THEORY = | 
| 23 | sig | |
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 24 | type operations | 
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 25 | val assert: local_theory -> local_theory | 
| 47064 | 26 | val level: Proof.context -> int | 
| 66259 | 27 | val assert_bottom: local_theory -> local_theory | 
| 57926 
59b2572e8e93
load local_theory.ML before attrib.ML, with subtle change of semantics due to canonical Local_Theory.map_contexts instead of private Local_Theory.map_top;
 wenzelm parents: 
57925diff
changeset | 28 | val mark_brittle: local_theory -> local_theory | 
| 51735 | 29 | val assert_nonbrittle: local_theory -> local_theory | 
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 30 | val map_contexts: (int -> Proof.context -> Proof.context) -> local_theory -> local_theory | 
| 59880 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 31 | val background_naming_of: local_theory -> Name_Space.naming | 
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 32 | val map_background_naming: (Name_Space.naming -> Name_Space.naming) -> | 
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 33 | local_theory -> local_theory | 
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 34 | val restore_background_naming: local_theory -> local_theory -> local_theory | 
| 33166 
55f250ef9e31
maintain proper Name_Space.naming, with conceal and set_group;
 wenzelm parents: 
33157diff
changeset | 35 | val full_name: local_theory -> binding -> string | 
| 33724 | 36 | val new_group: local_theory -> local_theory | 
| 37 | val reset_group: local_theory -> local_theory | |
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 38 | val standard_morphism: local_theory -> Proof.context -> morphism | 
| 63270 | 39 | val standard_morphism_theory: local_theory -> morphism | 
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 40 | val standard_form: local_theory -> Proof.context -> (morphism -> 'a) -> 'a | 
| 20960 | 41 | val raw_theory_result: (theory -> 'a * theory) -> local_theory -> 'a * local_theory | 
| 42 | val raw_theory: (theory -> theory) -> local_theory -> local_theory | |
| 38757 
2b3e054ae6fc
renamed Local_Theory.theory(_result) to Local_Theory.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
 wenzelm parents: 
38756diff
changeset | 43 | val background_theory_result: (theory -> 'a * theory) -> local_theory -> 'a * local_theory | 
| 
2b3e054ae6fc
renamed Local_Theory.theory(_result) to Local_Theory.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
 wenzelm parents: 
38756diff
changeset | 44 | val background_theory: (theory -> theory) -> local_theory -> local_theory | 
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 45 | val target_of: local_theory -> Proof.context | 
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 46 | val target: (Proof.context -> Proof.context) -> local_theory -> local_theory | 
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 47 | val target_morphism: local_theory -> morphism | 
| 37949 
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
 wenzelm parents: 
36610diff
changeset | 48 | val propagate_ml_env: generic_theory -> generic_theory | 
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 49 | val operations_of: local_theory -> operations | 
| 33764 
7bcefaab8d41
Local_Theory.define: eliminated slightly odd kind argument -- such low-level definitions should be hardly ever exposed to end-users anyway;
 wenzelm parents: 
33724diff
changeset | 50 | val define: (binding * mixfix) * (Attrib.binding * term) -> local_theory -> | 
| 28083 
103d9282a946
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 51 | (term * (string * thm)) * local_theory | 
| 46992 
eeea81b86b70
refined Local_Theory.define vs. Local_Theory.define_internal, which allows to pass alternative name to the foundational axiom -- expecially important for 'instantiation' or 'overloading', which loose name information due to Long_Name.base_name cooking etc.;
 wenzelm parents: 
45298diff
changeset | 52 | val define_internal: (binding * mixfix) * (Attrib.binding * term) -> local_theory -> | 
| 
eeea81b86b70
refined Local_Theory.define vs. Local_Theory.define_internal, which allows to pass alternative name to the foundational axiom -- expecially important for 'instantiation' or 'overloading', which loose name information due to Long_Name.base_name cooking etc.;
 wenzelm parents: 
45298diff
changeset | 53 | (term * (string * thm)) * local_theory | 
| 33670 
02b7738aef6a
eliminated slightly odd kind argument of LocalTheory.note(s);
 wenzelm parents: 
33519diff
changeset | 54 | val note: Attrib.binding * thm list -> local_theory -> (string * thm list) * local_theory | 
| 67652 | 55 | val notes: Attrib.fact list -> local_theory -> (string * thm list) list * local_theory | 
| 56 | val notes_kind: string -> Attrib.fact list -> local_theory -> | |
| 63267 | 57 | (string * thm list) list * local_theory | 
| 38308 
0e4649095739
try to uniformly follow define/note/abbrev/declaration order as close as possible
 haftmann parents: 
37949diff
changeset | 58 | val abbrev: Syntax.mode -> (binding * mixfix) * term -> local_theory -> | 
| 
0e4649095739
try to uniformly follow define/note/abbrev/declaration order as close as possible
 haftmann parents: 
37949diff
changeset | 59 | (term * term) * local_theory | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 60 |   val declaration: {syntax: bool, pervasive: bool} -> declaration -> local_theory -> local_theory
 | 
| 68851 
6c9825c1e26b
clarified signature: explicit type Locale.registration;
 wenzelm parents: 
67652diff
changeset | 61 | val theory_registration: Locale.registration -> local_theory -> local_theory | 
| 
6c9825c1e26b
clarified signature: explicit type Locale.registration;
 wenzelm parents: 
67652diff
changeset | 62 | val locale_dependency: Locale.registration -> local_theory -> local_theory | 
| 38308 
0e4649095739
try to uniformly follow define/note/abbrev/declaration order as close as possible
 haftmann parents: 
37949diff
changeset | 63 | val pretty: local_theory -> Pretty.T list | 
| 57929 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 64 | val add_thms_dynamic: binding * (Context.generic -> thm list) -> local_theory -> local_theory | 
| 36451 | 65 | val set_defsort: sort -> local_theory -> local_theory | 
| 35412 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
33764diff
changeset | 66 | val type_notation: bool -> Syntax.mode -> (typ * mixfix) list -> local_theory -> local_theory | 
| 24949 | 67 | val notation: bool -> Syntax.mode -> (term * mixfix) list -> local_theory -> local_theory | 
| 35738 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 68 | val type_alias: binding -> string -> local_theory -> local_theory | 
| 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 69 | val const_alias: binding -> string -> local_theory -> local_theory | 
| 66335 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 70 |   val init: {background_naming: Name_Space.naming, exit: local_theory -> Proof.context} ->
 | 
| 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 71 | operations -> Proof.context -> local_theory | 
| 21292 | 72 | val exit: local_theory -> Proof.context | 
| 28395 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 73 | val exit_global: local_theory -> theory | 
| 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 74 | val exit_result: (morphism -> 'a -> 'b) -> 'a * local_theory -> 'b * Proof.context | 
| 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 75 | val exit_result_global: (morphism -> 'a -> 'b) -> 'a * local_theory -> 'b * theory | 
| 66336 
13e7dc5f7c3d
exit always refers to the bottom of a nested local theory stack, after_close always to all non-bottom elements
 haftmann parents: 
66335diff
changeset | 76 |   val init_target: {background_naming: Name_Space.naming, after_close: local_theory -> local_theory} ->
 | 
| 
13e7dc5f7c3d
exit always refers to the bottom of a nested local theory stack, after_close always to all non-bottom elements
 haftmann parents: 
66335diff
changeset | 77 | operations -> local_theory -> Binding.scope * local_theory | 
| 72154 | 78 | val begin_target: local_theory -> Binding.scope * local_theory | 
| 79 | val open_target: local_theory -> local_theory | |
| 59890 | 80 | val close_target: local_theory -> local_theory | 
| 69699 
82f57315cade
dedicated combinator for declarations nested in a local theory block
 haftmann parents: 
69058diff
changeset | 81 | val subtarget: (local_theory -> local_theory) -> local_theory -> local_theory | 
| 
82f57315cade
dedicated combinator for declarations nested in a local theory block
 haftmann parents: 
69058diff
changeset | 82 | val subtarget_result: (morphism -> 'a -> 'b) -> (local_theory -> 'a * local_theory) -> | 
| 
82f57315cade
dedicated combinator for declarations nested in a local theory block
 haftmann parents: 
69058diff
changeset | 83 | local_theory -> 'b * local_theory | 
| 18744 | 84 | end; | 
| 85 | ||
| 69708 
1c201e4792cb
Local_Theory.reset only required for toplevel interaction, attempt to withhold it from user space
 haftmann parents: 
69699diff
changeset | 86 | signature PRIVATE_LOCAL_THEORY = | 
| 
1c201e4792cb
Local_Theory.reset only required for toplevel interaction, attempt to withhold it from user space
 haftmann parents: 
69699diff
changeset | 87 | sig | 
| 
1c201e4792cb
Local_Theory.reset only required for toplevel interaction, attempt to withhold it from user space
 haftmann parents: 
69699diff
changeset | 88 | include LOCAL_THEORY | 
| 
1c201e4792cb
Local_Theory.reset only required for toplevel interaction, attempt to withhold it from user space
 haftmann parents: 
69699diff
changeset | 89 | val reset: local_theory -> local_theory | 
| 
1c201e4792cb
Local_Theory.reset only required for toplevel interaction, attempt to withhold it from user space
 haftmann parents: 
69699diff
changeset | 90 | end | 
| 
1c201e4792cb
Local_Theory.reset only required for toplevel interaction, attempt to withhold it from user space
 haftmann parents: 
69699diff
changeset | 91 | |
| 
1c201e4792cb
Local_Theory.reset only required for toplevel interaction, attempt to withhold it from user space
 haftmann parents: 
69699diff
changeset | 92 | structure Local_Theory: PRIVATE_LOCAL_THEORY = | 
| 18744 | 93 | struct | 
| 94 | ||
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 95 | (** local theory data **) | 
| 19059 
b4ca3100e818
init/exit no longer change the theory (no naming);
 wenzelm parents: 
19032diff
changeset | 96 | |
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 97 | (* type lthy *) | 
| 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 98 | |
| 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 99 | type operations = | 
| 46992 
eeea81b86b70
refined Local_Theory.define vs. Local_Theory.define_internal, which allows to pass alternative name to the foundational axiom -- expecially important for 'instantiation' or 'overloading', which loose name information due to Long_Name.base_name cooking etc.;
 wenzelm parents: 
45298diff
changeset | 100 |  {define: bool -> (binding * mixfix) * (Attrib.binding * term) -> local_theory ->
 | 
| 28083 
103d9282a946
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 101 | (term * (string * thm)) * local_theory, | 
| 67652 | 102 | notes: string -> Attrib.fact list -> local_theory -> (string * thm list) list * local_theory, | 
| 38308 
0e4649095739
try to uniformly follow define/note/abbrev/declaration order as close as possible
 haftmann parents: 
37949diff
changeset | 103 | abbrev: Syntax.mode -> (binding * mixfix) * term -> local_theory -> | 
| 
0e4649095739
try to uniformly follow define/note/abbrev/declaration order as close as possible
 haftmann parents: 
37949diff
changeset | 104 | (term * term) * local_theory, | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 105 |   declaration: {syntax: bool, pervasive: bool} -> declaration -> local_theory -> local_theory,
 | 
| 68851 
6c9825c1e26b
clarified signature: explicit type Locale.registration;
 wenzelm parents: 
67652diff
changeset | 106 | theory_registration: Locale.registration -> local_theory -> local_theory, | 
| 
6c9825c1e26b
clarified signature: explicit type Locale.registration;
 wenzelm parents: 
67652diff
changeset | 107 | locale_dependency: Locale.registration -> local_theory -> local_theory, | 
| 66335 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 108 | pretty: local_theory -> Pretty.T list}; | 
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 109 | |
| 47064 | 110 | type lthy = | 
| 59880 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 111 |  {background_naming: Name_Space.naming,
 | 
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 112 | operations: operations, | 
| 50739 
5165d7e6d3b9
more precise Local_Theory.level: 1 really means main target and >= 2 nested context;
 wenzelm parents: 
49062diff
changeset | 113 | after_close: local_theory -> local_theory, | 
| 66335 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 114 | exit: local_theory -> Proof.context, | 
| 52118 
2a976115c7c3
mark local theory as brittle also after interpretation inside locales;
 haftmann parents: 
51735diff
changeset | 115 | brittle: bool, | 
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 116 | target: Proof.context}; | 
| 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 117 | |
| 66335 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 118 | fun make_lthy (background_naming, operations, after_close, exit, brittle, target) : lthy = | 
| 59880 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 119 |   {background_naming = background_naming, operations = operations,
 | 
| 66335 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 120 | after_close = after_close, exit = exit, brittle = brittle, target = target}; | 
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 121 | |
| 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 122 | |
| 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 123 | (* context data *) | 
| 18744 | 124 | |
| 33519 | 125 | structure Data = Proof_Data | 
| 18744 | 126 | ( | 
| 52118 
2a976115c7c3
mark local theory as brittle also after interpretation inside locales;
 haftmann parents: 
51735diff
changeset | 127 | type T = lthy list; | 
| 
2a976115c7c3
mark local theory as brittle also after interpretation inside locales;
 haftmann parents: 
51735diff
changeset | 128 | fun init _ = []; | 
| 18744 | 129 | ); | 
| 130 | ||
| 72153 | 131 | |
| 66259 | 132 | (* nested structure *) | 
| 133 | ||
| 72153 | 134 | val level = length o Data.get; (*1: main target at bottom, >= 2: nested target context*) | 
| 66259 | 135 | |
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 136 | fun assert lthy = | 
| 66259 | 137 | if level lthy = 0 then error "Missing local theory context" else lthy; | 
| 138 | ||
| 139 | fun assert_bottom lthy = | |
| 140 | let | |
| 141 | val _ = assert lthy; | |
| 142 | in | |
| 143 | if level lthy > 1 then error "Not at bottom of local theory nesting" | |
| 144 | else lthy | |
| 145 | end; | |
| 146 | ||
| 147 | fun assert_not_bottom lthy = | |
| 148 | let | |
| 149 | val _ = assert lthy; | |
| 150 | in | |
| 151 | if level lthy = 1 then error "Already at bottom of local theory nesting" | |
| 152 | else lthy | |
| 153 | end; | |
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 154 | |
| 57194 
d110b0d1bc12
tuned terminology: emphasize stack-like nature of nested local theories
 haftmann parents: 
56809diff
changeset | 155 | val bottom_of = List.last o Data.get o assert; | 
| 
d110b0d1bc12
tuned terminology: emphasize stack-like nature of nested local theories
 haftmann parents: 
56809diff
changeset | 156 | val top_of = hd o Data.get o assert; | 
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 157 | |
| 57925 
2bd92d3f92d7
clarified terminology: first is top (amending d110b0d1bc12);
 wenzelm parents: 
57924diff
changeset | 158 | fun map_top f = | 
| 50739 
5165d7e6d3b9
more precise Local_Theory.level: 1 really means main target and >= 2 nested context;
 wenzelm parents: 
49062diff
changeset | 159 | assert #> | 
| 66335 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 160 |   Data.map (fn {background_naming, operations, after_close, exit, brittle, target} :: parents =>
 | 
| 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 161 | make_lthy (f (background_naming, operations, after_close, exit, brittle, target)) :: parents); | 
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 162 | |
| 62514 | 163 | fun reset lthy = #target (top_of lthy) |> Data.put (Data.get lthy); | 
| 47273 | 164 | |
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 165 | fun map_contexts f lthy = | 
| 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 166 | let val n = level lthy in | 
| 59880 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 167 | lthy |> (Data.map o map_index) | 
| 66335 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 168 |       (fn (i, {background_naming, operations, after_close, exit, brittle, target}) =>
 | 
| 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 169 | make_lthy (background_naming, operations, after_close, exit, brittle, | 
| 59880 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 170 | target | 
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 171 | |> Context_Position.set_visible false | 
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 172 | |> f (n - i - 1) | 
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 173 | |> Context_Position.restore_visible target)) | 
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 174 | |> f n | 
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 175 | end; | 
| 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 176 | |
| 26131 
91024979b9eb
maintain group in lthy data, implicit use in operations;
 wenzelm parents: 
25984diff
changeset | 177 | |
| 51735 | 178 | (* brittle context -- implicit for nested structures *) | 
| 179 | ||
| 52118 
2a976115c7c3
mark local theory as brittle also after interpretation inside locales;
 haftmann parents: 
51735diff
changeset | 180 | fun mark_brittle lthy = | 
| 57924 | 181 | if level lthy = 1 then | 
| 66335 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 182 | map_top (fn (background_naming, operations, after_close, exit, _, target) => | 
| 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 183 | (background_naming, operations, after_close, exit, true, target)) lthy | 
| 52118 
2a976115c7c3
mark local theory as brittle also after interpretation inside locales;
 haftmann parents: 
51735diff
changeset | 184 | else lthy; | 
| 51735 | 185 | |
| 186 | fun assert_nonbrittle lthy = | |
| 57924 | 187 | if #brittle (top_of lthy) then error "Brittle local theory context" | 
| 51735 | 188 | else lthy; | 
| 189 | ||
| 190 | ||
| 59880 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 191 | (* naming for background theory *) | 
| 26131 
91024979b9eb
maintain group in lthy data, implicit use in operations;
 wenzelm parents: 
25984diff
changeset | 192 | |
| 59880 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 193 | val background_naming_of = #background_naming o top_of; | 
| 26131 
91024979b9eb
maintain group in lthy data, implicit use in operations;
 wenzelm parents: 
25984diff
changeset | 194 | |
| 59880 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 195 | fun map_background_naming f = | 
| 66335 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 196 | map_top (fn (background_naming, operations, after_close, exit, brittle, target) => | 
| 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 197 | (f background_naming, operations, after_close, exit, brittle, target)); | 
| 26131 
91024979b9eb
maintain group in lthy data, implicit use in operations;
 wenzelm parents: 
25984diff
changeset | 198 | |
| 59880 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 199 | val restore_background_naming = map_background_naming o K o background_naming_of; | 
| 26131 
91024979b9eb
maintain group in lthy data, implicit use in operations;
 wenzelm parents: 
25984diff
changeset | 200 | |
| 59880 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 201 | val full_name = Name_Space.full_name o background_naming_of; | 
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 202 | |
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 203 | val new_group = map_background_naming Name_Space.new_group; | 
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 204 | val reset_group = map_background_naming Name_Space.reset_group; | 
| 33276 | 205 | |
| 26131 
91024979b9eb
maintain group in lthy data, implicit use in operations;
 wenzelm parents: 
25984diff
changeset | 206 | |
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 207 | (* standard morphisms *) | 
| 18767 | 208 | |
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 209 | fun standard_morphism lthy ctxt = | 
| 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 210 | Proof_Context.norm_export_morphism lthy ctxt $> | 
| 54740 | 211 | Morphism.binding_morphism "Local_Theory.standard_binding" | 
| 59880 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 212 | (Name_Space.transform_binding (Proof_Context.naming_of lthy)); | 
| 18767 | 213 | |
| 63270 | 214 | fun standard_morphism_theory lthy = | 
| 215 | standard_morphism lthy (Proof_Context.init_global (Proof_Context.theory_of lthy)); | |
| 216 | ||
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 217 | fun standard_form lthy ctxt x = | 
| 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 218 | Morphism.form (Morphism.transform (standard_morphism lthy ctxt) x); | 
| 18767 | 219 | |
| 220 | ||
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 221 | (* background theory *) | 
| 19661 | 222 | |
| 20960 | 223 | fun raw_theory_result f lthy = | 
| 224 | let | |
| 42360 | 225 | val (res, thy') = f (Proof_Context.theory_of lthy); | 
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 226 | val lthy' = map_contexts (K (Proof_Context.transfer thy')) lthy; | 
| 20960 | 227 | in (res, lthy') end; | 
| 228 | ||
| 229 | fun raw_theory f = #2 o raw_theory_result (f #> pair ()); | |
| 230 | ||
| 38757 
2b3e054ae6fc
renamed Local_Theory.theory(_result) to Local_Theory.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
 wenzelm parents: 
38756diff
changeset | 231 | fun background_theory_result f lthy = | 
| 59887 | 232 | let | 
| 233 | val naming = | |
| 234 | background_naming_of lthy | |
| 235 | |> Name_Space.transform_naming (Proof_Context.naming_of lthy); | |
| 236 | in | |
| 237 | lthy |> raw_theory_result (fn thy => | |
| 238 | thy | |
| 239 | |> Sign.map_naming (K naming) | |
| 240 | |> f | |
| 241 | ||> Sign.restore_naming thy) | |
| 242 | end; | |
| 19661 | 243 | |
| 38757 
2b3e054ae6fc
renamed Local_Theory.theory(_result) to Local_Theory.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
 wenzelm parents: 
38756diff
changeset | 244 | fun background_theory f = #2 o background_theory_result (f #> pair ()); | 
| 19661 | 245 | |
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 246 | |
| 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 247 | (* target contexts *) | 
| 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 248 | |
| 57194 
d110b0d1bc12
tuned terminology: emphasize stack-like nature of nested local theories
 haftmann parents: 
56809diff
changeset | 249 | val target_of = #target o bottom_of; | 
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 250 | |
| 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 251 | fun target f lthy = | 
| 18744 | 252 | let | 
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 253 | val ctxt = target_of lthy; | 
| 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 254 | val ctxt' = ctxt | 
| 33383 | 255 | |> Context_Position.set_visible false | 
| 28406 
daeb21fec18f
target update: invisible context position avoids duplication of reports etc.;
 wenzelm parents: 
28395diff
changeset | 256 | |> f | 
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 257 | |> Context_Position.restore_visible ctxt; | 
| 42360 | 258 | val thy' = Proof_Context.theory_of ctxt'; | 
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 259 | in map_contexts (fn 0 => K ctxt' | _ => Proof_Context.transfer thy') lthy end; | 
| 18876 | 260 | |
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 261 | fun target_morphism lthy = standard_morphism lthy (target_of lthy); | 
| 18767 | 262 | |
| 37949 
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
 wenzelm parents: 
36610diff
changeset | 263 | fun propagate_ml_env (context as Context.Proof lthy) = | 
| 68865 
dd44e31ca2c6
support multiple inheritance of ML environments, with canonical merge order as in Context.begin_theory;
 wenzelm parents: 
68851diff
changeset | 264 | let val inherit = ML_Env.inherit [context] in | 
| 47064 | 265 | lthy | 
| 266 | |> background_theory (Context.theory_map inherit) | |
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 267 | |> map_contexts (K (Context.proof_map inherit)) | 
| 47064 | 268 | |> Context.Proof | 
| 269 | end | |
| 37949 
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
 wenzelm parents: 
36610diff
changeset | 270 | | propagate_ml_env context = context; | 
| 
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
 wenzelm parents: 
36610diff
changeset | 271 | |
| 18767 | 272 | |
| 47064 | 273 | |
| 274 | (** operations **) | |
| 275 | ||
| 57194 
d110b0d1bc12
tuned terminology: emphasize stack-like nature of nested local theories
 haftmann parents: 
56809diff
changeset | 276 | val operations_of = #operations o top_of; | 
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 277 | |
| 57938 | 278 | fun operation f lthy = f (operations_of lthy) lthy; | 
| 279 | fun operation2 f x y = operation (fn ops => f ops x y); | |
| 280 | ||
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 281 | |
| 47064 | 282 | (* primitives *) | 
| 18781 | 283 | |
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 284 | val pretty = operation #pretty; | 
| 52788 | 285 | val abbrev = operation2 #abbrev; | 
| 286 | val define = operation2 #define false; | |
| 287 | val define_internal = operation2 #define true; | |
| 288 | val notes_kind = operation2 #notes; | |
| 289 | val declaration = operation2 #declaration; | |
| 68851 
6c9825c1e26b
clarified signature: explicit type Locale.registration;
 wenzelm parents: 
67652diff
changeset | 290 | fun theory_registration registration = | 
| 
6c9825c1e26b
clarified signature: explicit type Locale.registration;
 wenzelm parents: 
67652diff
changeset | 291 | assert_bottom #> operation (fn ops => #theory_registration ops registration); | 
| 
6c9825c1e26b
clarified signature: explicit type Locale.registration;
 wenzelm parents: 
67652diff
changeset | 292 | fun locale_dependency registration = | 
| 
6c9825c1e26b
clarified signature: explicit type Locale.registration;
 wenzelm parents: 
67652diff
changeset | 293 | assert_bottom #> operation (fn ops => #locale_dependency ops registration); | 
| 18781 | 294 | |
| 36451 | 295 | |
| 57938 | 296 | (* theorems *) | 
| 36451 | 297 | |
| 33670 
02b7738aef6a
eliminated slightly odd kind argument of LocalTheory.note(s);
 wenzelm parents: 
33519diff
changeset | 298 | val notes = notes_kind ""; | 
| 
02b7738aef6a
eliminated slightly odd kind argument of LocalTheory.note(s);
 wenzelm parents: 
33519diff
changeset | 299 | fun note (a, ths) = notes [(a, [(ths, [])])] #>> the_single; | 
| 18781 | 300 | |
| 57929 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 301 | fun add_thms_dynamic (binding, f) lthy = | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 302 | lthy | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 303 | |> background_theory_result (fn thy => thy | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 304 | |> Global_Theory.add_thms_dynamic' (Sign.inherit_naming thy lthy) (binding, f)) | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 305 | |-> (fn name => | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 306 | map_contexts (fn _ => fn ctxt => | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 307 | Proof_Context.transfer_facts (Proof_Context.theory_of ctxt) ctxt) #> | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 308 |     declaration {syntax = false, pervasive = false} (fn phi =>
 | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 309 | let val binding' = Morphism.binding phi binding in | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 310 | Context.mapping | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 311 | (Global_Theory.alias_fact binding' name) | 
| 66246 | 312 | (Proof_Context.alias_fact binding' name) | 
| 57929 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 313 | end)); | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 314 | |
| 57938 | 315 | |
| 316 | (* default sort *) | |
| 317 | ||
| 36451 | 318 | fun set_defsort S = | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 319 |   declaration {syntax = true, pervasive = false}
 | 
| 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 320 | (K (Context.mapping (Sign.set_defsort S) (Proof_Context.set_defsort S))); | 
| 36451 | 321 | |
| 35738 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 322 | |
| 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 323 | (* notation *) | 
| 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 324 | |
| 35412 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
33764diff
changeset | 325 | fun type_notation add mode raw_args lthy = | 
| 50741 
20e6e1a92e54
less aggressive Assumption.export_term (similar to Generic_Target.abbrev): merely expand local defs and thus allow notation for local fixes;
 wenzelm parents: 
50739diff
changeset | 326 | let | 
| 
20e6e1a92e54
less aggressive Assumption.export_term (similar to Generic_Target.abbrev): merely expand local defs and thus allow notation for local fixes;
 wenzelm parents: 
50739diff
changeset | 327 | val args = map (apfst (Logic.type_map (Assumption.export_term lthy (target_of lthy)))) raw_args; | 
| 62844 | 328 | val args' = map (apsnd Mixfix.reset_pos) args; | 
| 329 | val _ = lthy |> Context_Position.is_visible lthy ? Proof_Context.type_notation add mode args; | |
| 50741 
20e6e1a92e54
less aggressive Assumption.export_term (similar to Generic_Target.abbrev): merely expand local defs and thus allow notation for local fixes;
 wenzelm parents: 
50739diff
changeset | 330 | in | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 331 |     declaration {syntax = true, pervasive = false}
 | 
| 62844 | 332 | (Proof_Context.generic_type_notation add mode args') lthy | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 333 | end; | 
| 35412 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
33764diff
changeset | 334 | |
| 24949 | 335 | fun notation add mode raw_args lthy = | 
| 50741 
20e6e1a92e54
less aggressive Assumption.export_term (similar to Generic_Target.abbrev): merely expand local defs and thus allow notation for local fixes;
 wenzelm parents: 
50739diff
changeset | 336 | let | 
| 
20e6e1a92e54
less aggressive Assumption.export_term (similar to Generic_Target.abbrev): merely expand local defs and thus allow notation for local fixes;
 wenzelm parents: 
50739diff
changeset | 337 | val args = map (apfst (Assumption.export_term lthy (target_of lthy))) raw_args | 
| 62844 | 338 | val args' = map (apsnd Mixfix.reset_pos) args; | 
| 339 | val _ = lthy |> Context_Position.is_visible lthy ? Proof_Context.notation add mode args; | |
| 50741 
20e6e1a92e54
less aggressive Assumption.export_term (similar to Generic_Target.abbrev): merely expand local defs and thus allow notation for local fixes;
 wenzelm parents: 
50739diff
changeset | 340 | in | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 341 |     declaration {syntax = true, pervasive = false}
 | 
| 62844 | 342 | (Proof_Context.generic_notation add mode args') lthy | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 343 | end; | 
| 21743 | 344 | |
| 21664 
dd4e89123359
notation/abbreviation: more serious handling of morphisms;
 wenzelm parents: 
21614diff
changeset | 345 | |
| 35738 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 346 | (* name space aliases *) | 
| 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 347 | |
| 57938 | 348 | fun syntax_alias global_alias local_alias b name = | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 349 |   declaration {syntax = true, pervasive = false} (fn phi =>
 | 
| 35738 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 350 | let val b' = Morphism.binding phi b | 
| 45298 
aa35859c8741
uniform treatment of syntax declaration wrt. aux. context (NB: notation avoids duplicate mixfix internally);
 wenzelm parents: 
45291diff
changeset | 351 | in Context.mapping (global_alias b' name) (local_alias b' name) end); | 
| 35738 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 352 | |
| 57938 | 353 | val type_alias = syntax_alias Sign.type_alias Proof_Context.type_alias; | 
| 354 | val const_alias = syntax_alias Sign.const_alias Proof_Context.const_alias; | |
| 35738 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 355 | |
| 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 356 | |
| 56055 
8fe7414f00b1
slightly more rubust (and opportunistic) exit for old-fashioned theory_to_proof, which is used by global 'sublocale' with Named_Target.init but without proper exit;
 wenzelm parents: 
54740diff
changeset | 357 | |
| 59890 | 358 | (** manage targets **) | 
| 36451 | 359 | |
| 72153 | 360 | (* main target *) | 
| 20910 | 361 | |
| 66335 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 362 | fun init {background_naming, exit} operations target =
 | 
| 52118 
2a976115c7c3
mark local theory as brittle also after interpretation inside locales;
 haftmann parents: 
51735diff
changeset | 363 | target |> Data.map | 
| 66335 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 364 | (fn [] => [make_lthy (background_naming, operations, I, exit, false, target)] | 
| 52788 | 365 | | _ => error "Local theory already initialized"); | 
| 20910 | 366 | |
| 66336 
13e7dc5f7c3d
exit always refers to the bottom of a nested local theory stack, after_close always to all non-bottom elements
 haftmann parents: 
66335diff
changeset | 367 | val exit_of = #exit o bottom_of; | 
| 66335 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 368 | |
| 
a849ce33923d
treat exit separate from regular local theory operations
 haftmann parents: 
66259diff
changeset | 369 | fun exit lthy = exit_of lthy lthy; | 
| 42360 | 370 | val exit_global = Proof_Context.theory_of o exit; | 
| 28395 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 371 | |
| 72153 | 372 | fun exit_result decl (x, lthy) = | 
| 28395 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 373 | let | 
| 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 374 | val ctxt = exit lthy; | 
| 33281 
223ef9bc399a
let naming transform binding beforehand -- covering only the "conceal" flag for now;
 wenzelm parents: 
33276diff
changeset | 375 | val phi = standard_morphism lthy ctxt; | 
| 72153 | 376 | in (decl phi x, ctxt) end; | 
| 28395 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 377 | |
| 72153 | 378 | fun exit_result_global decl (x, lthy) = | 
| 28395 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 379 | let | 
| 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 380 | val thy = exit_global lthy; | 
| 42360 | 381 | val thy_ctxt = Proof_Context.init_global thy; | 
| 33281 
223ef9bc399a
let naming transform binding beforehand -- covering only the "conceal" flag for now;
 wenzelm parents: 
33276diff
changeset | 382 | val phi = standard_morphism lthy thy_ctxt; | 
| 72153 | 383 | in (decl phi x, thy) end; | 
| 20910 | 384 | |
| 59890 | 385 | |
| 386 | (* nested targets *) | |
| 387 | ||
| 66336 
13e7dc5f7c3d
exit always refers to the bottom of a nested local theory stack, after_close always to all non-bottom elements
 haftmann parents: 
66335diff
changeset | 388 | fun init_target {background_naming, after_close} operations lthy =
 | 
| 59890 | 389 | let | 
| 390 | val _ = assert lthy; | |
| 61111 
2618e7e3b5ea
proper restore naming after close, which is important for packages that used nested targets internally, e.g. BNF datatype;
 wenzelm parents: 
59890diff
changeset | 391 | val after_close' = Proof_Context.restore_naming lthy #> after_close; | 
| 59890 | 392 | val (scope, target) = Proof_Context.new_scope lthy; | 
| 72153 | 393 | val entry = make_lthy (background_naming, operations, after_close', exit_of lthy, true, target); | 
| 394 | val lthy' = Data.map (cons entry) target; | |
| 59890 | 395 | in (scope, lthy') end; | 
| 396 | ||
| 72154 | 397 | fun begin_target lthy = | 
| 66336 
13e7dc5f7c3d
exit always refers to the bottom of a nested local theory stack, after_close always to all non-bottom elements
 haftmann parents: 
66335diff
changeset | 398 |   init_target {background_naming = background_naming_of lthy, after_close = I}
 | 
| 
13e7dc5f7c3d
exit always refers to the bottom of a nested local theory stack, after_close always to all non-bottom elements
 haftmann parents: 
66335diff
changeset | 399 | (operations_of lthy) lthy; | 
| 59890 | 400 | |
| 72154 | 401 | val open_target = begin_target #> #2; | 
| 402 | ||
| 59890 | 403 | fun close_target lthy = | 
| 404 | let | |
| 66259 | 405 | val _ = assert_not_bottom lthy; | 
| 59890 | 406 |     val ({after_close, ...} :: rest) = Data.get lthy;
 | 
| 62514 | 407 | in lthy |> Data.put rest |> reset |> after_close end; | 
| 59890 | 408 | |
| 72154 | 409 | fun subtarget body = open_target #> body #> close_target; | 
| 69699 
82f57315cade
dedicated combinator for declarations nested in a local theory block
 haftmann parents: 
69058diff
changeset | 410 | |
| 72153 | 411 | fun subtarget_result decl body lthy = | 
| 69699 
82f57315cade
dedicated combinator for declarations nested in a local theory block
 haftmann parents: 
69058diff
changeset | 412 | let | 
| 72154 | 413 | val (x, inner_lthy) = lthy |> open_target |> body; | 
| 72153 | 414 | val lthy' = inner_lthy |> close_target; | 
| 415 | val phi = Proof_Context.export_morphism inner_lthy lthy'; | |
| 416 | in (decl phi x, lthy') end; | |
| 69699 
82f57315cade
dedicated combinator for declarations nested in a local theory block
 haftmann parents: 
69058diff
changeset | 417 | |
| 18781 | 418 | end; |