haftmann@29361
|
1 |
(* Title: Pure/Isar/locale.ML
|
haftmann@29361
|
2 |
Author: Clemens Ballarin, TU Muenchen
|
haftmann@29361
|
3 |
|
wenzelm@30725
|
4 |
Locales -- managed Isar proof contexts, based on Pure predicates.
|
haftmann@29361
|
5 |
|
haftmann@29361
|
6 |
Draws basic ideas from Florian Kammueller's original version of
|
haftmann@29361
|
7 |
locales, but uses the richer infrastructure of Isar instead of the raw
|
haftmann@29361
|
8 |
meta-logic. Furthermore, structured import of contexts (with merge
|
haftmann@29361
|
9 |
and rename operations) are provided, as well as type-inference of the
|
haftmann@29361
|
10 |
signature parts, and predicate definitions of the specification text.
|
haftmann@29361
|
11 |
|
haftmann@29361
|
12 |
Interpretation enables the reuse of theorems of locales in other
|
haftmann@29361
|
13 |
contexts, namely those defined by theories, structured proofs and
|
haftmann@29361
|
14 |
locales themselves.
|
haftmann@29361
|
15 |
|
haftmann@29361
|
16 |
See also:
|
haftmann@29361
|
17 |
|
haftmann@29361
|
18 |
[1] Clemens Ballarin. Locales and Locale Expressions in Isabelle/Isar.
|
haftmann@29361
|
19 |
In Stefano Berardi et al., Types for Proofs and Programs: International
|
haftmann@29361
|
20 |
Workshop, TYPES 2003, Torino, Italy, LNCS 3085, pages 34-50, 2004.
|
haftmann@29361
|
21 |
[2] Clemens Ballarin. Interpretation of Locales in Isabelle: Managing
|
haftmann@29361
|
22 |
Dependencies between Locales. Technical Report TUM-I0607, Technische
|
haftmann@29361
|
23 |
Universitaet Muenchen, 2006.
|
haftmann@29361
|
24 |
[3] Clemens Ballarin. Interpretation of Locales in Isabelle: Theories and
|
haftmann@29361
|
25 |
Proof Contexts. In J.M. Borwein and W.M. Farmer, MKM 2006, LNAI 4108,
|
haftmann@29361
|
26 |
pages 31-43, 2006.
|
haftmann@29361
|
27 |
*)
|
haftmann@29361
|
28 |
|
haftmann@29361
|
29 |
signature LOCALE =
|
haftmann@29361
|
30 |
sig
|
haftmann@29576
|
31 |
(* Locale specification *)
|
wenzelm@30344
|
32 |
val register_locale: binding ->
|
wenzelm@30755
|
33 |
(string * sort) list * ((string * typ) * mixfix) list ->
|
haftmann@29361
|
34 |
term option * term list ->
|
haftmann@29441
|
35 |
thm option * thm option -> thm list ->
|
wenzelm@30725
|
36 |
declaration list * declaration list ->
|
wenzelm@30725
|
37 |
(string * (Attrib.binding * (thm list * Attrib.src list) list) list) list ->
|
wenzelm@30725
|
38 |
(string * morphism) list -> theory -> theory
|
haftmann@29361
|
39 |
val intern: theory -> xstring -> string
|
haftmann@29361
|
40 |
val extern: theory -> string -> xstring
|
haftmann@29392
|
41 |
val defined: theory -> string -> bool
|
wenzelm@30755
|
42 |
val params_of: theory -> string -> ((string * typ) * mixfix) list
|
haftmann@29441
|
43 |
val intros_of: theory -> string -> thm option * thm option
|
haftmann@29441
|
44 |
val axioms_of: theory -> string -> thm list
|
haftmann@29544
|
45 |
val instance_of: theory -> string -> morphism -> term list
|
haftmann@29361
|
46 |
val specification_of: theory -> string -> term option * term list
|
haftmann@29361
|
47 |
val declarations_of: theory -> string -> declaration list * declaration list
|
haftmann@29361
|
48 |
|
haftmann@29361
|
49 |
(* Storing results *)
|
haftmann@29361
|
50 |
val add_thmss: string -> string -> (Attrib.binding * (thm list * Attrib.src list) list) list ->
|
haftmann@29361
|
51 |
Proof.context -> Proof.context
|
haftmann@29361
|
52 |
val add_type_syntax: string -> declaration -> Proof.context -> Proof.context
|
haftmann@29361
|
53 |
val add_term_syntax: string -> declaration -> Proof.context -> Proof.context
|
haftmann@29361
|
54 |
val add_declaration: string -> declaration -> Proof.context -> Proof.context
|
haftmann@29361
|
55 |
|
haftmann@29361
|
56 |
(* Activation *)
|
wenzelm@30764
|
57 |
val activate_declarations: string * morphism -> Proof.context -> Proof.context
|
wenzelm@30764
|
58 |
val activate_facts: string * morphism -> Context.generic -> Context.generic
|
haftmann@29361
|
59 |
val init: string -> theory -> Proof.context
|
haftmann@29361
|
60 |
|
haftmann@29361
|
61 |
(* Reasoning about locales *)
|
wenzelm@30725
|
62 |
val get_witnesses: Proof.context -> thm list
|
wenzelm@30725
|
63 |
val get_intros: Proof.context -> thm list
|
wenzelm@30725
|
64 |
val get_unfolds: Proof.context -> thm list
|
wenzelm@30725
|
65 |
val witness_add: attribute
|
wenzelm@30725
|
66 |
val intro_add: attribute
|
wenzelm@30725
|
67 |
val unfold_add: attribute
|
haftmann@29361
|
68 |
val intro_locales_tac: bool -> Proof.context -> thm list -> tactic
|
haftmann@29361
|
69 |
|
haftmann@31988
|
70 |
(* Registrations and dependencies *)
|
haftmann@32113
|
71 |
val add_registration_eqs: string * morphism -> thm list -> morphism -> theory -> theory
|
ballarin@32800
|
72 |
val amend_registration_legacy: morphism -> string * morphism -> theory -> theory
|
haftmann@32074
|
73 |
val add_dependency: string -> string * morphism -> morphism -> theory -> theory
|
haftmann@29361
|
74 |
|
haftmann@29361
|
75 |
(* Diagnostic *)
|
haftmann@29361
|
76 |
val print_locales: theory -> unit
|
wenzelm@30344
|
77 |
val print_locale: theory -> bool -> xstring -> unit
|
haftmann@29361
|
78 |
end;
|
haftmann@29361
|
79 |
|
haftmann@29361
|
80 |
structure Locale: LOCALE =
|
haftmann@29361
|
81 |
struct
|
haftmann@29361
|
82 |
|
haftmann@29361
|
83 |
datatype ctxt = datatype Element.ctxt;
|
haftmann@29361
|
84 |
|
haftmann@29392
|
85 |
|
haftmann@29392
|
86 |
(*** Theory data ***)
|
haftmann@29361
|
87 |
|
haftmann@29361
|
88 |
datatype locale = Loc of {
|
haftmann@29392
|
89 |
(** static part **)
|
wenzelm@30755
|
90 |
parameters: (string * sort) list * ((string * typ) * mixfix) list,
|
haftmann@29361
|
91 |
(* type and term parameters *)
|
haftmann@29361
|
92 |
spec: term option * term list,
|
haftmann@29361
|
93 |
(* assumptions (as a single predicate expression) and defines *)
|
haftmann@29441
|
94 |
intros: thm option * thm option,
|
haftmann@29441
|
95 |
axioms: thm list,
|
haftmann@29392
|
96 |
(** dynamic part **)
|
haftmann@29361
|
97 |
decls: (declaration * stamp) list * (declaration * stamp) list,
|
haftmann@29361
|
98 |
(* type and term syntax declarations *)
|
haftmann@29361
|
99 |
notes: ((string * (Attrib.binding * (thm list * Attrib.src list) list) list) * stamp) list,
|
haftmann@29361
|
100 |
(* theorem declarations *)
|
haftmann@29544
|
101 |
dependencies: ((string * morphism) * stamp) list
|
haftmann@29361
|
102 |
(* locale dependencies (sublocale relation) *)
|
haftmann@29392
|
103 |
};
|
haftmann@29361
|
104 |
|
haftmann@29441
|
105 |
fun mk_locale ((parameters, spec, intros, axioms), ((decls, notes), dependencies)) =
|
haftmann@29441
|
106 |
Loc {parameters = parameters, intros = intros, axioms = axioms, spec = spec,
|
haftmann@29441
|
107 |
decls = decls, notes = notes, dependencies = dependencies};
|
wenzelm@30754
|
108 |
|
haftmann@29441
|
109 |
fun map_locale f (Loc {parameters, spec, intros, axioms, decls, notes, dependencies}) =
|
haftmann@29441
|
110 |
mk_locale (f ((parameters, spec, intros, axioms), ((decls, notes), dependencies)));
|
wenzelm@30754
|
111 |
|
haftmann@29441
|
112 |
fun merge_locale (Loc {parameters, spec, intros, axioms, decls = (decls1, decls2),
|
haftmann@29441
|
113 |
notes, dependencies}, Loc {decls = (decls1', decls2'), notes = notes',
|
haftmann@29441
|
114 |
dependencies = dependencies', ...}) = mk_locale
|
haftmann@29441
|
115 |
((parameters, spec, intros, axioms),
|
haftmann@29441
|
116 |
(((merge (eq_snd op =) (decls1, decls1'), merge (eq_snd op =) (decls2, decls2')),
|
haftmann@29441
|
117 |
merge (eq_snd op =) (notes, notes')),
|
haftmann@29441
|
118 |
merge (eq_snd op =) (dependencies, dependencies')));
|
haftmann@29361
|
119 |
|
wenzelm@30725
|
120 |
structure Locales = TheoryDataFun
|
haftmann@29361
|
121 |
(
|
haftmann@29392
|
122 |
type T = locale NameSpace.table;
|
haftmann@29361
|
123 |
val empty = NameSpace.empty_table;
|
haftmann@29361
|
124 |
val copy = I;
|
haftmann@29361
|
125 |
val extend = I;
|
haftmann@29392
|
126 |
fun merge _ = NameSpace.join_tables (K merge_locale);
|
haftmann@29361
|
127 |
);
|
haftmann@29361
|
128 |
|
wenzelm@30725
|
129 |
val intern = NameSpace.intern o #1 o Locales.get;
|
wenzelm@30725
|
130 |
val extern = NameSpace.extern o #1 o Locales.get;
|
haftmann@29392
|
131 |
|
wenzelm@30725
|
132 |
val get_locale = Symtab.lookup o #2 o Locales.get;
|
wenzelm@30725
|
133 |
val defined = Symtab.defined o #2 o Locales.get;
|
haftmann@29361
|
134 |
|
wenzelm@30725
|
135 |
fun the_locale thy name =
|
wenzelm@30725
|
136 |
(case get_locale thy name of
|
wenzelm@30725
|
137 |
SOME (Loc loc) => loc
|
wenzelm@30725
|
138 |
| NONE => error ("Unknown locale " ^ quote name));
|
haftmann@29361
|
139 |
|
wenzelm@30344
|
140 |
fun register_locale binding parameters spec intros axioms decls notes dependencies thy =
|
wenzelm@30725
|
141 |
thy |> Locales.map (NameSpace.define (Sign.naming_of thy)
|
wenzelm@30725
|
142 |
(binding,
|
wenzelm@30725
|
143 |
mk_locale ((parameters, spec, intros, axioms),
|
wenzelm@30725
|
144 |
((pairself (map (fn decl => (decl, stamp ()))) decls, map (fn n => (n, stamp ())) notes),
|
wenzelm@30725
|
145 |
map (fn d => (d, stamp ())) dependencies))) #> snd);
|
haftmann@29361
|
146 |
|
haftmann@29392
|
147 |
fun change_locale name =
|
wenzelm@30725
|
148 |
Locales.map o apsnd o Symtab.map_entry name o map_locale o apsnd;
|
haftmann@29361
|
149 |
|
haftmann@29361
|
150 |
fun print_locales thy =
|
wenzelm@30725
|
151 |
Pretty.strs ("locales:" :: map #1 (NameSpace.extern_table (Locales.get thy)))
|
haftmann@29392
|
152 |
|> Pretty.writeln;
|
haftmann@29361
|
153 |
|
haftmann@29361
|
154 |
|
haftmann@29361
|
155 |
(*** Primitive operations ***)
|
haftmann@29361
|
156 |
|
haftmann@29392
|
157 |
fun params_of thy = snd o #parameters o the_locale thy;
|
haftmann@29361
|
158 |
|
haftmann@29441
|
159 |
fun intros_of thy = #intros o the_locale thy;
|
haftmann@29441
|
160 |
|
haftmann@29441
|
161 |
fun axioms_of thy = #axioms o the_locale thy;
|
haftmann@29441
|
162 |
|
haftmann@29392
|
163 |
fun instance_of thy name morph = params_of thy name |>
|
wenzelm@30755
|
164 |
map (Morphism.term morph o Free o #1);
|
haftmann@29361
|
165 |
|
haftmann@29392
|
166 |
fun specification_of thy = #spec o the_locale thy;
|
haftmann@29361
|
167 |
|
haftmann@29392
|
168 |
fun declarations_of thy name = the_locale thy name |>
|
wenzelm@30725
|
169 |
#decls |> pairself (map fst);
|
haftmann@29361
|
170 |
|
haftmann@29544
|
171 |
fun dependencies_of thy name = the_locale thy name |>
|
haftmann@29544
|
172 |
#dependencies |> map fst;
|
haftmann@29544
|
173 |
|
haftmann@29361
|
174 |
|
haftmann@29361
|
175 |
(*** Activate context elements of locale ***)
|
haftmann@29361
|
176 |
|
haftmann@29361
|
177 |
(** Identifiers: activated locales in theory or proof context **)
|
haftmann@29361
|
178 |
|
haftmann@29361
|
179 |
fun ident_eq thy ((n: string, ts), (m, ss)) = (m = n) andalso Pattern.matchess thy (ss, ts);
|
haftmann@29361
|
180 |
|
haftmann@29361
|
181 |
local
|
haftmann@29361
|
182 |
|
wenzelm@30754
|
183 |
datatype 'a delayed = Ready of 'a | ToDo of 'a delayed * 'a delayed;
|
haftmann@29361
|
184 |
|
wenzelm@30725
|
185 |
structure Identifiers = GenericDataFun
|
haftmann@29361
|
186 |
(
|
wenzelm@30754
|
187 |
type T = (string * term list) list delayed;
|
wenzelm@30754
|
188 |
val empty = Ready [];
|
haftmann@29361
|
189 |
val extend = I;
|
haftmann@29361
|
190 |
fun merge _ = ToDo;
|
haftmann@29361
|
191 |
);
|
haftmann@29361
|
192 |
|
haftmann@29361
|
193 |
fun finish thy (ToDo (i1, i2)) = merge (ident_eq thy) (finish thy i1, finish thy i2)
|
haftmann@29361
|
194 |
| finish _ (Ready ids) = ids;
|
haftmann@29361
|
195 |
|
haftmann@29361
|
196 |
val _ = Context.>> (Context.map_theory (Theory.at_begin (fn thy =>
|
wenzelm@30725
|
197 |
(case Identifiers.get (Context.Theory thy) of
|
wenzelm@30725
|
198 |
Ready _ => NONE
|
wenzelm@30725
|
199 |
| ids => SOME (Context.theory_map (Identifiers.put (Ready (finish thy ids))) thy)))));
|
haftmann@29361
|
200 |
|
wenzelm@30764
|
201 |
in
|
haftmann@29361
|
202 |
|
wenzelm@30764
|
203 |
val get_idents = (fn Ready ids => ids) o Identifiers.get;
|
wenzelm@30764
|
204 |
val put_idents = Identifiers.put o Ready;
|
haftmann@29361
|
205 |
|
haftmann@29361
|
206 |
end;
|
haftmann@29361
|
207 |
|
haftmann@29361
|
208 |
|
haftmann@29361
|
209 |
(** Resolve locale dependencies in a depth-first fashion **)
|
haftmann@29361
|
210 |
|
haftmann@29361
|
211 |
local
|
haftmann@29361
|
212 |
|
haftmann@29361
|
213 |
val roundup_bound = 120;
|
haftmann@29361
|
214 |
|
haftmann@29361
|
215 |
fun add thy depth (name, morph) (deps, marked) =
|
haftmann@29361
|
216 |
if depth > roundup_bound
|
haftmann@29361
|
217 |
then error "Roundup bound exceeded (sublocale relation probably not terminating)."
|
haftmann@29361
|
218 |
else
|
haftmann@29361
|
219 |
let
|
wenzelm@30754
|
220 |
val dependencies = dependencies_of thy name;
|
haftmann@29361
|
221 |
val instance = instance_of thy name morph;
|
haftmann@29361
|
222 |
in
|
haftmann@29361
|
223 |
if member (ident_eq thy) marked (name, instance)
|
haftmann@29361
|
224 |
then (deps, marked)
|
haftmann@29361
|
225 |
else
|
haftmann@29361
|
226 |
let
|
wenzelm@30754
|
227 |
val dependencies' = map (fn (name, morph') => (name, morph' $> morph)) dependencies;
|
haftmann@29361
|
228 |
val marked' = (name, instance) :: marked;
|
haftmann@29361
|
229 |
val (deps', marked'') = fold_rev (add thy (depth + 1)) dependencies' ([], marked');
|
haftmann@29361
|
230 |
in
|
haftmann@29361
|
231 |
((name, morph) :: deps' @ deps, marked'')
|
haftmann@29361
|
232 |
end
|
haftmann@29361
|
233 |
end;
|
haftmann@29361
|
234 |
|
haftmann@29361
|
235 |
in
|
haftmann@29361
|
236 |
|
haftmann@29361
|
237 |
fun roundup thy activate_dep (name, morph) (marked, input) =
|
haftmann@29361
|
238 |
let
|
haftmann@29361
|
239 |
(* Find all dependencies incuding new ones (which are dependencies enriching
|
haftmann@29361
|
240 |
existing registrations). *)
|
wenzelm@30754
|
241 |
val (dependencies, marked') = add thy 0 (name, morph) ([], []);
|
ballarin@32800
|
242 |
(* Filter out fragments from marked; these won't be activated. *)
|
haftmann@29361
|
243 |
val dependencies' = filter_out (fn (name, morph) =>
|
haftmann@29361
|
244 |
member (ident_eq thy) marked (name, instance_of thy name morph)) dependencies;
|
haftmann@29361
|
245 |
in
|
wenzelm@30773
|
246 |
(merge (ident_eq thy) (marked, marked'), input |> fold_rev activate_dep dependencies')
|
haftmann@29361
|
247 |
end;
|
haftmann@29361
|
248 |
|
haftmann@29361
|
249 |
end;
|
haftmann@29361
|
250 |
|
haftmann@29361
|
251 |
|
haftmann@29361
|
252 |
(* Declarations, facts and entire locale content *)
|
haftmann@29361
|
253 |
|
wenzelm@30764
|
254 |
fun activate_decls (name, morph) context =
|
haftmann@29361
|
255 |
let
|
wenzelm@30764
|
256 |
val thy = Context.theory_of context;
|
haftmann@29392
|
257 |
val {decls = (typ_decls, term_decls), ...} = the_locale thy name;
|
haftmann@29361
|
258 |
in
|
wenzelm@30764
|
259 |
context
|
wenzelm@30764
|
260 |
|> fold_rev (fn (decl, _) => decl morph) typ_decls
|
wenzelm@30764
|
261 |
|> fold_rev (fn (decl, _) => decl morph) term_decls
|
haftmann@29361
|
262 |
end;
|
haftmann@29361
|
263 |
|
haftmann@29361
|
264 |
fun activate_notes activ_elem transfer thy (name, morph) input =
|
haftmann@29361
|
265 |
let
|
haftmann@29392
|
266 |
val {notes, ...} = the_locale thy name;
|
haftmann@29361
|
267 |
fun activate ((kind, facts), _) input =
|
haftmann@29361
|
268 |
let
|
haftmann@29361
|
269 |
val facts' = facts |> Element.facts_map (Element.morph_ctxt (transfer input $> morph))
|
haftmann@29361
|
270 |
in activ_elem (Notes (kind, facts')) input end;
|
haftmann@29361
|
271 |
in
|
haftmann@29361
|
272 |
fold_rev activate notes input
|
haftmann@29361
|
273 |
end;
|
haftmann@29361
|
274 |
|
haftmann@29361
|
275 |
fun activate_all name thy activ_elem transfer (marked, input) =
|
haftmann@29361
|
276 |
let
|
wenzelm@30764
|
277 |
val {parameters = (_, params), spec = (asm, defs), ...} = the_locale thy name;
|
wenzelm@30764
|
278 |
val input' = input |>
|
wenzelm@30755
|
279 |
(not (null params) ?
|
wenzelm@30755
|
280 |
activ_elem (Fixes (map (fn ((x, T), mx) => (Binding.name x, SOME T, mx)) params))) |>
|
haftmann@29361
|
281 |
(* FIXME type parameters *)
|
wenzelm@30764
|
282 |
(case asm of SOME A => activ_elem (Assumes [(Attrib.empty_binding, [(A, [])])]) | _ => I) |>
|
haftmann@29361
|
283 |
(if not (null defs)
|
haftmann@29361
|
284 |
then activ_elem (Defines (map (fn def => (Attrib.empty_binding, (def, []))) defs))
|
wenzelm@30764
|
285 |
else I);
|
wenzelm@30773
|
286 |
val activate = activate_notes activ_elem transfer thy;
|
wenzelm@30764
|
287 |
in
|
wenzelm@30773
|
288 |
roundup thy activate (name, Morphism.identity) (marked, input')
|
haftmann@29361
|
289 |
end;
|
haftmann@29361
|
290 |
|
haftmann@29361
|
291 |
|
haftmann@29361
|
292 |
(** Public activation functions **)
|
haftmann@29361
|
293 |
|
wenzelm@30775
|
294 |
fun activate_declarations dep = Context.proof_map (fn context =>
|
wenzelm@30764
|
295 |
let
|
wenzelm@30764
|
296 |
val thy = Context.theory_of context;
|
haftmann@32113
|
297 |
in roundup thy activate_decls dep (get_idents context, context) |-> put_idents end);
|
haftmann@29361
|
298 |
|
wenzelm@30764
|
299 |
fun activate_facts dep context =
|
wenzelm@30764
|
300 |
let
|
wenzelm@30764
|
301 |
val thy = Context.theory_of context;
|
wenzelm@30775
|
302 |
val activate = activate_notes Element.init (Element.transfer_morphism o Context.theory_of) thy;
|
wenzelm@30764
|
303 |
in roundup thy activate dep (get_idents context, context) |-> put_idents end;
|
haftmann@29361
|
304 |
|
haftmann@29361
|
305 |
fun init name thy =
|
wenzelm@30775
|
306 |
activate_all name thy Element.init (Element.transfer_morphism o Context.theory_of)
|
wenzelm@30764
|
307 |
([], Context.Proof (ProofContext.init thy)) |-> put_idents |> Context.proof_of;
|
haftmann@29361
|
308 |
|
wenzelm@30764
|
309 |
fun print_locale thy show_facts raw_name =
|
haftmann@29361
|
310 |
let
|
wenzelm@30764
|
311 |
val name = intern thy raw_name;
|
wenzelm@30764
|
312 |
val ctxt = init name thy;
|
wenzelm@30764
|
313 |
fun cons_elem (elem as Notes _) = show_facts ? cons elem
|
wenzelm@30764
|
314 |
| cons_elem elem = cons elem;
|
wenzelm@30764
|
315 |
val elems =
|
wenzelm@30764
|
316 |
activate_all name thy cons_elem (K (Element.transfer_morphism thy)) ([], [])
|
wenzelm@30764
|
317 |
|> snd |> rev;
|
haftmann@29361
|
318 |
in
|
wenzelm@30764
|
319 |
Pretty.big_list "locale elements:" (map (Pretty.chunks o Element.pretty_ctxt ctxt) elems)
|
wenzelm@30764
|
320 |
|> Pretty.writeln
|
wenzelm@30764
|
321 |
end;
|
haftmann@29361
|
322 |
|
haftmann@29361
|
323 |
|
haftmann@29361
|
324 |
(*** Registrations: interpretations in theories ***)
|
haftmann@29361
|
325 |
|
wenzelm@30725
|
326 |
structure Registrations = TheoryDataFun
|
haftmann@29361
|
327 |
(
|
haftmann@29544
|
328 |
type T = ((string * (morphism * morphism)) * stamp) list;
|
haftmann@29392
|
329 |
(* FIXME mixins need to be stamped *)
|
haftmann@29361
|
330 |
(* registrations, in reverse order of declaration *)
|
haftmann@29361
|
331 |
val empty = [];
|
haftmann@29361
|
332 |
val extend = I;
|
haftmann@29392
|
333 |
val copy = I;
|
haftmann@29361
|
334 |
fun merge _ data : T = Library.merge (eq_snd op =) data;
|
haftmann@29361
|
335 |
(* FIXME consolidate with dependencies, consider one data slot only *)
|
haftmann@29361
|
336 |
);
|
haftmann@29361
|
337 |
|
haftmann@31988
|
338 |
fun reg_morph ((name, (base, export)), _) = (name, base $> export);
|
haftmann@31988
|
339 |
|
haftmann@31988
|
340 |
fun these_registrations thy name = Registrations.get thy
|
haftmann@31988
|
341 |
|> filter (curry (op =) name o fst o fst)
|
haftmann@31988
|
342 |
|> map reg_morph;
|
haftmann@31988
|
343 |
|
haftmann@31988
|
344 |
fun all_registrations thy = Registrations.get thy
|
haftmann@31988
|
345 |
|> map reg_morph;
|
haftmann@29361
|
346 |
|
ballarin@32800
|
347 |
fun amend_registration_legacy morph (name, base_morph) thy =
|
ballarin@32800
|
348 |
(* legacy, never modify base morphism *)
|
haftmann@29361
|
349 |
let
|
wenzelm@30764
|
350 |
val regs = map #1 (Registrations.get thy);
|
haftmann@29361
|
351 |
val base = instance_of thy name base_morph;
|
haftmann@29361
|
352 |
fun match (name', (morph', _)) =
|
haftmann@29361
|
353 |
name = name' andalso eq_list (op aconv) (base, instance_of thy name' morph');
|
haftmann@29361
|
354 |
val i = find_index match (rev regs);
|
wenzelm@30764
|
355 |
val _ =
|
wenzelm@30764
|
356 |
if i = ~1 then error ("No registration of locale " ^
|
haftmann@29361
|
357 |
quote (extern thy name) ^ " and parameter instantiation " ^
|
wenzelm@30764
|
358 |
space_implode " " (map (quote o Syntax.string_of_term_global thy) base) ^ " available")
|
haftmann@29361
|
359 |
else ();
|
haftmann@29361
|
360 |
in
|
wenzelm@30725
|
361 |
Registrations.map (nth_map (length regs - 1 - i)
|
haftmann@29361
|
362 |
(fn ((name, (base, export)), stamp) => ((name, (base $> morph, export)), stamp))) thy
|
haftmann@29361
|
363 |
end;
|
haftmann@29361
|
364 |
|
haftmann@32074
|
365 |
fun add_registration_eqs (dep, proto_morph) eqns export thy =
|
haftmann@32074
|
366 |
let
|
haftmann@32074
|
367 |
val morph = if null eqns then proto_morph
|
haftmann@32074
|
368 |
else proto_morph $> Element.eq_morphism thy eqns;
|
haftmann@32074
|
369 |
in
|
haftmann@32113
|
370 |
(get_idents (Context.Theory thy), thy)
|
haftmann@32113
|
371 |
|> roundup thy (fn (dep', morph') =>
|
haftmann@32113
|
372 |
Registrations.map (cons ((dep', (morph', export)), stamp ()))) (dep, morph)
|
haftmann@32113
|
373 |
|> snd
|
haftmann@32074
|
374 |
|> Context.theory_map (activate_facts (dep, morph $> export))
|
haftmann@32074
|
375 |
end;
|
haftmann@32074
|
376 |
|
haftmann@29361
|
377 |
|
haftmann@31988
|
378 |
(*** Dependencies ***)
|
haftmann@31988
|
379 |
|
haftmann@32074
|
380 |
fun add_dependency loc (dep, morph) export thy =
|
haftmann@31988
|
381 |
thy
|
haftmann@32074
|
382 |
|> (change_locale loc o apsnd) (cons ((dep, morph $> export), stamp ()))
|
haftmann@31988
|
383 |
|> (fn thy => fold_rev (Context.theory_map o activate_facts)
|
haftmann@31988
|
384 |
(all_registrations thy) thy);
|
haftmann@31988
|
385 |
|
haftmann@31988
|
386 |
|
haftmann@29361
|
387 |
(*** Storing results ***)
|
haftmann@29361
|
388 |
|
haftmann@29361
|
389 |
(* Theorems *)
|
haftmann@29361
|
390 |
|
haftmann@29361
|
391 |
fun add_thmss loc kind args ctxt =
|
haftmann@29361
|
392 |
let
|
wenzelm@30777
|
393 |
val (Notes args', ctxt') = Element.activate_i (Notes (kind, args)) ctxt;
|
haftmann@29361
|
394 |
val ctxt'' = ctxt' |> ProofContext.theory (
|
haftmann@29392
|
395 |
(change_locale loc o apfst o apsnd) (cons (args', stamp ()))
|
haftmann@29392
|
396 |
#>
|
haftmann@29361
|
397 |
(* Registrations *)
|
haftmann@31988
|
398 |
(fn thy => fold_rev (fn (_, morph) =>
|
haftmann@29361
|
399 |
let
|
haftmann@29361
|
400 |
val args'' = snd args' |> Element.facts_map (Element.morph_ctxt morph) |>
|
haftmann@29361
|
401 |
Attrib.map_facts (Attrib.attribute_i thy)
|
wenzelm@30438
|
402 |
in PureThy.note_thmss kind args'' #> snd end)
|
haftmann@31988
|
403 |
(these_registrations thy loc) thy))
|
haftmann@29361
|
404 |
in ctxt'' end;
|
haftmann@29361
|
405 |
|
haftmann@29361
|
406 |
|
haftmann@29361
|
407 |
(* Declarations *)
|
haftmann@29361
|
408 |
|
haftmann@29361
|
409 |
local
|
haftmann@29361
|
410 |
|
haftmann@29361
|
411 |
fun decl_attrib decl phi = Thm.declaration_attribute (K (decl phi));
|
haftmann@29361
|
412 |
|
haftmann@29361
|
413 |
fun add_decls add loc decl =
|
wenzelm@30223
|
414 |
ProofContext.theory ((change_locale loc o apfst o apfst) (add (decl, stamp ()))) #>
|
haftmann@29361
|
415 |
add_thmss loc Thm.internalK
|
haftmann@29361
|
416 |
[((Binding.empty, [Attrib.internal (decl_attrib decl)]), [([Drule.dummy_thm], [])])];
|
haftmann@29361
|
417 |
|
haftmann@29361
|
418 |
in
|
haftmann@29361
|
419 |
|
haftmann@29361
|
420 |
val add_type_syntax = add_decls (apfst o cons);
|
haftmann@29361
|
421 |
val add_term_syntax = add_decls (apsnd o cons);
|
haftmann@29361
|
422 |
val add_declaration = add_decls (K I);
|
haftmann@29361
|
423 |
|
haftmann@29361
|
424 |
end;
|
haftmann@29361
|
425 |
|
wenzelm@30725
|
426 |
|
haftmann@29361
|
427 |
(*** Reasoning about locales ***)
|
haftmann@29361
|
428 |
|
wenzelm@30725
|
429 |
(* Storage for witnesses, intro and unfold rules *)
|
haftmann@29361
|
430 |
|
wenzelm@30725
|
431 |
structure Thms = GenericDataFun
|
wenzelm@30725
|
432 |
(
|
wenzelm@30725
|
433 |
type T = thm list * thm list * thm list;
|
wenzelm@30725
|
434 |
val empty = ([], [], []);
|
wenzelm@30725
|
435 |
val extend = I;
|
wenzelm@30725
|
436 |
fun merge _ ((witnesses1, intros1, unfolds1), (witnesses2, intros2, unfolds2)) =
|
wenzelm@30725
|
437 |
(Thm.merge_thms (witnesses1, witnesses2),
|
wenzelm@30725
|
438 |
Thm.merge_thms (intros1, intros2),
|
wenzelm@30725
|
439 |
Thm.merge_thms (unfolds1, unfolds2));
|
wenzelm@30725
|
440 |
);
|
haftmann@29361
|
441 |
|
wenzelm@30725
|
442 |
val get_witnesses = #1 o Thms.get o Context.Proof;
|
wenzelm@30725
|
443 |
val get_intros = #2 o Thms.get o Context.Proof;
|
wenzelm@30725
|
444 |
val get_unfolds = #3 o Thms.get o Context.Proof;
|
haftmann@29361
|
445 |
|
wenzelm@30725
|
446 |
val witness_add =
|
wenzelm@30725
|
447 |
Thm.declaration_attribute (fn th => Thms.map (fn (x, y, z) => (Thm.add_thm th x, y, z)));
|
wenzelm@30725
|
448 |
val intro_add =
|
wenzelm@30725
|
449 |
Thm.declaration_attribute (fn th => Thms.map (fn (x, y, z) => (x, Thm.add_thm th y, z)));
|
wenzelm@30725
|
450 |
val unfold_add =
|
wenzelm@30725
|
451 |
Thm.declaration_attribute (fn th => Thms.map (fn (x, y, z) => (x, y, Thm.add_thm th z)));
|
haftmann@29361
|
452 |
|
wenzelm@30725
|
453 |
|
wenzelm@30725
|
454 |
(* Tactic *)
|
wenzelm@30725
|
455 |
|
wenzelm@30725
|
456 |
fun intro_locales_tac eager ctxt =
|
haftmann@29361
|
457 |
Method.intros_tac
|
wenzelm@30725
|
458 |
(get_witnesses ctxt @ get_intros ctxt @ (if eager then get_unfolds ctxt else []));
|
haftmann@29361
|
459 |
|
haftmann@29361
|
460 |
val _ = Context.>> (Context.map_theory
|
wenzelm@30515
|
461 |
(Method.setup (Binding.name "intro_locales") (Scan.succeed (METHOD o intro_locales_tac false))
|
wenzelm@30515
|
462 |
"back-chain introduction rules of locales without unfolding predicates" #>
|
wenzelm@30515
|
463 |
Method.setup (Binding.name "unfold_locales") (Scan.succeed (METHOD o intro_locales_tac true))
|
wenzelm@30515
|
464 |
"back-chain all introduction rules of locales"));
|
haftmann@29361
|
465 |
|
haftmann@29361
|
466 |
end;
|
haftmann@29361
|
467 |
|