author | nipkow |
Thu, 26 Oct 2000 10:27:04 +0200 | |
changeset 10340 | 0a380ac80e7d |
parent 9504 | 8168600e88a5 |
child 10404 | 93efbb62667c |
permissions | -rw-r--r-- |
19 | 1 |
(* Title: Pure/sign.ML |
0 | 2 |
ID: $Id$ |
251 | 3 |
Author: Lawrence C Paulson and Markus Wenzel |
0 | 4 |
|
251 | 5 |
The abstract type "sg" of signatures. |
0 | 6 |
*) |
7 |
||
3956 | 8 |
(*base names*) |
9 |
type bstring = string; |
|
10 |
type bclass = class; |
|
11 |
(*external forms -- partially qualified names*) |
|
3805 | 12 |
type xstring = string; |
13 |
type xclass = class; |
|
14 |
type xsort = sort; |
|
15 |
type xtyp = typ; |
|
16 |
type xterm = term; |
|
17 |
||
19 | 18 |
signature SIGN = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
19 |
sig |
1501 | 20 |
type sg |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
21 |
type sg_ref |
4256 | 22 |
type data |
2197 | 23 |
val rep_sg: sg -> |
3975 | 24 |
{self: sg_ref, |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
25 |
tsig: Type.type_sig, |
2197 | 26 |
const_tab: typ Symtab.table, |
27 |
syn: Syntax.syntax, |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
28 |
path: string list, |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
29 |
spaces: (string * NameSpace.T) list, |
4256 | 30 |
data: data} |
3975 | 31 |
val name_of: sg -> string |
32 |
val stamp_names_of: sg -> string list |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
33 |
val tsig_of: sg -> Type.type_sig |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
34 |
val deref: sg_ref -> sg |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
35 |
val self_ref: sg -> sg_ref |
1501 | 36 |
val subsig: sg * sg -> bool |
9031 | 37 |
val joinable: sg * sg -> bool |
1501 | 38 |
val eq_sg: sg * sg -> bool |
39 |
val same_sg: sg * sg -> bool |
|
40 |
val is_draft: sg -> bool |
|
4951 | 41 |
val is_stale: sg -> bool |
1501 | 42 |
val const_type: sg -> string -> typ option |
43 |
val classes: sg -> class list |
|
4844 | 44 |
val defaultS: sg -> sort |
1501 | 45 |
val subsort: sg -> sort * sort -> bool |
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
46 |
val nodup_vars: term -> term |
1501 | 47 |
val norm_sort: sg -> sort -> sort |
4568 | 48 |
val of_sort: sg -> typ * sort -> bool |
7640 | 49 |
val witness_sorts: sg -> sort list -> sort list -> (typ * sort) list |
50 |
val univ_witness: sg -> (typ * sort) option |
|
3810 | 51 |
val classK: string |
52 |
val typeK: string |
|
53 |
val constK: string |
|
3956 | 54 |
val full_name: sg -> bstring -> string |
4844 | 55 |
val full_name_path: sg -> string -> bstring -> string |
3956 | 56 |
val base_name: string -> bstring |
3810 | 57 |
val intern: sg -> string -> xstring -> string |
58 |
val extern: sg -> string -> string -> xstring |
|
3937 | 59 |
val cond_extern: sg -> string -> string -> xstring |
6845 | 60 |
val cond_extern_table: sg -> string -> 'a Symtab.table -> (xstring * 'a) list |
3805 | 61 |
val intern_class: sg -> xclass -> class |
62 |
val intern_tycon: sg -> xstring -> string |
|
63 |
val intern_const: sg -> xstring -> string |
|
3937 | 64 |
val intern_sort: sg -> xsort -> sort |
65 |
val intern_typ: sg -> xtyp -> typ |
|
66 |
val intern_term: sg -> xterm -> term |
|
67 |
val intern_tycons: sg -> xtyp -> typ |
|
1501 | 68 |
val pretty_sg: sg -> Pretty.T |
4051 | 69 |
val str_of_sg: sg -> string |
1501 | 70 |
val pprint_sg: sg -> pprint_args -> unit |
71 |
val pretty_term: sg -> term -> Pretty.T |
|
72 |
val pretty_typ: sg -> typ -> Pretty.T |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
73 |
val pretty_sort: sg -> sort -> Pretty.T |
4249 | 74 |
val pretty_classrel: sg -> class * class -> Pretty.T |
75 |
val pretty_arity: sg -> string * sort list * sort -> Pretty.T |
|
1501 | 76 |
val string_of_term: sg -> term -> string |
77 |
val string_of_typ: sg -> typ -> string |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
78 |
val string_of_sort: sg -> sort -> string |
3855 | 79 |
val str_of_sort: sg -> sort -> string |
80 |
val str_of_classrel: sg -> class * class -> string |
|
81 |
val str_of_arity: sg -> string * sort list * sort -> string |
|
1501 | 82 |
val pprint_term: sg -> term -> pprint_args -> unit |
83 |
val pprint_typ: sg -> typ -> pprint_args -> unit |
|
8898 | 84 |
val certify_class: sg -> class -> class |
85 |
val certify_sort: sg -> sort -> sort |
|
1501 | 86 |
val certify_typ: sg -> typ -> typ |
9504 | 87 |
val certify_typ_no_norm: sg -> typ -> typ |
1501 | 88 |
val certify_term: sg -> term -> term * typ * int |
8898 | 89 |
val read_sort: sg -> string -> sort |
4227 | 90 |
val read_raw_typ: sg * (indexname -> sort option) -> string -> typ |
1501 | 91 |
val read_typ: sg * (indexname -> sort option) -> string -> typ |
9504 | 92 |
val read_typ_no_norm: sg * (indexname -> sort option) -> string -> typ |
1501 | 93 |
val infer_types: sg -> (indexname -> typ option) -> |
94 |
(indexname -> sort option) -> string list -> bool |
|
4249 | 95 |
-> xterm list * typ -> term * (indexname * typ) list |
96 |
val infer_types_simult: sg -> (indexname -> typ option) -> |
|
97 |
(indexname -> sort option) -> string list -> bool |
|
98 |
-> (xterm list * typ) list -> term list * (indexname * typ) list |
|
8607 | 99 |
val read_def_terms: |
100 |
sg * (indexname -> typ option) * (indexname -> sort option) -> |
|
101 |
string list -> bool -> (string * typ) list -> term list * (indexname * typ) list |
|
8802 | 102 |
val simple_read_term: sg -> typ -> string -> term |
3956 | 103 |
val add_classes: (bclass * xclass list) list -> sg -> sg |
104 |
val add_classes_i: (bclass * class list) list -> sg -> sg |
|
3805 | 105 |
val add_classrel: (xclass * xclass) list -> sg -> sg |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
106 |
val add_classrel_i: (class * class) list -> sg -> sg |
8898 | 107 |
val add_defsort: string -> sg -> sg |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
108 |
val add_defsort_i: sort -> sg -> sg |
3956 | 109 |
val add_types: (bstring * int * mixfix) list -> sg -> sg |
4844 | 110 |
val add_nonterminals: bstring list -> sg -> sg |
3956 | 111 |
val add_tyabbrs: (bstring * string list * string * mixfix) list -> sg -> sg |
112 |
val add_tyabbrs_i: (bstring * string list * typ * mixfix) list -> sg -> sg |
|
8898 | 113 |
val add_arities: (xstring * string list * string) list -> sg -> sg |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
114 |
val add_arities_i: (string * sort list * sort) list -> sg -> sg |
3956 | 115 |
val add_consts: (bstring * string * mixfix) list -> sg -> sg |
116 |
val add_consts_i: (bstring * typ * mixfix) list -> sg -> sg |
|
117 |
val add_syntax: (bstring * string * mixfix) list -> sg -> sg |
|
118 |
val add_syntax_i: (bstring * typ * mixfix) list -> sg -> sg |
|
119 |
val add_modesyntax: (string * bool) * (bstring * string * mixfix) list -> sg -> sg |
|
120 |
val add_modesyntax_i: (string * bool) * (bstring * typ * mixfix) list -> sg -> sg |
|
1501 | 121 |
val add_trfuns: |
4344 | 122 |
(string * (ast list -> ast)) list * |
123 |
(string * (term list -> term)) list * |
|
124 |
(string * (term list -> term)) list * |
|
125 |
(string * (ast list -> ast)) list -> sg -> sg |
|
2385 | 126 |
val add_trfunsT: |
4344 | 127 |
(string * (bool -> typ -> term list -> term)) list -> sg -> sg |
2693 | 128 |
val add_tokentrfuns: |
6311 | 129 |
(string * string * (string -> string * real)) list -> sg -> sg |
4619 | 130 |
val add_trrules: (xstring * string) Syntax.trrule list -> sg -> sg |
1810
0eef167ebe1b
Translation infixes <->, etc., no longer available at top-level
paulson
parents:
1580
diff
changeset
|
131 |
val add_trrules_i: ast Syntax.trrule list -> sg -> sg |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
132 |
val add_path: string -> sg -> sg |
3810 | 133 |
val add_space: string * string list -> sg -> sg |
8725 | 134 |
val hide_space: string * string list -> sg -> sg |
135 |
val hide_space_i: string * string list -> sg -> sg |
|
1501 | 136 |
val add_name: string -> sg -> sg |
4256 | 137 |
val data_kinds: data -> string list |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
138 |
val merge_refs: sg_ref * sg_ref -> sg_ref |
4627 | 139 |
val merge: sg * sg -> sg |
3975 | 140 |
val prep_ext: sg -> sg |
6546 | 141 |
val copy: sg -> sg |
4627 | 142 |
val nontriv_merge: sg * sg -> sg |
3995 | 143 |
val pre_pure: sg |
1501 | 144 |
val const_of_class: class -> string |
145 |
val class_of_const: string -> class |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
146 |
end; |
0 | 147 |
|
6191 | 148 |
signature PRIVATE_SIGN = |
5642 | 149 |
sig |
150 |
include SIGN |
|
6546 | 151 |
val init_data: Object.kind * (Object.T * (Object.T -> Object.T) * (Object.T -> Object.T) * |
5642 | 152 |
(Object.T * Object.T -> Object.T) * (sg -> Object.T -> unit)) -> sg -> sg |
153 |
val get_data: Object.kind -> (Object.T -> 'a) -> sg -> 'a |
|
154 |
val put_data: Object.kind -> ('a -> Object.T) -> 'a -> sg -> sg |
|
155 |
val print_data: Object.kind -> sg -> unit |
|
156 |
end; |
|
157 |
||
6191 | 158 |
structure Sign: PRIVATE_SIGN = |
143 | 159 |
struct |
0 | 160 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
161 |
|
251 | 162 |
(** datatype sg **) |
163 |
||
4256 | 164 |
(* types sg, data, sg_ref *) |
165 |
||
19 | 166 |
datatype sg = |
3975 | 167 |
Sg of |
168 |
{id: string ref, (*id*) |
|
169 |
stamps: string ref list} * (*unique theory indentifier*) |
|
170 |
{self: sg_ref, (*mutable self reference*) |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
171 |
tsig: Type.type_sig, (*order-sorted signature of types*) |
3805 | 172 |
const_tab: typ Symtab.table, (*type schemes of constants*) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
173 |
syn: Syntax.syntax, (*syntax for parsing and printing*) |
3975 | 174 |
path: string list, (*current name space entry prefix*) |
175 |
spaces: (string * NameSpace.T) list, (*name spaces for consts, types etc.*) |
|
4256 | 176 |
data: data} (*anytype data*) |
177 |
and data = |
|
178 |
Data of |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
179 |
(Object.kind * (*kind (for authorization)*) |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
180 |
(Object.T * (*value*) |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
181 |
((Object.T -> Object.T) * (*prepare extend method*) |
6546 | 182 |
(Object.T -> Object.T) * (*copy method*) |
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
183 |
(Object.T * Object.T -> Object.T) * (*merge and prepare extend method*) |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
184 |
(sg -> Object.T -> unit)))) (*print method*) |
4256 | 185 |
Symtab.table |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
186 |
and sg_ref = |
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
187 |
SgRef of sg ref option; |
0 | 188 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
189 |
(*make signature*) |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
190 |
fun make_sign (id, self, tsig, const_tab, syn, path, spaces, data, stamps) = |
3975 | 191 |
Sg ({id = id, stamps = stamps}, {self = self, tsig = tsig, const_tab = const_tab, |
192 |
syn = syn, path = path, spaces = spaces, data = data}); |
|
193 |
||
194 |
||
4256 | 195 |
(* basic operations *) |
3975 | 196 |
|
197 |
fun rep_sg (Sg (_, args)) = args; |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
198 |
|
3975 | 199 |
(*show stamps*) |
200 |
fun stamp_names_of (Sg ({stamps, ...}, _)) = rev (map ! stamps); |
|
201 |
fun pretty_sg sg = Pretty.str_list "{" "}" (stamp_names_of sg); |
|
202 |
val str_of_sg = Pretty.str_of o pretty_sg; |
|
203 |
val pprint_sg = Pretty.pprint o pretty_sg; |
|
204 |
||
402 | 205 |
val tsig_of = #tsig o rep_sg; |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
206 |
|
3975 | 207 |
fun const_type (Sg (_, {const_tab, ...})) c = Symtab.lookup (const_tab, c); |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
208 |
|
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
209 |
|
3995 | 210 |
(* id and self *) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
211 |
|
3975 | 212 |
fun check_stale (sg as Sg ({id, ...}, |
213 |
{self = SgRef (Some (ref (Sg ({id = id', ...}, _)))), ...})) = |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
214 |
if id = id' then sg |
3975 | 215 |
else raise TERM ("Stale signature: " ^ str_of_sg sg, []) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
216 |
| check_stale _ = sys_error "Sign.check_stale"; |
0 | 217 |
|
4951 | 218 |
fun is_stale sg = (check_stale sg; false) handle TERM _ => true; |
219 |
||
3995 | 220 |
fun self_ref (sg as Sg (_, {self, ...})) = (check_stale sg; self); |
221 |
||
222 |
fun deref (SgRef (Some (ref sg))) = sg |
|
223 |
| deref (SgRef None) = sys_error "Sign.deref"; |
|
224 |
||
3975 | 225 |
fun name_of (sg as Sg ({id = ref name, ...}, _)) = |
4844 | 226 |
if name = "" orelse ord name = ord "#" then |
3975 | 227 |
raise TERM ("Nameless signature " ^ str_of_sg sg, []) |
228 |
else name; |
|
229 |
||
206
0d624d1ba9cc
added subsig: sg * sg -> bool to test if one signature is contained in another.
nipkow
parents:
200
diff
changeset
|
230 |
|
2979 | 231 |
(* inclusion and equality *) |
2180
934572a94139
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2144
diff
changeset
|
232 |
|
2185 | 233 |
local |
234 |
(*avoiding polymorphic equality: factor 10 speedup*) |
|
235 |
fun mem_stamp (_:string ref, []) = false |
|
236 |
| mem_stamp (x, y :: ys) = x = y orelse mem_stamp (x, ys); |
|
237 |
||
238 |
fun subset_stamp ([], ys) = true |
|
239 |
| subset_stamp (x :: xs, ys) = |
|
240 |
mem_stamp (x, ys) andalso subset_stamp (xs, ys); |
|
2180
934572a94139
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2144
diff
changeset
|
241 |
|
2185 | 242 |
(*fast partial test*) |
243 |
fun fast_sub ([]: string ref list, _) = true |
|
244 |
| fast_sub (_, []) = false |
|
245 |
| fast_sub (x :: xs, y :: ys) = |
|
246 |
if x = y then fast_sub (xs, ys) |
|
247 |
else fast_sub (x :: xs, ys); |
|
248 |
in |
|
3975 | 249 |
fun eq_sg (sg1 as Sg ({id = id1, ...}, _), sg2 as Sg ({id = id2, ...}, _)) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
250 |
(check_stale sg1; check_stale sg2; id1 = id2); |
2185 | 251 |
|
3975 | 252 |
fun subsig (sg1 as Sg ({stamps = s1, ...}, _), sg2 as Sg ({stamps = s2, ...}, _)) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
253 |
eq_sg (sg1, sg2) orelse subset_stamp (s1, s2); |
2180
934572a94139
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2144
diff
changeset
|
254 |
|
3975 | 255 |
fun fast_subsig (sg1 as Sg ({stamps = s1, ...}, _), sg2 as Sg ({stamps = s2, ...}, _)) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
256 |
eq_sg (sg1, sg2) orelse fast_sub (s1, s2); |
2185 | 257 |
end; |
258 |
||
402 | 259 |
|
9031 | 260 |
fun joinable (sg1, sg2) = subsig (sg1, sg2) orelse subsig (sg2, sg1); |
261 |
||
2185 | 262 |
(*test if same theory names are contained in signatures' stamps, |
263 |
i.e. if signatures belong to same theory but not necessarily to the |
|
264 |
same version of it*) |
|
3975 | 265 |
fun same_sg (sg1 as Sg ({stamps = s1, ...}, _), sg2 as Sg ({stamps = s2, ...}, _)) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
266 |
eq_sg (sg1, sg2) orelse eq_set_string (pairself (map (op !)) (s1, s2)); |
2185 | 267 |
|
268 |
(*test for drafts*) |
|
4844 | 269 |
fun is_draft (Sg ({stamps = ref name :: _, ...}, _)) = name = "" orelse ord name = ord "#"; |
386 | 270 |
|
0 | 271 |
|
4568 | 272 |
(* classes and sorts *) |
273 |
||
7640 | 274 |
val classes = Type.classes o tsig_of; |
4844 | 275 |
val defaultS = Type.defaultS o tsig_of; |
4568 | 276 |
val subsort = Type.subsort o tsig_of; |
277 |
val norm_sort = Type.norm_sort o tsig_of; |
|
7640 | 278 |
val of_sort = Type.of_sort o tsig_of; |
279 |
val witness_sorts = Type.witness_sorts o tsig_of; |
|
280 |
val univ_witness = Type.univ_witness o tsig_of; |
|
4568 | 281 |
|
282 |
||
4256 | 283 |
|
284 |
(** signature data **) |
|
285 |
||
286 |
(* errors *) |
|
287 |
||
4261 | 288 |
fun of_theory sg = "\nof theory " ^ str_of_sg sg; |
4256 | 289 |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
290 |
fun err_inconsistent kinds = |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
291 |
error ("Attempt to merge different versions of " ^ commas_quote kinds ^ " data"); |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
292 |
|
6961 | 293 |
fun err_method name kind e = |
294 |
(writeln ("Error while invoking " ^ quote kind ^ " " ^ name ^ " method"); raise e); |
|
4256 | 295 |
|
296 |
fun err_dup_init sg kind = |
|
297 |
error ("Duplicate initialization of " ^ quote kind ^ " data" ^ of_theory sg); |
|
298 |
||
299 |
fun err_uninit sg kind = |
|
6040 | 300 |
error ("Tried to access uninitialized " ^ quote kind ^ " data" ^ |
301 |
of_theory sg); |
|
4256 | 302 |
|
6040 | 303 |
(*Trying to access theory data using get / put operations from a different |
304 |
instance of the TheoryDataFun result. Typical cure: re-load all files*) |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
305 |
fun err_access sg kind = |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
306 |
error ("Unauthorized access to " ^ quote kind ^ " data" ^ of_theory sg); |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
307 |
|
4256 | 308 |
|
309 |
(* prepare data *) |
|
310 |
||
4489 | 311 |
val empty_data = Data Symtab.empty; |
4256 | 312 |
|
313 |
fun merge_data (Data tab1, Data tab2) = |
|
314 |
let |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
315 |
val data1 = map snd (Symtab.dest tab1); |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
316 |
val data2 = map snd (Symtab.dest tab2); |
4256 | 317 |
val all_data = data1 @ data2; |
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
318 |
val kinds = gen_distinct Object.eq_kind (map fst all_data); |
4256 | 319 |
|
320 |
fun entry data kind = |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
321 |
(case gen_assoc Object.eq_kind (data, kind) of |
4256 | 322 |
None => [] |
323 |
| Some x => [(kind, x)]); |
|
324 |
||
6546 | 325 |
fun merge_entries [(kind, (e, mths as (_, ext, _, _)))] = |
6961 | 326 |
(kind, (ext e handle exn => err_method "prep_ext" (Object.name_of_kind kind) exn, mths)) |
6546 | 327 |
| merge_entries [(kind, (e1, mths as (_, _, mrg, _))), (_, (e2, _))] = |
6961 | 328 |
(kind, (mrg (e1, e2) |
329 |
handle exn => err_method "merge" (Object.name_of_kind kind) exn, mths)) |
|
4256 | 330 |
| merge_entries _ = sys_error "merge_entries"; |
331 |
||
332 |
val data = map (fn k => merge_entries (entry data1 k @ entry data2 k)) kinds; |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
333 |
val data_idx = map (fn (k, x) => (Object.name_of_kind k, (k, x))) data; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
334 |
in |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
335 |
Data (Symtab.make data_idx) |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
336 |
handle Symtab.DUPS dups => err_inconsistent dups |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
337 |
end; |
4256 | 338 |
|
339 |
fun prep_ext_data data = merge_data (data, empty_data); |
|
340 |
||
6546 | 341 |
fun init_data_sg sg (Data tab) kind e cp ext mrg prt = |
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
342 |
let val name = Object.name_of_kind kind in |
6546 | 343 |
Data (Symtab.update_new ((name, (kind, (e, (cp, ext, mrg, prt)))), tab)) |
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
344 |
handle Symtab.DUP _ => err_dup_init sg name |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
345 |
end; |
4256 | 346 |
|
347 |
||
348 |
(* access data *) |
|
349 |
||
350 |
fun data_kinds (Data tab) = map fst (Symtab.dest tab); |
|
351 |
||
352 |
fun lookup_data sg tab kind = |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
353 |
let val name = Object.name_of_kind kind in |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
354 |
(case Symtab.lookup (tab, name) of |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
355 |
Some (k, x) => |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
356 |
if Object.eq_kind (kind, k) then x |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
357 |
else err_access sg name |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
358 |
| None => err_uninit sg name) |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
359 |
end; |
4256 | 360 |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
361 |
fun get_data kind f (sg as Sg (_, {data = Data tab, ...})) = |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
362 |
let val x = fst (lookup_data sg tab kind) |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
363 |
in f x handle Match => Object.kind_error kind end; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
364 |
|
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
365 |
fun print_data kind (sg as Sg (_, {data = Data tab, ...})) = |
6546 | 366 |
let val (e, (_, _, _, prt)) = lookup_data sg tab kind |
6961 | 367 |
in prt sg e handle exn => err_method ("print" ^ of_theory sg) (Object.name_of_kind kind) exn end; |
4256 | 368 |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
369 |
fun put_data_sg sg (Data tab) kind f x = |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
370 |
Data (Symtab.update ((Object.name_of_kind kind, |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
371 |
(kind, (f x, snd (lookup_data sg tab kind)))), tab)); |
4256 | 372 |
|
373 |
||
374 |
||
375 |
(** build signatures **) |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
376 |
|
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
377 |
fun ext_stamps stamps (id as ref name) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
378 |
let val stmps = (case stamps of ref "#" :: ss => ss | ss => ss) in |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
379 |
if exists (equal name o !) stmps then |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
380 |
error ("Theory already contains a " ^ quote name ^ " component") |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
381 |
else id :: stmps |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
382 |
end; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
383 |
|
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
384 |
fun create_sign self stamps name (syn, tsig, ctab, (path, spaces), data) = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
385 |
let |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
386 |
val id = ref name; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
387 |
val sign = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
388 |
make_sign (id, self, tsig, ctab, syn, path, spaces, data, ext_stamps stamps id); |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
389 |
in |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
390 |
(case self of |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
391 |
SgRef (Some r) => r := sign |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
392 |
| _ => sys_error "Sign.create_sign"); |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
393 |
sign |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
394 |
end; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
395 |
|
3975 | 396 |
fun extend_sign keep extfun name decls |
397 |
(sg as Sg ({id = _, stamps}, {self, tsig, const_tab, syn, path, spaces, data})) = |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
398 |
let |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
399 |
val _ = check_stale sg; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
400 |
val (self', data') = |
3975 | 401 |
if is_draft sg andalso keep then (self, data) |
4256 | 402 |
else (SgRef (Some (ref sg)), prep_ext_data data); |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
403 |
in |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
404 |
create_sign self' stamps name |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
405 |
(extfun (syn, tsig, const_tab, (path, spaces), data') decls) |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
406 |
end; |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
407 |
|
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
408 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
409 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
410 |
(** name spaces **) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
411 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
412 |
(* kinds *) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
413 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
414 |
val classK = "class"; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
415 |
val typeK = "type"; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
416 |
val constK = "const"; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
417 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
418 |
|
8725 | 419 |
(* declare and retrieve names *) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
420 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
421 |
fun space_of spaces kind = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
422 |
if_none (assoc (spaces, kind)) NameSpace.empty; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
423 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
424 |
(*input and output of qualified names*) |
3995 | 425 |
fun intrn spaces kind = NameSpace.intern (space_of spaces kind); |
426 |
fun extrn spaces kind = NameSpace.extern (space_of spaces kind); |
|
5175 | 427 |
fun cond_extrn spaces kind = NameSpace.cond_extern (space_of spaces kind); |
6845 | 428 |
fun cond_extrn_table spaces kind tab = NameSpace.cond_extern_table (space_of spaces kind) tab; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
429 |
|
8725 | 430 |
(*add / hide names*) |
431 |
fun change_space f spaces kind x = overwrite (spaces, (kind, f (space_of spaces kind, x))); |
|
8730 | 432 |
fun add_names x = change_space NameSpace.extend x; |
433 |
fun hide_names x = change_space NameSpace.hide x; |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
434 |
|
3810 | 435 |
(*make full names*) |
3937 | 436 |
fun full path name = |
4489 | 437 |
if name = "" then error "Attempt to declare empty name \"\"" |
8725 | 438 |
else if NameSpace.is_qualified name then |
3937 | 439 |
error ("Attempt to declare qualified name " ^ quote name) |
440 |
else NameSpace.pack (path @ [name]); |
|
441 |
||
442 |
(*base name*) |
|
443 |
val base_name = NameSpace.base; |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
444 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
445 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
446 |
(* intern / extern names *) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
447 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
448 |
local |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
449 |
(*prepare mapping of names*) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
450 |
fun mapping f add_xs t = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
451 |
let |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
452 |
fun f' x = let val y = f x in if x = y then None else Some (x, y) end; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
453 |
val table = mapfilter f' (add_xs (t, [])); |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
454 |
fun lookup x = if_none (assoc (table, x)) x; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
455 |
in lookup end; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
456 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
457 |
(*intern / extern typ*) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
458 |
fun trn_typ trn T = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
459 |
T |> map_typ |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
460 |
(mapping (trn classK) add_typ_classes T) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
461 |
(mapping (trn typeK) add_typ_tycons T); |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
462 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
463 |
(*intern / extern term*) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
464 |
fun trn_term trn t = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
465 |
t |> map_term |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
466 |
(mapping (trn classK) add_term_classes t) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
467 |
(mapping (trn typeK) add_term_tycons t) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
468 |
(mapping (trn constK) add_term_consts t); |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
469 |
|
3975 | 470 |
val spaces_of = #spaces o rep_sg; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
471 |
in |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
472 |
fun intrn_class spaces = intrn spaces classK; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
473 |
fun extrn_class spaces = extrn spaces classK; |
3937 | 474 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
475 |
val intrn_sort = map o intrn_class; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
476 |
val intrn_typ = trn_typ o intrn; |
3937 | 477 |
val intrn_term = trn_term o intrn; |
478 |
||
479 |
val extrn_sort = map o extrn_class; |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
480 |
val extrn_typ = trn_typ o extrn; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
481 |
val extrn_term = trn_term o extrn; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
482 |
|
3805 | 483 |
fun intrn_tycons spaces T = |
484 |
map_typ I (mapping (intrn spaces typeK) add_typ_tycons T) T; |
|
485 |
||
3810 | 486 |
val intern = intrn o spaces_of; |
3855 | 487 |
val extern = extrn o spaces_of; |
5175 | 488 |
val cond_extern = cond_extrn o spaces_of; |
6845 | 489 |
fun cond_extern_table sg = cond_extrn_table (spaces_of sg); |
3937 | 490 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
491 |
val intern_class = intrn_class o spaces_of; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
492 |
val intern_sort = intrn_sort o spaces_of; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
493 |
val intern_typ = intrn_typ o spaces_of; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
494 |
val intern_term = intrn_term o spaces_of; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
495 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
496 |
fun intern_tycon sg = intrn (spaces_of sg) typeK; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
497 |
fun intern_const sg = intrn (spaces_of sg) constK; |
3937 | 498 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
499 |
val intern_tycons = intrn_tycons o spaces_of; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
500 |
|
3975 | 501 |
val full_name = full o #path o rep_sg; |
4908 | 502 |
fun full_name_path sg elems name = |
4844 | 503 |
full (#path (rep_sg sg) @ NameSpace.unpack elems) name; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
504 |
end; |
620 | 505 |
|
402 | 506 |
|
0 | 507 |
|
4249 | 508 |
(** pretty printing of terms, types etc. **) |
3937 | 509 |
|
4249 | 510 |
fun pretty_term (sg as Sg ({stamps, ...}, {syn, spaces, ...})) t = |
3937 | 511 |
Syntax.pretty_term syn |
4249 | 512 |
(exists (equal "CPure" o !) stamps) |
5175 | 513 |
(if ! NameSpace.long_names then t else extrn_term spaces t); |
3937 | 514 |
|
3975 | 515 |
fun pretty_typ (Sg (_, {syn, spaces, ...})) T = |
3937 | 516 |
Syntax.pretty_typ syn |
5175 | 517 |
(if ! NameSpace.long_names then T else extrn_typ spaces T); |
3937 | 518 |
|
3975 | 519 |
fun pretty_sort (Sg (_, {syn, spaces, ...})) S = |
3937 | 520 |
Syntax.pretty_sort syn |
5175 | 521 |
(if ! NameSpace.long_names then S else extrn_sort spaces S); |
3937 | 522 |
|
523 |
fun pretty_classrel sg (c1, c2) = Pretty.block |
|
524 |
[pretty_sort sg [c1], Pretty.str " <", Pretty.brk 1, pretty_sort sg [c2]]; |
|
525 |
||
526 |
fun pretty_arity sg (t, Ss, S) = |
|
527 |
let |
|
528 |
val t' = cond_extern sg typeK t; |
|
529 |
val dom = |
|
530 |
if null Ss then [] |
|
531 |
else [Pretty.list "(" ")" (map (pretty_sort sg) Ss), Pretty.brk 1]; |
|
532 |
in |
|
533 |
Pretty.block |
|
534 |
([Pretty.str (t' ^ " ::"), Pretty.brk 1] @ dom @ [pretty_sort sg S]) |
|
535 |
end; |
|
536 |
||
537 |
fun string_of_term sg t = Pretty.string_of (pretty_term sg t); |
|
538 |
fun string_of_typ sg T = Pretty.string_of (pretty_typ sg T); |
|
539 |
fun string_of_sort sg S = Pretty.string_of (pretty_sort sg S); |
|
540 |
||
541 |
fun str_of_sort sg S = Pretty.str_of (pretty_sort sg S); |
|
542 |
fun str_of_classrel sg c1_c2 = Pretty.str_of (pretty_classrel sg c1_c2); |
|
543 |
fun str_of_arity sg ar = Pretty.str_of (pretty_arity sg ar); |
|
544 |
||
545 |
fun pprint_term sg = Pretty.pprint o Pretty.quote o (pretty_term sg); |
|
546 |
fun pprint_typ sg = Pretty.pprint o Pretty.quote o (pretty_typ sg); |
|
547 |
||
548 |
||
549 |
||
8898 | 550 |
(** read sorts **) (*exception ERROR*) |
551 |
||
552 |
fun err_in_sort s = |
|
553 |
error ("The error(s) above occurred in sort " ^ quote s); |
|
554 |
||
555 |
fun rd_sort syn tsig spaces str = |
|
556 |
let val S = intrn_sort spaces (Syntax.read_sort syn str handle ERROR => err_in_sort str) |
|
557 |
in Type.cert_sort tsig S handle TYPE (msg, _, _) => (error_msg msg; err_in_sort str) end; |
|
558 |
||
559 |
(*read and certify sort wrt a signature*) |
|
560 |
fun read_sort (sg as Sg (_, {tsig, syn, spaces, ...})) str = |
|
561 |
(check_stale sg; rd_sort syn tsig spaces str); |
|
562 |
||
563 |
fun cert_sort _ tsig _ = Type.cert_sort tsig; |
|
564 |
||
565 |
||
566 |
||
562 | 567 |
(** read types **) (*exception ERROR*) |
568 |
||
569 |
fun err_in_type s = |
|
570 |
error ("The error(s) above occurred in type " ^ quote s); |
|
571 |
||
4227 | 572 |
fun rd_raw_typ syn tsig spaces def_sort str = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
573 |
intrn_tycons spaces |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
574 |
(Syntax.read_typ syn (Type.get_sort tsig def_sort (intrn_sort spaces)) str |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
575 |
handle ERROR => err_in_type str); |
4227 | 576 |
|
577 |
fun read_raw_typ (sg as Sg (_, {tsig, syn, spaces, ...}), def_sort) str = |
|
578 |
(check_stale sg; rd_raw_typ syn tsig spaces def_sort str); |
|
579 |
||
562 | 580 |
(*read and certify typ wrt a signature*) |
9504 | 581 |
local |
582 |
fun read_typ_aux cert (sg, def_sort) str = |
|
583 |
(cert (tsig_of sg) (read_raw_typ (sg, def_sort) str) |
|
584 |
handle TYPE (msg, _, _) => (error_msg msg; err_in_type str)); |
|
585 |
in |
|
586 |
val read_typ = read_typ_aux Type.cert_typ; |
|
587 |
val read_typ_no_norm = read_typ_aux Type.cert_typ_no_norm; |
|
588 |
end; |
|
562 | 589 |
|
590 |
||
591 |
||
8898 | 592 |
(** certify classes, sorts, types and terms **) (*exception TYPE*) |
251 | 593 |
|
8898 | 594 |
val certify_class = Type.cert_class o tsig_of; |
595 |
val certify_sort = Type.cert_sort o tsig_of; |
|
3975 | 596 |
val certify_typ = Type.cert_typ o tsig_of; |
9504 | 597 |
val certify_typ_no_norm = Type.cert_typ_no_norm o tsig_of; |
251 | 598 |
|
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
599 |
|
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
600 |
(* certify_term *) |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
601 |
|
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
602 |
(*check for duplicate occurrences of TFree/TVar with distinct sorts*) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
603 |
fun nodup_tvars (env, Type (_, Ts)) = nodup_tvars_list (env, Ts) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
604 |
| nodup_tvars (env as (tfrees, tvars), T as TFree (v as (a, S))) = |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
605 |
(case assoc_string (tfrees, a) of |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
606 |
Some S' => |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
607 |
if S = S' then env |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
608 |
else raise TYPE ("Type variable " ^ quote a ^ |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
609 |
" has two distinct sorts", [TFree (a, S'), T], []) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
610 |
| None => (v :: tfrees, tvars)) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
611 |
| nodup_tvars (env as (tfrees, tvars), T as TVar (v as (a, S))) = |
2979 | 612 |
(case assoc_string_int (tvars, a) of |
613 |
Some S' => |
|
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
614 |
if S = S' then env |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
615 |
else raise TYPE ("Type variable " ^ quote (Syntax.string_of_vname a) ^ |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
616 |
" has two distinct sorts", [TVar (a, S'), T], []) |
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
617 |
| None => (tfrees, v :: tvars)) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
618 |
(*equivalent to foldl nodup_tvars_list, but 3X faster under Poly/ML*) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
619 |
and nodup_tvars_list (env, []) = env |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
620 |
| nodup_tvars_list (env, T :: Ts) = nodup_tvars_list (nodup_tvars (env, T), Ts); |
1494
22f67e796445
added nodup_Vars check in cterm_of. Prevents same var with distinct types.
nipkow
parents:
1460
diff
changeset
|
621 |
|
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
622 |
(*check for duplicate occurrences of Free/Var with distinct types*) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
623 |
fun nodup_vars tm = |
2979 | 624 |
let |
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
625 |
fun nodups (envs as (env as (frees, vars), envT)) tm = |
2979 | 626 |
(case tm of |
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
627 |
Const (c, T) => (env, nodup_tvars (envT, T)) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
628 |
| Free (v as (a, T)) => |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
629 |
(case assoc_string (frees, a) of |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
630 |
Some T' => |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
631 |
if T = T' then (env, nodup_tvars (envT, T)) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
632 |
else raise TYPE ("Variable " ^ quote a ^ |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
633 |
" has two distinct types", [T', T], []) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
634 |
| None => ((v :: frees, vars), nodup_tvars (envT, T))) |
2979 | 635 |
| Var (v as (ixn, T)) => |
636 |
(case assoc_string_int (vars, ixn) of |
|
637 |
Some T' => |
|
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
638 |
if T = T' then (env, nodup_tvars (envT, T)) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
639 |
else raise TYPE ("Variable " ^ quote (Syntax.string_of_vname ixn) ^ |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
640 |
" has two distinct types", [T', T], []) |
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
641 |
| None => ((frees, v :: vars), nodup_tvars (envT, T))) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
642 |
| Bound _ => envs |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
643 |
| Abs (_, T, t) => nodups (env, nodup_tvars (envT, T)) t |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
644 |
| s $ t => nodups (nodups envs s) t) |
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
645 |
in nodups (([], []), ([], [])) tm; tm end; |
2979 | 646 |
|
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
647 |
(*compute and check type of the term*) |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
648 |
fun type_check sg tm = |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
649 |
let |
8725 | 650 |
val prt = setmp Syntax.show_brackets true (pretty_term sg); |
651 |
val prT = pretty_typ sg; |
|
251 | 652 |
|
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
653 |
fun err_appl why bs t T u U = |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
654 |
let |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
655 |
val xs = map Free bs; (*we do not rename here*) |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
656 |
val t' = subst_bounds (xs, t); |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
657 |
val u' = subst_bounds (xs, u); |
5635 | 658 |
val text = cat_lines(TypeInfer.appl_error prt prT why t' T u' U); |
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
659 |
in raise TYPE (text, [T, U], [t', u']) end; |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
660 |
|
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
661 |
fun typ_of (_, Const (_, T)) = T |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
662 |
| typ_of (_, Free (_, T)) = T |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
663 |
| typ_of (_, Var (_, T)) = T |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
664 |
| typ_of (bs, Bound i) = snd (nth_elem (i, bs) handle LIST _ => |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
665 |
raise TYPE ("Loose bound variable: B." ^ string_of_int i, [], [Bound i])) |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
666 |
| typ_of (bs, Abs (x, T, body)) = T --> typ_of ((x, T) :: bs, body) |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
667 |
| typ_of (bs, t $ u) = |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
668 |
let val T = typ_of (bs, t) and U = typ_of (bs, u) in |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
669 |
(case T of |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
670 |
Type ("fun", [T1, T2]) => |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
671 |
if T1 = U then T2 else err_appl "Incompatible operand type." bs t T u U |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
672 |
| _ => err_appl "Operator not of function type." bs t T u U) |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
673 |
end; |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
674 |
|
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
675 |
in typ_of ([], tm) end; |
0 | 676 |
|
2979 | 677 |
|
3975 | 678 |
fun certify_term sg tm = |
251 | 679 |
let |
3969 | 680 |
val _ = check_stale sg; |
3975 | 681 |
val tsig = tsig_of sg; |
3969 | 682 |
|
3975 | 683 |
fun show_const a T = quote a ^ " :: " ^ quote (string_of_typ sg T); |
169 | 684 |
|
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
685 |
fun atom_err (errs, Const (a, T)) = |
3975 | 686 |
(case const_type sg a of |
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
687 |
None => ("Undeclared constant " ^ show_const a T) :: errs |
3975 | 688 |
| Some U => |
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
689 |
if Type.typ_instance (tsig, T, U) then errs |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
690 |
else ("Illegal type for constant " ^ show_const a T) :: errs) |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
691 |
| atom_err (errs, Var ((x, i), _)) = |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
692 |
if i < 0 then ("Negative index for Var " ^ quote x) :: errs else errs |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
693 |
| atom_err (errs, _) = errs; |
251 | 694 |
|
695 |
val norm_tm = |
|
2185 | 696 |
(case it_term_types (Type.typ_errors tsig) (tm, []) of |
7068 | 697 |
[] => Type.norm_term tsig tm |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
698 |
| errs => raise TYPE (cat_lines errs, [], [tm])); |
8290
7015d6b11b56
nodup_vars: fixed omission of 2 minor cases; account for Frees as well;
wenzelm
parents:
7640
diff
changeset
|
699 |
val _ = nodup_vars norm_tm; |
251 | 700 |
in |
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
701 |
(case foldl_aterms atom_err ([], norm_tm) of |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
702 |
[] => (norm_tm, type_check sg norm_tm, maxidx_of_term norm_tm) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
703 |
| errs => raise TYPE (cat_lines errs, [], [norm_tm])) |
251 | 704 |
end; |
705 |
||
706 |
||
583 | 707 |
(** infer_types **) (*exception ERROR*) |
251 | 708 |
|
2979 | 709 |
(* |
710 |
def_type: partial map from indexnames to types (constrains Frees, Vars) |
|
711 |
def_sort: partial map from indexnames to sorts (constrains TFrees, TVars) |
|
712 |
used: list of already used type variables |
|
713 |
freeze: if true then generated parameters are turned into TFrees, else TVars |
|
4249 | 714 |
|
715 |
termss: lists of alternative parses (only one combination should be type-correct) |
|
716 |
typs: expected types |
|
2979 | 717 |
*) |
718 |
||
4249 | 719 |
fun infer_types_simult sg def_type def_sort used freeze args = |
251 | 720 |
let |
3975 | 721 |
val tsig = tsig_of sg; |
8725 | 722 |
val prt = setmp Syntax.show_brackets true (pretty_term sg); |
723 |
val prT = pretty_typ sg; |
|
4249 | 724 |
|
725 |
val termss = foldr multiply (map fst args, [[]]); |
|
726 |
val typs = |
|
727 |
map (fn (_, T) => certify_typ sg T handle TYPE (msg, _, _) => error msg) args; |
|
169 | 728 |
|
4249 | 729 |
fun infer ts = OK |
730 |
(Type.infer_types prt prT tsig (const_type sg) def_type def_sort |
|
731 |
(intern_const sg) (intern_tycons sg) (intern_sort sg) used freeze typs ts) |
|
732 |
handle TYPE (msg, _, _) => Error msg; |
|
623 | 733 |
|
4249 | 734 |
val err_results = map infer termss; |
735 |
val errs = mapfilter get_error err_results; |
|
736 |
val results = mapfilter get_ok err_results; |
|
737 |
||
738 |
val ambiguity = length termss; (* FIXME !? *) |
|
739 |
(* FIXME to syntax.ML!? *) |
|
740 |
fun ambig_msg () = |
|
741 |
if ambiguity > 1 andalso ambiguity <= ! Syntax.ambiguity_level |
|
742 |
then |
|
743 |
error_msg "Got more than one parse tree.\n\ |
|
3805 | 744 |
\Retry with smaller Syntax.ambiguity_level for more information." |
952
9e10962866b0
Removed an old bug which made some simultaneous instantiations fail if they
nipkow
parents:
949
diff
changeset
|
745 |
else (); |
4249 | 746 |
in |
747 |
if null results then (ambig_msg (); error (cat_lines errs)) |
|
748 |
else if length results = 1 then |
|
749 |
(if ambiguity > ! Syntax.ambiguity_level then |
|
750 |
warning "Fortunately, only one parse tree is type correct.\n\ |
|
751 |
\You may still want to disambiguate your grammar or your input." |
|
752 |
else (); hd results) |
|
753 |
else (ambig_msg (); error ("More than one term is type correct:\n" ^ |
|
754 |
(cat_lines (map (Pretty.string_of o prt) (flat (map fst results)))))) |
|
755 |
end; |
|
623 | 756 |
|
4249 | 757 |
|
758 |
fun infer_types sg def_type def_sort used freeze tsT = |
|
759 |
apfst hd (infer_types_simult sg def_type def_sort used freeze [tsT]); |
|
251 | 760 |
|
761 |
||
8607 | 762 |
(** read_def_terms **) |
763 |
||
764 |
(*read terms, infer types*) |
|
765 |
fun read_def_terms (sign, types, sorts) used freeze sTs = |
|
766 |
let |
|
767 |
val syn = #syn (rep_sg sign); |
|
768 |
fun read (s, T) = |
|
769 |
let val T' = certify_typ sign T handle TYPE (msg, _, _) => error msg |
|
770 |
in (Syntax.read syn T' s, T') end; |
|
771 |
val tsTs = map read sTs; |
|
772 |
in infer_types_simult sign types sorts used freeze tsTs end; |
|
773 |
||
8802 | 774 |
fun simple_read_term sign T s = |
775 |
(read_def_terms (sign, K None, K None) [] true [(s, T)] |
|
776 |
handle ERROR => error ("The error(s) above occurred for " ^ s)) |> #1 |> hd; |
|
777 |
||
8607 | 778 |
|
2979 | 779 |
|
623 | 780 |
(** extend signature **) (*exception ERROR*) |
781 |
||
620 | 782 |
(** signature extension functions **) (*exception ERROR*) |
386 | 783 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
784 |
fun decls_of path name_of mfixs = |
3810 | 785 |
map (fn (x, y, mx) => (full path (name_of x mx), y)) mfixs; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
786 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
787 |
fun no_read _ _ _ decl = decl; |
386 | 788 |
|
789 |
||
790 |
(* add default sort *) |
|
791 |
||
8898 | 792 |
fun ext_defS prep_sort (syn, tsig, ctab, (path, spaces), data) S = |
793 |
(syn, Type.ext_tsig_defsort tsig (prep_sort syn tsig spaces S), ctab, (path, spaces), data); |
|
794 |
||
8927 | 795 |
fun ext_defsort arg = ext_defS rd_sort arg; |
796 |
fun ext_defsort_i arg = ext_defS cert_sort arg; |
|
386 | 797 |
|
798 |
||
799 |
(* add type constructors *) |
|
800 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
801 |
fun ext_types (syn, tsig, ctab, (path, spaces), data) types = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
802 |
let val decls = decls_of path Syntax.type_name types in |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
803 |
(Syntax.extend_type_gram syn types, |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
804 |
Type.ext_tsig_types tsig decls, ctab, |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
805 |
(path, add_names spaces typeK (map fst decls)), data) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
806 |
end; |
386 | 807 |
|
4844 | 808 |
fun ext_nonterminals sg nonterms = |
809 |
ext_types sg (map (fn n => (n, 0, Syntax.NoSyn)) nonterms); |
|
810 |
||
386 | 811 |
|
812 |
(* add type abbreviations *) |
|
813 |
||
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
814 |
fun read_abbr syn tsig spaces (t, vs, rhs_src) = |
4227 | 815 |
(t, vs, rd_raw_typ syn tsig spaces (K None) rhs_src) |
386 | 816 |
handle ERROR => error ("in type abbreviation " ^ t); |
817 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
818 |
fun ext_abbrs rd_abbr (syn, tsig, ctab, (path, spaces), data) abbrs = |
386 | 819 |
let |
820 |
fun mfix_of (t, vs, _, mx) = (t, length vs, mx); |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
821 |
val syn' = Syntax.extend_type_gram syn (map mfix_of abbrs); |
386 | 822 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
823 |
val abbrs' = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
824 |
map (fn (t, vs, rhs, mx) => |
3810 | 825 |
(full path (Syntax.type_name t mx), vs, rhs)) abbrs; |
3805 | 826 |
val spaces' = add_names spaces typeK (map #1 abbrs'); |
827 |
val decls = map (rd_abbr syn' tsig spaces') abbrs'; |
|
386 | 828 |
in |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
829 |
(syn', Type.ext_tsig_abbrs tsig decls, ctab, (path, spaces'), data) |
386 | 830 |
end; |
831 |
||
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
832 |
fun ext_tyabbrs abbrs = ext_abbrs read_abbr abbrs; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
833 |
fun ext_tyabbrs_i abbrs = ext_abbrs no_read abbrs; |
386 | 834 |
|
835 |
||
836 |
(* add type arities *) |
|
837 |
||
8898 | 838 |
fun ext_ars int prep_sort (syn, tsig, ctab, (path, spaces), data) arities = |
386 | 839 |
let |
8898 | 840 |
val prepS = prep_sort syn tsig spaces; |
841 |
fun prep_arity (c, Ss, S) = |
|
842 |
(if int then intrn spaces typeK c else c, map prepS Ss, prepS S); |
|
843 |
val tsig' = Type.ext_tsig_arities tsig (map prep_arity arities); |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
844 |
val log_types = Type.logical_types tsig'; |
386 | 845 |
in |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
846 |
(Syntax.extend_log_types syn log_types, tsig', ctab, (path, spaces), data) |
386 | 847 |
end; |
848 |
||
8927 | 849 |
fun ext_arities arg = ext_ars true rd_sort arg; |
850 |
fun ext_arities_i arg = ext_ars false cert_sort arg; |
|
8898 | 851 |
|
386 | 852 |
|
853 |
(* add term constants and syntax *) |
|
854 |
||
3805 | 855 |
fun const_name path c mx = |
3810 | 856 |
full path (Syntax.const_name c mx); |
3805 | 857 |
|
386 | 858 |
fun err_in_const c = |
859 |
error ("in declaration of constant " ^ quote c); |
|
860 |
||
861 |
fun err_dup_consts cs = |
|
862 |
error ("Duplicate declaration of constant(s) " ^ commas_quote cs); |
|
863 |
||
251 | 864 |
|
3805 | 865 |
fun read_const syn tsig (path, spaces) (c, ty_src, mx) = |
4227 | 866 |
(c, rd_raw_typ syn tsig spaces (K None) ty_src, mx) |
3805 | 867 |
handle ERROR => err_in_const (const_name path c mx); |
386 | 868 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
869 |
fun ext_cnsts rd_const syn_only prmode (syn, tsig, ctab, (path, spaces), data) raw_consts = |
386 | 870 |
let |
2979 | 871 |
fun prep_const (c, ty, mx) = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
872 |
(c, compress_type (Type.varifyT (Type.cert_typ tsig (Type.no_tvars ty))), mx) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
873 |
handle TYPE (msg, _, _) => |
3805 | 874 |
(error_msg msg; err_in_const (const_name path c mx)); |
386 | 875 |
|
3805 | 876 |
val consts = map (prep_const o rd_const syn tsig (path, spaces)) raw_consts; |
386 | 877 |
val decls = |
878 |
if syn_only then [] |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
879 |
else decls_of path Syntax.const_name consts; |
386 | 880 |
in |
2197 | 881 |
(Syntax.extend_const_gram syn prmode consts, tsig, |
4489 | 882 |
Symtab.extend (ctab, decls) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
883 |
handle Symtab.DUPS cs => err_dup_consts cs, |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
884 |
(path, add_names spaces constK (map fst decls)), data) |
386 | 885 |
end; |
886 |
||
4007 | 887 |
fun ext_consts_i sg = ext_cnsts no_read false ("", true) sg; |
888 |
fun ext_consts sg = ext_cnsts read_const false ("", true) sg; |
|
889 |
fun ext_syntax_i sg = ext_cnsts no_read true ("", true) sg; |
|
890 |
fun ext_syntax sg = ext_cnsts read_const true ("", true) sg; |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
891 |
fun ext_modesyntax_i sg (prmode, consts) = ext_cnsts no_read true prmode sg consts; |
2197 | 892 |
fun ext_modesyntax sg (prmode, consts) = ext_cnsts read_const true prmode sg consts; |
386 | 893 |
|
894 |
||
895 |
(* add type classes *) |
|
896 |
||
897 |
fun const_of_class c = c ^ "_class"; |
|
898 |
||
899 |
fun class_of_const c_class = |
|
900 |
let |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
901 |
val c = implode (take (size c_class - size "_class", explode c_class)); |
386 | 902 |
in |
903 |
if const_of_class c = c_class then c |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
904 |
else raise TERM ("class_of_const: bad name " ^ quote c_class, []) |
386 | 905 |
end; |
906 |
||
907 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
908 |
fun ext_classes int (syn, tsig, ctab, (path, spaces), data) classes = |
386 | 909 |
let |
562 | 910 |
val names = map fst classes; |
386 | 911 |
val consts = |
912 |
map (fn c => (const_of_class c, a_itselfT --> propT, NoSyn)) names; |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
913 |
|
3810 | 914 |
val full_names = map (full path) names; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
915 |
val spaces' = add_names spaces classK full_names; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
916 |
val intrn = if int then map (intrn_class spaces') else I; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
917 |
val classes' = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
918 |
ListPair.map (fn (c, (_, cs)) => (c, intrn cs)) (full_names, classes); |
386 | 919 |
in |
920 |
ext_consts_i |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
921 |
(Syntax.extend_consts syn names, |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
922 |
Type.ext_tsig_classes tsig classes', ctab, (path, spaces'), data) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
923 |
consts |
386 | 924 |
end; |
925 |
||
926 |
||
2963 | 927 |
(* add to classrel *) |
421 | 928 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
929 |
fun ext_classrel int (syn, tsig, ctab, (path, spaces), data) pairs = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
930 |
let val intrn = if int then map (pairself (intrn_class spaces)) else I in |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
931 |
(syn, Type.ext_tsig_classrel tsig (intrn pairs), ctab, (path, spaces), data) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
932 |
end; |
421 | 933 |
|
934 |
||
4619 | 935 |
(* add translation rules *) |
936 |
||
937 |
fun ext_trrules (syn, tsig, ctab, (path, spaces), data) args = |
|
938 |
(Syntax.extend_trrules syn |
|
939 |
(map (Syntax.map_trrule (fn (root, str) => (intrn spaces typeK root, str))) args), |
|
940 |
tsig, ctab, (path, spaces), data); |
|
941 |
||
942 |
||
1159 | 943 |
(* add to syntax *) |
386 | 944 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
945 |
fun ext_syn extfun (syn, tsig, ctab, names, data) args = |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
946 |
(extfun syn args, tsig, ctab, names, data); |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
947 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
948 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
949 |
(* add to path *) |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
950 |
|
4844 | 951 |
fun ext_path (syn, tsig, ctab, (path, spaces), data) elems = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
952 |
let |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
953 |
val path' = |
4844 | 954 |
if elems = ".." andalso not (null path) then fst (split_last path) |
955 |
else if elems = "/" then [] |
|
956 |
else path @ NameSpace.unpack elems; |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
957 |
in |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
958 |
(syn, tsig, ctab, (path', spaces), data) |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
959 |
end; |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
960 |
|
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
961 |
|
8725 | 962 |
(* change name space *) |
963 |
||
964 |
fun ext_add_space (syn, tsig, ctab, (path, spaces), data) (kind, names) = |
|
965 |
(syn, tsig, ctab, (path, add_names spaces kind names), data); |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
966 |
|
8725 | 967 |
fun ext_hide_space (syn, tsig, ctab, (path, spaces), data) (kind, xnames) = |
968 |
(syn, tsig, ctab, (path, hide_names spaces kind (map (intrn spaces kind) xnames)), data); |
|
969 |
||
970 |
fun ext_hide_space_i (syn, tsig, ctab, (path, spaces), data) (kind, names) = |
|
971 |
(syn, tsig, ctab, (path, hide_names spaces kind names), data); |
|
386 | 972 |
|
973 |
||
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
974 |
(* signature data *) |
386 | 975 |
|
6546 | 976 |
fun ext_init_data sg (syn, tsig, ctab, names, data) (kind, (e, cp, ext, mrg, prt)) = |
977 |
(syn, tsig, ctab, names, init_data_sg sg data kind e cp ext mrg prt); |
|
386 | 978 |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
979 |
fun ext_put_data sg (syn, tsig, ctab, names, data) (kind, f, x) = |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
980 |
(syn, tsig, ctab, names, put_data_sg sg data kind f x); |
386 | 981 |
|
982 |
||
6546 | 983 |
fun copy_data (k, (e, mths as (cp, _, _, _))) = |
6961 | 984 |
(k, (cp e handle exn => err_method "copy" (Object.name_of_kind k) exn, mths)); |
6546 | 985 |
|
986 |
fun copy (sg as Sg ({id = _, stamps}, {self, tsig, const_tab, syn, path, spaces, data})) = |
|
987 |
let |
|
988 |
val _ = check_stale sg; |
|
989 |
val self' = SgRef (Some (ref sg)); |
|
990 |
val Data tab = data; |
|
991 |
val data' = Data (Symtab.map copy_data tab); |
|
992 |
in create_sign self' stamps "#" (syn, tsig, const_tab, (path, spaces), data') end; |
|
993 |
||
994 |
||
386 | 995 |
(* the external interfaces *) |
996 |
||
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
997 |
val add_classes = extend_sign true (ext_classes true) "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
998 |
val add_classes_i = extend_sign true (ext_classes false) "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
999 |
val add_classrel = extend_sign true (ext_classrel true) "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1000 |
val add_classrel_i = extend_sign true (ext_classrel false) "#"; |
8898 | 1001 |
val add_defsort = extend_sign true ext_defsort "#"; |
1002 |
val add_defsort_i = extend_sign true ext_defsort_i "#"; |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1003 |
val add_types = extend_sign true ext_types "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1004 |
val add_nonterminals = extend_sign true ext_nonterminals "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1005 |
val add_tyabbrs = extend_sign true ext_tyabbrs "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1006 |
val add_tyabbrs_i = extend_sign true ext_tyabbrs_i "#"; |
8898 | 1007 |
val add_arities = extend_sign true ext_arities "#"; |
1008 |
val add_arities_i = extend_sign true ext_arities_i "#"; |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1009 |
val add_consts = extend_sign true ext_consts "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1010 |
val add_consts_i = extend_sign true ext_consts_i "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1011 |
val add_syntax = extend_sign true ext_syntax "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1012 |
val add_syntax_i = extend_sign true ext_syntax_i "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1013 |
val add_modesyntax = extend_sign true ext_modesyntax "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1014 |
val add_modesyntax_i = extend_sign true ext_modesyntax_i "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1015 |
val add_trfuns = extend_sign true (ext_syn Syntax.extend_trfuns) "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1016 |
val add_trfunsT = extend_sign true (ext_syn Syntax.extend_trfunsT) "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1017 |
val add_tokentrfuns = extend_sign true (ext_syn Syntax.extend_tokentrfuns) "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1018 |
val add_trrules = extend_sign true ext_trrules "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1019 |
val add_trrules_i = extend_sign true (ext_syn Syntax.extend_trrules_i) "#"; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1020 |
val add_path = extend_sign true ext_path "#"; |
8725 | 1021 |
val add_space = extend_sign true ext_add_space "#"; |
1022 |
val hide_space = extend_sign true ext_hide_space "#"; |
|
1023 |
val hide_space_i = extend_sign true ext_hide_space_i "#"; |
|
4998
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1024 |
fun init_data arg sg = extend_sign true (ext_init_data sg) "#" arg sg; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1025 |
fun put_data k f x sg = extend_sign true (ext_put_data sg) "#" (k, f, x) sg; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1026 |
fun add_name name sg = extend_sign true K name () sg; |
28fe46a570d7
improved data: secure version using Object.T and Object.kind;
wenzelm
parents:
4961
diff
changeset
|
1027 |
fun prep_ext sg = extend_sign false K "#" () sg; |
386 | 1028 |
|
1029 |
||
3867 | 1030 |
|
4017
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
4007
diff
changeset
|
1031 |
(** merge signatures **) (*exception TERM*) |
3867 | 1032 |
|
4228
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1033 |
(* merge_stamps *) |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1034 |
|
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1035 |
fun merge_stamps stamps1 stamps2 = |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1036 |
let val stamps = merge_rev_lists stamps1 stamps2 in |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1037 |
(case duplicates (map ! stamps) of |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1038 |
[] => stamps |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1039 |
| dups => raise TERM ("Attempt to merge different versions of theories " |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1040 |
^ commas_quote dups, [])) |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1041 |
end; |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1042 |
|
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1043 |
|
4627 | 1044 |
(* implicit merge -- trivial only *) |
3877 | 1045 |
|
4228
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1046 |
fun merge_refs (sgr1 as SgRef (Some (ref (sg1 as Sg ({stamps = s1, ...}, _)))), |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1047 |
sgr2 as SgRef (Some (ref (sg2 as Sg ({stamps = s2, ...}, _))))) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1048 |
if fast_subsig (sg2, sg1) then sgr1 |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1049 |
else if fast_subsig (sg1, sg2) then sgr2 |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1050 |
else if subsig (sg2, sg1) then sgr1 |
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1051 |
else if subsig (sg1, sg2) then sgr2 |
4228
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1052 |
else (merge_stamps s1 s2; (*check for different versions*) |
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1053 |
raise TERM ("Attempt to do non-trivial merge of signatures", [])) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1054 |
| merge_refs _ = sys_error "Sign.merge_refs"; |
3867 | 1055 |
|
4627 | 1056 |
val merge = deref o merge_refs o pairself self_ref; |
1057 |
||
3867 | 1058 |
|
6961 | 1059 |
(* proper merge *) (*exception TERM/ERROR*) |
143 | 1060 |
|
6961 | 1061 |
fun nontriv_merge (sg1, sg2) = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1062 |
if subsig (sg2, sg1) then sg1 |
251 | 1063 |
else if subsig (sg1, sg2) then sg2 |
386 | 1064 |
else if is_draft sg1 orelse is_draft sg2 then |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1065 |
raise TERM ("Attempt to merge draft signatures", []) |
251 | 1066 |
else |
1067 |
(*neither is union already; must form union*) |
|
1068 |
let |
|
3975 | 1069 |
val Sg ({id = _, stamps = stamps1}, {self = _, tsig = tsig1, const_tab = const_tab1, |
1070 |
syn = syn1, path = _, spaces = spaces1, data = data1}) = sg1; |
|
1071 |
val Sg ({id = _, stamps = stamps2}, {self = _, tsig = tsig2, const_tab = const_tab2, |
|
1072 |
syn = syn2, path = _, spaces = spaces2, data = data2}) = sg2; |
|
386 | 1073 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1074 |
val id = ref ""; |
3975 | 1075 |
val self_ref = ref sg1; (*dummy value*) |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1076 |
val self = SgRef (Some self_ref); |
402 | 1077 |
|
4228
22e3f0368c85
merge_refs: check for different versions of theories;
wenzelm
parents:
4227
diff
changeset
|
1078 |
val stamps = merge_stamps stamps1 stamps2; |
2185 | 1079 |
val tsig = Type.merge_tsigs (tsig1, tsig2); |
251 | 1080 |
val const_tab = Symtab.merge (op =) (const_tab1, const_tab2) |
386 | 1081 |
handle Symtab.DUPS cs => |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1082 |
raise TERM ("Incompatible types for constant(s) " ^ commas_quote cs, []); |
386 | 1083 |
val syn = Syntax.merge_syntaxes syn1 syn2; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1084 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1085 |
val path = []; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1086 |
val kinds = distinct (map fst (spaces1 @ spaces2)); |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1087 |
val spaces = |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1088 |
kinds ~~ |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1089 |
ListPair.map NameSpace.merge |
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1090 |
(map (space_of spaces1) kinds, map (space_of spaces2) kinds); |
3867 | 1091 |
|
4256 | 1092 |
val data = merge_data (data1, data2); |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1093 |
|
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1094 |
val sign = make_sign (id, self, tsig, const_tab, syn, path, spaces, data, stamps); |
251 | 1095 |
in |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1096 |
self_ref := sign; sign |
251 | 1097 |
end; |
143 | 1098 |
|
0 | 1099 |
|
1100 |
||
3995 | 1101 |
(** partial Pure signature **) |
0 | 1102 |
|
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1103 |
val dummy_sg = make_sign (ref "", SgRef None, Type.tsig0, |
4489 | 1104 |
Symtab.empty, Syntax.pure_syn, [], [], empty_data, []); |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1105 |
|
3995 | 1106 |
val pre_pure = |
3967
edd5ff9371f8
sg_ref: automatic adjustment of thms of draft theories;
wenzelm
parents:
3956
diff
changeset
|
1107 |
create_sign (SgRef (Some (ref dummy_sg))) [] "#" |
4489 | 1108 |
(Syntax.pure_syn, Type.tsig0, Symtab.empty, ([], []), empty_data); |
0 | 1109 |
|
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
1110 |
|
0 | 1111 |
end; |