author | wenzelm |
Tue, 15 Feb 2000 19:41:44 +0100 | |
changeset 8246 | efb3c8253d90 |
parent 8168 | 9d2ac5439089 |
child 8274 | 0d8fa545bd5c |
permissions | -rw-r--r-- |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1 |
(* Title: HOL/Tools/record_package.ML |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
2 |
ID: $Id$ |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
3 |
Author: Wolfgang Naraschewski and Markus Wenzel, TU Muenchen |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
4 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
5 |
Extensible records with structural subtyping in HOL. |
5698 | 6 |
*) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
7 |
|
5698 | 8 |
signature BASIC_RECORD_PACKAGE = |
9 |
sig |
|
7178 | 10 |
val record_simproc: simproc |
5698 | 11 |
val record_split_tac: int -> tactic |
5713 | 12 |
val record_split_name: string |
5698 | 13 |
val record_split_wrapper: string * wrapper |
14 |
end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
15 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
16 |
signature RECORD_PACKAGE = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
17 |
sig |
5698 | 18 |
include BASIC_RECORD_PACKAGE |
19 |
val quiet_mode: bool ref |
|
4890 | 20 |
val moreS: sort |
21 |
val mk_fieldT: (string * typ) * typ -> typ |
|
22 |
val dest_fieldT: typ -> (string * typ) * typ |
|
23 |
val mk_field: (string * term) * term -> term |
|
24 |
val mk_fst: term -> term |
|
25 |
val mk_snd: term -> term |
|
26 |
val mk_recordT: (string * typ) list * typ -> typ |
|
27 |
val dest_recordT: typ -> (string * typ) list * typ |
|
28 |
val mk_record: (string * term) list * term -> term |
|
29 |
val mk_sel: term -> string -> term |
|
30 |
val mk_update: term -> string * term -> term |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
31 |
val print_records: theory -> unit |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
32 |
val add_record: (string list * bstring) -> string option |
6519 | 33 |
-> (bstring * string) list -> theory -> theory * {simps: thm list, iffs: thm list} |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
34 |
val add_record_i: (string list * bstring) -> (typ list * string) option |
6519 | 35 |
-> (bstring * typ) list -> theory -> theory * {simps: thm list, iffs: thm list} |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
36 |
val setup: (theory -> theory) list |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
37 |
end; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
38 |
|
7178 | 39 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
40 |
structure RecordPackage: RECORD_PACKAGE = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
41 |
struct |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
42 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
43 |
|
4894 | 44 |
(*** utilities ***) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
45 |
|
5698 | 46 |
(* messages *) |
47 |
||
48 |
val quiet_mode = ref false; |
|
49 |
fun message s = if ! quiet_mode then () else writeln s; |
|
50 |
||
51 |
||
4894 | 52 |
(* definitions and equations *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
53 |
|
5698 | 54 |
infix 0 :== ===; |
4894 | 55 |
|
56 |
val (op :==) = Logic.mk_defpair; |
|
57 |
val (op ===) = HOLogic.mk_Trueprop o HOLogic.mk_eq; |
|
58 |
||
6092 | 59 |
fun get_defs thy specs = map (PureThy.get_thm thy o fst) specs; |
4894 | 60 |
|
61 |
||
62 |
(* proof by simplification *) |
|
4890 | 63 |
|
7178 | 64 |
fun prove_simp sign ss tacs simps = |
4894 | 65 |
let |
7178 | 66 |
val ss' = Simplifier.addsimps (ss, simps); |
4895 | 67 |
|
68 |
fun prove goal = |
|
6092 | 69 |
Goals.prove_goalw_cterm [] (Thm.cterm_of sign goal) |
7178 | 70 |
(K (tacs @ [ALLGOALS (Simplifier.simp_tac ss')])) |
6092 | 71 |
handle ERROR => error ("The error(s) above occurred while trying to prove " |
72 |
^ quote (Sign.string_of_term sign goal)); |
|
4894 | 73 |
in prove end; |
74 |
||
75 |
||
76 |
||
77 |
(*** syntax operations ***) |
|
78 |
||
79 |
(** name components **) |
|
80 |
||
81 |
val moreN = "more"; |
|
82 |
val schemeN = "_scheme"; |
|
83 |
val fieldN = "_field"; |
|
5698 | 84 |
val raw_fieldN = "_raw_field"; |
4894 | 85 |
val field_typeN = "_field_type"; |
5698 | 86 |
val fstN = "_val"; |
87 |
val sndN = "_more"; |
|
4894 | 88 |
val updateN = "_update"; |
89 |
val makeN = "make"; |
|
90 |
val make_schemeN = "make_scheme"; |
|
4890 | 91 |
|
5698 | 92 |
(*see datatype package*) |
93 |
val caseN = "_case"; |
|
94 |
||
95 |
||
96 |
||
97 |
(** generic operations **) |
|
98 |
||
5713 | 99 |
(* adhoc priming of vars *) |
100 |
||
101 |
fun prime (Free (x, T)) = Free (x ^ "'", T) |
|
102 |
| prime t = raise TERM ("prime: no free variable", [t]); |
|
103 |
||
104 |
||
105 |
(* product case *) |
|
106 |
||
5698 | 107 |
fun fst_fn T U = Abs ("x", T, Abs ("y", U, Bound 1)); |
108 |
fun snd_fn T U = Abs ("x", T, Abs ("y", U, Bound 0)); |
|
109 |
||
110 |
fun mk_prod_case name f p = |
|
111 |
let |
|
112 |
val fT as Type ("fun", [A, Type ("fun", [B, C])]) = fastype_of f; |
|
113 |
val pT = fastype_of p; |
|
114 |
in Const (suffix caseN name, fT --> pT --> C) $ f $ p end; |
|
115 |
||
4890 | 116 |
|
117 |
||
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
118 |
(** tuple operations **) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
119 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
120 |
(* more type class *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
121 |
|
5210 | 122 |
val moreS = ["Record.more"]; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
123 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
124 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
125 |
(* types *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
126 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
127 |
fun mk_fieldT ((c, T), U) = Type (suffix field_typeN c, [T, U]); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
128 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
129 |
fun dest_fieldT (typ as Type (c_field_type, [T, U])) = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
130 |
(case try (unsuffix field_typeN) c_field_type of |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
131 |
None => raise TYPE ("dest_fieldT", [typ], []) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
132 |
| Some c => ((c, T), U)) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
133 |
| dest_fieldT typ = raise TYPE ("dest_fieldT", [typ], []); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
134 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
135 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
136 |
(* constructors *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
137 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
138 |
fun mk_fieldC U (c, T) = (suffix fieldN c, T --> U --> mk_fieldT ((c, T), U)); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
139 |
|
5698 | 140 |
fun gen_mk_field sfx ((c, t), u) = |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
141 |
let val T = fastype_of t and U = fastype_of u |
5698 | 142 |
in Const (suffix sfx c, [T, U] ---> mk_fieldT ((c, T), U)) $ t $ u end; |
143 |
||
144 |
val mk_field = gen_mk_field fieldN; |
|
145 |
val mk_raw_field = gen_mk_field raw_fieldN; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
146 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
147 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
148 |
(* destructors *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
149 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
150 |
fun mk_fstC U (c, T) = (suffix fstN c, mk_fieldT ((c, T), U) --> T); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
151 |
fun mk_sndC U (c, T) = (suffix sndN c, mk_fieldT ((c, T), U) --> U); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
152 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
153 |
fun dest_field fst_or_snd p = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
154 |
let |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
155 |
val pT = fastype_of p; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
156 |
val ((c, T), U) = dest_fieldT pT; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
157 |
val (destN, destT) = if fst_or_snd then (fstN, T) else (sndN, U); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
158 |
in Const (suffix destN c, pT --> destT) $ p end; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
159 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
160 |
val mk_fst = dest_field true; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
161 |
val mk_snd = dest_field false; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
162 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
163 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
164 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
165 |
(** record operations **) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
166 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
167 |
(* types *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
168 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
169 |
val mk_recordT = foldr mk_fieldT; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
170 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
171 |
fun dest_recordT T = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
172 |
(case try dest_fieldT T of |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
173 |
None => ([], T) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
174 |
| Some (c_T, U) => apfst (cons c_T) (dest_recordT U)); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
175 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
176 |
fun find_fieldT c rT = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
177 |
(case assoc (fst (dest_recordT rT), c) of |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
178 |
None => raise TYPE ("find_field: " ^ c, [rT], []) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
179 |
| Some T => T); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
180 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
181 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
182 |
(* constructors *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
183 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
184 |
val mk_record = foldr mk_field; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
185 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
186 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
187 |
(* selectors *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
188 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
189 |
fun mk_selC rT (c, T) = (c, rT --> T); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
190 |
|
4890 | 191 |
fun mk_sel r c = |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
192 |
let val rT = fastype_of r |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
193 |
in Const (mk_selC rT (c, find_fieldT c rT)) $ r end; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
194 |
|
4894 | 195 |
val mk_moreC = mk_selC; |
196 |
||
197 |
fun mk_more r c = |
|
198 |
let val rT = fastype_of r |
|
199 |
in Const (mk_moreC rT (c, snd (dest_recordT rT))) $ r end; |
|
200 |
||
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
201 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
202 |
(* updates *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
203 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
204 |
fun mk_updateC rT (c, T) = (suffix updateN c, T --> rT --> rT); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
205 |
|
4890 | 206 |
fun mk_update r (c, x) = |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
207 |
let val rT = fastype_of r |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
208 |
in Const (mk_updateC rT (c, find_fieldT c rT)) $ x $ r end; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
209 |
|
5197 | 210 |
val mk_more_updateC = mk_updateC; |
211 |
||
212 |
fun mk_more_update r (c, x) = |
|
213 |
let val rT = fastype_of r |
|
214 |
in Const (mk_more_updateC rT (c, snd (dest_recordT rT))) $ x $ r end; |
|
215 |
||
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
216 |
|
4890 | 217 |
(* make *) |
218 |
||
219 |
fun mk_makeC rT (c, Ts) = (c, Ts ---> rT); |
|
220 |
||
221 |
||
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
222 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
223 |
(** concrete syntax for records **) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
224 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
225 |
(* parse translations *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
226 |
|
5197 | 227 |
fun gen_field_tr mark sfx (t as Const (c, _) $ Free (name, _) $ arg) = |
228 |
if c = mark then Syntax.const (suffix sfx name) $ arg |
|
229 |
else raise TERM ("gen_field_tr: " ^ mark, [t]) |
|
230 |
| gen_field_tr mark _ t = raise TERM ("gen_field_tr: " ^ mark, [t]); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
231 |
|
5197 | 232 |
fun gen_fields_tr sep mark sfx (tm as Const (c, _) $ t $ u) = |
233 |
if c = sep then gen_field_tr mark sfx t :: gen_fields_tr sep mark sfx u |
|
5201 | 234 |
else [gen_field_tr mark sfx tm] |
235 |
| gen_fields_tr _ mark sfx tm = [gen_field_tr mark sfx tm]; |
|
5197 | 236 |
|
237 |
fun gen_record_tr sep mark sfx unit [t] = foldr (op $) (gen_fields_tr sep mark sfx t, unit) |
|
5201 | 238 |
| gen_record_tr _ _ _ _ ts = raise TERM ("gen_record_tr", ts); |
5197 | 239 |
|
240 |
fun gen_record_scheme_tr sep mark sfx [t, more] = foldr (op $) (gen_fields_tr sep mark sfx t, more) |
|
5201 | 241 |
| gen_record_scheme_tr _ _ _ ts = raise TERM ("gen_record_scheme_tr", ts); |
5197 | 242 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
243 |
|
5197 | 244 |
val record_type_tr = gen_record_tr "_field_types" "_field_type" field_typeN (Syntax.const "unit"); |
245 |
val record_type_scheme_tr = gen_record_scheme_tr "_field_types" "_field_type" field_typeN; |
|
246 |
||
247 |
val record_tr = gen_record_tr "_fields" "_field" fieldN HOLogic.unit; |
|
248 |
val record_scheme_tr = gen_record_scheme_tr "_fields" "_field" fieldN; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
249 |
|
5197 | 250 |
fun record_update_tr [t, u] = |
251 |
foldr (op $) (rev (gen_fields_tr "_updates" "_update" updateN u), t) |
|
252 |
| record_update_tr ts = raise TERM ("record_update_tr", ts); |
|
253 |
||
254 |
||
255 |
val parse_translation = |
|
256 |
[("_record_type", record_type_tr), |
|
257 |
("_record_type_scheme", record_type_scheme_tr), |
|
258 |
("_record", record_tr), |
|
259 |
("_record_scheme", record_scheme_tr), |
|
260 |
("_record_update", record_update_tr)]; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
261 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
262 |
|
4890 | 263 |
(* print translations *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
264 |
|
5197 | 265 |
fun gen_fields_tr' mark sfx (tm as Const (name_field, _) $ t $ u) = |
266 |
(case try (unsuffix sfx) name_field of |
|
267 |
Some name => |
|
268 |
apfst (cons (Syntax.const mark $ Syntax.free name $ t)) (gen_fields_tr' mark sfx u) |
|
269 |
| None => ([], tm)) |
|
270 |
| gen_fields_tr' _ _ tm = ([], tm); |
|
271 |
||
272 |
fun gen_record_tr' sep mark sfx is_unit record record_scheme tm = |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
273 |
let |
5197 | 274 |
val (ts, u) = gen_fields_tr' mark sfx tm; |
275 |
val t' = foldr1 (fn (v, w) => Syntax.const sep $ v $ w) ts; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
276 |
in |
5197 | 277 |
if is_unit u then Syntax.const record $ t' |
278 |
else Syntax.const record_scheme $ t' $ u |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
279 |
end; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
280 |
|
5197 | 281 |
|
282 |
val record_type_tr' = |
|
283 |
gen_record_tr' "_field_types" "_field_type" field_typeN |
|
284 |
(fn Const ("unit", _) => true | _ => false) "_record_type" "_record_type_scheme"; |
|
285 |
||
286 |
val record_tr' = |
|
287 |
gen_record_tr' "_fields" "_field" fieldN HOLogic.is_unit "_record" "_record_scheme"; |
|
288 |
||
289 |
fun record_update_tr' tm = |
|
290 |
let val (ts, u) = gen_fields_tr' "_update" updateN tm in |
|
291 |
Syntax.const "_record_update" $ u $ |
|
292 |
foldr1 (fn (v, w) => Syntax.const "_updates" $ v $ w) (rev ts) |
|
293 |
end; |
|
294 |
||
295 |
||
5201 | 296 |
fun gen_field_tr' sfx tr' name = |
297 |
let val name_sfx = suffix sfx name |
|
298 |
in (name_sfx, fn [t, u] => tr' (Syntax.const name_sfx $ t $ u) | _ => raise Match) end; |
|
299 |
||
5197 | 300 |
fun print_translation names = |
301 |
map (gen_field_tr' field_typeN record_type_tr') names @ |
|
302 |
map (gen_field_tr' fieldN record_tr') names @ |
|
303 |
map (gen_field_tr' updateN record_update_tr') names; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
304 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
305 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
306 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
307 |
(*** extend theory by record definition ***) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
308 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
309 |
(** record info **) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
310 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
311 |
(* type record_info and parent_info *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
312 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
313 |
type record_info = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
314 |
{args: (string * sort) list, |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
315 |
parent: (typ list * string) option, |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
316 |
fields: (string * typ) list, |
6092 | 317 |
simps: thm list}; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
318 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
319 |
type parent_info = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
320 |
{name: string, |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
321 |
fields: (string * typ) list, |
6092 | 322 |
simps: thm list}; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
323 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
324 |
|
5052 | 325 |
(* data kind 'HOL/records' *) |
5001 | 326 |
|
7178 | 327 |
type record_data = |
328 |
{records: record_info Symtab.table, |
|
329 |
sel_upd: |
|
330 |
{selectors: unit Symtab.table, |
|
331 |
updates: string Symtab.table, |
|
332 |
simpset: Simplifier.simpset}, |
|
333 |
field_splits: |
|
334 |
{fields: unit Symtab.table, |
|
335 |
simpset: Simplifier.simpset}}; |
|
336 |
||
337 |
fun make_record_data records sel_upd field_splits = |
|
338 |
{records = records, sel_upd = sel_upd, field_splits = field_splits}: record_data; |
|
339 |
||
5006 | 340 |
structure RecordsArgs = |
341 |
struct |
|
342 |
val name = "HOL/records"; |
|
7178 | 343 |
type T = record_data; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
344 |
|
7178 | 345 |
val empty = |
346 |
make_record_data Symtab.empty |
|
347 |
{selectors = Symtab.empty, updates = Symtab.empty, simpset = HOL_basic_ss} |
|
348 |
{fields = Symtab.empty, simpset = HOL_basic_ss}; |
|
349 |
||
6556 | 350 |
val copy = I; |
5006 | 351 |
val prep_ext = I; |
7178 | 352 |
fun merge |
353 |
({records = recs1, |
|
354 |
sel_upd = {selectors = sels1, updates = upds1, simpset = ss1}, |
|
355 |
field_splits = {fields = flds1, simpset = fld_ss1}}, |
|
356 |
{records = recs2, |
|
357 |
sel_upd = {selectors = sels2, updates = upds2, simpset = ss2}, |
|
358 |
field_splits = {fields = flds2, simpset = fld_ss2}}) = |
|
359 |
make_record_data |
|
360 |
(Symtab.merge (K true) (recs1, recs2)) |
|
361 |
{selectors = Symtab.merge (K true) (sels1, sels2), |
|
362 |
updates = Symtab.merge (K true) (upds1, upds2), |
|
363 |
simpset = Simplifier.merge_ss (ss1, ss2)} |
|
364 |
{fields = Symtab.merge (K true) (flds1, flds2), |
|
365 |
simpset = Simplifier.merge_ss (fld_ss1, fld_ss2)}; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
366 |
|
7178 | 367 |
fun print sg ({records = recs, ...}: record_data) = |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
368 |
let |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
369 |
val prt_typ = Sign.pretty_typ sg; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
370 |
val ext_const = Sign.cond_extern sg Sign.constK; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
371 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
372 |
fun pretty_parent None = [] |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
373 |
| pretty_parent (Some (Ts, name)) = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
374 |
[Pretty.block [prt_typ (Type (name, Ts)), Pretty.str " +"]]; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
375 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
376 |
fun pretty_field (c, T) = Pretty.block |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
377 |
[Pretty.str (ext_const c), Pretty.str " ::", Pretty.brk 1, Pretty.quote (prt_typ T)]; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
378 |
|
4895 | 379 |
fun pretty_record (name, {args, parent, fields, simps = _}) = Pretty.block (Pretty.fbreaks |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
380 |
(Pretty.block [prt_typ (Type (name, map TFree args)), Pretty.str " = "] :: |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
381 |
pretty_parent parent @ map pretty_field fields)); |
6851 | 382 |
in seq (Pretty.writeln o pretty_record) (Sign.cond_extern_table sg Sign.typeK recs) end; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
383 |
end; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
384 |
|
5006 | 385 |
structure RecordsData = TheoryDataFun(RecordsArgs); |
386 |
val print_records = RecordsData.print; |
|
387 |
||
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
388 |
|
7178 | 389 |
(* access 'records' *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
390 |
|
7178 | 391 |
fun get_record thy name = Symtab.lookup (#records (RecordsData.get thy), name); |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
392 |
|
4890 | 393 |
fun put_record name info thy = |
7178 | 394 |
let |
395 |
val {records, sel_upd, field_splits} = RecordsData.get thy; |
|
396 |
val data = make_record_data (Symtab.update ((name, info), records)) sel_upd field_splits; |
|
397 |
in RecordsData.put data thy end; |
|
398 |
||
399 |
||
400 |
(* access 'sel_upd' *) |
|
401 |
||
402 |
fun get_sel_upd sg = #sel_upd (RecordsData.get_sg sg); |
|
403 |
||
404 |
fun get_selectors sg name = Symtab.lookup (#selectors (get_sel_upd sg), name); |
|
405 |
fun get_updates sg name = Symtab.lookup (#updates (get_sel_upd sg), name); |
|
406 |
fun get_simpset sg = #simpset (get_sel_upd sg); |
|
407 |
||
408 |
||
409 |
fun put_sel_upd names simps thy = |
|
410 |
let |
|
411 |
val sels = map (rpair ()) names; |
|
412 |
val upds = map (suffix updateN) names ~~ names; |
|
413 |
||
414 |
val {records, sel_upd = {selectors, updates, simpset}, field_splits} = RecordsData.get thy; |
|
415 |
val data = make_record_data records |
|
416 |
{selectors = Symtab.extend (selectors, sels), |
|
417 |
updates = Symtab.extend (updates, upds), |
|
418 |
simpset = Simplifier.addsimps (simpset, simps)} |
|
419 |
field_splits; |
|
420 |
in RecordsData.put data thy end; |
|
421 |
||
422 |
||
423 |
(* access 'field_splits' *) |
|
5698 | 424 |
|
425 |
fun add_record_splits splits thy = |
|
426 |
let |
|
7178 | 427 |
val {records, sel_upd, field_splits = {fields, simpset}} = RecordsData.get thy; |
428 |
val flds = map (rpair () o fst) splits; |
|
429 |
val simps = map snd splits; |
|
430 |
val data = make_record_data records sel_upd |
|
431 |
{fields = Symtab.extend (fields, flds), simpset = Simplifier.addsimps (simpset, simps)}; |
|
432 |
in RecordsData.put data thy end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
433 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
434 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
435 |
(* parent records *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
436 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
437 |
fun inst_record thy (types, name) = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
438 |
let |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
439 |
val sign = Theory.sign_of thy; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
440 |
fun err msg = error (msg ^ " parent record " ^ quote name); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
441 |
|
4895 | 442 |
val {args, parent, fields, simps} = |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
443 |
(case get_record thy name of Some info => info | None => err "Unknown"); |
4895 | 444 |
val _ = if length types <> length args then err "Bad number of arguments for" else (); |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
445 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
446 |
fun bad_inst ((x, S), T) = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
447 |
if Sign.of_sort sign (T, S) then None else Some x |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
448 |
val bads = mapfilter bad_inst (args ~~ types); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
449 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
450 |
val inst = map fst args ~~ types; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
451 |
val subst = Term.map_type_tfree (fn (x, _) => the (assoc (inst, x))); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
452 |
in |
4895 | 453 |
if not (null bads) then |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
454 |
err ("Ill-sorted instantiation of " ^ commas bads ^ " in") |
4895 | 455 |
else (apsome (apfst (map subst)) parent, map (apsnd subst) fields, simps) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
456 |
end; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
457 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
458 |
fun add_parents thy (None, parents) = parents |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
459 |
| add_parents thy (Some (types, name), parents) = |
4895 | 460 |
let val (pparent, pfields, psimps) = inst_record thy (types, name) |
461 |
in add_parents thy (pparent, {name = name, fields = pfields, simps = psimps} :: parents) end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
462 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
463 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
464 |
|
7178 | 465 |
(** record simproc **) |
466 |
||
467 |
local |
|
468 |
||
8100 | 469 |
val sel_upd_pat = [Thm.read_cterm (Theory.sign_of HOL.thy) ("s (u k r)", HOLogic.termT)]; |
7178 | 470 |
|
471 |
fun proc sg _ t = |
|
472 |
(case t of (sel as Const (s, _)) $ ((upd as Const (u, _)) $ k $ r) => |
|
473 |
(case get_selectors sg s of Some () => |
|
474 |
(case get_updates sg u of Some u_name => |
|
475 |
let |
|
476 |
fun atomize x t = Free (x, fastype_of t); |
|
477 |
val k' = atomize "k" k; |
|
478 |
val r' = atomize "r" r; |
|
479 |
val t' = sel $ (upd $ k' $ r'); |
|
480 |
val prove = mk_meta_eq o prove_simp sg (get_simpset sg) [] []; |
|
481 |
in |
|
482 |
if u_name = s then Some (prove (t' === k')) |
|
483 |
else Some (prove (t' === sel $ r')) |
|
484 |
end |
|
485 |
| None => None) |
|
486 |
| None => None) |
|
487 |
| _ => None); |
|
488 |
||
489 |
in |
|
490 |
||
491 |
val record_simproc = Simplifier.mk_simproc "record_simp" sel_upd_pat proc; |
|
492 |
||
493 |
end; |
|
494 |
||
495 |
||
496 |
||
5698 | 497 |
(** record field splitting **) |
498 |
||
6358 | 499 |
(* tactic *) |
500 |
||
5698 | 501 |
fun record_split_tac i st = |
502 |
let |
|
7178 | 503 |
val {field_splits = {fields, simpset}, ...} = RecordsData.get_sg (Thm.sign_of_thm st); |
5698 | 504 |
|
7178 | 505 |
fun is_fieldT (_, Type (a, [_, _])) = is_some (Symtab.lookup (fields, a)) |
5698 | 506 |
| is_fieldT _ = false; |
507 |
val params = Logic.strip_params (Library.nth_elem (i - 1, Thm.prems_of st)); |
|
508 |
in |
|
7178 | 509 |
if exists is_fieldT params then Simplifier.full_simp_tac simpset i st |
5698 | 510 |
else Seq.empty |
511 |
end handle Library.LIST _ => Seq.empty; |
|
512 |
||
6358 | 513 |
|
514 |
(* wrapper *) |
|
515 |
||
5707 | 516 |
val record_split_name = "record_split_tac"; |
517 |
val record_split_wrapper = (record_split_name, fn tac => record_split_tac ORELSE' tac); |
|
5698 | 518 |
|
519 |
||
6358 | 520 |
(* method *) |
521 |
||
522 |
val record_split_method = |
|
8168 | 523 |
("record_split", Method.no_args (Method.METHOD0 (HEADGOAL record_split_tac)), |
6358 | 524 |
"split record fields"); |
525 |
||
526 |
||
5698 | 527 |
|
4890 | 528 |
(** internal theory extenders **) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
529 |
|
5698 | 530 |
(* field_type_defs *) |
531 |
||
5713 | 532 |
fun field_type_def ((thy, simps), (name, tname, vs, T, U)) = |
5698 | 533 |
let |
6394 | 534 |
val full = Sign.full_name (Theory.sign_of thy); |
5713 | 535 |
val (thy', {simps = simps', ...}) = |
5698 | 536 |
thy |
537 |
|> setmp DatatypePackage.quiet_mode true |
|
538 |
(DatatypePackage.add_datatype_i true [tname] |
|
539 |
[(vs, tname, Syntax.NoSyn, [(name, [T, U], Syntax.NoSyn)])]); |
|
540 |
val thy'' = |
|
541 |
thy' |
|
542 |
|> setmp AxClass.quiet_mode true |
|
543 |
(AxClass.add_inst_arity_i (full tname, [HOLogic.termS, moreS], moreS) [] [] None); |
|
5713 | 544 |
in (thy'', simps' @ simps) end; |
5698 | 545 |
|
5713 | 546 |
fun field_type_defs args thy = foldl field_type_def ((thy, []), args); |
5698 | 547 |
|
548 |
||
4894 | 549 |
(* field_definitions *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
550 |
|
4894 | 551 |
fun field_definitions fields names zeta moreT more vars named_vars thy = |
4890 | 552 |
let |
5698 | 553 |
val sign = Theory.sign_of thy; |
4890 | 554 |
val base = Sign.base_name; |
5698 | 555 |
val full_path = Sign.full_name_path sign; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
556 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
557 |
|
4890 | 558 |
(* prepare declarations and definitions *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
559 |
|
4890 | 560 |
(*field types*) |
561 |
fun mk_fieldT_spec c = |
|
5698 | 562 |
(suffix raw_fieldN c, suffix field_typeN c, |
563 |
["'a", zeta], TFree ("'a", HOLogic.termS), moreT); |
|
4890 | 564 |
val fieldT_specs = map (mk_fieldT_spec o base) names; |
565 |
||
5698 | 566 |
(*field constructors*) |
4890 | 567 |
val field_decls = map (mk_fieldC moreT) fields; |
568 |
||
569 |
fun mk_field_spec (c, v) = |
|
5698 | 570 |
mk_field ((c, v), more) :== mk_raw_field ((c, v), more); |
4894 | 571 |
val field_specs = map mk_field_spec named_vars; |
4890 | 572 |
|
573 |
(*field destructors*) |
|
5698 | 574 |
val dest_decls = map (mk_fstC moreT) fields @ map (mk_sndC moreT) fields; |
575 |
||
576 |
fun mk_dest_spec dest f (c, T) = |
|
577 |
let val p = Free ("p", mk_fieldT ((c, T), moreT)); |
|
578 |
in dest p :== mk_prod_case (suffix field_typeN c) (f T moreT) p end; |
|
4890 | 579 |
val dest_specs = |
5698 | 580 |
map (mk_dest_spec mk_fst fst_fn) fields @ |
581 |
map (mk_dest_spec mk_snd snd_fn) fields; |
|
4890 | 582 |
|
583 |
||
584 |
(* prepare theorems *) |
|
4894 | 585 |
|
5713 | 586 |
(*constructor injects*) |
587 |
fun mk_inject_prop (c, v) = |
|
588 |
HOLogic.mk_eq (mk_field ((c, v), more), mk_field ((c, prime v), prime more)) === |
|
589 |
(HOLogic.conj $ HOLogic.mk_eq (v, prime v) $ HOLogic.mk_eq (more, prime more)); |
|
590 |
val inject_props = map mk_inject_prop named_vars; |
|
591 |
||
5698 | 592 |
(*destructor conversions*) |
4890 | 593 |
fun mk_dest_prop dest dest' (c, v) = |
4894 | 594 |
dest (mk_field ((c, v), more)) === dest' (v, more); |
4890 | 595 |
val dest_props = |
4895 | 596 |
map (mk_dest_prop mk_fst fst) named_vars @ |
597 |
map (mk_dest_prop mk_snd snd) named_vars; |
|
4890 | 598 |
|
5698 | 599 |
(*surjective pairing*) |
600 |
fun mk_surj_prop (c, T) = |
|
601 |
let val p = Free ("p", mk_fieldT ((c, T), moreT)); |
|
602 |
in p === mk_field ((c, mk_fst p), mk_snd p) end; |
|
603 |
val surj_props = map mk_surj_prop fields; |
|
4890 | 604 |
|
5698 | 605 |
|
606 |
(* 1st stage: types_thy *) |
|
607 |
||
6092 | 608 |
val (types_thy, datatype_simps) = |
5698 | 609 |
thy |
610 |
|> field_type_defs fieldT_specs; |
|
611 |
||
612 |
||
613 |
(* 2nd stage: defs_thy *) |
|
4890 | 614 |
|
615 |
val defs_thy = |
|
5698 | 616 |
types_thy |
617 |
|> (Theory.add_consts_i o map (Syntax.no_syn o apfst base)) |
|
618 |
(field_decls @ dest_decls) |
|
6092 | 619 |
|> (PureThy.add_defs_i o map (fn x => (x, [Drule.tag_internal]))) |
5698 | 620 |
(field_specs @ dest_specs); |
4890 | 621 |
|
622 |
val field_defs = get_defs defs_thy field_specs; |
|
623 |
val dest_defs = get_defs defs_thy dest_specs; |
|
624 |
||
625 |
||
5698 | 626 |
(* 3rd stage: thms_thy *) |
627 |
||
7178 | 628 |
val prove = prove_simp (Theory.sign_of defs_thy) HOL_basic_ss; |
5713 | 629 |
val prove_std = prove [] (field_defs @ dest_defs @ datatype_simps); |
4890 | 630 |
|
5713 | 631 |
val field_injects = map prove_std inject_props; |
632 |
val dest_convs = map prove_std dest_props; |
|
5698 | 633 |
val surj_pairs = map (prove [DatatypePackage.induct_tac "p" 1] |
6092 | 634 |
(map Thm.symmetric field_defs @ dest_convs)) surj_props; |
5698 | 635 |
|
5707 | 636 |
fun mk_split th = SplitPairedAll.rule (th RS eq_reflection); |
6092 | 637 |
val field_splits = map mk_split surj_pairs; |
4894 | 638 |
|
4890 | 639 |
val thms_thy = |
640 |
defs_thy |
|
6092 | 641 |
|> (PureThy.add_thmss o map Thm.no_attributes) |
4890 | 642 |
[("field_defs", field_defs), |
643 |
("dest_defs", dest_defs), |
|
5698 | 644 |
("dest_convs", dest_convs), |
645 |
("surj_pairs", surj_pairs), |
|
5713 | 646 |
("field_splits", field_splits)]; |
4890 | 647 |
|
5713 | 648 |
in (thms_thy, dest_convs, field_injects, field_splits) end; |
4890 | 649 |
|
650 |
||
651 |
(* record_definition *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
652 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
653 |
fun record_definition (args, bname) parent (parents: parent_info list) bfields thy = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
654 |
let |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
655 |
val sign = Theory.sign_of thy; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
656 |
val full = Sign.full_name_path sign bname; |
4890 | 657 |
val base = Sign.base_name; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
658 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
659 |
|
4890 | 660 |
(* basic components *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
661 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
662 |
val alphas = map fst args; |
5197 | 663 |
val name = Sign.full_name sign bname; (*not made part of record name space!*) |
4890 | 664 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
665 |
val parent_fields = flat (map #fields parents); |
4890 | 666 |
val parent_names = map fst parent_fields; |
667 |
val parent_types = map snd parent_fields; |
|
668 |
val parent_len = length parent_fields; |
|
669 |
val parent_xs = variantlist (map (base o fst) parent_fields, [moreN]); |
|
670 |
val parent_vars = ListPair.map Free (parent_xs, parent_types); |
|
4894 | 671 |
val parent_named_vars = parent_names ~~ parent_vars; |
4890 | 672 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
673 |
val fields = map (apfst full) bfields; |
4890 | 674 |
val names = map fst fields; |
675 |
val types = map snd fields; |
|
676 |
val len = length fields; |
|
677 |
val xs = variantlist (map fst bfields, moreN :: parent_xs); |
|
678 |
val vars = ListPair.map Free (xs, types); |
|
4894 | 679 |
val named_vars = names ~~ vars; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
680 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
681 |
val all_fields = parent_fields @ fields; |
4890 | 682 |
val all_names = parent_names @ names; |
683 |
val all_types = parent_types @ types; |
|
684 |
val all_len = parent_len + len; |
|
685 |
val all_xs = parent_xs @ xs; |
|
686 |
val all_vars = parent_vars @ vars; |
|
4894 | 687 |
val all_named_vars = parent_named_vars @ named_vars; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
688 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
689 |
val zeta = variant alphas "'z"; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
690 |
val moreT = TFree (zeta, moreS); |
4895 | 691 |
val more = Free (moreN, moreT); |
5197 | 692 |
val full_moreN = full moreN; |
693 |
fun more_part t = mk_more t full_moreN; |
|
694 |
fun more_part_update t x = mk_more_update t (full_moreN, x); |
|
4894 | 695 |
|
696 |
val parent_more = funpow parent_len mk_snd; |
|
697 |
val idxs = 0 upto (len - 1); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
698 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
699 |
val rec_schemeT = mk_recordT (all_fields, moreT); |
4894 | 700 |
val rec_scheme = mk_record (all_named_vars, more); |
4890 | 701 |
val r = Free ("r", rec_schemeT); |
4894 | 702 |
val recT = mk_recordT (all_fields, HOLogic.unitT); |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
703 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
704 |
|
4890 | 705 |
(* prepare print translation functions *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
706 |
|
5698 | 707 |
val field_tr's = |
708 |
print_translation (distinct (flat (map NameSpace.accesses (full_moreN :: names)))); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
709 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
710 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
711 |
(* prepare declarations *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
712 |
|
5197 | 713 |
val sel_decls = map (mk_selC rec_schemeT) bfields @ |
714 |
[mk_moreC rec_schemeT (moreN, moreT)]; |
|
715 |
val update_decls = map (mk_updateC rec_schemeT) bfields @ |
|
716 |
[mk_more_updateC rec_schemeT (moreN, moreT)]; |
|
4890 | 717 |
val make_decls = |
718 |
[(mk_makeC rec_schemeT (make_schemeN, all_types @ [moreT])), |
|
719 |
(mk_makeC recT (makeN, all_types))]; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
720 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
721 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
722 |
(* prepare definitions *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
723 |
|
4895 | 724 |
(*record (scheme) type abbreviation*) |
4890 | 725 |
val recordT_specs = |
726 |
[(suffix schemeN bname, alphas @ [zeta], rec_schemeT, Syntax.NoSyn), |
|
727 |
(bname, alphas, recT, Syntax.NoSyn)]; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
728 |
|
4894 | 729 |
(*selectors*) |
4890 | 730 |
fun mk_sel_spec (i, c) = |
4894 | 731 |
mk_sel r c :== mk_fst (funpow i mk_snd (parent_more r)); |
732 |
val sel_specs = |
|
733 |
ListPair.map mk_sel_spec (idxs, names) @ |
|
734 |
[more_part r :== funpow len mk_snd (parent_more r)]; |
|
4890 | 735 |
|
736 |
(*updates*) |
|
4894 | 737 |
val all_sels = all_names ~~ map (mk_sel r) all_names; |
4890 | 738 |
fun mk_upd_spec (i, (c, x)) = |
4894 | 739 |
mk_update r (c, x) :== |
740 |
mk_record (nth_update (c, x) (parent_len + i, all_sels), more_part r) |
|
5197 | 741 |
val update_specs = |
742 |
ListPair.map mk_upd_spec (idxs, named_vars) @ |
|
743 |
[more_part_update r more :== mk_record (all_sels, more)]; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
744 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
745 |
(*makes*) |
4890 | 746 |
val make_scheme = Const (mk_makeC rec_schemeT (full make_schemeN, all_types @ [moreT])); |
747 |
val make = Const (mk_makeC recT (full makeN, all_types)); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
748 |
val make_specs = |
4894 | 749 |
[list_comb (make_scheme, all_vars) $ more :== rec_scheme, |
750 |
list_comb (make, all_vars) :== mk_record (all_named_vars, HOLogic.unit)]; |
|
751 |
||
752 |
||
753 |
(* prepare propositions *) |
|
754 |
||
755 |
(*selectors*) |
|
756 |
val sel_props = |
|
757 |
map (fn (c, x) => mk_sel rec_scheme c === x) named_vars @ |
|
758 |
[more_part rec_scheme === more]; |
|
759 |
||
760 |
(*updates*) |
|
761 |
fun mk_upd_prop (i, (c, T)) = |
|
762 |
let val x' = Free (variant all_xs (base c ^ "'"), T) in |
|
763 |
mk_update rec_scheme (c, x') === |
|
764 |
mk_record (nth_update (c, x') (parent_len + i, all_named_vars), more) |
|
765 |
end; |
|
5197 | 766 |
val update_props = |
767 |
ListPair.map mk_upd_prop (idxs, fields) @ |
|
768 |
let val more' = Free (variant all_xs (moreN ^ "'"), moreT) |
|
769 |
in [more_part_update rec_scheme more' === mk_record (all_named_vars, more')] end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
770 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
771 |
|
4890 | 772 |
(* 1st stage: fields_thy *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
773 |
|
5713 | 774 |
val (fields_thy, field_simps, field_injects, field_splits) = |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
775 |
thy |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
776 |
|> Theory.add_path bname |
4894 | 777 |
|> field_definitions fields names zeta moreT more vars named_vars; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
778 |
|
6092 | 779 |
val named_splits = map2 (fn (c, th) => (suffix field_typeN c, th)) (names, field_splits); |
5698 | 780 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
781 |
|
4890 | 782 |
(* 2nd stage: defs_thy *) |
783 |
||
784 |
val defs_thy = |
|
785 |
fields_thy |
|
786 |
|> Theory.parent_path |
|
5197 | 787 |
|> Theory.add_tyabbrs_i recordT_specs (*not made part of record name space!*) |
4890 | 788 |
|> Theory.add_path bname |
5197 | 789 |
|> Theory.add_trfuns ([], [], field_tr's, []) |
4894 | 790 |
|> (Theory.add_consts_i o map Syntax.no_syn) |
791 |
(sel_decls @ update_decls @ make_decls) |
|
6092 | 792 |
|> (PureThy.add_defs_i o map (fn x => (x, [Drule.tag_internal]))) |
5212 | 793 |
(sel_specs @ update_specs) |
6092 | 794 |
|> (PureThy.add_defs_i o map Thm.no_attributes) make_specs; |
4890 | 795 |
|
796 |
val sel_defs = get_defs defs_thy sel_specs; |
|
797 |
val update_defs = get_defs defs_thy update_specs; |
|
798 |
val make_defs = get_defs defs_thy make_specs; |
|
799 |
||
800 |
||
801 |
(* 3rd stage: thms_thy *) |
|
802 |
||
4895 | 803 |
val parent_simps = flat (map #simps parents); |
7178 | 804 |
val prove = prove_simp (Theory.sign_of defs_thy) HOL_basic_ss []; |
4890 | 805 |
|
4895 | 806 |
val sel_convs = map (prove (parent_simps @ sel_defs @ field_simps)) sel_props; |
807 |
val update_convs = map (prove (parent_simps @ update_defs @ sel_convs)) update_props; |
|
4894 | 808 |
|
809 |
val simps = field_simps @ sel_convs @ update_convs @ make_defs; |
|
6519 | 810 |
val iffs = field_injects; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
811 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
812 |
val thms_thy = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
813 |
defs_thy |
6092 | 814 |
|> (PureThy.add_thmss o map Thm.no_attributes) |
4895 | 815 |
[("select_defs", sel_defs), |
4890 | 816 |
("update_defs", update_defs), |
4894 | 817 |
("make_defs", make_defs), |
4895 | 818 |
("select_convs", sel_convs), |
4894 | 819 |
("update_convs", update_convs)] |
6092 | 820 |
|> PureThy.add_thmss |
5707 | 821 |
[(("simps", simps), [Simplifier.simp_add_global]), |
6519 | 822 |
(("iffs", iffs), [iff_add_global])]; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
823 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
824 |
|
4890 | 825 |
(* 4th stage: final_thy *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
826 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
827 |
val final_thy = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
828 |
thms_thy |
4895 | 829 |
|> put_record name {args = args, parent = parent, fields = fields, simps = simps} |
8246
efb3c8253d90
fixed sel_upd simproc (less efficient, but more complete);
wenzelm
parents:
8168
diff
changeset
|
830 |
|> put_sel_upd names (field_simps @ sel_defs @ update_defs) |
5713 | 831 |
|> add_record_splits named_splits |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
832 |
|> Theory.parent_path; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
833 |
|
6519 | 834 |
in (final_thy, {simps = simps, iffs = iffs}) end; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
835 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
836 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
837 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
838 |
(** theory extender interface **) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
839 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
840 |
(* prepare arguments *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
841 |
|
4894 | 842 |
(*note: read_raw_typ avoids expanding type abbreviations*) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
843 |
fun read_raw_parent sign s = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
844 |
(case Sign.read_raw_typ (sign, K None) s handle TYPE (msg, _, _) => error msg of |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
845 |
Type (name, Ts) => (Ts, name) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
846 |
| _ => error ("Bad parent record specification: " ^ quote s)); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
847 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
848 |
fun read_typ sign (env, s) = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
849 |
let |
5060 | 850 |
fun def_sort (x, ~1) = assoc (env, x) |
851 |
| def_sort _ = None; |
|
852 |
val T = Type.no_tvars (Sign.read_typ (sign, def_sort) s) handle TYPE (msg, _, _) => error msg; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
853 |
in (Term.add_typ_tfrees (T, env), T) end; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
854 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
855 |
fun cert_typ sign (env, raw_T) = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
856 |
let val T = Type.no_tvars (Sign.certify_typ sign raw_T) handle TYPE (msg, _, _) => error msg |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
857 |
in (Term.add_typ_tfrees (T, env), T) end; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
858 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
859 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
860 |
(* add_record *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
861 |
|
4895 | 862 |
(*we do all preparations and error checks here, deferring the real |
863 |
work to record_definition*) |
|
4890 | 864 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
865 |
fun gen_add_record prep_typ prep_raw_parent (params, bname) raw_parent raw_fields thy = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
866 |
let |
4970 | 867 |
val _ = Theory.requires thy "Record" "record definitions"; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
868 |
val sign = Theory.sign_of thy; |
5698 | 869 |
val _ = message ("Defining record " ^ quote bname ^ " ..."); |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
870 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
871 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
872 |
(* parents *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
873 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
874 |
fun prep_inst T = snd (cert_typ sign ([], T)); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
875 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
876 |
val parent = apsome (apfst (map prep_inst) o prep_raw_parent sign) raw_parent |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
877 |
handle ERROR => error ("The error(s) above in parent record specification"); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
878 |
val parents = add_parents thy (parent, []); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
879 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
880 |
val init_env = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
881 |
(case parent of |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
882 |
None => [] |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
883 |
| Some (types, _) => foldr Term.add_typ_tfrees (types, [])); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
884 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
885 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
886 |
(* fields *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
887 |
|
4967 | 888 |
fun prep_field (env, (c, raw_T)) = |
889 |
let val (env', T) = prep_typ sign (env, raw_T) handle ERROR => |
|
890 |
error ("The error(s) above occured in field " ^ quote c) |
|
891 |
in (env', (c, T)) end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
892 |
|
4967 | 893 |
val (envir, bfields) = foldl_map prep_field (init_env, raw_fields); |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
894 |
val envir_names = map fst envir; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
895 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
896 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
897 |
(* args *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
898 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
899 |
val defaultS = Sign.defaultS sign; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
900 |
val args = map (fn x => (x, if_none (assoc (envir, x)) defaultS)) params; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
901 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
902 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
903 |
(* errors *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
904 |
|
4890 | 905 |
val name = Sign.full_name sign bname; |
906 |
val err_dup_record = |
|
907 |
if is_none (get_record thy name) then [] |
|
908 |
else ["Duplicate definition of record " ^ quote name]; |
|
909 |
||
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
910 |
val err_dup_parms = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
911 |
(case duplicates params of |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
912 |
[] => [] |
4890 | 913 |
| dups => ["Duplicate parameter(s) " ^ commas dups]); |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
914 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
915 |
val err_extra_frees = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
916 |
(case gen_rems (op =) (envir_names, params) of |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
917 |
[] => [] |
4890 | 918 |
| extras => ["Extra free type variable(s) " ^ commas extras]); |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
919 |
|
4890 | 920 |
val err_no_fields = if null bfields then ["No fields present"] else []; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
921 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
922 |
val err_dup_fields = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
923 |
(case duplicates (map fst bfields) of |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
924 |
[] => [] |
4890 | 925 |
| dups => ["Duplicate field(s) " ^ commas_quote dups]); |
926 |
||
927 |
val err_bad_fields = |
|
928 |
if forall (not_equal moreN o fst) bfields then [] |
|
929 |
else ["Illegal field name " ^ quote moreN]; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
930 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
931 |
val err_dup_sorts = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
932 |
(case duplicates envir_names of |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
933 |
[] => [] |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
934 |
| dups => ["Inconsistent sort constraints for " ^ commas dups]); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
935 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
936 |
val errs = |
4890 | 937 |
err_dup_record @ err_dup_parms @ err_extra_frees @ err_no_fields @ |
938 |
err_dup_fields @ err_bad_fields @ err_dup_sorts; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
939 |
in |
4890 | 940 |
if null errs then () else error (cat_lines errs); |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
941 |
thy |> record_definition (args, bname) parent parents bfields |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
942 |
end |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
943 |
handle ERROR => error ("Failed to define record " ^ quote bname); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
944 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
945 |
val add_record = gen_add_record read_typ read_raw_parent; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
946 |
val add_record_i = gen_add_record cert_typ (K I); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
947 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
948 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
949 |
|
6358 | 950 |
(** package setup **) |
951 |
||
952 |
(* setup theory *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
953 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
954 |
val setup = |
5006 | 955 |
[RecordsData.init, |
5698 | 956 |
Theory.add_trfuns ([], parse_translation, [], []), |
6358 | 957 |
Method.add_methods [record_split_method], |
7178 | 958 |
Simplifier.change_simpset_of Simplifier.addsimprocs [record_simproc]]; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
959 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
960 |
|
6358 | 961 |
(* outer syntax *) |
962 |
||
6723 | 963 |
local structure P = OuterParse and K = OuterSyntax.Keyword in |
6358 | 964 |
|
965 |
val record_decl = |
|
6723 | 966 |
P.type_args -- P.name -- (P.$$$ "=" |-- Scan.option (P.typ --| P.$$$ "+") |
6729 | 967 |
-- Scan.repeat1 (P.name -- (P.$$$ "::" |-- P.typ) --| P.marg_comment)); |
6358 | 968 |
|
969 |
val recordP = |
|
6723 | 970 |
OuterSyntax.command "record" "define extensible record" K.thy_decl |
6519 | 971 |
(record_decl >> (fn (x, (y, z)) => Toplevel.theory (#1 o add_record x y z))); |
6358 | 972 |
|
973 |
val _ = OuterSyntax.add_parsers [recordP]; |
|
974 |
||
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
975 |
end; |
5698 | 976 |
|
977 |
||
6384 | 978 |
end; |
979 |
||
5698 | 980 |
structure BasicRecordPackage: BASIC_RECORD_PACKAGE = RecordPackage; |
981 |
open BasicRecordPackage; |