author | wenzelm |
Mon, 25 Feb 2008 16:31:19 +0100 | |
changeset 26131 | 91024979b9eb |
parent 25984 | da0399c9ffcb |
child 28017 | 4919bd124a58 |
permissions | -rw-r--r-- |
18744 | 1 |
(* Title: Pure/Isar/local_theory.ML |
2 |
ID: $Id$ |
|
3 |
Author: Makarius |
|
4 |
||
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
5 |
Local theory operations, with abstract target context. |
18744 | 6 |
*) |
7 |
||
18951 | 8 |
type local_theory = Proof.context; |
9 |
||
18744 | 10 |
signature LOCAL_THEORY = |
11 |
sig |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
12 |
type operations |
26131
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
13 |
val group_of: local_theory -> string |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
14 |
val group_properties_of: local_theory -> Markup.property list |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
15 |
val group_position_of: local_theory -> Markup.property list |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
16 |
val set_group: string -> local_theory -> local_theory |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
17 |
val target_of: local_theory -> Proof.context |
20960 | 18 |
val raw_theory_result: (theory -> 'a * theory) -> local_theory -> 'a * local_theory |
19 |
val raw_theory: (theory -> theory) -> local_theory -> local_theory |
|
22240 | 20 |
val full_naming: local_theory -> NameSpace.naming |
21614 | 21 |
val full_name: local_theory -> bstring -> string |
20960 | 22 |
val theory_result: (theory -> 'a * theory) -> local_theory -> 'a * local_theory |
18951 | 23 |
val theory: (theory -> theory) -> local_theory -> local_theory |
20960 | 24 |
val target_result: (Proof.context -> 'a * Proof.context) -> local_theory -> 'a * local_theory |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
25 |
val target: (Proof.context -> Proof.context) -> local_theory -> local_theory |
21860 | 26 |
val affirm: local_theory -> local_theory |
20960 | 27 |
val pretty: local_theory -> Pretty.T list |
24984 | 28 |
val axioms: string -> |
29 |
((bstring * typ) * mixfix) list * ((bstring * Attrib.src list) * term list) list -> local_theory |
|
30 |
-> (term list * (bstring * thm list) list) * local_theory |
|
21802 | 31 |
val abbrev: Syntax.mode -> (bstring * mixfix) * term -> local_theory -> |
25120 | 32 |
(term * term) * local_theory |
25021 | 33 |
val define: string -> (bstring * mixfix) * ((bstring * Attrib.src list) * term) -> local_theory -> |
34 |
(term * (bstring * thm)) * local_theory |
|
25984 | 35 |
val note: string -> (bstring * Attrib.src list) * thm list -> |
36 |
local_theory -> (bstring * thm list) * local_theory |
|
21433 | 37 |
val notes: string -> ((bstring * Attrib.src list) * (thm list * Attrib.src list) list) list -> |
18951 | 38 |
local_theory -> (bstring * thm list) list * local_theory |
24020 | 39 |
val type_syntax: declaration -> local_theory -> local_theory |
40 |
val term_syntax: declaration -> local_theory -> local_theory |
|
41 |
val declaration: declaration -> local_theory -> local_theory |
|
24949 | 42 |
val notation: bool -> Syntax.mode -> (term * mixfix) list -> local_theory -> local_theory |
21529 | 43 |
val target_morphism: local_theory -> morphism |
44 |
val init: string -> operations -> Proof.context -> local_theory |
|
21273 | 45 |
val restore: local_theory -> local_theory |
25289 | 46 |
val reinit: local_theory -> local_theory |
21292 | 47 |
val exit: local_theory -> Proof.context |
18744 | 48 |
end; |
49 |
||
50 |
structure LocalTheory: LOCAL_THEORY = |
|
51 |
struct |
|
52 |
||
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
53 |
(** local theory data **) |
19059
b4ca3100e818
init/exit no longer change the theory (no naming);
wenzelm
parents:
19032
diff
changeset
|
54 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
55 |
(* type lthy *) |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
56 |
|
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
57 |
type operations = |
20960 | 58 |
{pretty: local_theory -> Pretty.T list, |
26131
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
59 |
axioms: string -> |
24984 | 60 |
((bstring * typ) * mixfix) list * ((bstring * Attrib.src list) * term list) list -> local_theory |
61 |
-> (term list * (bstring * thm list) list) * local_theory, |
|
25120 | 62 |
abbrev: Syntax.mode -> (bstring * mixfix) * term -> local_theory -> (term * term) * local_theory, |
26131
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
63 |
define: string -> |
25984 | 64 |
(bstring * mixfix) * ((bstring * Attrib.src list) * term) -> local_theory -> |
25021 | 65 |
(term * (bstring * thm)) * local_theory, |
26131
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
66 |
notes: string -> |
21433 | 67 |
((bstring * Attrib.src list) * (thm list * Attrib.src list) list) list -> |
68 |
local_theory -> (bstring * thm list) list * local_theory, |
|
24020 | 69 |
type_syntax: declaration -> local_theory -> local_theory, |
70 |
term_syntax: declaration -> local_theory -> local_theory, |
|
71 |
declaration: declaration -> local_theory -> local_theory, |
|
25289 | 72 |
reinit: local_theory -> local_theory, |
21292 | 73 |
exit: local_theory -> Proof.context}; |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
74 |
|
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
75 |
datatype lthy = LThy of |
26131
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
76 |
{group: string, |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
77 |
theory_prefix: string, |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
78 |
operations: operations, |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
79 |
target: Proof.context}; |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
80 |
|
26131
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
81 |
fun make_lthy (group, theory_prefix, operations, target) = |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
82 |
LThy {group = group, theory_prefix = theory_prefix, operations = operations, target = target}; |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
83 |
|
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
84 |
|
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
85 |
(* context data *) |
18744 | 86 |
|
87 |
structure Data = ProofDataFun |
|
88 |
( |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
89 |
type T = lthy option; |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
90 |
fun init _ = NONE; |
18744 | 91 |
); |
92 |
||
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
93 |
fun get_lthy lthy = |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
94 |
(case Data.get lthy of |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
95 |
NONE => error "No local theory context" |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
96 |
| SOME (LThy data) => data); |
18951 | 97 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
98 |
fun map_lthy f lthy = |
26131
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
99 |
let val {group, theory_prefix, operations, target} = get_lthy lthy |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
100 |
in Data.put (SOME (make_lthy (f (group, theory_prefix, operations, target)))) lthy end; |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
101 |
|
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
102 |
|
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
103 |
(* group *) |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
104 |
|
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
105 |
val group_of = #group o get_lthy; |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
106 |
|
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
107 |
fun group_properties_of lthy = |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
108 |
(case group_of lthy of |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
109 |
"" => [] |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
110 |
| group => [(Markup.groupN, group)]); |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
111 |
|
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
112 |
fun group_position_of lthy = |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
113 |
group_properties_of lthy @ Position.properties_of (Position.thread_data ()); |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
114 |
|
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
115 |
fun set_group group = map_lthy (fn (_, theory_prefix, operations, target) => |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
116 |
(group, theory_prefix, operations, target)); |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
117 |
|
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
118 |
|
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
119 |
(* target *) |
18767 | 120 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
121 |
val target_of = #target o get_lthy; |
21860 | 122 |
val affirm = tap target_of; |
18767 | 123 |
|
26131
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
124 |
fun map_target f = map_lthy (fn (group, theory_prefix, operations, target) => |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
125 |
(group, theory_prefix, operations, f target)); |
18767 | 126 |
|
127 |
||
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
128 |
(* substructure mappings *) |
19661 | 129 |
|
20960 | 130 |
fun raw_theory_result f lthy = |
131 |
let |
|
132 |
val (res, thy') = f (ProofContext.theory_of lthy); |
|
133 |
val lthy' = lthy |
|
134 |
|> map_target (ProofContext.transfer thy') |
|
135 |
|> ProofContext.transfer thy'; |
|
136 |
in (res, lthy') end; |
|
137 |
||
138 |
fun raw_theory f = #2 o raw_theory_result (f #> pair ()); |
|
139 |
||
22240 | 140 |
fun full_naming lthy = |
141 |
Sign.naming_of (ProofContext.theory_of lthy) |
|
142 |
|> NameSpace.sticky_prefix (#theory_prefix (get_lthy lthy)) |
|
143 |
|> NameSpace.qualified_names; |
|
144 |
||
145 |
val full_name = NameSpace.full o full_naming; |
|
21614 | 146 |
|
21529 | 147 |
fun theory_result f lthy = lthy |> raw_theory_result (fn thy => thy |
148 |
|> Sign.sticky_prefix (#theory_prefix (get_lthy lthy)) |
|
149 |
|> Sign.qualified_names |
|
150 |
|> f |
|
151 |
||> Sign.restore_naming thy); |
|
19661 | 152 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
153 |
fun theory f = #2 o theory_result (f #> pair ()); |
19661 | 154 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
155 |
fun target_result f lthy = |
18744 | 156 |
let |
26131
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
157 |
val (res, ctxt') = f (target_of lthy); |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
158 |
val thy' = ProofContext.theory_of ctxt'; |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
159 |
val lthy' = lthy |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
160 |
|> map_target (K ctxt') |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
161 |
|> ProofContext.transfer thy'; |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
162 |
in (res, lthy') end; |
18876 | 163 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
164 |
fun target f = #2 o target_result (f #> pair ()); |
18767 | 165 |
|
166 |
||
21664
dd4e89123359
notation/abbreviation: more serious handling of morphisms;
wenzelm
parents:
21614
diff
changeset
|
167 |
(* basic operations *) |
18781 | 168 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
169 |
fun operation f lthy = f (#operations (get_lthy lthy)) lthy; |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
170 |
fun operation1 f x = operation (fn ops => f ops x); |
26131
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
171 |
fun operation2 f x y lthy = operation (fn ops => f ops x y) lthy; |
18781 | 172 |
|
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
173 |
val pretty = operation #pretty; |
26131
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
174 |
val axioms = operation2 #axioms; |
21743 | 175 |
val abbrev = operation2 #abbrev; |
26131
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
176 |
val define = operation2 #define; |
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
177 |
val notes = operation2 #notes; |
21498
6382c3a1e7cf
uniform interface for type_syntax/term_syntax/declaration, dependent on morphism;
wenzelm
parents:
21433
diff
changeset
|
178 |
val type_syntax = operation1 #type_syntax; |
20888
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
179 |
val term_syntax = operation1 #term_syntax; |
0ddd2f297ae7
turned into abstract wrapper module, cf. theory_target.ML;
wenzelm
parents:
20784
diff
changeset
|
180 |
val declaration = operation1 #declaration; |
18781 | 181 |
|
26131
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
182 |
fun note kind (a, ths) = notes kind [(a, [(ths, [])])] #>> the_single; |
18781 | 183 |
|
24933
5471b164813b
removed LocalTheory.defs/target_morphism operations;
wenzelm
parents:
24554
diff
changeset
|
184 |
fun target_morphism lthy = |
5471b164813b
removed LocalTheory.defs/target_morphism operations;
wenzelm
parents:
24554
diff
changeset
|
185 |
ProofContext.export_morphism lthy (target_of lthy) $> |
5471b164813b
removed LocalTheory.defs/target_morphism operations;
wenzelm
parents:
24554
diff
changeset
|
186 |
Morphism.thm_morphism Goal.norm_result; |
5471b164813b
removed LocalTheory.defs/target_morphism operations;
wenzelm
parents:
24554
diff
changeset
|
187 |
|
24949 | 188 |
fun notation add mode raw_args lthy = |
21743 | 189 |
let val args = map (apfst (Morphism.term (target_morphism lthy))) raw_args |
24949 | 190 |
in term_syntax (ProofContext.target_notation add mode args) lthy end; |
21743 | 191 |
|
21664
dd4e89123359
notation/abbreviation: more serious handling of morphisms;
wenzelm
parents:
21614
diff
changeset
|
192 |
|
20910 | 193 |
(* init -- exit *) |
194 |
||
195 |
fun init theory_prefix operations target = target |> Data.map |
|
26131
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
196 |
(fn NONE => SOME (make_lthy ("", theory_prefix, operations, target)) |
20910 | 197 |
| SOME _ => error "Local theory already initialized"); |
198 |
||
21273 | 199 |
fun restore lthy = |
26131
91024979b9eb
maintain group in lthy data, implicit use in operations;
wenzelm
parents:
25984
diff
changeset
|
200 |
let val {group = _, theory_prefix, operations, target} = get_lthy lthy |
20910 | 201 |
in init theory_prefix operations target end; |
202 |
||
21292 | 203 |
val reinit = operation #reinit; |
204 |
val exit = operation #exit; |
|
20910 | 205 |
|
18781 | 206 |
end; |