Merge remote-tracking branch 'origin/stable-2.0'
[bpt/guile.git] / libguile / struct.c
CommitLineData
f3c6a02c 1/* Copyright (C) 1996,1997,1998,1999,2000,2001, 2003, 2004, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
0f2d19dd 2 *
73be1d9e 3 * This library is free software; you can redistribute it and/or
53befeb7
NJ
4 * modify it under the terms of the GNU Lesser General Public License
5 * as published by the Free Software Foundation; either version 3 of
6 * the License, or (at your option) any later version.
0f2d19dd 7 *
53befeb7
NJ
8 * This library is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
0f2d19dd 12 *
73be1d9e
MV
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
53befeb7
NJ
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301 USA
73be1d9e 17 */
1bbd0b84 18
0f2d19dd 19\f
dbb605f5 20#ifdef HAVE_CONFIG_H
a6f7f57d
RB
21# include <config.h>
22#endif
0f2d19dd 23
66e78727 24#include <alloca.h>
aa42c036 25#include <assert.h>
66e78727 26
0818837f
AW
27#define SCM_BUILDING_DEPRECATED_CODE
28
a0599745 29#include "libguile/_scm.h"
4e047c3e 30#include "libguile/async.h"
a0599745
MD
31#include "libguile/chars.h"
32#include "libguile/eval.h"
33#include "libguile/alist.h"
a0599745
MD
34#include "libguile/hashtab.h"
35#include "libguile/ports.h"
36#include "libguile/strings.h"
27646f41 37#include "libguile/srfi-13.h"
a0599745
MD
38
39#include "libguile/validate.h"
40#include "libguile/struct.h"
0f2d19dd 41
d15ad007
LC
42#include "libguile/eq.h"
43
95b88819
GH
44#ifdef HAVE_STRING_H
45#include <string.h>
46#endif
47
1c44468d 48#include "libguile/bdw-gc.h"
5e67dc27 49
0f2d19dd
JB
50\f
51
b6cf4d02
AW
52/* A needlessly obscure test. */
53#define SCM_LAYOUT_TAILP(X) (((X) & 32) == 0) /* R, W or O */
54
0f2d19dd 55static SCM required_vtable_fields = SCM_BOOL_F;
b6cf4d02
AW
56static SCM required_applicable_fields = SCM_BOOL_F;
57static SCM required_applicable_with_setter_fields = SCM_BOOL_F;
db5ed685
AW
58SCM scm_applicable_struct_vtable_vtable;
59SCM scm_applicable_struct_with_setter_vtable_vtable;
60SCM scm_standard_vtable_vtable;
61
0f2d19dd
JB
62
63\f
a1ec6916 64SCM_DEFINE (scm_make_struct_layout, "make-struct-layout", 1, 0, 0,
1bbd0b84 65 (SCM fields),
b380b885 66 "Return a new structure layout object.\n\n"
7c31152f 67 "@var{fields} must be a string made up of pairs of characters\n"
b380b885
MD
68 "strung together. The first character of each pair describes a field\n"
69 "type, the second a field protection. Allowed types are 'p' for\n"
70 "GC-protected Scheme data, 'u' for unprotected binary data, and 's' for\n"
04323af4 71 "a field that points to the structure itself. Allowed protections\n"
b6cf4d02
AW
72 "are 'w' for mutable fields, 'h' for hidden fields, 'r' for read-only\n"
73 "fields, and 'o' for opaque fields.\n\n"
74 "Hidden fields are writable, but they will not consume an initializer arg\n"
75 "passed to @code{make-struct}. They are useful to add slots to a struct\n"
76 "in a way that preserves backward-compatibility with existing calls to\n"
77 "@code{make-struct}, especially for derived vtables.\n\n"
78 "The last field protection specification may be capitalized to indicate\n"
79 "that the field is a tail-array.")
1bbd0b84 80#define FUNC_NAME s_scm_make_struct_layout
0f2d19dd
JB
81{
82 SCM new_sym;
27646f41 83 scm_t_wchar c;
2ade72d7 84
7f991c7d
LC
85 SCM_VALIDATE_STRING (1, fields);
86
1bbd0b84 87 { /* scope */
1be6b49c 88 size_t len;
0f2d19dd
JB
89 int x;
90
cc95e00a 91 len = scm_i_string_length (fields);
2ade72d7
DH
92 if (len % 2 == 1)
93 SCM_MISC_ERROR ("odd length field specification: ~S",
1afff620 94 scm_list_1 (fields));
2ade72d7 95
0f2d19dd
JB
96 for (x = 0; x < len; x += 2)
97 {
27646f41 98 switch (c = scm_i_string_ref (fields, x))
0f2d19dd
JB
99 {
100 case 'u':
101 case 'p':
102#if 0
103 case 'i':
104 case 'd':
105#endif
106 case 's':
107 break;
108 default:
2ade72d7 109 SCM_MISC_ERROR ("unrecognized field type: ~S",
27646f41 110 scm_list_1 (SCM_MAKE_CHAR (c)));
0f2d19dd
JB
111 }
112
27646f41 113 switch (c = scm_i_string_ref (fields, x + 1))
0f2d19dd
JB
114 {
115 case 'w':
b6cf4d02 116 case 'h':
27646f41 117 if (scm_i_string_ref (fields, x) == 's')
2ade72d7 118 SCM_MISC_ERROR ("self fields not writable", SCM_EOL);
0f2d19dd
JB
119 case 'r':
120 case 'o':
121 break;
2c36c351
MD
122 case 'R':
123 case 'W':
124 case 'O':
27646f41 125 if (scm_i_string_ref (fields, x) == 's')
2ade72d7
DH
126 SCM_MISC_ERROR ("self fields not allowed in tail array",
127 SCM_EOL);
128 if (x != len - 2)
129 SCM_MISC_ERROR ("tail array field must be last field in layout",
130 SCM_EOL);
2c36c351 131 break;
0f2d19dd 132 default:
2ade72d7 133 SCM_MISC_ERROR ("unrecognized ref specification: ~S",
27646f41 134 scm_list_1 (SCM_MAKE_CHAR (c)));
0f2d19dd
JB
135 }
136#if 0
27646f41 137 if (scm_i_string_ref (fields, x, 'd'))
0f2d19dd 138 {
27646f41 139 if (!scm_i_string_ref (fields, x+2, '-'))
2ade72d7 140 SCM_MISC_ERROR ("missing dash field at position ~A",
e11e83f3 141 scm_list_1 (scm_from_int (x / 2)));
0f2d19dd
JB
142 x += 2;
143 goto recheck_ref;
144 }
145#endif
146 }
cc95e00a 147 new_sym = scm_string_to_symbol (fields);
0f2d19dd 148 }
8824ac88
MV
149 scm_remember_upto_here_1 (fields);
150 return new_sym;
0f2d19dd 151}
1bbd0b84 152#undef FUNC_NAME
0f2d19dd
JB
153
154\f
aa42c036
LC
155/* Check whether VTABLE instances have a simple layout (i.e., either only "pr"
156 or only "pw" fields) and update its flags accordingly. */
157static void
158set_vtable_layout_flags (SCM vtable)
159{
160 size_t len, field;
161 SCM layout;
162 const char *c_layout;
163 scm_t_bits flags = SCM_VTABLE_FLAG_SIMPLE;
164
165 layout = SCM_VTABLE_LAYOUT (vtable);
166 c_layout = scm_i_symbol_chars (layout);
167 len = scm_i_symbol_length (layout);
168
169 assert (len % 2 == 0);
170
171 /* Update FLAGS according to LAYOUT. */
172 for (field = 0;
173 field < len && flags & SCM_VTABLE_FLAG_SIMPLE;
174 field += 2)
175 {
176 if (c_layout[field] != 'p')
177 flags = 0;
178 else
179 switch (c_layout[field + 1])
180 {
181 case 'w':
182 case 'W':
e03b7f73 183 if (field == 0)
aa42c036
LC
184 flags |= SCM_VTABLE_FLAG_SIMPLE_RW;
185 break;
186
187 case 'r':
188 case 'R':
e03b7f73 189 flags &= ~SCM_VTABLE_FLAG_SIMPLE_RW;
aa42c036
LC
190 break;
191
192 default:
193 flags = 0;
194 }
195 }
196
197 if (flags & SCM_VTABLE_FLAG_SIMPLE)
198 {
199 /* VTABLE is simple so update its flags and record the size of its
200 instances. */
201 SCM_SET_VTABLE_FLAGS (vtable, flags);
202 SCM_STRUCT_DATA_SET (vtable, scm_vtable_index_size, len / 2);
203 }
204}
0f2d19dd 205
631237b4
AW
206static int
207scm_is_valid_vtable_layout (SCM layout)
208{
209 size_t len, n;
210 const char *c_layout;
211
212 c_layout = scm_i_symbol_chars (layout);
213 len = scm_i_symbol_length (layout);
214
215 if (len % 2)
216 return 0;
217
218 for (n = 0; n < len; n += 2)
219 switch (c_layout[n])
220 {
221 case 'u':
222 case 'p':
223 case 's':
224 switch (c_layout[n+1])
225 {
226 case 'W':
227 case 'R':
228 case 'O':
229 if (n + 2 != len)
230 return 0;
231 case 'w':
232 case 'h':
233 case 'r':
234 case 'o':
235 break;
236 default:
237 return 0;
238 }
239 break;
240 default:
241 return 0;
242 }
243 return 1;
244}
245
696ac4df
LC
246/* Have OBJ, a newly created vtable, inherit flags from VTABLE. VTABLE is a
247 vtable-vtable and OBJ is an instance of VTABLE. */
51f66c91
AW
248void
249scm_i_struct_inherit_vtable_magic (SCM vtable, SCM obj)
250#define FUNC_NAME "%inherit-vtable-magic"
251{
252 /* Verily, what is the deal here, you ask? Basically, we need to know a couple
253 of properties of structures at runtime. For example, "is this structure a
254 vtable of vtables (a metaclass)?"; also, "is this structure applicable?".
255 Both of these questions also imply a certain layout of the structure. So
256 instead of checking the layout at runtime, what we do is pre-verify the
257 layout -- so that at runtime we can just check the applicable flag and
696ac4df 258 dispatch directly to the Scheme procedure in slot 0. */
51f66c91
AW
259 SCM olayout;
260
696ac4df 261 /* Verify that OBJ is a valid vtable. */
631237b4 262 if (! scm_is_valid_vtable_layout (SCM_VTABLE_LAYOUT (obj)))
a2220d7e 263 SCM_MISC_ERROR ("invalid layout for new vtable: ~a",
51f66c91
AW
264 scm_list_1 (SCM_VTABLE_LAYOUT (obj)));
265
aa42c036
LC
266 set_vtable_layout_flags (obj);
267
696ac4df
LC
268 /* If OBJ's vtable is compatible with the required vtable (class) layout, it
269 is a metaclass. */
51f66c91
AW
270 olayout = scm_symbol_to_string (SCM_VTABLE_LAYOUT (obj));
271 if (scm_is_true (scm_leq_p (scm_string_length (required_vtable_fields),
272 scm_string_length (olayout)))
273 && scm_is_true (scm_string_eq (olayout, required_vtable_fields,
274 scm_from_size_t (0),
275 scm_string_length (required_vtable_fields),
276 scm_from_size_t (0),
277 scm_string_length (required_vtable_fields))))
278 SCM_SET_VTABLE_FLAGS (obj, SCM_VTABLE_FLAG_VTABLE);
279
696ac4df
LC
280 /* Finally, if OBJ is an applicable class, verify that its vtable is
281 compatible with the required applicable layout. */
51f66c91
AW
282 if (SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_SETTER_VTABLE))
283 {
284 if (scm_is_false (scm_string_eq (olayout, required_applicable_with_setter_fields,
285 scm_from_size_t (0),
286 scm_from_size_t (4),
287 scm_from_size_t (0),
288 scm_from_size_t (4))))
a2220d7e 289 SCM_MISC_ERROR ("invalid applicable-with-setter struct layout",
51f66c91
AW
290 scm_list_1 (olayout));
291 SCM_SET_VTABLE_FLAGS (obj, SCM_VTABLE_FLAG_APPLICABLE | SCM_VTABLE_FLAG_SETTER);
292 }
293 else if (SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_APPLICABLE_VTABLE))
294 {
295 if (scm_is_false (scm_string_eq (olayout, required_applicable_fields,
296 scm_from_size_t (0),
297 scm_from_size_t (2),
298 scm_from_size_t (0),
299 scm_from_size_t (2))))
a2220d7e 300 SCM_MISC_ERROR ("invalid applicable struct layout",
51f66c91
AW
301 scm_list_1 (olayout));
302 SCM_SET_VTABLE_FLAGS (obj, SCM_VTABLE_FLAG_APPLICABLE);
303 }
a2220d7e
AW
304
305 SCM_SET_VTABLE_FLAGS (obj, SCM_VTABLE_FLAG_VALIDATED);
51f66c91
AW
306}
307#undef FUNC_NAME
0f2d19dd 308
1cc91f1b 309
f7620510 310static void
66e78727
AW
311scm_struct_init (SCM handle, SCM layout, size_t n_tail,
312 size_t n_inits, scm_t_bits *inits)
0f2d19dd 313{
aa42c036
LC
314 SCM vtable;
315 scm_t_bits *mem;
316
317 vtable = SCM_STRUCT_VTABLE (handle);
318 mem = SCM_STRUCT_DATA (handle);
319
320 if (SCM_UNPACK (vtable) != 0
321 && SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_SIMPLE)
322 && n_tail == 0
323 && n_inits == SCM_STRUCT_DATA_REF (vtable, scm_vtable_index_size))
324 /* The fast path: HANDLE has N_INITS "p" fields. */
325 memcpy (mem, inits, n_inits * sizeof (SCM));
326 else
0f2d19dd 327 {
aa42c036
LC
328 scm_t_wchar prot = 0;
329 int n_fields = scm_i_symbol_length (layout) / 2;
330 int tailp = 0;
331 int i;
332 size_t inits_idx = 0;
333
334 i = -2;
335 while (n_fields)
2c36c351 336 {
aa42c036 337 if (!tailp)
2c36c351 338 {
aa42c036
LC
339 i += 2;
340 prot = scm_i_symbol_ref (layout, i+1);
341 if (SCM_LAYOUT_TAILP (prot))
342 {
343 tailp = 1;
344 prot = prot == 'R' ? 'r' : prot == 'W' ? 'w' : 'o';
345 *mem++ = (scm_t_bits)n_tail;
346 n_fields += n_tail - 1;
347 if (n_fields == 0)
348 break;
349 }
2c36c351 350 }
aa42c036 351 switch (scm_i_symbol_ref (layout, i))
0f2d19dd 352 {
aa42c036
LC
353 case 'u':
354 if ((prot != 'r' && prot != 'w') || inits_idx == n_inits)
355 *mem = 0;
356 else
357 {
358 *mem = scm_to_ulong (SCM_PACK (inits[inits_idx]));
359 inits_idx++;
360 }
361 break;
362
363 case 'p':
364 if ((prot != 'r' && prot != 'w') || inits_idx == n_inits)
365 *mem = SCM_UNPACK (SCM_BOOL_F);
366 else
367 {
368 *mem = inits[inits_idx];
369 inits_idx++;
370 }
371
372 break;
373
374 case 's':
375 *mem = SCM_UNPACK (handle);
376 break;
0f2d19dd 377 }
0f2d19dd 378
aa42c036
LC
379 n_fields--;
380 mem++;
0f2d19dd 381 }
0f2d19dd
JB
382 }
383}
384
385
a1ec6916 386SCM_DEFINE (scm_struct_p, "struct?", 1, 0, 0,
1bbd0b84 387 (SCM x),
0233bfc1 388 "Return @code{#t} iff @var{x} is a structure object, else\n"
942e5b91 389 "@code{#f}.")
1bbd0b84 390#define FUNC_NAME s_scm_struct_p
0f2d19dd 391{
7888309b 392 return scm_from_bool(SCM_STRUCTP (x));
0f2d19dd 393}
1bbd0b84 394#undef FUNC_NAME
0f2d19dd 395
a1ec6916 396SCM_DEFINE (scm_struct_vtable_p, "struct-vtable?", 1, 0, 0,
1bbd0b84 397 (SCM x),
0233bfc1 398 "Return @code{#t} iff @var{x} is a vtable structure.")
1bbd0b84 399#define FUNC_NAME s_scm_struct_vtable_p
0f2d19dd 400{
a2220d7e
AW
401 if (!SCM_STRUCTP (x)
402 || !SCM_STRUCT_VTABLE_FLAG_IS_SET (x, SCM_VTABLE_FLAG_VTABLE))
403 return SCM_BOOL_F;
404 if (!SCM_VTABLE_FLAG_IS_SET (x, SCM_VTABLE_FLAG_VALIDATED))
405 SCM_MISC_ERROR ("vtable has invalid layout: ~A",
406 scm_list_1 (SCM_VTABLE_LAYOUT (x)));
407 return SCM_BOOL_T;
0f2d19dd 408}
1bbd0b84 409#undef FUNC_NAME
0f2d19dd 410
14d1400f 411
51f66c91
AW
412/* Finalization: invoke the finalizer of the struct pointed to by PTR. */
413static void
414struct_finalizer_trampoline (GC_PTR ptr, GC_PTR unused_data)
415{
416 SCM obj = PTR2SCM (ptr);
417 scm_t_struct_finalize finalize = SCM_STRUCT_FINALIZER (obj);
418
419 if (finalize)
420 finalize (obj);
421}
422
14d1400f
JB
423/* All struct data must be allocated at an address whose bottom three
424 bits are zero. This is because the tag for a struct lives in the
425 bottom three bits of the struct's car, and the upper bits point to
426 the data of its vtable, which is a struct itself. Thus, if the
427 address of that data doesn't end in three zeros, tagging it will
428 destroy the pointer.
429
b6cf4d02
AW
430 I suppose we should make it clear here that, the data must be 8-byte aligned,
431 *within* the struct, and the struct itself should be 8-byte aligned. In
432 practice we ensure this because the data starts two words into a struct.
14d1400f 433
b6cf4d02
AW
434 This function allocates an 8-byte aligned block of memory, whose first word
435 points to the given vtable data, then a data pointer, then n_words of data.
436 */
437SCM
96a44c1c 438scm_i_alloc_struct (scm_t_bits *vtable_data, int n_words)
14d1400f 439{
9a974fd3
AW
440 SCM ret;
441
442 ret = scm_words ((scm_t_bits)vtable_data | scm_tc3_struct, n_words + 2);
443 SCM_SET_CELL_WORD_1 (ret, (scm_t_bits)SCM_CELL_OBJECT_LOC (ret, 2));
5e67dc27 444
51f66c91
AW
445 /* vtable_data can be null when making a vtable vtable */
446 if (vtable_data && vtable_data[scm_vtable_index_instance_finalize])
447 {
448 /* Register a finalizer for the newly created instance. */
449 GC_finalization_proc prev_finalizer;
450 GC_PTR prev_finalizer_data;
47ed8656 451 GC_REGISTER_FINALIZER_NO_ORDER (SCM_HEAP_OBJECT_BASE (ret),
51f66c91
AW
452 struct_finalizer_trampoline,
453 NULL,
454 &prev_finalizer,
455 &prev_finalizer_data);
456 }
5e67dc27 457
9a974fd3 458 return ret;
5e67dc27
LC
459}
460
5e67dc27 461\f
66e78727
AW
462SCM
463scm_c_make_structv (SCM vtable, size_t n_tail, size_t n_init, scm_t_bits *init)
464#define FUNC_NAME "make-struct"
0f2d19dd
JB
465{
466 SCM layout;
a55c2b68 467 size_t basic_size;
b6cf4d02 468 SCM obj;
0f2d19dd 469
34d19ef6 470 SCM_VALIDATE_VTABLE (1, vtable);
0f2d19dd 471
b6cf4d02 472 layout = SCM_VTABLE_LAYOUT (vtable);
cc95e00a 473 basic_size = scm_i_symbol_length (layout) / 2;
651f2cd2 474
66e78727 475 if (n_tail != 0)
651f2cd2
KR
476 {
477 SCM layout_str, last_char;
478
479 if (basic_size == 0)
480 {
481 bad_tail:
482 SCM_MISC_ERROR ("tail array not allowed unless layout ends R, W, or O", SCM_EOL);
483 }
484
485 layout_str = scm_symbol_to_string (layout);
486 last_char = scm_string_ref (layout_str,
487 scm_from_size_t (2 * basic_size - 1));
488 if (! SCM_LAYOUT_TAILP (SCM_CHAR (last_char)))
489 goto bad_tail;
490 }
cb823e63 491
96a44c1c 492 obj = scm_i_alloc_struct (SCM_STRUCT_DATA (vtable), basic_size + n_tail);
5e67dc27 493
66e78727 494 scm_struct_init (obj, layout, n_tail, n_init, init);
b6cf4d02 495
a2220d7e
AW
496 /* If we're making a vtable, validate its layout and inherit
497 flags. However we allow for separation of allocation and
498 initialization, to humor GOOPS, so only validate if the layout was
499 passed as an initarg. */
b6cf4d02 500 if (SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_VTABLE)
b6cf4d02 501 && scm_is_true (SCM_VTABLE_LAYOUT (obj)))
51f66c91 502 scm_i_struct_inherit_vtable_magic (vtable, obj);
651f2cd2 503
b6cf4d02 504 return obj;
0f2d19dd 505}
1bbd0b84 506#undef FUNC_NAME
0f2d19dd 507
66e78727
AW
508SCM
509scm_c_make_struct (SCM vtable, size_t n_tail, size_t n_init, scm_t_bits init, ...)
510{
511 va_list foo;
512 scm_t_bits *v;
513 size_t i;
514
515 v = alloca (sizeof (scm_t_bits) * n_init);
516
517 va_start (foo, init);
518 for (i = 0; i < n_init; i++)
519 {
520 v[i] = init;
521 init = va_arg (foo, scm_t_bits);
522 }
523 va_end (foo);
524
525 return scm_c_make_structv (vtable, n_tail, n_init, v);
526}
527
528SCM_DEFINE (scm_make_struct, "make-struct", 2, 0, 1,
529 (SCM vtable, SCM tail_array_size, SCM init),
530 "Create a new structure.\n\n"
531 "@var{type} must be a vtable structure (@pxref{Vtables}).\n\n"
532 "@var{tail-elts} must be a non-negative integer. If the layout\n"
533 "specification indicated by @var{type} includes a tail-array,\n"
534 "this is the number of elements allocated to that array.\n\n"
535 "The @var{init1}, @dots{} are optional arguments describing how\n"
536 "successive fields of the structure should be initialized. Only fields\n"
537 "with protection 'r' or 'w' can be initialized, except for fields of\n"
538 "type 's', which are automatically initialized to point to the new\n"
539 "structure itself. Fields with protection 'o' can not be initialized by\n"
540 "Scheme programs.\n\n"
541 "If fewer optional arguments than initializable fields are supplied,\n"
542 "fields of type 'p' get default value #f while fields of type 'u' are\n"
543 "initialized to 0.\n\n"
544 "For more information, see the documentation for @code{make-vtable-vtable}.")
545#define FUNC_NAME s_scm_make_struct
546{
547 size_t i, n_init;
548 long ilen;
549 scm_t_bits *v;
550
551 SCM_VALIDATE_VTABLE (1, vtable);
552 ilen = scm_ilength (init);
553 if (ilen < 0)
554 SCM_MISC_ERROR ("Rest arguments do not form a proper list.", SCM_EOL);
555
556 n_init = (size_t)ilen;
557
558 /* best to use alloca, but init could be big, so hack to avoid a possible
559 stack overflow */
560 if (n_init < 64)
561 v = alloca (n_init * sizeof(scm_t_bits));
562 else
563 v = scm_gc_malloc (n_init * sizeof(scm_t_bits), "struct");
564
565 for (i = 0; i < n_init; i++, init = SCM_CDR (init))
566 v[i] = SCM_UNPACK (SCM_CAR (init));
567
568 return scm_c_make_structv (vtable, scm_to_size_t (tail_array_size), n_init, v);
569}
570#undef FUNC_NAME
571
0f2d19dd
JB
572
573
0818837f 574#if SCM_ENABLE_DEPRECATED == 1
a1ec6916 575SCM_DEFINE (scm_make_vtable_vtable, "make-vtable-vtable", 2, 0, 1,
04323af4 576 (SCM user_fields, SCM tail_array_size, SCM init),
b380b885 577 "Return a new, self-describing vtable structure.\n\n"
04323af4
MD
578 "@var{user-fields} is a string describing user defined fields of the\n"
579 "vtable beginning at index @code{vtable-offset-user}\n"
580 "(see @code{make-struct-layout}).\n\n"
b380b885
MD
581 "@var{tail-size} specifies the size of the tail-array (if any) of\n"
582 "this vtable.\n\n"
6386e25c 583 "@var{init1}, @dots{} are the optional initializers for the fields of\n"
04323af4
MD
584 "the vtable.\n\n"
585 "Vtables have one initializable system field---the struct printer.\n"
586 "This field comes before the user fields in the initializers passed\n"
587 "to @code{make-vtable-vtable} and @code{make-struct}, and thus works as\n"
588 "a third optional argument to @code{make-vtable-vtable} and a fourth to\n"
589 "@code{make-struct} when creating vtables:\n\n"
590 "If the value is a procedure, it will be called instead of the standard\n"
591 "printer whenever a struct described by this vtable is printed.\n"
592 "The procedure will be called with arguments STRUCT and PORT.\n\n"
593 "The structure of a struct is described by a vtable, so the vtable is\n"
594 "in essence the type of the struct. The vtable is itself a struct with\n"
595 "a vtable. This could go on forever if it weren't for the\n"
29b4f9fb 596 "vtable-vtables which are self-describing vtables, and thus terminate\n"
04323af4
MD
597 "the chain.\n\n"
598 "There are several potential ways of using structs, but the standard\n"
599 "one is to use three kinds of structs, together building up a type\n"
600 "sub-system: one vtable-vtable working as the root and one or several\n"
601 "\"types\", each with a set of \"instances\". (The vtable-vtable should be\n"
29b4f9fb 602 "compared to the class <class> which is the class of itself.)\n\n"
1e6808ea 603 "@lisp\n"
04323af4
MD
604 "(define ball-root (make-vtable-vtable \"pr\" 0))\n\n"
605 "(define (make-ball-type ball-color)\n"
606 " (make-struct ball-root 0\n"
607 " (make-struct-layout \"pw\")\n"
608 " (lambda (ball port)\n"
609 " (format port \"#<a ~A ball owned by ~A>\"\n"
610 " (color ball)\n"
611 " (owner ball)))\n"
612 " ball-color))\n"
613 "(define (color ball) (struct-ref (struct-vtable ball) vtable-offset-user))\n"
614 "(define (owner ball) (struct-ref ball 0))\n\n"
615 "(define red (make-ball-type 'red))\n"
616 "(define green (make-ball-type 'green))\n\n"
617 "(define (make-ball type owner) (make-struct type 0 owner))\n\n"
618 "(define ball (make-ball green 'Nisse))\n"
619 "ball @result{} #<a green ball owned by Nisse>\n"
9401323e 620 "@end lisp")
1bbd0b84 621#define FUNC_NAME s_scm_make_vtable_vtable
0f2d19dd 622{
696ac4df
LC
623 SCM fields, layout, obj;
624 size_t basic_size, n_tail, i, n_init;
66e78727
AW
625 long ilen;
626 scm_t_bits *v;
0f2d19dd 627
d1ca2c64 628 SCM_VALIDATE_STRING (1, user_fields);
66e78727
AW
629 ilen = scm_ilength (init);
630 if (ilen < 0)
631 SCM_MISC_ERROR ("Rest arguments do not form a proper list.", SCM_EOL);
632
633 n_init = (size_t)ilen + 1; /* + 1 for the layout */
634
635 /* best to use alloca, but init could be big, so hack to avoid a possible
636 stack overflow */
637 if (n_init < 64)
638 v = alloca (n_init * sizeof(scm_t_bits));
639 else
640 v = scm_gc_malloc (n_init * sizeof(scm_t_bits), "struct");
0f2d19dd 641
1afff620
KN
642 fields = scm_string_append (scm_list_2 (required_vtable_fields,
643 user_fields));
0f2d19dd 644 layout = scm_make_struct_layout (fields);
a2220d7e
AW
645 if (!scm_is_valid_vtable_layout (layout))
646 SCM_MISC_ERROR ("invalid user fields", scm_list_1 (user_fields));
647
cc95e00a 648 basic_size = scm_i_symbol_length (layout) / 2;
66e78727
AW
649 n_tail = scm_to_size_t (tail_array_size);
650
651 i = 0;
652 v[i++] = SCM_UNPACK (layout);
653 for (; i < n_init; i++, init = SCM_CDR (init))
654 v[i] = SCM_UNPACK (SCM_CAR (init));
655
9de87eea 656 SCM_CRITICAL_SECTION_START;
96a44c1c 657 obj = scm_i_alloc_struct (NULL, basic_size + n_tail);
696ac4df
LC
658 /* Make it so that the vtable of OBJ is itself. */
659 SCM_SET_CELL_WORD_0 (obj, (scm_t_bits) SCM_STRUCT_DATA (obj) | scm_tc3_struct);
9de87eea 660 SCM_CRITICAL_SECTION_END;
696ac4df 661
66e78727 662 scm_struct_init (obj, layout, n_tail, n_init, v);
a2220d7e
AW
663 SCM_SET_VTABLE_FLAGS (obj,
664 SCM_VTABLE_FLAG_VTABLE | SCM_VTABLE_FLAG_VALIDATED);
696ac4df 665
b6cf4d02 666 return obj;
0f2d19dd 667}
1bbd0b84 668#undef FUNC_NAME
0818837f
AW
669#endif
670
671SCM
672scm_i_make_vtable_vtable (SCM user_fields)
673#define FUNC_NAME s_scm_make_vtable_vtable
674{
675 SCM fields, layout, obj;
676 size_t basic_size;
677 scm_t_bits v;
678
679 SCM_VALIDATE_STRING (1, user_fields);
0f2d19dd 680
0818837f
AW
681 fields = scm_string_append (scm_list_2 (required_vtable_fields,
682 user_fields));
683 layout = scm_make_struct_layout (fields);
684 if (!scm_is_valid_vtable_layout (layout))
685 SCM_MISC_ERROR ("invalid user fields", scm_list_1 (user_fields));
686
687 basic_size = scm_i_symbol_length (layout) / 2;
688
689 obj = scm_i_alloc_struct (NULL, basic_size);
690 /* Make it so that the vtable of OBJ is itself. */
691 SCM_SET_CELL_WORD_0 (obj, (scm_t_bits) SCM_STRUCT_DATA (obj) | scm_tc3_struct);
692
693 v = SCM_UNPACK (layout);
694 scm_struct_init (obj, layout, 0, 1, &v);
695 SCM_SET_VTABLE_FLAGS (obj,
696 SCM_VTABLE_FLAG_VTABLE | SCM_VTABLE_FLAG_VALIDATED);
697
698 return obj;
699}
700#undef FUNC_NAME
d15ad007 701
651f2cd2
KR
702SCM_DEFINE (scm_make_vtable, "make-vtable", 1, 1, 0,
703 (SCM fields, SCM printer),
704 "Create a vtable, for creating structures with the given\n"
705 "@var{fields}.\n"
706 "\n"
707 "The optional @var{printer} argument is a function to be called\n"
708 "@code{(@var{printer} struct port)} on the structures created.\n"
709 "It should look at @var{struct} and write to @var{port}.")
710#define FUNC_NAME s_scm_make_vtable
711{
712 if (SCM_UNBNDP (printer))
713 printer = SCM_BOOL_F;
714
db5ed685 715 return scm_make_struct (scm_standard_vtable_vtable, SCM_INUM0,
651f2cd2
KR
716 scm_list_2 (scm_make_struct_layout (fields),
717 printer));
718}
719#undef FUNC_NAME
720
721
d15ad007
LC
722/* Return true if S1 and S2 are equal structures, i.e., if their vtable and
723 contents are the same. Field protections are honored. Thus, it is an
724 error to test the equality of structures that contain opaque fields. */
725SCM
726scm_i_struct_equalp (SCM s1, SCM s2)
727#define FUNC_NAME "scm_i_struct_equalp"
728{
729 SCM vtable1, vtable2, layout;
730 size_t struct_size, field_num;
731
732 SCM_VALIDATE_STRUCT (1, s1);
733 SCM_VALIDATE_STRUCT (2, s2);
734
735 vtable1 = SCM_STRUCT_VTABLE (s1);
736 vtable2 = SCM_STRUCT_VTABLE (s2);
737
738 if (!scm_is_eq (vtable1, vtable2))
739 return SCM_BOOL_F;
740
741 layout = SCM_STRUCT_LAYOUT (s1);
742 struct_size = scm_i_symbol_length (layout) / 2;
743
744 for (field_num = 0; field_num < struct_size; field_num++)
745 {
746 SCM s_field_num;
747 SCM field1, field2;
748
749 /* We have to use `scm_struct_ref ()' here so that fields are accessed
750 consistently, notably wrt. field types and access rights. */
751 s_field_num = scm_from_size_t (field_num);
752 field1 = scm_struct_ref (s1, s_field_num);
753 field2 = scm_struct_ref (s2, s_field_num);
754
42ddb3cb
LC
755 /* Self-referencing fields (type `s') must be skipped to avoid infinite
756 recursion. */
757 if (!(scm_is_eq (field1, s1) && (scm_is_eq (field2, s2))))
758 if (scm_is_false (scm_equal_p (field1, field2)))
759 return SCM_BOOL_F;
d15ad007
LC
760 }
761
42ddb3cb
LC
762 /* FIXME: Tail elements should be tested for equality. */
763
d15ad007
LC
764 return SCM_BOOL_T;
765}
766#undef FUNC_NAME
767
768
0f2d19dd
JB
769\f
770
771
a1ec6916 772SCM_DEFINE (scm_struct_ref, "struct-ref", 2, 0, 0,
1bbd0b84 773 (SCM handle, SCM pos),
b6cf4d02 774 "Access the @var{n}th field of @var{struct}.\n\n"
b380b885
MD
775 "If the field is of type 'p', then it can be set to an arbitrary value.\n\n"
776 "If the field is of type 'u', then it can only be set to a non-negative\n"
777 "integer value small enough to fit in one machine word.")
1bbd0b84 778#define FUNC_NAME s_scm_struct_ref
0f2d19dd 779{
aa42c036
LC
780 SCM vtable, answer = SCM_UNDEFINED;
781 scm_t_bits *data;
a55c2b68 782 size_t p;
0f2d19dd 783
34d19ef6 784 SCM_VALIDATE_STRUCT (1, handle);
0f2d19dd 785
aa42c036 786 vtable = SCM_STRUCT_VTABLE (handle);
0f2d19dd 787 data = SCM_STRUCT_DATA (handle);
a55c2b68 788 p = scm_to_size_t (pos);
0f2d19dd 789
aa42c036
LC
790 if (SCM_LIKELY (SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_SIMPLE)
791 && p < SCM_STRUCT_DATA_REF (vtable, scm_vtable_index_size)))
e03b7f73
LC
792 /* The fast path: HANDLE is a struct with only "p" fields. */
793 answer = SCM_PACK (data[p]);
2c36c351 794 else
0f2d19dd 795 {
aa42c036
LC
796 SCM layout;
797 size_t layout_len, n_fields;
798 scm_t_wchar field_type = 0;
799
800 layout = SCM_STRUCT_LAYOUT (handle);
801 layout_len = scm_i_symbol_length (layout);
802 n_fields = layout_len / 2;
803
804 if (SCM_LAYOUT_TAILP (scm_i_symbol_ref (layout, layout_len - 1)))
805 n_fields += data[n_fields - 1];
806
807 SCM_ASSERT_RANGE (1, pos, p < n_fields);
808
809 if (p * 2 < layout_len)
810 {
811 scm_t_wchar ref;
812 field_type = scm_i_symbol_ref (layout, p * 2);
813 ref = scm_i_symbol_ref (layout, p * 2 + 1);
814 if ((ref != 'r') && (ref != 'w') && (ref != 'h'))
815 {
816 if ((ref == 'R') || (ref == 'W'))
817 field_type = 'u';
818 else
819 SCM_MISC_ERROR ("ref denied for field ~A", scm_list_1 (pos));
820 }
821 }
822 else if (scm_i_symbol_ref (layout, layout_len - 1) != 'O')
823 field_type = scm_i_symbol_ref(layout, layout_len - 2);
824 else
825 SCM_MISC_ERROR ("ref denied for field ~A", scm_list_1 (pos));
826
827 switch (field_type)
828 {
829 case 'u':
830 answer = scm_from_ulong (data[p]);
831 break;
0f2d19dd
JB
832
833#if 0
aa42c036
LC
834 case 'i':
835 answer = scm_from_long (data[p]);
836 break;
0f2d19dd 837
aa42c036
LC
838 case 'd':
839 answer = scm_make_real (*((double *)&(data[p])));
840 break;
0f2d19dd
JB
841#endif
842
aa42c036
LC
843 case 's':
844 case 'p':
845 answer = SCM_PACK (data[p]);
846 break;
0f2d19dd
JB
847
848
aa42c036
LC
849 default:
850 SCM_MISC_ERROR ("unrecognized field type: ~S",
851 scm_list_1 (SCM_MAKE_CHAR (field_type)));
852 }
0f2d19dd
JB
853 }
854
855 return answer;
856}
1bbd0b84 857#undef FUNC_NAME
0f2d19dd
JB
858
859
a1ec6916 860SCM_DEFINE (scm_struct_set_x, "struct-set!", 3, 0, 0,
1bbd0b84 861 (SCM handle, SCM pos, SCM val),
e3239868
DH
862 "Set the slot of the structure @var{handle} with index @var{pos}\n"
863 "to @var{val}. Signal an error if the slot can not be written\n"
864 "to.")
1bbd0b84 865#define FUNC_NAME s_scm_struct_set_x
0f2d19dd 866{
aa42c036
LC
867 SCM vtable;
868 scm_t_bits *data;
a55c2b68 869 size_t p;
0f2d19dd 870
34d19ef6 871 SCM_VALIDATE_STRUCT (1, handle);
0f2d19dd 872
aa42c036 873 vtable = SCM_STRUCT_VTABLE (handle);
0f2d19dd 874 data = SCM_STRUCT_DATA (handle);
a55c2b68 875 p = scm_to_size_t (pos);
0f2d19dd 876
aa42c036
LC
877 if (SCM_LIKELY (SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_SIMPLE)
878 && SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_SIMPLE_RW)
879 && p < SCM_STRUCT_DATA_REF (vtable, scm_vtable_index_size)))
e03b7f73 880 /* The fast path: HANDLE is a struct with only "pw" fields. */
aa42c036
LC
881 data[p] = SCM_UNPACK (val);
882 else
883 {
884 SCM layout;
885 size_t layout_len, n_fields;
886 scm_t_wchar field_type = 0;
0f2d19dd 887
aa42c036
LC
888 layout = SCM_STRUCT_LAYOUT (handle);
889 layout_len = scm_i_symbol_length (layout);
890 n_fields = layout_len / 2;
0f2d19dd 891
aa42c036
LC
892 if (SCM_LAYOUT_TAILP (scm_i_symbol_ref (layout, layout_len - 1)))
893 n_fields += data[n_fields - 1];
894
895 SCM_ASSERT_RANGE (1, pos, p < n_fields);
896
897 if (p * 2 < layout_len)
898 {
899 char set_x;
900 field_type = scm_i_symbol_ref (layout, p * 2);
901 set_x = scm_i_symbol_ref (layout, p * 2 + 1);
902 if (set_x != 'w' && set_x != 'h')
903 SCM_MISC_ERROR ("set! denied for field ~A", scm_list_1 (pos));
904 }
905 else if (scm_i_symbol_ref (layout, layout_len - 1) == 'W')
906 field_type = scm_i_symbol_ref (layout, layout_len - 2);
907 else
1afff620 908 SCM_MISC_ERROR ("set! denied for field ~A", scm_list_1 (pos));
aa42c036
LC
909
910 switch (field_type)
911 {
912 case 'u':
913 data[p] = SCM_NUM2ULONG (3, val);
914 break;
0f2d19dd
JB
915
916#if 0
aa42c036
LC
917 case 'i':
918 data[p] = SCM_NUM2LONG (3, val);
919 break;
0f2d19dd 920
aa42c036
LC
921 case 'd':
922 *((double *)&(data[p])) = scm_num2dbl (val, (char *)SCM_ARG3);
923 break;
0f2d19dd
JB
924#endif
925
aa42c036
LC
926 case 'p':
927 data[p] = SCM_UNPACK (val);
928 break;
0f2d19dd 929
aa42c036
LC
930 case 's':
931 SCM_MISC_ERROR ("self fields immutable", SCM_EOL);
0f2d19dd 932
aa42c036
LC
933 default:
934 SCM_MISC_ERROR ("unrecognized field type: ~S",
935 scm_list_1 (SCM_MAKE_CHAR (field_type)));
936 }
0f2d19dd
JB
937 }
938
939 return val;
940}
1bbd0b84 941#undef FUNC_NAME
0f2d19dd
JB
942
943
a1ec6916 944SCM_DEFINE (scm_struct_vtable, "struct-vtable", 1, 0, 0,
1bbd0b84 945 (SCM handle),
b380b885 946 "Return the vtable structure that describes the type of @var{struct}.")
1bbd0b84 947#define FUNC_NAME s_scm_struct_vtable
0f2d19dd 948{
34d19ef6 949 SCM_VALIDATE_STRUCT (1, handle);
0f2d19dd
JB
950 return SCM_STRUCT_VTABLE (handle);
951}
1bbd0b84 952#undef FUNC_NAME
0f2d19dd
JB
953
954
a1ec6916 955SCM_DEFINE (scm_struct_vtable_tag, "struct-vtable-tag", 1, 0, 0,
1bbd0b84 956 (SCM handle),
e3239868 957 "Return the vtable tag of the structure @var{handle}.")
1bbd0b84 958#define FUNC_NAME s_scm_struct_vtable_tag
0f2d19dd 959{
34d19ef6 960 SCM_VALIDATE_VTABLE (1, handle);
3d27ef4b
AW
961 return scm_from_unsigned_integer
962 (((scm_t_bits)SCM_STRUCT_DATA (handle)) >> 3);
98d5f601 963}
1bbd0b84 964#undef FUNC_NAME
98d5f601
MD
965
966/* {Associating names and classes with vtables}
967 *
968 * The name of a vtable should probably be stored as a slot. This is
969 * a backward compatible solution until agreement has been achieved on
970 * how to associate names with vtables.
971 */
972
c014a02e 973unsigned long
d587c9e8 974scm_struct_ihashq (SCM obj, unsigned long n, void *closure)
98d5f601 975{
ad196599
MD
976 /* The length of the hash table should be a relative prime it's not
977 necessary to shift down the address. */
f1267706 978 return SCM_UNPACK (obj) % n;
98d5f601
MD
979}
980
a1ec6916 981SCM_DEFINE (scm_struct_vtable_name, "struct-vtable-name", 1, 0, 0,
1bbd0b84 982 (SCM vtable),
e3239868 983 "Return the name of the vtable @var{vtable}.")
1bbd0b84 984#define FUNC_NAME s_scm_struct_vtable_name
98d5f601 985{
34d19ef6 986 SCM_VALIDATE_VTABLE (1, vtable);
f3c6a02c 987 return SCM_VTABLE_NAME (vtable);
98d5f601 988}
1bbd0b84 989#undef FUNC_NAME
98d5f601 990
a1ec6916 991SCM_DEFINE (scm_set_struct_vtable_name_x, "set-struct-vtable-name!", 2, 0, 0,
1bbd0b84 992 (SCM vtable, SCM name),
e3239868 993 "Set the name of the vtable @var{vtable} to @var{name}.")
1bbd0b84 994#define FUNC_NAME s_scm_set_struct_vtable_name_x
98d5f601 995{
34d19ef6
HWN
996 SCM_VALIDATE_VTABLE (1, vtable);
997 SCM_VALIDATE_SYMBOL (2, name);
f3c6a02c
AW
998 SCM_SET_VTABLE_NAME (vtable, name);
999 /* FIXME: remove this, and implement proper struct classes instead.
1000 (Vtables *are* classes.) */
1001 scm_i_define_class_for_vtable (vtable);
98d5f601 1002 return SCM_UNSPECIFIED;
0f2d19dd 1003}
1bbd0b84 1004#undef FUNC_NAME
0f2d19dd
JB
1005
1006
1007\f
1008
bafcafb2 1009void
1bbd0b84 1010scm_print_struct (SCM exp, SCM port, scm_print_state *pstate)
bafcafb2 1011{
7888309b 1012 if (scm_is_true (scm_procedure_p (SCM_STRUCT_PRINTER (exp))))
4bfdf158
MD
1013 scm_printer_apply (SCM_STRUCT_PRINTER (exp), exp, port, pstate);
1014 else
bafcafb2 1015 {
a1ae1799
MD
1016 SCM vtable = SCM_STRUCT_VTABLE (exp);
1017 SCM name = scm_struct_vtable_name (vtable);
0607ebbf 1018 scm_puts_unlocked ("#<", port);
7888309b 1019 if (scm_is_true (name))
b6cf4d02
AW
1020 {
1021 scm_display (name, port);
0607ebbf 1022 scm_putc_unlocked (' ', port);
b6cf4d02 1023 }
a1ae1799 1024 else
b6cf4d02
AW
1025 {
1026 if (SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_VTABLE))
0607ebbf 1027 scm_puts_unlocked ("vtable:", port);
b6cf4d02 1028 else
0607ebbf 1029 scm_puts_unlocked ("struct:", port);
b6cf4d02 1030 scm_uintprint (SCM_UNPACK (vtable), 16, port);
0607ebbf 1031 scm_putc_unlocked (' ', port);
b6cf4d02 1032 scm_write (SCM_VTABLE_LAYOUT (vtable), port);
0607ebbf 1033 scm_putc_unlocked (' ', port);
b6cf4d02 1034 }
0345e278 1035 scm_uintprint (SCM_UNPACK (exp), 16, port);
b6cf4d02
AW
1036 /* hackety hack */
1037 if (SCM_STRUCT_APPLICABLE_P (exp))
1038 {
1039 if (scm_is_true (SCM_STRUCT_PROCEDURE (exp)))
1040 {
0607ebbf 1041 scm_puts_unlocked (" proc: ", port);
b6cf4d02
AW
1042 if (scm_is_true (scm_procedure_p (SCM_STRUCT_PROCEDURE (exp))))
1043 scm_write (SCM_STRUCT_PROCEDURE (exp), port);
1044 else
0607ebbf 1045 scm_puts_unlocked ("(not a procedure?)", port);
b6cf4d02
AW
1046 }
1047 if (SCM_STRUCT_SETTER_P (exp))
1048 {
0607ebbf 1049 scm_puts_unlocked (" setter: ", port);
b6cf4d02
AW
1050 scm_write (SCM_STRUCT_SETTER (exp), port);
1051 }
1052 }
0607ebbf 1053 scm_putc_unlocked ('>', port);
bafcafb2 1054 }
bafcafb2 1055}
1cc91f1b 1056
0f2d19dd
JB
1057void
1058scm_init_struct ()
0f2d19dd 1059{
01e74380
LC
1060 /* The first word of a struct is equal to `SCM_STRUCT_DATA (vtable) +
1061 scm_tc3_struct', and `SCM_STRUCT_DATA (vtable)' is 2 words after VTABLE by
1062 default. */
1063 GC_REGISTER_DISPLACEMENT (2 * sizeof (scm_t_bits) + scm_tc3_struct);
b6cf4d02 1064
227eff6a
LC
1065 /* In the general case, `SCM_STRUCT_DATA (obj)' points 2 words after the
1066 beginning of a GC-allocated region; that region is different from that of
1067 OBJ once OBJ has undergone class redefinition. */
1068 GC_REGISTER_DISPLACEMENT (2 * sizeof (scm_t_bits));
1069
b6cf4d02 1070 required_vtable_fields = scm_from_locale_string (SCM_VTABLE_BASE_LAYOUT);
fb5f79a8 1071 scm_c_define ("standard-vtable-fields", required_vtable_fields);
b6cf4d02
AW
1072 required_applicable_fields = scm_from_locale_string (SCM_APPLICABLE_BASE_LAYOUT);
1073 required_applicable_with_setter_fields = scm_from_locale_string (SCM_APPLICABLE_WITH_SETTER_BASE_LAYOUT);
651f2cd2 1074
0818837f 1075 scm_standard_vtable_vtable = scm_i_make_vtable_vtable (scm_nullstr);
72d4db5d 1076 scm_c_define ("<standard-vtable>", scm_standard_vtable_vtable);
b6cf4d02
AW
1077
1078 scm_applicable_struct_vtable_vtable =
db5ed685 1079 scm_make_struct (scm_standard_vtable_vtable, SCM_INUM0,
b6cf4d02
AW
1080 scm_list_1 (scm_make_struct_layout (required_vtable_fields)));
1081 SCM_SET_VTABLE_FLAGS (scm_applicable_struct_vtable_vtable,
1082 SCM_VTABLE_FLAG_APPLICABLE_VTABLE);
1083 scm_c_define ("<applicable-struct-vtable>", scm_applicable_struct_vtable_vtable);
1084
1085 scm_applicable_struct_with_setter_vtable_vtable =
db5ed685 1086 scm_make_struct (scm_standard_vtable_vtable, SCM_INUM0,
b6cf4d02
AW
1087 scm_list_1 (scm_make_struct_layout (required_vtable_fields)));
1088 SCM_SET_VTABLE_FLAGS (scm_applicable_struct_with_setter_vtable_vtable,
1089 SCM_VTABLE_FLAG_APPLICABLE_VTABLE | SCM_VTABLE_FLAG_SETTER_VTABLE);
1090 scm_c_define ("<applicable-struct-with-setter-vtable>", scm_applicable_struct_with_setter_vtable_vtable);
651f2cd2 1091
e11e83f3 1092 scm_c_define ("vtable-index-layout", scm_from_int (scm_vtable_index_layout));
86d31dfe 1093 scm_c_define ("vtable-index-printer",
b6cf4d02 1094 scm_from_int (scm_vtable_index_instance_printer));
e11e83f3 1095 scm_c_define ("vtable-offset-user", scm_from_int (scm_vtable_offset_user));
a0599745 1096#include "libguile/struct.x"
0f2d19dd 1097}
89e00824
ML
1098
1099/*
1100 Local Variables:
1101 c-file-style: "gnu"
1102 End:
1103*/