author | kleing |
Tue, 13 May 2003 08:59:21 +0200 | |
changeset 14024 | 213dcc39358f |
parent 13904 | c13e6e218a69 |
child 14079 | 1c22e5499eeb |
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 |
9230 | 4 |
License: GPL (GNU GENERAL PUBLIC LICENSE) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
5 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
6 |
Extensible records with structural subtyping in HOL. |
5698 | 7 |
*) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
8 |
|
5698 | 9 |
signature BASIC_RECORD_PACKAGE = |
10 |
sig |
|
7178 | 11 |
val record_simproc: simproc |
5698 | 12 |
val record_split_tac: int -> tactic |
5713 | 13 |
val record_split_name: string |
5698 | 14 |
val record_split_wrapper: string * wrapper |
15 |
end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
16 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
17 |
signature RECORD_PACKAGE = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
18 |
sig |
5698 | 19 |
include BASIC_RECORD_PACKAGE |
20 |
val quiet_mode: bool ref |
|
8574 | 21 |
val updateN: string |
4890 | 22 |
val mk_fieldT: (string * typ) * typ -> typ |
23 |
val dest_fieldT: typ -> (string * typ) * typ |
|
24 |
val mk_field: (string * term) * term -> term |
|
25 |
val mk_fst: term -> term |
|
26 |
val mk_snd: term -> term |
|
27 |
val mk_recordT: (string * typ) list * typ -> typ |
|
28 |
val dest_recordT: typ -> (string * typ) list * typ |
|
29 |
val mk_record: (string * term) list * term -> term |
|
30 |
val mk_sel: term -> string -> term |
|
31 |
val mk_update: term -> string * term -> term |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
32 |
val print_records: theory -> unit |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
33 |
val add_record: (string list * bstring) -> string option |
12506 | 34 |
-> (bstring * string * mixfix) list -> theory -> theory * {simps: thm list, iffs: thm list} |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
35 |
val add_record_i: (string list * bstring) -> (typ list * string) option |
12506 | 36 |
-> (bstring * typ * mixfix) list -> theory -> theory * {simps: thm list, iffs: thm list} |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
37 |
val setup: (theory -> theory) list |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
38 |
end; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
39 |
|
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 |
|
11832 | 44 |
(*** theory context references ***) |
45 |
||
46 |
val product_typeN = "Record.product_type"; |
|
47 |
||
13419 | 48 |
val product_type_intro = thm "product_type.intro"; |
13413 | 49 |
val product_type_inject = thm "product_type.inject"; |
50 |
val product_type_conv1 = thm "product_type.conv1"; |
|
51 |
val product_type_conv2 = thm "product_type.conv2"; |
|
52 |
val product_type_induct = thm "product_type.induct"; |
|
53 |
val product_type_cases = thm "product_type.cases"; |
|
54 |
val product_type_split_paired_all = thm "product_type.split_paired_all"; |
|
11832 | 55 |
|
56 |
||
57 |
||
4894 | 58 |
(*** utilities ***) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
59 |
|
5698 | 60 |
(* messages *) |
61 |
||
62 |
val quiet_mode = ref false; |
|
63 |
fun message s = if ! quiet_mode then () else writeln s; |
|
64 |
||
65 |
||
12255 | 66 |
(* syntax *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
67 |
|
12247 | 68 |
fun prune n xs = Library.drop (n, xs); |
11832 | 69 |
fun prefix_base s = NameSpace.map_base (fn bname => s ^ bname); |
70 |
||
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
71 |
val Trueprop = HOLogic.mk_Trueprop; |
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
72 |
fun All xs t = Term.list_all_free (xs, t); |
4894 | 73 |
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
74 |
infix 9 $$; |
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
75 |
infix 0 :== ===; |
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
76 |
infixr 0 ==>; |
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
77 |
|
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
78 |
val (op $$) = Term.list_comb; |
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
79 |
val (op :==) = Logic.mk_defpair; |
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
80 |
val (op ===) = Trueprop o HOLogic.mk_eq; |
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
81 |
val (op ==>) = Logic.mk_implies; |
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
82 |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
83 |
|
12255 | 84 |
(* attributes *) |
85 |
||
12302 | 86 |
fun case_names_fields x = RuleCases.case_names ["fields"] x; |
12255 | 87 |
fun induct_type_global name = [case_names_fields, InductAttrib.induct_type_global name]; |
88 |
fun cases_type_global name = [case_names_fields, InductAttrib.cases_type_global name]; |
|
89 |
||
90 |
||
91 |
(* tactics *) |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
92 |
|
11967 | 93 |
fun simp_all_tac ss simps = ALLGOALS (Simplifier.asm_full_simp_tac (ss addsimps simps)); |
4895 | 94 |
|
13904
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
95 |
(* do case analysis / induction on last parameter of ith subgoal (or s) *) |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
96 |
|
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
97 |
fun try_param_tac s rule i st = |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
98 |
let |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
99 |
val cert = cterm_of (#sign (rep_thm st)); |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
100 |
val g = nth_elem (i - 1, prems_of st); |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
101 |
val params = Logic.strip_params g; |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
102 |
val concl = HOLogic.dest_Trueprop (Logic.strip_assums_concl g); |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
103 |
val rule' = Thm.lift_rule (st, i) rule; |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
104 |
val (P, ys) = strip_comb (HOLogic.dest_Trueprop |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
105 |
(Logic.strip_assums_concl (prop_of rule'))); |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
106 |
val (x, ca) = (case rev (drop (length params, ys)) of |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
107 |
[] => (head_of (fst (HOLogic.dest_eq (HOLogic.dest_Trueprop |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
108 |
(hd (rev (Logic.strip_assums_hyp (hd (prems_of rule')))))))), true) |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
109 |
| [x] => (head_of x, false)); |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
110 |
val rule'' = cterm_instantiate (map (pairself cert) (case (rev params) of |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
111 |
[] => (case assoc (map dest_Free (term_frees (prop_of st)), s) of |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
112 |
None => sys_error "try_param_tac: no such variable" |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
113 |
| Some T => [(P, if ca then concl else lambda (Free (s, T)) concl), |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
114 |
(x, Free (s, T))]) |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
115 |
| (_, T) :: _ => [(P, list_abs (params, if ca then concl |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
116 |
else incr_boundvars 1 (Abs (s, T, concl)))), |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
117 |
(x, list_abs (params, Bound 0))])) rule' |
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
118 |
in compose_tac (false, rule'', nprems_of rule) i st end; |
4894 | 119 |
|
120 |
||
121 |
||
12449 | 122 |
(*** code generator data ***) |
123 |
||
124 |
val [prod_code, fst_code, snd_code] = |
|
125 |
map (Codegen.parse_mixfix (K (Bound 0))) ["(_,/ _)", "fst", "snd"]; |
|
126 |
val prodT_code = Codegen.parse_mixfix (K dummyT) "(_ */ _)"; |
|
127 |
||
128 |
||
129 |
||
4894 | 130 |
(*** syntax operations ***) |
131 |
||
132 |
(** name components **) |
|
133 |
||
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
134 |
val rN = "r"; |
4894 | 135 |
val moreN = "more"; |
136 |
val schemeN = "_scheme"; |
|
11832 | 137 |
val field_typeN = "_field_type"; |
4894 | 138 |
val fieldN = "_field"; |
5698 | 139 |
val fstN = "_val"; |
140 |
val sndN = "_more"; |
|
4894 | 141 |
val updateN = "_update"; |
142 |
val makeN = "make"; |
|
12265 | 143 |
val fieldsN = "fields"; |
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
144 |
val extendN = "extend"; |
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
145 |
val truncateN = "truncate"; |
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
146 |
|
4890 | 147 |
|
11832 | 148 |
(*see typedef_package.ML*) |
149 |
val RepN = "Rep_"; |
|
150 |
val AbsN = "Abs_"; |
|
5698 | 151 |
|
152 |
||
5713 | 153 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
154 |
(** tuple operations **) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
155 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
156 |
(* types *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
157 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
158 |
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
|
159 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
160 |
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
|
161 |
(case try (unsuffix field_typeN) c_field_type of |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
162 |
None => raise TYPE ("dest_fieldT", [typ], []) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
163 |
| Some c => ((c, T), U)) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
164 |
| dest_fieldT typ = raise TYPE ("dest_fieldT", [typ], []); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
165 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
166 |
|
11832 | 167 |
(* morphisms *) |
168 |
||
169 |
fun mk_Rep U (c, T) = |
|
170 |
Const (suffix field_typeN (prefix_base RepN c), |
|
171 |
mk_fieldT ((c, T), U) --> HOLogic.mk_prodT (T, U)); |
|
172 |
||
173 |
fun mk_Abs U (c, T) = |
|
174 |
Const (suffix field_typeN (prefix_base AbsN c), |
|
175 |
HOLogic.mk_prodT (T, U) --> mk_fieldT ((c, T), U)); |
|
11833 | 176 |
|
11832 | 177 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
178 |
(* constructors *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
179 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
180 |
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
|
181 |
|
11832 | 182 |
fun mk_field ((c, t), u) = |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
183 |
let val T = fastype_of t and U = fastype_of u |
11832 | 184 |
in Const (suffix fieldN c, [T, U] ---> mk_fieldT ((c, T), U)) $ t $ u end; |
4867
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 |
(* destructors *) |
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_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
|
190 |
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
|
191 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
192 |
fun dest_field fst_or_snd p = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
193 |
let |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
194 |
val pT = fastype_of p; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
195 |
val ((c, T), U) = dest_fieldT pT; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
196 |
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
|
197 |
in Const (suffix destN c, pT --> destT) $ p end; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
198 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
199 |
val mk_fst = dest_field true; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
200 |
val mk_snd = dest_field false; |
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 |
|
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 |
(** record operations **) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
205 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
206 |
(* types *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
207 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
208 |
val mk_recordT = foldr mk_fieldT; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
209 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
210 |
fun dest_recordT T = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
211 |
(case try dest_fieldT T of |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
212 |
None => ([], T) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
213 |
| 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
|
214 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
215 |
fun find_fieldT c rT = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
216 |
(case assoc (fst (dest_recordT rT), c) of |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
217 |
None => raise TYPE ("find_field: " ^ c, [rT], []) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
218 |
| Some T => T); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
219 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
220 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
221 |
(* constructors *) |
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 |
val mk_record = foldr mk_field; |
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 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
226 |
(* selectors *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
227 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
228 |
fun mk_selC rT (c, T) = (c, rT --> T); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
229 |
|
4890 | 230 |
fun mk_sel r c = |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
231 |
let val rT = fastype_of r |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
232 |
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
|
233 |
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
234 |
fun mk_named_sels names r = names ~~ map (mk_sel r) names; |
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
235 |
|
4894 | 236 |
val mk_moreC = mk_selC; |
237 |
||
238 |
fun mk_more r c = |
|
239 |
let val rT = fastype_of r |
|
240 |
in Const (mk_moreC rT (c, snd (dest_recordT rT))) $ r end; |
|
241 |
||
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
242 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
243 |
(* updates *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
244 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
245 |
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
|
246 |
|
4890 | 247 |
fun mk_update r (c, x) = |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
248 |
let val rT = fastype_of r |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
249 |
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
|
250 |
|
5197 | 251 |
val mk_more_updateC = mk_updateC; |
252 |
||
253 |
fun mk_more_update r (c, x) = |
|
254 |
let val rT = fastype_of r |
|
255 |
in Const (mk_more_updateC rT (c, snd (dest_recordT rT))) $ x $ r end; |
|
256 |
||
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
257 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
258 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
259 |
(** concrete syntax for records **) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
260 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
261 |
(* parse translations *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
262 |
|
11473
4546d8d39221
fix problem with user translations by making field names appear as consts;
wenzelm
parents:
10008
diff
changeset
|
263 |
fun gen_field_tr mark sfx (t as Const (c, _) $ Const (name, _) $ arg) = |
5197 | 264 |
if c = mark then Syntax.const (suffix sfx name) $ arg |
265 |
else raise TERM ("gen_field_tr: " ^ mark, [t]) |
|
266 |
| 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
|
267 |
|
5197 | 268 |
fun gen_fields_tr sep mark sfx (tm as Const (c, _) $ t $ u) = |
269 |
if c = sep then gen_field_tr mark sfx t :: gen_fields_tr sep mark sfx u |
|
5201 | 270 |
else [gen_field_tr mark sfx tm] |
271 |
| gen_fields_tr _ mark sfx tm = [gen_field_tr mark sfx tm]; |
|
5197 | 272 |
|
273 |
fun gen_record_tr sep mark sfx unit [t] = foldr (op $) (gen_fields_tr sep mark sfx t, unit) |
|
5201 | 274 |
| gen_record_tr _ _ _ _ ts = raise TERM ("gen_record_tr", ts); |
5197 | 275 |
|
276 |
fun gen_record_scheme_tr sep mark sfx [t, more] = foldr (op $) (gen_fields_tr sep mark sfx t, more) |
|
5201 | 277 |
| gen_record_scheme_tr _ _ _ ts = raise TERM ("gen_record_scheme_tr", ts); |
5197 | 278 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
279 |
|
5197 | 280 |
val record_type_tr = gen_record_tr "_field_types" "_field_type" field_typeN (Syntax.const "unit"); |
281 |
val record_type_scheme_tr = gen_record_scheme_tr "_field_types" "_field_type" field_typeN; |
|
282 |
||
283 |
val record_tr = gen_record_tr "_fields" "_field" fieldN HOLogic.unit; |
|
284 |
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
|
285 |
|
5197 | 286 |
fun record_update_tr [t, u] = |
287 |
foldr (op $) (rev (gen_fields_tr "_updates" "_update" updateN u), t) |
|
288 |
| record_update_tr ts = raise TERM ("record_update_tr", ts); |
|
289 |
||
290 |
||
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
291 |
fun update_name_tr (Free (x, T) :: ts) = Free (suffix updateN x, T) $$ ts |
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
292 |
| update_name_tr (Const (x, T) :: ts) = Const (suffix updateN x, T) $$ ts |
11833 | 293 |
| update_name_tr (((c as Const ("_constrain", _)) $ t $ ty) :: ts) = |
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
294 |
(c $ update_name_tr [t] $ (Syntax.const "fun" $ ty $ Syntax.const "dummy")) $$ ts |
11833 | 295 |
| update_name_tr ts = raise TERM ("update_name_tr", ts); |
296 |
||
297 |
||
5197 | 298 |
val parse_translation = |
299 |
[("_record_type", record_type_tr), |
|
300 |
("_record_type_scheme", record_type_scheme_tr), |
|
301 |
("_record", record_tr), |
|
302 |
("_record_scheme", record_scheme_tr), |
|
11833 | 303 |
("_record_update", record_update_tr), |
304 |
("_update_name", update_name_tr)]; |
|
4867
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 |
|
4890 | 307 |
(* print translations *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
308 |
|
5197 | 309 |
fun gen_fields_tr' mark sfx (tm as Const (name_field, _) $ t $ u) = |
310 |
(case try (unsuffix sfx) name_field of |
|
311 |
Some name => |
|
312 |
apfst (cons (Syntax.const mark $ Syntax.free name $ t)) (gen_fields_tr' mark sfx u) |
|
313 |
| None => ([], tm)) |
|
314 |
| gen_fields_tr' _ _ tm = ([], tm); |
|
315 |
||
316 |
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
|
317 |
let |
5197 | 318 |
val (ts, u) = gen_fields_tr' mark sfx tm; |
319 |
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
|
320 |
in |
5197 | 321 |
if is_unit u then Syntax.const record $ t' |
322 |
else Syntax.const record_scheme $ t' $ u |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
323 |
end; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
324 |
|
5197 | 325 |
|
326 |
val record_type_tr' = |
|
327 |
gen_record_tr' "_field_types" "_field_type" field_typeN |
|
328 |
(fn Const ("unit", _) => true | _ => false) "_record_type" "_record_type_scheme"; |
|
329 |
||
330 |
val record_tr' = |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
331 |
gen_record_tr' "_fields" "_field" fieldN |
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
332 |
(fn Const ("Unity", _) => true | _ => false) "_record" "_record_scheme"; |
5197 | 333 |
|
334 |
fun record_update_tr' tm = |
|
335 |
let val (ts, u) = gen_fields_tr' "_update" updateN tm in |
|
336 |
Syntax.const "_record_update" $ u $ |
|
337 |
foldr1 (fn (v, w) => Syntax.const "_updates" $ v $ w) (rev ts) |
|
338 |
end; |
|
339 |
||
340 |
||
5201 | 341 |
fun gen_field_tr' sfx tr' name = |
342 |
let val name_sfx = suffix sfx name |
|
343 |
in (name_sfx, fn [t, u] => tr' (Syntax.const name_sfx $ t $ u) | _ => raise Match) end; |
|
344 |
||
5197 | 345 |
fun print_translation names = |
346 |
map (gen_field_tr' field_typeN record_type_tr') names @ |
|
347 |
map (gen_field_tr' fieldN record_tr') names @ |
|
348 |
map (gen_field_tr' updateN record_update_tr') names; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
349 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
350 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
351 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
352 |
(*** extend theory by record definition ***) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
353 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
354 |
(** record info **) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
355 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
356 |
(* type record_info and parent_info *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
357 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
358 |
type record_info = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
359 |
{args: (string * sort) list, |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
360 |
parent: (typ list * string) option, |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
361 |
fields: (string * typ) list, |
12247 | 362 |
field_inducts: thm list, |
363 |
field_cases: thm list, |
|
364 |
simps: thm list}; |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
365 |
|
12247 | 366 |
fun make_record_info args parent fields field_inducts field_cases simps = |
367 |
{args = args, parent = parent, fields = fields, field_inducts = field_inducts, |
|
368 |
field_cases = field_cases, simps = simps}: record_info; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
369 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
370 |
type parent_info = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
371 |
{name: string, |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
372 |
fields: (string * typ) list, |
12247 | 373 |
field_inducts: thm list, |
374 |
field_cases: thm list, |
|
375 |
simps: thm list}; |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
376 |
|
12247 | 377 |
fun make_parent_info name fields field_inducts field_cases simps = |
378 |
{name = name, fields = fields, field_inducts = field_inducts, |
|
379 |
field_cases = field_cases, simps = simps}: parent_info; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
380 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
381 |
|
5052 | 382 |
(* data kind 'HOL/records' *) |
5001 | 383 |
|
7178 | 384 |
type record_data = |
385 |
{records: record_info Symtab.table, |
|
386 |
sel_upd: |
|
387 |
{selectors: unit Symtab.table, |
|
388 |
updates: string Symtab.table, |
|
389 |
simpset: Simplifier.simpset}, |
|
390 |
field_splits: |
|
391 |
{fields: unit Symtab.table, |
|
392 |
simpset: Simplifier.simpset}}; |
|
393 |
||
394 |
fun make_record_data records sel_upd field_splits = |
|
395 |
{records = records, sel_upd = sel_upd, field_splits = field_splits}: record_data; |
|
396 |
||
5006 | 397 |
structure RecordsArgs = |
398 |
struct |
|
399 |
val name = "HOL/records"; |
|
7178 | 400 |
type T = record_data; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
401 |
|
7178 | 402 |
val empty = |
403 |
make_record_data Symtab.empty |
|
404 |
{selectors = Symtab.empty, updates = Symtab.empty, simpset = HOL_basic_ss} |
|
405 |
{fields = Symtab.empty, simpset = HOL_basic_ss}; |
|
406 |
||
6556 | 407 |
val copy = I; |
5006 | 408 |
val prep_ext = I; |
7178 | 409 |
fun merge |
410 |
({records = recs1, |
|
411 |
sel_upd = {selectors = sels1, updates = upds1, simpset = ss1}, |
|
412 |
field_splits = {fields = flds1, simpset = fld_ss1}}, |
|
413 |
{records = recs2, |
|
414 |
sel_upd = {selectors = sels2, updates = upds2, simpset = ss2}, |
|
415 |
field_splits = {fields = flds2, simpset = fld_ss2}}) = |
|
416 |
make_record_data |
|
417 |
(Symtab.merge (K true) (recs1, recs2)) |
|
418 |
{selectors = Symtab.merge (K true) (sels1, sels2), |
|
419 |
updates = Symtab.merge (K true) (upds1, upds2), |
|
420 |
simpset = Simplifier.merge_ss (ss1, ss2)} |
|
421 |
{fields = Symtab.merge (K true) (flds1, flds2), |
|
422 |
simpset = Simplifier.merge_ss (fld_ss1, fld_ss2)}; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
423 |
|
7178 | 424 |
fun print sg ({records = recs, ...}: record_data) = |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
425 |
let |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
426 |
val prt_typ = Sign.pretty_typ sg; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
427 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
428 |
fun pretty_parent None = [] |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
429 |
| pretty_parent (Some (Ts, name)) = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
430 |
[Pretty.block [prt_typ (Type (name, Ts)), Pretty.str " +"]]; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
431 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
432 |
fun pretty_field (c, T) = Pretty.block |
12129 | 433 |
[Pretty.str (Sign.cond_extern sg Sign.constK c), Pretty.str " ::", |
434 |
Pretty.brk 1, Pretty.quote (prt_typ T)]; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
435 |
|
12247 | 436 |
fun pretty_record (name, {args, parent, fields, ...}: record_info) = |
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
437 |
Pretty.block (Pretty.fbreaks (Pretty.block |
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
438 |
[prt_typ (Type (name, map TFree args)), Pretty.str " = "] :: |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
439 |
pretty_parent parent @ map pretty_field fields)); |
12129 | 440 |
in map pretty_record (Symtab.dest recs) |> Pretty.chunks |> Pretty.writeln end; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
441 |
end; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
442 |
|
5006 | 443 |
structure RecordsData = TheoryDataFun(RecordsArgs); |
444 |
val print_records = RecordsData.print; |
|
445 |
||
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
446 |
|
7178 | 447 |
(* access 'records' *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
448 |
|
7178 | 449 |
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
|
450 |
|
4890 | 451 |
fun put_record name info thy = |
7178 | 452 |
let |
453 |
val {records, sel_upd, field_splits} = RecordsData.get thy; |
|
454 |
val data = make_record_data (Symtab.update ((name, info), records)) sel_upd field_splits; |
|
455 |
in RecordsData.put data thy end; |
|
456 |
||
457 |
||
458 |
(* access 'sel_upd' *) |
|
459 |
||
460 |
fun get_sel_upd sg = #sel_upd (RecordsData.get_sg sg); |
|
461 |
||
462 |
fun get_selectors sg name = Symtab.lookup (#selectors (get_sel_upd sg), name); |
|
463 |
fun get_updates sg name = Symtab.lookup (#updates (get_sel_upd sg), name); |
|
464 |
fun get_simpset sg = #simpset (get_sel_upd sg); |
|
465 |
||
466 |
||
467 |
fun put_sel_upd names simps thy = |
|
468 |
let |
|
469 |
val sels = map (rpair ()) names; |
|
470 |
val upds = map (suffix updateN) names ~~ names; |
|
471 |
||
472 |
val {records, sel_upd = {selectors, updates, simpset}, field_splits} = RecordsData.get thy; |
|
473 |
val data = make_record_data records |
|
474 |
{selectors = Symtab.extend (selectors, sels), |
|
475 |
updates = Symtab.extend (updates, upds), |
|
476 |
simpset = Simplifier.addsimps (simpset, simps)} |
|
477 |
field_splits; |
|
478 |
in RecordsData.put data thy end; |
|
479 |
||
480 |
||
481 |
(* access 'field_splits' *) |
|
5698 | 482 |
|
483 |
fun add_record_splits splits thy = |
|
484 |
let |
|
7178 | 485 |
val {records, sel_upd, field_splits = {fields, simpset}} = RecordsData.get thy; |
486 |
val flds = map (rpair () o fst) splits; |
|
487 |
val simps = map snd splits; |
|
488 |
val data = make_record_data records sel_upd |
|
489 |
{fields = Symtab.extend (fields, flds), simpset = Simplifier.addsimps (simpset, simps)}; |
|
490 |
in RecordsData.put data thy end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
491 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
492 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
493 |
(* parent records *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
494 |
|
12247 | 495 |
fun add_parents thy None parents = parents |
496 |
| add_parents thy (Some (types, name)) parents = |
|
497 |
let |
|
498 |
val sign = Theory.sign_of thy; |
|
499 |
fun err msg = error (msg ^ " parent record " ^ quote name); |
|
12255 | 500 |
|
12247 | 501 |
val {args, parent, fields, field_inducts, field_cases, simps} = |
502 |
(case get_record thy name of Some info => info | None => err "Unknown"); |
|
503 |
val _ = if length types <> length args then err "Bad number of arguments for" else (); |
|
12255 | 504 |
|
12247 | 505 |
fun bad_inst ((x, S), T) = |
506 |
if Sign.of_sort sign (T, S) then None else Some x |
|
507 |
val bads = mapfilter bad_inst (args ~~ types); |
|
12255 | 508 |
|
12247 | 509 |
val inst = map fst args ~~ types; |
510 |
val subst = Term.map_type_tfree (fn (x, _) => the (assoc (inst, x))); |
|
511 |
val parent' = apsome (apfst (map subst)) parent; |
|
512 |
val fields' = map (apsnd subst) fields; |
|
513 |
in |
|
12255 | 514 |
conditional (not (null bads)) (fn () => |
515 |
err ("Ill-sorted instantiation of " ^ commas bads ^ " in")); |
|
516 |
add_parents thy parent' |
|
12247 | 517 |
(make_parent_info name fields' field_inducts field_cases simps :: parents) |
518 |
end; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
519 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
520 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
521 |
|
7178 | 522 |
(** record simproc **) |
523 |
||
13462 | 524 |
val record_simproc = |
525 |
Simplifier.simproc (Theory.sign_of HOL.thy) "record_simp" ["s (u k r)"] |
|
526 |
(fn sg => fn _ => fn t => |
|
527 |
(case t of (sel as Const (s, _)) $ ((upd as Const (u, _)) $ k $ r) => |
|
528 |
(case get_selectors sg s of Some () => |
|
529 |
(case get_updates sg u of Some u_name => |
|
530 |
let |
|
531 |
fun mk_free x t = Free (x, fastype_of t); |
|
532 |
val k' = mk_free "k" k; |
|
533 |
val r' = mk_free "r" r; |
|
534 |
val t' = sel $ (upd $ k' $ r'); |
|
535 |
fun prove prop = |
|
536 |
Tactic.prove sg ["k", "r"] [] prop (K (simp_all_tac (get_simpset sg) [])); |
|
537 |
in |
|
538 |
if u_name = s then Some (prove (Logic.mk_equals (t', k'))) |
|
539 |
else Some (prove (Logic.mk_equals (t', sel $ r'))) |
|
540 |
end |
|
541 |
| None => None) |
|
542 |
| None => None) |
|
543 |
| _ => None)); |
|
7178 | 544 |
|
545 |
||
546 |
||
5698 | 547 |
(** record field splitting **) |
548 |
||
6358 | 549 |
(* tactic *) |
550 |
||
5698 | 551 |
fun record_split_tac i st = |
552 |
let |
|
7178 | 553 |
val {field_splits = {fields, simpset}, ...} = RecordsData.get_sg (Thm.sign_of_thm st); |
5698 | 554 |
|
7178 | 555 |
fun is_fieldT (_, Type (a, [_, _])) = is_some (Symtab.lookup (fields, a)) |
5698 | 556 |
| is_fieldT _ = false; |
557 |
val params = Logic.strip_params (Library.nth_elem (i - 1, Thm.prems_of st)); |
|
558 |
in |
|
7178 | 559 |
if exists is_fieldT params then Simplifier.full_simp_tac simpset i st |
5698 | 560 |
else Seq.empty |
561 |
end handle Library.LIST _ => Seq.empty; |
|
562 |
||
6358 | 563 |
|
564 |
(* wrapper *) |
|
565 |
||
5707 | 566 |
val record_split_name = "record_split_tac"; |
567 |
val record_split_wrapper = (record_split_name, fn tac => record_split_tac ORELSE' tac); |
|
5698 | 568 |
|
569 |
||
6358 | 570 |
(* method *) |
571 |
||
572 |
val record_split_method = |
|
9705 | 573 |
("record_split", Method.no_args (Method.SIMPLE_METHOD' HEADGOAL record_split_tac), |
6358 | 574 |
"split record fields"); |
575 |
||
576 |
||
12255 | 577 |
|
4890 | 578 |
(** internal theory extenders **) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
579 |
|
11832 | 580 |
(* field_typedefs *) |
5698 | 581 |
|
11832 | 582 |
fun field_typedefs zeta moreT names theory = |
5698 | 583 |
let |
11832 | 584 |
val alpha = "'a"; |
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
12311
diff
changeset
|
585 |
val aT = TFree (alpha, HOLogic.typeS); |
11832 | 586 |
val UNIV = HOLogic.mk_UNIV (HOLogic.mk_prodT (aT, moreT)); |
5698 | 587 |
|
11832 | 588 |
fun type_def (thy, name) = |
11940 | 589 |
let val (thy', {type_definition, set_def = Some def, ...}) = |
590 |
thy |> setmp TypedefPackage.quiet_mode true |
|
11832 | 591 |
(TypedefPackage.add_typedef_i true None |
592 |
(suffix field_typeN (Sign.base_name name), [alpha, zeta], Syntax.NoSyn) UNIV None |
|
593 |
(Tactic.rtac UNIV_witness 1)) |
|
594 |
in (thy', Tactic.rewrite_rule [def] type_definition) end |
|
595 |
in foldl_map type_def (theory, names) end; |
|
5698 | 596 |
|
597 |
||
4894 | 598 |
(* field_definitions *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
599 |
|
11832 | 600 |
fun field_definitions fields names xs alphas zeta moreT more vars named_vars thy = |
4890 | 601 |
let |
5698 | 602 |
val sign = Theory.sign_of thy; |
4890 | 603 |
val base = Sign.base_name; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
604 |
|
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
12311
diff
changeset
|
605 |
val xT = TFree (variant alphas "'x", HOLogic.typeS); |
11832 | 606 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
607 |
|
4890 | 608 |
(* prepare declarations and definitions *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
609 |
|
5698 | 610 |
(*field constructors*) |
4890 | 611 |
val field_decls = map (mk_fieldC moreT) fields; |
612 |
||
11832 | 613 |
fun mk_field_spec ((c, T), v) = |
614 |
Term.head_of (mk_field ((c, v), more)) :== |
|
615 |
lambda v (lambda more (mk_Abs moreT (c, T) $ (HOLogic.mk_prod (v, more)))); |
|
616 |
val field_specs = map mk_field_spec (fields ~~ vars); |
|
4890 | 617 |
|
618 |
(*field destructors*) |
|
5698 | 619 |
val dest_decls = map (mk_fstC moreT) fields @ map (mk_sndC moreT) fields; |
620 |
||
11832 | 621 |
fun mk_dest_spec dest sel (c, T) = |
5698 | 622 |
let val p = Free ("p", mk_fieldT ((c, T), moreT)); |
11832 | 623 |
in Term.head_of (dest p) :== lambda p (sel (mk_Rep moreT (c, T) $ p)) end; |
624 |
val dest_specs1 = map (mk_dest_spec mk_fst HOLogic.mk_fst) fields; |
|
625 |
val dest_specs2 = map (mk_dest_spec mk_snd HOLogic.mk_snd) fields; |
|
4890 | 626 |
|
627 |
||
11832 | 628 |
(* 1st stage: defs_thy *) |
5713 | 629 |
|
11832 | 630 |
val (defs_thy, (((typedefs, field_defs), dest_defs1), dest_defs2)) = |
631 |
thy |
|
632 |
|> field_typedefs zeta moreT names |
|
633 |
|>> (Theory.add_consts_i o map (Syntax.no_syn o apfst base)) (field_decls @ dest_decls) |
|
634 |
|>>> (PureThy.add_defs_i false o map Thm.no_attributes) field_specs |
|
635 |
|>>> (PureThy.add_defs_i false o map Thm.no_attributes) dest_specs1 |
|
636 |
|>>> (PureThy.add_defs_i false o map Thm.no_attributes) dest_specs2; |
|
4890 | 637 |
|
13419 | 638 |
val prod_types = map (fn (((a, b), c), d) => product_type_intro OF [a, b, c, d]) |
11832 | 639 |
(typedefs ~~ field_defs ~~ dest_defs1 ~~ dest_defs2); |
4890 | 640 |
|
5698 | 641 |
|
11832 | 642 |
(* 2nd stage: thms_thy *) |
5698 | 643 |
|
11832 | 644 |
fun make th = map (fn prod_type => Drule.standard (th OF [prod_type])) prod_types; |
4890 | 645 |
|
11940 | 646 |
val dest_convs = make product_type_conv1 @ make product_type_conv2; |
11832 | 647 |
val field_injects = make product_type_inject; |
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
648 |
val field_inducts = make product_type_induct; |
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
649 |
val field_cases = make product_type_cases; |
11832 | 650 |
val field_splits = make product_type_split_paired_all; |
4894 | 651 |
|
11940 | 652 |
val (thms_thy, [field_defs', dest_defs', dest_convs', field_injects', |
653 |
field_splits', field_inducts', field_cases']) = defs_thy |
|
12449 | 654 |
|> Codegen.assoc_consts_i (flat (map (fn (s, _) => |
655 |
[(suffix fieldN s, None, prod_code), |
|
656 |
(suffix fstN s, None, fst_code), |
|
657 |
(suffix sndN s, None, snd_code)]) fields)) |
|
658 |
|> Codegen.assoc_types (map (fn (s, _) => |
|
659 |
(suffix field_typeN s, prodT_code)) fields) |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
660 |
|> (PureThy.add_thmss o map Thm.no_attributes) |
11940 | 661 |
[("field_defs", field_defs), |
662 |
("dest_defs", dest_defs1 @ dest_defs2), |
|
663 |
("dest_convs", dest_convs), |
|
664 |
("field_injects", field_injects), |
|
665 |
("field_splits", field_splits), |
|
666 |
("field_inducts", field_inducts), |
|
667 |
("field_cases", field_cases)]; |
|
4890 | 668 |
|
11940 | 669 |
in (thms_thy, dest_convs', field_injects', field_splits', field_inducts', field_cases') end; |
4890 | 670 |
|
671 |
||
672 |
(* record_definition *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
673 |
|
12506 | 674 |
fun record_definition (args, bname) parent (parents: parent_info list) raw_fields thy = |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
675 |
let |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
676 |
val sign = Theory.sign_of thy; |
12247 | 677 |
|
678 |
val alphas = map fst args; |
|
679 |
val name = Sign.full_name sign bname; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
680 |
val full = Sign.full_name_path sign bname; |
4890 | 681 |
val base = Sign.base_name; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
682 |
|
12506 | 683 |
val (bfields, field_syntax) = split_list (map (fn (x, T, mx) => ((x, T), mx)) raw_fields); |
684 |
||
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
685 |
|
4890 | 686 |
(* basic components *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
687 |
|
12247 | 688 |
val ancestry = map (length o flat o map #fields) (Library.prefixes1 parents); |
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
689 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
690 |
val parent_fields = flat (map #fields parents); |
4890 | 691 |
val parent_names = map fst parent_fields; |
692 |
val parent_types = map snd parent_fields; |
|
693 |
val parent_len = length parent_fields; |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
694 |
val parent_xs = variantlist (map (base o fst) parent_fields, [moreN, rN]); |
4890 | 695 |
val parent_vars = ListPair.map Free (parent_xs, parent_types); |
4894 | 696 |
val parent_named_vars = parent_names ~~ parent_vars; |
4890 | 697 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
698 |
val fields = map (apfst full) bfields; |
4890 | 699 |
val names = map fst fields; |
700 |
val types = map snd fields; |
|
701 |
val len = length fields; |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
702 |
val xs = variantlist (map fst bfields, moreN :: rN :: parent_xs); |
4890 | 703 |
val vars = ListPair.map Free (xs, types); |
4894 | 704 |
val named_vars = names ~~ vars; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
705 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
706 |
val all_fields = parent_fields @ fields; |
4890 | 707 |
val all_names = parent_names @ names; |
708 |
val all_types = parent_types @ types; |
|
709 |
val all_len = parent_len + len; |
|
710 |
val all_xs = parent_xs @ xs; |
|
711 |
val all_vars = parent_vars @ vars; |
|
4894 | 712 |
val all_named_vars = parent_named_vars @ named_vars; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
713 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
714 |
val zeta = variant alphas "'z"; |
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
12311
diff
changeset
|
715 |
val moreT = TFree (zeta, HOLogic.typeS); |
4895 | 716 |
val more = Free (moreN, moreT); |
5197 | 717 |
val full_moreN = full moreN; |
718 |
fun more_part t = mk_more t full_moreN; |
|
719 |
fun more_part_update t x = mk_more_update t (full_moreN, x); |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
720 |
val all_types_more = all_types @ [moreT]; |
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
721 |
val all_xs_more = all_xs @ [moreN]; |
4894 | 722 |
|
723 |
val parent_more = funpow parent_len mk_snd; |
|
724 |
val idxs = 0 upto (len - 1); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
725 |
|
12265 | 726 |
val fieldsT = mk_recordT (fields, HOLogic.unitT); |
12247 | 727 |
fun rec_schemeT n = mk_recordT (prune n all_fields, moreT); |
728 |
fun rec_scheme n = mk_record (prune n all_named_vars, more); |
|
729 |
fun recT n = mk_recordT (prune n all_fields, HOLogic.unitT); |
|
12255 | 730 |
fun rec_ n = mk_record (prune n all_named_vars, HOLogic.unit); |
12247 | 731 |
fun r_scheme n = Free (rN, rec_schemeT n); |
732 |
fun r n = Free (rN, recT n); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
733 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
734 |
|
4890 | 735 |
(* prepare print translation functions *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
736 |
|
5698 | 737 |
val field_tr's = |
13333 | 738 |
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
|
739 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
740 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
741 |
(* prepare declarations *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
742 |
|
12247 | 743 |
val sel_decls = map (mk_selC (rec_schemeT 0)) bfields @ |
744 |
[mk_moreC (rec_schemeT 0) (moreN, moreT)]; |
|
745 |
val update_decls = map (mk_updateC (rec_schemeT 0)) bfields @ |
|
746 |
[mk_more_updateC (rec_schemeT 0) (moreN, moreT)]; |
|
12265 | 747 |
val make_decl = (makeN, all_types ---> recT 0); |
748 |
val fields_decl = (fieldsN, types ---> fieldsT); |
|
12247 | 749 |
val extend_decl = (extendN, recT 0 --> moreT --> rec_schemeT 0); |
750 |
val truncate_decl = (truncateN, rec_schemeT 0 --> recT 0); |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
751 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
752 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
753 |
(* prepare definitions *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
754 |
|
4895 | 755 |
(*record (scheme) type abbreviation*) |
4890 | 756 |
val recordT_specs = |
12247 | 757 |
[(suffix schemeN bname, alphas @ [zeta], rec_schemeT 0, Syntax.NoSyn), |
758 |
(bname, alphas, recT 0, Syntax.NoSyn)]; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
759 |
|
4894 | 760 |
(*selectors*) |
4890 | 761 |
fun mk_sel_spec (i, c) = |
12247 | 762 |
mk_sel (r_scheme 0) c :== mk_fst (funpow i mk_snd (parent_more (r_scheme 0))); |
4894 | 763 |
val sel_specs = |
764 |
ListPair.map mk_sel_spec (idxs, names) @ |
|
12247 | 765 |
[more_part (r_scheme 0) :== funpow len mk_snd (parent_more (r_scheme 0))]; |
4890 | 766 |
|
767 |
(*updates*) |
|
12247 | 768 |
val all_sels = mk_named_sels all_names (r_scheme 0); |
4890 | 769 |
fun mk_upd_spec (i, (c, x)) = |
12247 | 770 |
mk_update (r_scheme 0) (c, x) :== |
771 |
mk_record (nth_update (c, x) (parent_len + i, all_sels), more_part (r_scheme 0)) |
|
5197 | 772 |
val update_specs = |
773 |
ListPair.map mk_upd_spec (idxs, named_vars) @ |
|
12247 | 774 |
[more_part_update (r_scheme 0) more :== mk_record (all_sels, more)]; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
775 |
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
776 |
(*derived operations*) |
12265 | 777 |
val make_spec = Const (full makeN, all_types ---> recT 0) $$ all_vars :== |
778 |
mk_record (all_named_vars, HOLogic.unit); |
|
779 |
val fields_spec = Const (full fieldsN, types ---> fieldsT) $$ vars :== |
|
780 |
mk_record (named_vars, HOLogic.unit); |
|
12247 | 781 |
val extend_spec = Const (full extendN, recT 0 --> moreT --> rec_schemeT 0) $ r 0 $ more :== |
782 |
mk_record (mk_named_sels all_names (r 0), more); |
|
783 |
val truncate_spec = Const (full truncateN, rec_schemeT 0 --> recT 0) $ r_scheme 0 :== |
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
784 |
mk_record (all_sels, HOLogic.unit); |
4894 | 785 |
|
786 |
||
787 |
(* prepare propositions *) |
|
788 |
||
789 |
(*selectors*) |
|
790 |
val sel_props = |
|
12247 | 791 |
map (fn (c, x) => mk_sel (rec_scheme 0) c === x) named_vars @ |
792 |
[more_part (rec_scheme 0) === more]; |
|
4894 | 793 |
|
794 |
(*updates*) |
|
795 |
fun mk_upd_prop (i, (c, T)) = |
|
796 |
let val x' = Free (variant all_xs (base c ^ "'"), T) in |
|
12247 | 797 |
mk_update (rec_scheme 0) (c, x') === |
4894 | 798 |
mk_record (nth_update (c, x') (parent_len + i, all_named_vars), more) |
799 |
end; |
|
5197 | 800 |
val update_props = |
801 |
ListPair.map mk_upd_prop (idxs, fields) @ |
|
802 |
let val more' = Free (variant all_xs (moreN ^ "'"), moreT) |
|
12247 | 803 |
in [more_part_update (rec_scheme 0) more' === mk_record (all_named_vars, more')] end; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
804 |
|
9626 | 805 |
(*equality*) |
806 |
fun mk_sel_eq (t, T) = |
|
12247 | 807 |
let val t' = Term.abstract_over (r_scheme 0, t) |
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
808 |
in Trueprop (HOLogic.eq_const T $ Term.incr_boundvars 1 t' $ t') end; |
12247 | 809 |
val sel_eqs = map2 mk_sel_eq |
810 |
(map (mk_sel (r_scheme 0)) all_names @ [more_part (r_scheme 0)], all_types @ [moreT]); |
|
9626 | 811 |
val equality_prop = |
12247 | 812 |
Term.all (rec_schemeT 0) $ (Abs ("r", rec_schemeT 0, |
813 |
Term.all (rec_schemeT 0) $ (Abs ("r'", rec_schemeT 0, |
|
9626 | 814 |
Logic.list_implies (sel_eqs, |
12247 | 815 |
Trueprop (HOLogic.eq_const (rec_schemeT 0) $ Bound 1 $ Bound 0)))))); |
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
816 |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
817 |
(*induct*) |
12247 | 818 |
fun induct_scheme_prop n = |
819 |
let val P = Free ("P", rec_schemeT n --> HOLogic.boolT) in |
|
820 |
(All (prune n all_xs_more ~~ prune n all_types_more) |
|
821 |
(Trueprop (P $ rec_scheme n)), Trueprop (P $ r_scheme n)) |
|
822 |
end; |
|
823 |
fun induct_prop n = |
|
824 |
let val P = Free ("P", recT n --> HOLogic.boolT) in |
|
825 |
(All (prune n all_xs ~~ prune n all_types) (Trueprop (P $ rec_ n)), Trueprop (P $ r n)) |
|
826 |
end; |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
827 |
|
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
828 |
(*cases*) |
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
829 |
val C = Trueprop (Free (variant all_xs_more "C", HOLogic.boolT)); |
12247 | 830 |
fun cases_scheme_prop n = |
831 |
All (prune n all_xs_more ~~ prune n all_types_more) |
|
832 |
((r_scheme n === rec_scheme n) ==> C) ==> C; |
|
12255 | 833 |
fun cases_prop n = All (prune n all_xs ~~ prune n all_types) ((r n === rec_ n) ==> C) ==> C; |
9626 | 834 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
835 |
|
4890 | 836 |
(* 1st stage: fields_thy *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
837 |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
838 |
val (fields_thy, field_simps, field_injects, field_splits, field_inducts, field_cases) = |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
839 |
thy |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
840 |
|> Theory.add_path bname |
11832 | 841 |
|> field_definitions fields names xs alphas zeta moreT more vars named_vars; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
842 |
|
12247 | 843 |
val all_field_inducts = flat (map #field_inducts parents) @ field_inducts; |
844 |
val all_field_cases = flat (map #field_cases parents) @ field_cases; |
|
845 |
||
6092 | 846 |
val named_splits = map2 (fn (c, th) => (suffix field_typeN c, th)) (names, field_splits); |
5698 | 847 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
848 |
|
4890 | 849 |
(* 2nd stage: defs_thy *) |
850 |
||
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
851 |
val (defs_thy, (((sel_defs, update_defs), derived_defs))) = |
4890 | 852 |
fields_thy |
9626 | 853 |
|> add_record_splits named_splits |
4890 | 854 |
|> Theory.parent_path |
12255 | 855 |
|> Theory.add_tyabbrs_i recordT_specs |
4890 | 856 |
|> Theory.add_path bname |
5197 | 857 |
|> Theory.add_trfuns ([], [], field_tr's, []) |
12506 | 858 |
|> Theory.add_consts_i |
859 |
(map2 (fn ((x, T), mx) => (x, T, mx)) (sel_decls, field_syntax @ [Syntax.NoSyn])) |
|
4894 | 860 |
|> (Theory.add_consts_i o map Syntax.no_syn) |
12506 | 861 |
(update_decls @ [make_decl, fields_decl, extend_decl, truncate_decl]) |
11832 | 862 |
|> (PureThy.add_defs_i false o map Thm.no_attributes) sel_specs |
863 |
|>>> (PureThy.add_defs_i false o map Thm.no_attributes) update_specs |
|
11934
6c1bf72430b6
derived operations are now: make, extend, truncate (cf. derived_defs);
wenzelm
parents:
11927
diff
changeset
|
864 |
|>>> (PureThy.add_defs_i false o map Thm.no_attributes) |
12590
3573830e9b91
hide base name of "make", "fields", "extend", "truncate", "more",
wenzelm
parents:
12506
diff
changeset
|
865 |
[make_spec, fields_spec, extend_spec, truncate_spec] |
3573830e9b91
hide base name of "make", "fields", "extend", "truncate", "more",
wenzelm
parents:
12506
diff
changeset
|
866 |
|>> Theory.hide_consts false [full makeN, full fieldsN, full extendN, full truncateN, |
3573830e9b91
hide base name of "make", "fields", "extend", "truncate", "more",
wenzelm
parents:
12506
diff
changeset
|
867 |
full moreN, full (suffix updateN moreN)]; |
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
868 |
|
4890 | 869 |
|
870 |
(* 3rd stage: thms_thy *) |
|
871 |
||
12247 | 872 |
val prove_standard = Tactic.prove_standard (Theory.sign_of defs_thy); |
11967 | 873 |
fun prove_simp simps = |
874 |
let val tac = simp_all_tac HOL_basic_ss simps |
|
875 |
in fn prop => prove_standard [] [] prop (K tac) end; |
|
4890 | 876 |
|
11967 | 877 |
val parent_simps = flat (map #simps parents); |
878 |
val sel_convs = map (prove_simp (parent_simps @ sel_defs @ field_simps)) sel_props; |
|
879 |
val update_convs = map (prove_simp (parent_simps @ update_defs @ sel_convs)) update_props; |
|
4894 | 880 |
|
12247 | 881 |
fun induct_scheme n = |
882 |
let val (assm, concl) = induct_scheme_prop n in |
|
883 |
prove_standard [] [assm] concl (fn prems => |
|
13904
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
884 |
EVERY (map (fn rule => try_param_tac rN rule 1) (prune n all_field_inducts)) |
12247 | 885 |
THEN resolve_tac prems 1) |
886 |
end; |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
887 |
|
12247 | 888 |
fun cases_scheme n = |
889 |
prove_standard [] [] (cases_scheme_prop n) (fn _ => |
|
13904
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
890 |
EVERY (map (fn rule => try_param_tac rN rule 1) (prune n all_field_cases)) |
11967 | 891 |
THEN simp_all_tac HOL_basic_ss []); |
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
892 |
|
12247 | 893 |
val induct_scheme0 = induct_scheme 0; |
894 |
val cases_scheme0 = cases_scheme 0; |
|
895 |
val more_induct_scheme = map induct_scheme ancestry; |
|
896 |
val more_cases_scheme = map cases_scheme ancestry; |
|
11927
96f267adc029
provodes induct/cases for use with corresponding Isar methods;
wenzelm
parents:
11923
diff
changeset
|
897 |
|
12247 | 898 |
val (thms_thy, (([sel_convs', update_convs', sel_defs', update_defs', _], |
899 |
[induct_scheme', cases_scheme']), [more_induct_scheme', more_cases_scheme'])) = |
|
11940 | 900 |
defs_thy |
901 |
|> (PureThy.add_thmss o map Thm.no_attributes) |
|
902 |
[("select_convs", sel_convs), |
|
903 |
("update_convs", update_convs), |
|
904 |
("select_defs", sel_defs), |
|
905 |
("update_defs", update_defs), |
|
12265 | 906 |
("defs", derived_defs)] |
11940 | 907 |
|>>> PureThy.add_thms |
12255 | 908 |
[(("induct_scheme", induct_scheme0), induct_type_global (suffix schemeN name)), |
909 |
(("cases_scheme", cases_scheme0), cases_type_global (suffix schemeN name))] |
|
910 |
|>>> PureThy.add_thmss |
|
911 |
[(("more_induct_scheme", more_induct_scheme), induct_type_global ""), |
|
912 |
(("more_cases_scheme", more_cases_scheme), cases_type_global "")]; |
|
12247 | 913 |
|
914 |
||
915 |
(* 4th stage: more_thms_thy *) |
|
916 |
||
917 |
val prove_standard = Tactic.prove_standard (Theory.sign_of thms_thy); |
|
11940 | 918 |
|
12247 | 919 |
fun induct (n, scheme) = |
920 |
let val (assm, concl) = induct_prop n in |
|
921 |
prove_standard [] [assm] concl (fn prems => |
|
922 |
res_inst_tac [(rN, rN)] scheme 1 |
|
13904
c13e6e218a69
try_param_tac now precomputes substitution for rule, in order to avoid
berghofe
parents:
13462
diff
changeset
|
923 |
THEN try_param_tac "more" unit_induct 1 |
12247 | 924 |
THEN resolve_tac prems 1) |
925 |
end; |
|
926 |
||
927 |
fun cases (n, scheme) = |
|
928 |
prove_standard [] [] (cases_prop n) (fn _ => |
|
929 |
res_inst_tac [(rN, rN)] scheme 1 |
|
930 |
THEN simp_all_tac HOL_basic_ss [unit_all_eq1]); |
|
931 |
||
932 |
val induct0 = induct (0, induct_scheme'); |
|
933 |
val cases0 = cases (0, cases_scheme'); |
|
934 |
val more_induct = map induct (ancestry ~~ more_induct_scheme'); |
|
935 |
val more_cases = map cases (ancestry ~~ more_cases_scheme'); |
|
936 |
||
937 |
val equality = prove_standard [] [] equality_prop (fn _ => |
|
11967 | 938 |
fn st => let val [r, r'] = map #1 (rev (Tactic.innermost_params 1 st)) in |
939 |
st |> (res_inst_tac [(rN, r)] cases_scheme' 1 |
|
940 |
THEN res_inst_tac [(rN, r')] cases_scheme' 1 |
|
941 |
THEN simp_all_tac HOL_basic_ss (parent_simps @ sel_convs)) |
|
942 |
end); |
|
943 |
||
12247 | 944 |
val (more_thms_thy, [_, _, equality']) = |
945 |
thms_thy |> PureThy.add_thms |
|
12255 | 946 |
[(("induct", induct0), induct_type_global name), |
947 |
(("cases", cases0), cases_type_global name), |
|
12374 | 948 |
(("equality", equality), [ContextRules.intro_bang_global None])] |
12255 | 949 |
|>> (#1 oo PureThy.add_thmss) |
950 |
[(("more_induct", more_induct), induct_type_global ""), |
|
951 |
(("more_cases", more_cases), cases_type_global "")]; |
|
11967 | 952 |
|
11959 | 953 |
val simps = sel_convs' @ update_convs' @ [equality']; |
6519 | 954 |
val iffs = field_injects; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
955 |
|
12247 | 956 |
val more_thms_thy' = |
957 |
more_thms_thy |> (#1 oo PureThy.add_thmss) |
|
5707 | 958 |
[(("simps", simps), [Simplifier.simp_add_global]), |
6519 | 959 |
(("iffs", iffs), [iff_add_global])]; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
960 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
961 |
|
12247 | 962 |
(* 5th stage: final_thy *) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
963 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
964 |
val final_thy = |
12247 | 965 |
more_thms_thy' |
966 |
|> put_record name (make_record_info args parent fields field_inducts field_cases |
|
967 |
(field_simps @ simps)) |
|
11940 | 968 |
|> put_sel_upd (names @ [full_moreN]) (field_simps @ sel_defs' @ update_defs') |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
969 |
|> Theory.parent_path; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
970 |
|
6519 | 971 |
in (final_thy, {simps = simps, iffs = iffs}) end; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
972 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
973 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
974 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
975 |
(** theory extender interface **) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
976 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
977 |
(* prepare arguments *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
978 |
|
4894 | 979 |
(*note: read_raw_typ avoids expanding type abbreviations*) |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
980 |
fun read_raw_parent sign s = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
981 |
(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
|
982 |
Type (name, Ts) => (Ts, name) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
983 |
| _ => error ("Bad parent record specification: " ^ quote s)); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
984 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
985 |
fun read_typ sign (env, s) = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
986 |
let |
5060 | 987 |
fun def_sort (x, ~1) = assoc (env, x) |
988 |
| def_sort _ = None; |
|
989 |
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
|
990 |
in (Term.add_typ_tfrees (T, env), T) end; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
991 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
992 |
fun cert_typ sign (env, raw_T) = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
993 |
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
|
994 |
in (Term.add_typ_tfrees (T, env), T) end; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
995 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
996 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
997 |
(* add_record *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
998 |
|
4895 | 999 |
(*we do all preparations and error checks here, deferring the real |
1000 |
work to record_definition*) |
|
4890 | 1001 |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1002 |
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
|
1003 |
let |
4970 | 1004 |
val _ = Theory.requires thy "Record" "record definitions"; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1005 |
val sign = Theory.sign_of thy; |
5698 | 1006 |
val _ = message ("Defining record " ^ quote bname ^ " ..."); |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1007 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1008 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1009 |
(* parents *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1010 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1011 |
fun prep_inst T = snd (cert_typ sign ([], T)); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1012 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1013 |
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
|
1014 |
handle ERROR => error ("The error(s) above in parent record specification"); |
12247 | 1015 |
val parents = add_parents thy parent []; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1016 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1017 |
val init_env = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1018 |
(case parent of |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1019 |
None => [] |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1020 |
| Some (types, _) => foldr Term.add_typ_tfrees (types, [])); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1021 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1022 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1023 |
(* fields *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1024 |
|
12506 | 1025 |
fun prep_field (env, (c, raw_T, mx)) = |
4967 | 1026 |
let val (env', T) = prep_typ sign (env, raw_T) handle ERROR => |
1027 |
error ("The error(s) above occured in field " ^ quote c) |
|
12506 | 1028 |
in (env', (c, T, mx)) end; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1029 |
|
4967 | 1030 |
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
|
1031 |
val envir_names = map fst envir; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1032 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1033 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1034 |
(* args *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1035 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1036 |
val defaultS = Sign.defaultS sign; |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1037 |
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
|
1038 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1039 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1040 |
(* errors *) |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1041 |
|
4890 | 1042 |
val name = Sign.full_name sign bname; |
1043 |
val err_dup_record = |
|
1044 |
if is_none (get_record thy name) then [] |
|
1045 |
else ["Duplicate definition of record " ^ quote name]; |
|
1046 |
||
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1047 |
val err_dup_parms = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1048 |
(case duplicates params of |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1049 |
[] => [] |
4890 | 1050 |
| dups => ["Duplicate parameter(s) " ^ commas dups]); |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1051 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1052 |
val err_extra_frees = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1053 |
(case gen_rems (op =) (envir_names, params) of |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1054 |
[] => [] |
4890 | 1055 |
| extras => ["Extra free type variable(s) " ^ commas extras]); |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1056 |
|
4890 | 1057 |
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
|
1058 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1059 |
val err_dup_fields = |
12506 | 1060 |
(case duplicates (map #1 bfields) of |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1061 |
[] => [] |
4890 | 1062 |
| dups => ["Duplicate field(s) " ^ commas_quote dups]); |
1063 |
||
1064 |
val err_bad_fields = |
|
12506 | 1065 |
if forall (not_equal moreN o #1) bfields then [] |
4890 | 1066 |
else ["Illegal field name " ^ quote moreN]; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1067 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1068 |
val err_dup_sorts = |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1069 |
(case duplicates envir_names of |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1070 |
[] => [] |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1071 |
| dups => ["Inconsistent sort constraints for " ^ commas dups]); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1072 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1073 |
val errs = |
4890 | 1074 |
err_dup_record @ err_dup_parms @ err_extra_frees @ err_no_fields @ |
1075 |
err_dup_fields @ err_bad_fields @ err_dup_sorts; |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1076 |
in |
4890 | 1077 |
if null errs then () else error (cat_lines errs); |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1078 |
thy |> record_definition (args, bname) parent parents bfields |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1079 |
end |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1080 |
handle ERROR => error ("Failed to define record " ^ quote bname); |
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1081 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1082 |
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
|
1083 |
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
|
1084 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1085 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1086 |
|
6358 | 1087 |
(** package setup **) |
1088 |
||
1089 |
(* setup theory *) |
|
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1090 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1091 |
val setup = |
5006 | 1092 |
[RecordsData.init, |
11490
f9ae28f55178
field_name_ast_tr superceded by constify_ast_tr in Pure;
wenzelm
parents:
11473
diff
changeset
|
1093 |
Theory.add_trfuns ([], parse_translation, [], []), |
6358 | 1094 |
Method.add_methods [record_split_method], |
7178 | 1095 |
Simplifier.change_simpset_of Simplifier.addsimprocs [record_simproc]]; |
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1096 |
|
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1097 |
|
6358 | 1098 |
(* outer syntax *) |
1099 |
||
6723 | 1100 |
local structure P = OuterParse and K = OuterSyntax.Keyword in |
6358 | 1101 |
|
1102 |
val record_decl = |
|
12876
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12590
diff
changeset
|
1103 |
P.type_args -- P.name -- |
a70df1e5bf10
got rid of explicit marginal comments (now stripped earlier from input);
wenzelm
parents:
12590
diff
changeset
|
1104 |
(P.$$$ "=" |-- Scan.option (P.typ --| P.$$$ "+") -- Scan.repeat1 P.const); |
6358 | 1105 |
|
1106 |
val recordP = |
|
6723 | 1107 |
OuterSyntax.command "record" "define extensible record" K.thy_decl |
6519 | 1108 |
(record_decl >> (fn (x, (y, z)) => Toplevel.theory (#1 o add_record x y z))); |
6358 | 1109 |
|
1110 |
val _ = OuterSyntax.add_parsers [recordP]; |
|
1111 |
||
4867
9be2bf0ce909
package extensible records with structural subtyping in HOL -- still
wenzelm
parents:
diff
changeset
|
1112 |
end; |
5698 | 1113 |
|
6384 | 1114 |
end; |
1115 |
||
5698 | 1116 |
structure BasicRecordPackage: BASIC_RECORD_PACKAGE = RecordPackage; |
1117 |
open BasicRecordPackage; |