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