| author | wenzelm | 
| Fri, 28 Apr 2017 11:50:31 +0200 | |
| changeset 65602 | d9533e9615ad | 
| parent 63270 | 7dd3ee7ee422 | 
| child 66245 | da3b0e848182 | 
| 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; | 
| 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 | 14 | 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 | 15 | |
| 18744 | 16 | signature LOCAL_THEORY = | 
| 17 | sig | |
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 18 | type operations | 
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 19 | val assert: local_theory -> local_theory | 
| 62514 | 20 | val reset: local_theory -> local_theory | 
| 47064 | 21 | val level: Proof.context -> int | 
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 22 | val assert_bottom: bool -> 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 | 23 | val mark_brittle: local_theory -> local_theory | 
| 51735 | 24 | 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 | 25 | 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 | 26 | 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 | 27 | 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 | 28 | 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 | 29 | 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 | 30 | val full_name: local_theory -> binding -> string | 
| 33724 | 31 | val new_group: local_theory -> local_theory | 
| 32 | 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 | 33 | val standard_morphism: local_theory -> Proof.context -> morphism | 
| 63270 | 34 | 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 | 35 | val standard_form: local_theory -> Proof.context -> (morphism -> 'a) -> 'a | 
| 20960 | 36 | val raw_theory_result: (theory -> 'a * theory) -> local_theory -> 'a * local_theory | 
| 37 | 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 | 38 | 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 | 39 | 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 | 40 | val target_of: local_theory -> Proof.context | 
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 41 | 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 | 42 | 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 | 43 | val propagate_ml_env: generic_theory -> generic_theory | 
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 44 | 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 | 45 | val define: (binding * mixfix) * (Attrib.binding * term) -> local_theory -> | 
| 28083 
103d9282a946
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 46 | (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 | 47 | 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 | 48 | (term * (string * thm)) * local_theory | 
| 33670 
02b7738aef6a
eliminated slightly odd kind argument of LocalTheory.note(s);
 wenzelm parents: 
33519diff
changeset | 49 | val note: Attrib.binding * thm list -> local_theory -> (string * thm list) * local_theory | 
| 63267 | 50 | val notes: (Attrib.binding * Attrib.thms) list -> local_theory -> | 
| 51 | (string * thm list) list * local_theory | |
| 52 | val notes_kind: string -> (Attrib.binding * Attrib.thms) list -> local_theory -> | |
| 53 | (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 | 54 | 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 | 55 | (term * term) * local_theory | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 56 |   val declaration: {syntax: bool, pervasive: bool} -> declaration -> local_theory -> local_theory
 | 
| 61890 
f6ded81f5690
abandoned attempt to unify sublocale and interpretation into global theories
 haftmann parents: 
61111diff
changeset | 57 | val theory_registration: string * morphism -> (morphism * bool) option -> morphism -> | 
| 
f6ded81f5690
abandoned attempt to unify sublocale and interpretation into global theories
 haftmann parents: 
61111diff
changeset | 58 | local_theory -> local_theory | 
| 
f6ded81f5690
abandoned attempt to unify sublocale and interpretation into global theories
 haftmann parents: 
61111diff
changeset | 59 | val locale_dependency: string * morphism -> (morphism * bool) option -> morphism -> | 
| 56723 
a8f71445c265
subscription as target-specific implementation device
 haftmann parents: 
56141diff
changeset | 60 | local_theory -> local_theory | 
| 38308 
0e4649095739
try to uniformly follow define/note/abbrev/declaration order as close as possible
 haftmann parents: 
37949diff
changeset | 61 | val pretty: local_theory -> Pretty.T list | 
| 57929 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 62 | val add_thms_dynamic: binding * (Context.generic -> thm list) -> local_theory -> local_theory | 
| 36451 | 63 | val set_defsort: sort -> local_theory -> local_theory | 
| 35412 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
33764diff
changeset | 64 | val type_notation: bool -> Syntax.mode -> (typ * mixfix) list -> local_theory -> local_theory | 
| 24949 | 65 | 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 | 66 | val class_alias: binding -> class -> local_theory -> local_theory | 
| 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 67 | val type_alias: binding -> string -> local_theory -> local_theory | 
| 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 68 | val const_alias: binding -> string -> local_theory -> local_theory | 
| 47061 
355317493f34
clarified Local_Theory.init: avoid hardwired naming policy, discontinued odd/unused group argument (cf. 5ee13e0428d2);
 wenzelm parents: 
46992diff
changeset | 69 | val init: Name_Space.naming -> operations -> Proof.context -> local_theory | 
| 21292 | 70 | val exit: local_theory -> Proof.context | 
| 28395 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 71 | val exit_global: local_theory -> theory | 
| 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 72 | 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 | 73 | val exit_result_global: (morphism -> 'a -> 'b) -> 'a * local_theory -> 'b * theory | 
| 59890 | 74 | val init_target: Name_Space.naming -> operations -> (local_theory -> local_theory) -> | 
| 75 | local_theory -> Binding.scope * local_theory | |
| 76 | val open_target: local_theory -> Binding.scope * local_theory | |
| 77 | val close_target: local_theory -> local_theory | |
| 18744 | 78 | end; | 
| 79 | ||
| 33671 | 80 | structure Local_Theory: LOCAL_THEORY = | 
| 18744 | 81 | struct | 
| 82 | ||
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 83 | (** local theory data **) | 
| 19059 
b4ca3100e818
init/exit no longer change the theory (no naming);
 wenzelm parents: 
19032diff
changeset | 84 | |
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 85 | (* type lthy *) | 
| 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 86 | |
| 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 87 | 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 | 88 |  {define: bool -> (binding * mixfix) * (Attrib.binding * term) -> local_theory ->
 | 
| 28083 
103d9282a946
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 89 | (term * (string * thm)) * local_theory, | 
| 63267 | 90 | notes: string -> (Attrib.binding * Attrib.thms) list -> local_theory -> | 
| 91 | (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 | 92 | 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 | 93 | (term * term) * local_theory, | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 94 |   declaration: {syntax: bool, pervasive: bool} -> declaration -> local_theory -> local_theory,
 | 
| 61890 
f6ded81f5690
abandoned attempt to unify sublocale and interpretation into global theories
 haftmann parents: 
61111diff
changeset | 95 | theory_registration: string * morphism -> (morphism * bool) option -> morphism -> | 
| 
f6ded81f5690
abandoned attempt to unify sublocale and interpretation into global theories
 haftmann parents: 
61111diff
changeset | 96 | local_theory -> local_theory, | 
| 
f6ded81f5690
abandoned attempt to unify sublocale and interpretation into global theories
 haftmann parents: 
61111diff
changeset | 97 | locale_dependency: string * morphism -> (morphism * bool) option -> morphism -> | 
| 56723 
a8f71445c265
subscription as target-specific implementation device
 haftmann parents: 
56141diff
changeset | 98 | local_theory -> local_theory, | 
| 38308 
0e4649095739
try to uniformly follow define/note/abbrev/declaration order as close as possible
 haftmann parents: 
37949diff
changeset | 99 | pretty: local_theory -> Pretty.T list, | 
| 21292 | 100 | exit: local_theory -> Proof.context}; | 
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 101 | |
| 47064 | 102 | 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 | 103 |  {background_naming: Name_Space.naming,
 | 
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 104 | operations: operations, | 
| 50739 
5165d7e6d3b9
more precise Local_Theory.level: 1 really means main target and >= 2 nested context;
 wenzelm parents: 
49062diff
changeset | 105 | after_close: local_theory -> local_theory, | 
| 52118 
2a976115c7c3
mark local theory as brittle also after interpretation inside locales;
 haftmann parents: 
51735diff
changeset | 106 | brittle: bool, | 
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 107 | target: Proof.context}; | 
| 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 108 | |
| 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 | 109 | fun make_lthy (background_naming, operations, after_close, brittle, target) : lthy = | 
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 110 |   {background_naming = background_naming, operations = operations,
 | 
| 
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 | after_close = after_close, brittle = brittle, target = target}; | 
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 112 | |
| 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 113 | |
| 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 114 | (* context data *) | 
| 18744 | 115 | |
| 33519 | 116 | structure Data = Proof_Data | 
| 18744 | 117 | ( | 
| 52118 
2a976115c7c3
mark local theory as brittle also after interpretation inside locales;
 haftmann parents: 
51735diff
changeset | 118 | type T = lthy list; | 
| 
2a976115c7c3
mark local theory as brittle also after interpretation inside locales;
 haftmann parents: 
51735diff
changeset | 119 | fun init _ = []; | 
| 18744 | 120 | ); | 
| 121 | ||
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 122 | fun assert lthy = | 
| 52118 
2a976115c7c3
mark local theory as brittle also after interpretation inside locales;
 haftmann parents: 
51735diff
changeset | 123 | if null (Data.get lthy) then error "Missing local theory context" else lthy; | 
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 124 | |
| 57194 
d110b0d1bc12
tuned terminology: emphasize stack-like nature of nested local theories
 haftmann parents: 
56809diff
changeset | 125 | 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 | 126 | val top_of = hd o Data.get o assert; | 
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 127 | |
| 57925 
2bd92d3f92d7
clarified terminology: first is top (amending d110b0d1bc12);
 wenzelm parents: 
57924diff
changeset | 128 | fun map_top f = | 
| 50739 
5165d7e6d3b9
more precise Local_Theory.level: 1 really means main target and >= 2 nested context;
 wenzelm parents: 
49062diff
changeset | 129 | assert #> | 
| 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 | 130 |   Data.map (fn {background_naming, operations, after_close, brittle, target} :: parents =>
 | 
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 131 | make_lthy (f (background_naming, operations, after_close, brittle, target)) :: parents); | 
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 132 | |
| 62514 | 133 | fun reset lthy = #target (top_of lthy) |> Data.put (Data.get lthy); | 
| 47273 | 134 | |
| 47064 | 135 | |
| 136 | (* nested structure *) | |
| 33166 
55f250ef9e31
maintain proper Name_Space.naming, with conceal and set_group;
 wenzelm parents: 
33157diff
changeset | 137 | |
| 52118 
2a976115c7c3
mark local theory as brittle also after interpretation inside locales;
 haftmann parents: 
51735diff
changeset | 138 | val level = length o Data.get; (*1: main target at bottom, >= 2: nested context*) | 
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 139 | |
| 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 140 | fun assert_bottom b lthy = | 
| 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 141 | let | 
| 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 142 | val _ = assert lthy; | 
| 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 143 | val b' = level lthy <= 1; | 
| 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 144 | in | 
| 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 145 | if b andalso not b' then error "Not at bottom of local theory nesting" | 
| 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 146 | else if not b andalso b' then error "Already at bottom of local theory nesting" | 
| 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 147 | else lthy | 
| 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 148 | end; | 
| 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 149 | |
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 150 | fun map_contexts f lthy = | 
| 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 151 | 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 | 152 | lthy |> (Data.map o map_index) | 
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 153 |       (fn (i, {background_naming, operations, after_close, brittle, 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 | 154 | make_lthy (background_naming, operations, after_close, brittle, | 
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 155 | 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 | 156 | |> 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 | 157 | |> 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 | 158 | |> 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 | 159 | |> f n | 
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 160 | end; | 
| 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 161 | |
| 26131 
91024979b9eb
maintain group in lthy data, implicit use in operations;
 wenzelm parents: 
25984diff
changeset | 162 | |
| 51735 | 163 | (* brittle context -- implicit for nested structures *) | 
| 164 | ||
| 52118 
2a976115c7c3
mark local theory as brittle also after interpretation inside locales;
 haftmann parents: 
51735diff
changeset | 165 | fun mark_brittle lthy = | 
| 57924 | 166 | if level lthy = 1 then | 
| 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 | map_top (fn (background_naming, operations, after_close, _, 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 | 168 | (background_naming, operations, after_close, true, target)) lthy | 
| 52118 
2a976115c7c3
mark local theory as brittle also after interpretation inside locales;
 haftmann parents: 
51735diff
changeset | 169 | else lthy; | 
| 51735 | 170 | |
| 171 | fun assert_nonbrittle lthy = | |
| 57924 | 172 | if #brittle (top_of lthy) then error "Brittle local theory context" | 
| 51735 | 173 | else lthy; | 
| 174 | ||
| 175 | ||
| 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 | 176 | (* naming for background theory *) | 
| 26131 
91024979b9eb
maintain group in lthy data, implicit use in operations;
 wenzelm parents: 
25984diff
changeset | 177 | |
| 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 | 178 | val background_naming_of = #background_naming o top_of; | 
| 26131 
91024979b9eb
maintain group in lthy data, implicit use in operations;
 wenzelm parents: 
25984diff
changeset | 179 | |
| 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 | 180 | fun map_background_naming f = | 
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 181 | map_top (fn (background_naming, operations, after_close, brittle, 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 | 182 | (f background_naming, operations, after_close, brittle, target)); | 
| 26131 
91024979b9eb
maintain group in lthy data, implicit use in operations;
 wenzelm parents: 
25984diff
changeset | 183 | |
| 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 | 184 | 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 | 185 | |
| 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 | 186 | 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 | 187 | |
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 188 | 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 | 189 | val reset_group = map_background_naming Name_Space.reset_group; | 
| 33276 | 190 | |
| 26131 
91024979b9eb
maintain group in lthy data, implicit use in operations;
 wenzelm parents: 
25984diff
changeset | 191 | |
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 192 | (* standard morphisms *) | 
| 18767 | 193 | |
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 194 | fun standard_morphism lthy ctxt = | 
| 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 195 | Proof_Context.norm_export_morphism lthy ctxt $> | 
| 54740 | 196 | 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 | 197 | (Name_Space.transform_binding (Proof_Context.naming_of lthy)); | 
| 18767 | 198 | |
| 63270 | 199 | fun standard_morphism_theory lthy = | 
| 200 | standard_morphism lthy (Proof_Context.init_global (Proof_Context.theory_of lthy)); | |
| 201 | ||
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 202 | fun standard_form lthy ctxt x = | 
| 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 203 | Morphism.form (Morphism.transform (standard_morphism lthy ctxt) x); | 
| 18767 | 204 | |
| 205 | ||
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 206 | (* background theory *) | 
| 19661 | 207 | |
| 20960 | 208 | fun raw_theory_result f lthy = | 
| 209 | let | |
| 42360 | 210 | 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 | 211 | val lthy' = map_contexts (K (Proof_Context.transfer thy')) lthy; | 
| 20960 | 212 | in (res, lthy') end; | 
| 213 | ||
| 214 | fun raw_theory f = #2 o raw_theory_result (f #> pair ()); | |
| 215 | ||
| 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 | 216 | fun background_theory_result f lthy = | 
| 59887 | 217 | let | 
| 218 | val naming = | |
| 219 | background_naming_of lthy | |
| 220 | |> Name_Space.transform_naming (Proof_Context.naming_of lthy); | |
| 221 | in | |
| 222 | lthy |> raw_theory_result (fn thy => | |
| 223 | thy | |
| 224 | |> Sign.map_naming (K naming) | |
| 225 | |> f | |
| 226 | ||> Sign.restore_naming thy) | |
| 227 | end; | |
| 19661 | 228 | |
| 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 | 229 | fun background_theory f = #2 o background_theory_result (f #> pair ()); | 
| 19661 | 230 | |
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 231 | |
| 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 232 | (* target contexts *) | 
| 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 233 | |
| 57194 
d110b0d1bc12
tuned terminology: emphasize stack-like nature of nested local theories
 haftmann parents: 
56809diff
changeset | 234 | 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 | 235 | |
| 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 236 | fun target f lthy = | 
| 18744 | 237 | let | 
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 238 | val ctxt = target_of lthy; | 
| 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 239 | val ctxt' = ctxt | 
| 33383 | 240 | |> Context_Position.set_visible false | 
| 28406 
daeb21fec18f
target update: invisible context position avoids duplication of reports etc.;
 wenzelm parents: 
28395diff
changeset | 241 | |> f | 
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 242 | |> Context_Position.restore_visible ctxt; | 
| 42360 | 243 | 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 | 244 | in map_contexts (fn 0 => K ctxt' | _ => Proof_Context.transfer thy') lthy end; | 
| 18876 | 245 | |
| 47245 
ff1770df59b8
Local_Theory.map_contexts with explicit level indication: 0 = main target at bottom;
 wenzelm parents: 
47081diff
changeset | 246 | fun target_morphism lthy = standard_morphism lthy (target_of lthy); | 
| 18767 | 247 | |
| 37949 
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
 wenzelm parents: 
36610diff
changeset | 248 | fun propagate_ml_env (context as Context.Proof lthy) = | 
| 47064 | 249 | let val inherit = ML_Env.inherit context in | 
| 250 | lthy | |
| 251 | |> 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 | 252 | |> map_contexts (K (Context.proof_map inherit)) | 
| 47064 | 253 | |> Context.Proof | 
| 254 | 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 | 255 | | 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 | 256 | |
| 18767 | 257 | |
| 47064 | 258 | |
| 259 | (** operations **) | |
| 260 | ||
| 57194 
d110b0d1bc12
tuned terminology: emphasize stack-like nature of nested local theories
 haftmann parents: 
56809diff
changeset | 261 | val operations_of = #operations o top_of; | 
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 262 | |
| 57938 | 263 | fun operation f lthy = f (operations_of lthy) lthy; | 
| 264 | fun operation2 f x y = operation (fn ops => f ops x y); | |
| 265 | ||
| 47066 
8a6124d09ff5
basic support for nested contexts including bundles;
 wenzelm parents: 
47064diff
changeset | 266 | |
| 47064 | 267 | (* primitives *) | 
| 18781 | 268 | |
| 20888 
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
 wenzelm parents: 
20784diff
changeset | 269 | val pretty = operation #pretty; | 
| 52788 | 270 | val abbrev = operation2 #abbrev; | 
| 271 | val define = operation2 #define false; | |
| 272 | val define_internal = operation2 #define true; | |
| 273 | val notes_kind = operation2 #notes; | |
| 274 | val declaration = operation2 #declaration; | |
| 61890 
f6ded81f5690
abandoned attempt to unify sublocale and interpretation into global theories
 haftmann parents: 
61111diff
changeset | 275 | fun theory_registration dep_morph mixin export = | 
| 
f6ded81f5690
abandoned attempt to unify sublocale and interpretation into global theories
 haftmann parents: 
61111diff
changeset | 276 | assert_bottom true #> operation (fn ops => #theory_registration ops dep_morph mixin export); | 
| 
f6ded81f5690
abandoned attempt to unify sublocale and interpretation into global theories
 haftmann parents: 
61111diff
changeset | 277 | fun locale_dependency dep_morph mixin export = | 
| 
f6ded81f5690
abandoned attempt to unify sublocale and interpretation into global theories
 haftmann parents: 
61111diff
changeset | 278 | assert_bottom true #> operation (fn ops => #locale_dependency ops dep_morph mixin export); | 
| 18781 | 279 | |
| 36451 | 280 | |
| 57938 | 281 | (* theorems *) | 
| 36451 | 282 | |
| 33670 
02b7738aef6a
eliminated slightly odd kind argument of LocalTheory.note(s);
 wenzelm parents: 
33519diff
changeset | 283 | val notes = notes_kind ""; | 
| 
02b7738aef6a
eliminated slightly odd kind argument of LocalTheory.note(s);
 wenzelm parents: 
33519diff
changeset | 284 | fun note (a, ths) = notes [(a, [(ths, [])])] #>> the_single; | 
| 18781 | 285 | |
| 57929 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 286 | fun add_thms_dynamic (binding, f) lthy = | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 287 | lthy | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 288 | |> background_theory_result (fn thy => thy | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 289 | |> 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 | 290 | |-> (fn name => | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 291 | map_contexts (fn _ => fn ctxt => | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 292 | Proof_Context.transfer_facts (Proof_Context.theory_of ctxt) ctxt) #> | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 293 |     declaration {syntax = false, pervasive = false} (fn phi =>
 | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 294 | let val binding' = Morphism.binding phi binding in | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 295 | Context.mapping | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 296 | (Global_Theory.alias_fact binding' name) | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 297 | (Proof_Context.fact_alias binding' name) | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 298 | end)); | 
| 
c5063c033a5a
tuned signature -- proper Local_Theory.add_thms_dynamic;
 wenzelm parents: 
57926diff
changeset | 299 | |
| 57938 | 300 | |
| 301 | (* default sort *) | |
| 302 | ||
| 36451 | 303 | fun set_defsort S = | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 304 |   declaration {syntax = true, pervasive = false}
 | 
| 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 305 | (K (Context.mapping (Sign.set_defsort S) (Proof_Context.set_defsort S))); | 
| 36451 | 306 | |
| 35738 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 307 | |
| 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 308 | (* notation *) | 
| 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 309 | |
| 35412 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
33764diff
changeset | 310 | 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 | 311 | 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 | 312 | val args = map (apfst (Logic.type_map (Assumption.export_term lthy (target_of lthy)))) raw_args; | 
| 62844 | 313 | val args' = map (apsnd Mixfix.reset_pos) args; | 
| 314 | 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 | 315 | in | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 316 |     declaration {syntax = true, pervasive = false}
 | 
| 62844 | 317 | (Proof_Context.generic_type_notation add mode args') lthy | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 318 | end; | 
| 35412 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
33764diff
changeset | 319 | |
| 24949 | 320 | 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 | 321 | 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 | 322 | val args = map (apfst (Assumption.export_term lthy (target_of lthy))) raw_args | 
| 62844 | 323 | val args' = map (apsnd Mixfix.reset_pos) args; | 
| 324 | 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 | 325 | in | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 326 |     declaration {syntax = true, pervasive = false}
 | 
| 62844 | 327 | (Proof_Context.generic_notation add mode args') lthy | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 328 | end; | 
| 21743 | 329 | |
| 21664 
dd4e89123359
notation/abbreviation: more serious handling of morphisms;
 wenzelm parents: 
21614diff
changeset | 330 | |
| 35738 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 331 | (* name space aliases *) | 
| 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 332 | |
| 57938 | 333 | fun syntax_alias global_alias local_alias b name = | 
| 45291 
57cd50f98fdc
uniform Local_Theory.declaration with explicit params;
 wenzelm parents: 
42360diff
changeset | 334 |   declaration {syntax = true, pervasive = false} (fn phi =>
 | 
| 35738 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 335 | 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 | 336 | 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 | 337 | |
| 57938 | 338 | val class_alias = syntax_alias Sign.class_alias Proof_Context.class_alias; | 
| 339 | val type_alias = syntax_alias Sign.type_alias Proof_Context.type_alias; | |
| 340 | 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 | 341 | |
| 
98fd035c3fe3
added Local_Theory.alias operations (independent of target);
 wenzelm parents: 
35412diff
changeset | 342 | |
| 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 | 343 | |
| 59890 | 344 | (** manage targets **) | 
| 36451 | 345 | |
| 59890 | 346 | (* outermost target *) | 
| 20910 | 347 | |
| 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 | 348 | fun init background_naming operations target = | 
| 52118 
2a976115c7c3
mark local theory as brittle also after interpretation inside locales;
 haftmann parents: 
51735diff
changeset | 349 | target |> Data.map | 
| 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 | 350 | (fn [] => [make_lthy (background_naming, operations, I, false, target)] | 
| 52788 | 351 | | _ => error "Local theory already initialized"); | 
| 20910 | 352 | |
| 52788 | 353 | val exit = operation #exit; | 
| 42360 | 354 | val exit_global = Proof_Context.theory_of o exit; | 
| 28395 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 355 | |
| 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 356 | fun exit_result f (x, lthy) = | 
| 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 357 | let | 
| 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 358 | val ctxt = exit lthy; | 
| 33281 
223ef9bc399a
let naming transform binding beforehand -- covering only the "conceal" flag for now;
 wenzelm parents: 
33276diff
changeset | 359 | val phi = standard_morphism lthy ctxt; | 
| 28395 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 360 | in (f phi x, ctxt) end; | 
| 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 361 | |
| 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 362 | fun exit_result_global f (x, lthy) = | 
| 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 363 | let | 
| 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 364 | val thy = exit_global lthy; | 
| 42360 | 365 | 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 | 366 | val phi = standard_morphism lthy thy_ctxt; | 
| 28395 
984fcc8feb24
added exit_global, exit_result, exit_result_global;
 wenzelm parents: 
28379diff
changeset | 367 | in (f phi x, thy) end; | 
| 20910 | 368 | |
| 59890 | 369 | |
| 370 | (* nested targets *) | |
| 371 | ||
| 372 | fun init_target background_naming operations after_close lthy = | |
| 373 | let | |
| 374 | 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 | 375 | val after_close' = Proof_Context.restore_naming lthy #> after_close; | 
| 59890 | 376 | val (scope, target) = Proof_Context.new_scope lthy; | 
| 377 | val lthy' = | |
| 378 | target | |
| 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 | 379 | |> Data.map (cons (make_lthy (background_naming, operations, after_close', true, target))); | 
| 59890 | 380 | in (scope, lthy') end; | 
| 381 | ||
| 382 | fun open_target lthy = | |
| 383 | init_target (background_naming_of lthy) (operations_of lthy) I lthy; | |
| 384 | ||
| 385 | fun close_target lthy = | |
| 386 | let | |
| 387 | val _ = assert_bottom false lthy; | |
| 388 |     val ({after_close, ...} :: rest) = Data.get lthy;
 | |
| 62514 | 389 | in lthy |> Data.put rest |> reset |> after_close end; | 
| 59890 | 390 | |
| 18781 | 391 | end; |