Merge remote-tracking branch 'origin/stable-2.0'
[bpt/guile.git] / libguile / struct.c
CommitLineData
26d14806
MW
1/* Copyright (C) 1996,1997,1998,1999,2000,2001, 2003, 2004, 2006, 2007,
2 * 2008, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
0f2d19dd 3 *
73be1d9e 4 * This library is free software; you can redistribute it and/or
53befeb7
NJ
5 * modify it under the terms of the GNU Lesser General Public License
6 * as published by the Free Software Foundation; either version 3 of
7 * the License, or (at your option) any later version.
0f2d19dd 8 *
53befeb7
NJ
9 * This library is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
0f2d19dd 13 *
73be1d9e
MV
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
53befeb7
NJ
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301 USA
73be1d9e 18 */
1bbd0b84 19
0f2d19dd 20\f
dbb605f5 21#ifdef HAVE_CONFIG_H
a6f7f57d
RB
22# include <config.h>
23#endif
0f2d19dd 24
66e78727 25#include <alloca.h>
aa42c036 26#include <assert.h>
66e78727 27
0818837f
AW
28#define SCM_BUILDING_DEPRECATED_CODE
29
a0599745 30#include "libguile/_scm.h"
4e047c3e 31#include "libguile/async.h"
a0599745
MD
32#include "libguile/chars.h"
33#include "libguile/eval.h"
34#include "libguile/alist.h"
a0599745
MD
35#include "libguile/hashtab.h"
36#include "libguile/ports.h"
37#include "libguile/strings.h"
27646f41 38#include "libguile/srfi-13.h"
a0599745
MD
39
40#include "libguile/validate.h"
41#include "libguile/struct.h"
0f2d19dd 42
d15ad007
LC
43#include "libguile/eq.h"
44
95b88819
GH
45#ifdef HAVE_STRING_H
46#include <string.h>
47#endif
48
1c44468d 49#include "libguile/bdw-gc.h"
5e67dc27 50
0f2d19dd
JB
51\f
52
b6cf4d02
AW
53/* A needlessly obscure test. */
54#define SCM_LAYOUT_TAILP(X) (((X) & 32) == 0) /* R, W or O */
55
0f2d19dd 56static SCM required_vtable_fields = SCM_BOOL_F;
b6cf4d02
AW
57static SCM required_applicable_fields = SCM_BOOL_F;
58static SCM required_applicable_with_setter_fields = SCM_BOOL_F;
db5ed685
AW
59SCM scm_applicable_struct_vtable_vtable;
60SCM scm_applicable_struct_with_setter_vtable_vtable;
61SCM scm_standard_vtable_vtable;
62
0f2d19dd
JB
63
64\f
a1ec6916 65SCM_DEFINE (scm_make_struct_layout, "make-struct-layout", 1, 0, 0,
1bbd0b84 66 (SCM fields),
b380b885 67 "Return a new structure layout object.\n\n"
7c31152f 68 "@var{fields} must be a string made up of pairs of characters\n"
b380b885
MD
69 "strung together. The first character of each pair describes a field\n"
70 "type, the second a field protection. Allowed types are 'p' for\n"
71 "GC-protected Scheme data, 'u' for unprotected binary data, and 's' for\n"
04323af4 72 "a field that points to the structure itself. Allowed protections\n"
b6cf4d02
AW
73 "are 'w' for mutable fields, 'h' for hidden fields, 'r' for read-only\n"
74 "fields, and 'o' for opaque fields.\n\n"
75 "Hidden fields are writable, but they will not consume an initializer arg\n"
76 "passed to @code{make-struct}. They are useful to add slots to a struct\n"
77 "in a way that preserves backward-compatibility with existing calls to\n"
78 "@code{make-struct}, especially for derived vtables.\n\n"
79 "The last field protection specification may be capitalized to indicate\n"
80 "that the field is a tail-array.")
1bbd0b84 81#define FUNC_NAME s_scm_make_struct_layout
0f2d19dd
JB
82{
83 SCM new_sym;
27646f41 84 scm_t_wchar c;
2ade72d7 85
7f991c7d
LC
86 SCM_VALIDATE_STRING (1, fields);
87
1bbd0b84 88 { /* scope */
1be6b49c 89 size_t len;
0f2d19dd
JB
90 int x;
91
cc95e00a 92 len = scm_i_string_length (fields);
2ade72d7
DH
93 if (len % 2 == 1)
94 SCM_MISC_ERROR ("odd length field specification: ~S",
1afff620 95 scm_list_1 (fields));
2ade72d7 96
0f2d19dd
JB
97 for (x = 0; x < len; x += 2)
98 {
27646f41 99 switch (c = scm_i_string_ref (fields, x))
0f2d19dd
JB
100 {
101 case 'u':
102 case 'p':
103#if 0
104 case 'i':
105 case 'd':
106#endif
107 case 's':
108 break;
109 default:
2ade72d7 110 SCM_MISC_ERROR ("unrecognized field type: ~S",
27646f41 111 scm_list_1 (SCM_MAKE_CHAR (c)));
0f2d19dd
JB
112 }
113
27646f41 114 switch (c = scm_i_string_ref (fields, x + 1))
0f2d19dd
JB
115 {
116 case 'w':
b6cf4d02 117 case 'h':
27646f41 118 if (scm_i_string_ref (fields, x) == 's')
2ade72d7 119 SCM_MISC_ERROR ("self fields not writable", SCM_EOL);
0f2d19dd
JB
120 case 'r':
121 case 'o':
122 break;
2c36c351
MD
123 case 'R':
124 case 'W':
125 case 'O':
27646f41 126 if (scm_i_string_ref (fields, x) == 's')
2ade72d7
DH
127 SCM_MISC_ERROR ("self fields not allowed in tail array",
128 SCM_EOL);
129 if (x != len - 2)
130 SCM_MISC_ERROR ("tail array field must be last field in layout",
131 SCM_EOL);
2c36c351 132 break;
0f2d19dd 133 default:
2ade72d7 134 SCM_MISC_ERROR ("unrecognized ref specification: ~S",
27646f41 135 scm_list_1 (SCM_MAKE_CHAR (c)));
0f2d19dd
JB
136 }
137#if 0
27646f41 138 if (scm_i_string_ref (fields, x, 'd'))
0f2d19dd 139 {
27646f41 140 if (!scm_i_string_ref (fields, x+2, '-'))
2ade72d7 141 SCM_MISC_ERROR ("missing dash field at position ~A",
e11e83f3 142 scm_list_1 (scm_from_int (x / 2)));
0f2d19dd
JB
143 x += 2;
144 goto recheck_ref;
145 }
146#endif
147 }
cc95e00a 148 new_sym = scm_string_to_symbol (fields);
0f2d19dd 149 }
8824ac88
MV
150 scm_remember_upto_here_1 (fields);
151 return new_sym;
0f2d19dd 152}
1bbd0b84 153#undef FUNC_NAME
0f2d19dd
JB
154
155\f
1b787ef9
AW
156/* Check whether VTABLE instances have a simple layout (i.e., either
157 only "pr" or only "pw" fields and no tail array) and update its flags
158 accordingly. */
aa42c036
LC
159static void
160set_vtable_layout_flags (SCM vtable)
161{
162 size_t len, field;
163 SCM layout;
164 const char *c_layout;
165 scm_t_bits flags = SCM_VTABLE_FLAG_SIMPLE;
166
167 layout = SCM_VTABLE_LAYOUT (vtable);
168 c_layout = scm_i_symbol_chars (layout);
169 len = scm_i_symbol_length (layout);
170
171 assert (len % 2 == 0);
172
173 /* Update FLAGS according to LAYOUT. */
174 for (field = 0;
175 field < len && flags & SCM_VTABLE_FLAG_SIMPLE;
176 field += 2)
177 {
178 if (c_layout[field] != 'p')
179 flags = 0;
180 else
181 switch (c_layout[field + 1])
182 {
183 case 'w':
e03b7f73 184 if (field == 0)
aa42c036
LC
185 flags |= SCM_VTABLE_FLAG_SIMPLE_RW;
186 break;
187
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
6922d92f 414struct_finalizer_trampoline (void *ptr, void *unused_data)
51f66c91
AW
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])
6978c673
AW
447 /* Register a finalizer for the newly created instance. */
448 scm_i_set_finalizer (SCM2PTR (ret), struct_finalizer_trampoline, NULL);
5e67dc27 449
9a974fd3 450 return ret;
5e67dc27
LC
451}
452
5e67dc27 453\f
66e78727
AW
454SCM
455scm_c_make_structv (SCM vtable, size_t n_tail, size_t n_init, scm_t_bits *init)
456#define FUNC_NAME "make-struct"
0f2d19dd
JB
457{
458 SCM layout;
a55c2b68 459 size_t basic_size;
b6cf4d02 460 SCM obj;
0f2d19dd 461
34d19ef6 462 SCM_VALIDATE_VTABLE (1, vtable);
0f2d19dd 463
b6cf4d02 464 layout = SCM_VTABLE_LAYOUT (vtable);
cc95e00a 465 basic_size = scm_i_symbol_length (layout) / 2;
651f2cd2 466
66e78727 467 if (n_tail != 0)
651f2cd2
KR
468 {
469 SCM layout_str, last_char;
470
471 if (basic_size == 0)
472 {
473 bad_tail:
474 SCM_MISC_ERROR ("tail array not allowed unless layout ends R, W, or O", SCM_EOL);
475 }
476
477 layout_str = scm_symbol_to_string (layout);
478 last_char = scm_string_ref (layout_str,
479 scm_from_size_t (2 * basic_size - 1));
480 if (! SCM_LAYOUT_TAILP (SCM_CHAR (last_char)))
481 goto bad_tail;
482 }
cb823e63 483
96a44c1c 484 obj = scm_i_alloc_struct (SCM_STRUCT_DATA (vtable), basic_size + n_tail);
5e67dc27 485
66e78727 486 scm_struct_init (obj, layout, n_tail, n_init, init);
b6cf4d02 487
a2220d7e
AW
488 /* If we're making a vtable, validate its layout and inherit
489 flags. However we allow for separation of allocation and
490 initialization, to humor GOOPS, so only validate if the layout was
491 passed as an initarg. */
b6cf4d02 492 if (SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_VTABLE)
b6cf4d02 493 && scm_is_true (SCM_VTABLE_LAYOUT (obj)))
51f66c91 494 scm_i_struct_inherit_vtable_magic (vtable, obj);
651f2cd2 495
b6cf4d02 496 return obj;
0f2d19dd 497}
1bbd0b84 498#undef FUNC_NAME
0f2d19dd 499
66e78727
AW
500SCM
501scm_c_make_struct (SCM vtable, size_t n_tail, size_t n_init, scm_t_bits init, ...)
502{
503 va_list foo;
504 scm_t_bits *v;
505 size_t i;
506
507 v = alloca (sizeof (scm_t_bits) * n_init);
508
509 va_start (foo, init);
510 for (i = 0; i < n_init; i++)
511 {
512 v[i] = init;
513 init = va_arg (foo, scm_t_bits);
514 }
515 va_end (foo);
516
517 return scm_c_make_structv (vtable, n_tail, n_init, v);
518}
519
520SCM_DEFINE (scm_make_struct, "make-struct", 2, 0, 1,
521 (SCM vtable, SCM tail_array_size, SCM init),
522 "Create a new structure.\n\n"
b7e64f8b
BT
523 "@var{vtable} must be a vtable structure (@pxref{Vtables}).\n\n"
524 "@var{tail_array_size} must be a non-negative integer. If the layout\n"
525 "specification indicated by @var{vtable} includes a tail-array,\n"
66e78727
AW
526 "this is the number of elements allocated to that array.\n\n"
527 "The @var{init1}, @dots{} are optional arguments describing how\n"
528 "successive fields of the structure should be initialized. Only fields\n"
529 "with protection 'r' or 'w' can be initialized, except for fields of\n"
530 "type 's', which are automatically initialized to point to the new\n"
531 "structure itself. Fields with protection 'o' can not be initialized by\n"
532 "Scheme programs.\n\n"
533 "If fewer optional arguments than initializable fields are supplied,\n"
534 "fields of type 'p' get default value #f while fields of type 'u' are\n"
2f0db5ee 535 "initialized to 0.")
66e78727
AW
536#define FUNC_NAME s_scm_make_struct
537{
538 size_t i, n_init;
539 long ilen;
540 scm_t_bits *v;
541
542 SCM_VALIDATE_VTABLE (1, vtable);
543 ilen = scm_ilength (init);
544 if (ilen < 0)
545 SCM_MISC_ERROR ("Rest arguments do not form a proper list.", SCM_EOL);
546
547 n_init = (size_t)ilen;
548
549 /* best to use alloca, but init could be big, so hack to avoid a possible
550 stack overflow */
551 if (n_init < 64)
552 v = alloca (n_init * sizeof(scm_t_bits));
553 else
554 v = scm_gc_malloc (n_init * sizeof(scm_t_bits), "struct");
555
556 for (i = 0; i < n_init; i++, init = SCM_CDR (init))
557 v[i] = SCM_UNPACK (SCM_CAR (init));
558
559 return scm_c_make_structv (vtable, scm_to_size_t (tail_array_size), n_init, v);
560}
561#undef FUNC_NAME
562
0818837f
AW
563SCM
564scm_i_make_vtable_vtable (SCM user_fields)
a38da400 565#define FUNC_NAME "make-vtable-vtable"
0818837f
AW
566{
567 SCM fields, layout, obj;
568 size_t basic_size;
569 scm_t_bits v;
570
571 SCM_VALIDATE_STRING (1, user_fields);
0f2d19dd 572
0818837f
AW
573 fields = scm_string_append (scm_list_2 (required_vtable_fields,
574 user_fields));
575 layout = scm_make_struct_layout (fields);
576 if (!scm_is_valid_vtable_layout (layout))
577 SCM_MISC_ERROR ("invalid user fields", scm_list_1 (user_fields));
578
579 basic_size = scm_i_symbol_length (layout) / 2;
580
581 obj = scm_i_alloc_struct (NULL, basic_size);
582 /* Make it so that the vtable of OBJ is itself. */
583 SCM_SET_CELL_WORD_0 (obj, (scm_t_bits) SCM_STRUCT_DATA (obj) | scm_tc3_struct);
584
585 v = SCM_UNPACK (layout);
586 scm_struct_init (obj, layout, 0, 1, &v);
587 SCM_SET_VTABLE_FLAGS (obj,
588 SCM_VTABLE_FLAG_VTABLE | SCM_VTABLE_FLAG_VALIDATED);
589
590 return obj;
591}
592#undef FUNC_NAME
d15ad007 593
651f2cd2
KR
594SCM_DEFINE (scm_make_vtable, "make-vtable", 1, 1, 0,
595 (SCM fields, SCM printer),
596 "Create a vtable, for creating structures with the given\n"
597 "@var{fields}.\n"
598 "\n"
599 "The optional @var{printer} argument is a function to be called\n"
600 "@code{(@var{printer} struct port)} on the structures created.\n"
601 "It should look at @var{struct} and write to @var{port}.")
602#define FUNC_NAME s_scm_make_vtable
603{
604 if (SCM_UNBNDP (printer))
605 printer = SCM_BOOL_F;
606
db5ed685 607 return scm_make_struct (scm_standard_vtable_vtable, SCM_INUM0,
651f2cd2
KR
608 scm_list_2 (scm_make_struct_layout (fields),
609 printer));
610}
611#undef FUNC_NAME
612
613
d15ad007
LC
614/* Return true if S1 and S2 are equal structures, i.e., if their vtable and
615 contents are the same. Field protections are honored. Thus, it is an
616 error to test the equality of structures that contain opaque fields. */
617SCM
618scm_i_struct_equalp (SCM s1, SCM s2)
619#define FUNC_NAME "scm_i_struct_equalp"
620{
621 SCM vtable1, vtable2, layout;
622 size_t struct_size, field_num;
623
624 SCM_VALIDATE_STRUCT (1, s1);
625 SCM_VALIDATE_STRUCT (2, s2);
626
627 vtable1 = SCM_STRUCT_VTABLE (s1);
628 vtable2 = SCM_STRUCT_VTABLE (s2);
629
630 if (!scm_is_eq (vtable1, vtable2))
631 return SCM_BOOL_F;
632
633 layout = SCM_STRUCT_LAYOUT (s1);
634 struct_size = scm_i_symbol_length (layout) / 2;
635
636 for (field_num = 0; field_num < struct_size; field_num++)
637 {
638 SCM s_field_num;
639 SCM field1, field2;
640
641 /* We have to use `scm_struct_ref ()' here so that fields are accessed
642 consistently, notably wrt. field types and access rights. */
643 s_field_num = scm_from_size_t (field_num);
644 field1 = scm_struct_ref (s1, s_field_num);
645 field2 = scm_struct_ref (s2, s_field_num);
646
42ddb3cb
LC
647 /* Self-referencing fields (type `s') must be skipped to avoid infinite
648 recursion. */
649 if (!(scm_is_eq (field1, s1) && (scm_is_eq (field2, s2))))
650 if (scm_is_false (scm_equal_p (field1, field2)))
651 return SCM_BOOL_F;
d15ad007
LC
652 }
653
42ddb3cb
LC
654 /* FIXME: Tail elements should be tested for equality. */
655
d15ad007
LC
656 return SCM_BOOL_T;
657}
658#undef FUNC_NAME
659
660
0f2d19dd
JB
661\f
662
663
a1ec6916 664SCM_DEFINE (scm_struct_ref, "struct-ref", 2, 0, 0,
1bbd0b84 665 (SCM handle, SCM pos),
b7e64f8b
BT
666 "Access the @var{pos}th field of struct associated with\n"
667 "@var{handle}.\n"
668 "\n"
669 "If the field is of type 'p', then it can be set to an arbitrary\n"
670 "value.\n"
671 "\n"
672 "If the field is of type 'u', then it can only be set to a\n"
673 "non-negative integer value small enough to fit in one machine\n"
674 "word.")
1bbd0b84 675#define FUNC_NAME s_scm_struct_ref
0f2d19dd 676{
aa42c036
LC
677 SCM vtable, answer = SCM_UNDEFINED;
678 scm_t_bits *data;
a55c2b68 679 size_t p;
0f2d19dd 680
34d19ef6 681 SCM_VALIDATE_STRUCT (1, handle);
0f2d19dd 682
aa42c036 683 vtable = SCM_STRUCT_VTABLE (handle);
0f2d19dd 684 data = SCM_STRUCT_DATA (handle);
a55c2b68 685 p = scm_to_size_t (pos);
0f2d19dd 686
aa42c036
LC
687 if (SCM_LIKELY (SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_SIMPLE)
688 && p < SCM_STRUCT_DATA_REF (vtable, scm_vtable_index_size)))
e03b7f73
LC
689 /* The fast path: HANDLE is a struct with only "p" fields. */
690 answer = SCM_PACK (data[p]);
2c36c351 691 else
0f2d19dd 692 {
aa42c036
LC
693 SCM layout;
694 size_t layout_len, n_fields;
695 scm_t_wchar field_type = 0;
696
697 layout = SCM_STRUCT_LAYOUT (handle);
698 layout_len = scm_i_symbol_length (layout);
699 n_fields = layout_len / 2;
700
701 if (SCM_LAYOUT_TAILP (scm_i_symbol_ref (layout, layout_len - 1)))
702 n_fields += data[n_fields - 1];
703
704 SCM_ASSERT_RANGE (1, pos, p < n_fields);
705
706 if (p * 2 < layout_len)
707 {
708 scm_t_wchar ref;
709 field_type = scm_i_symbol_ref (layout, p * 2);
710 ref = scm_i_symbol_ref (layout, p * 2 + 1);
711 if ((ref != 'r') && (ref != 'w') && (ref != 'h'))
712 {
713 if ((ref == 'R') || (ref == 'W'))
714 field_type = 'u';
715 else
716 SCM_MISC_ERROR ("ref denied for field ~A", scm_list_1 (pos));
717 }
718 }
719 else if (scm_i_symbol_ref (layout, layout_len - 1) != 'O')
720 field_type = scm_i_symbol_ref(layout, layout_len - 2);
721 else
722 SCM_MISC_ERROR ("ref denied for field ~A", scm_list_1 (pos));
723
724 switch (field_type)
725 {
726 case 'u':
727 answer = scm_from_ulong (data[p]);
728 break;
0f2d19dd
JB
729
730#if 0
aa42c036
LC
731 case 'i':
732 answer = scm_from_long (data[p]);
733 break;
0f2d19dd 734
aa42c036
LC
735 case 'd':
736 answer = scm_make_real (*((double *)&(data[p])));
737 break;
0f2d19dd
JB
738#endif
739
aa42c036
LC
740 case 's':
741 case 'p':
742 answer = SCM_PACK (data[p]);
743 break;
0f2d19dd
JB
744
745
aa42c036
LC
746 default:
747 SCM_MISC_ERROR ("unrecognized field type: ~S",
748 scm_list_1 (SCM_MAKE_CHAR (field_type)));
749 }
0f2d19dd
JB
750 }
751
752 return answer;
753}
1bbd0b84 754#undef FUNC_NAME
0f2d19dd
JB
755
756
a1ec6916 757SCM_DEFINE (scm_struct_set_x, "struct-set!", 3, 0, 0,
1bbd0b84 758 (SCM handle, SCM pos, SCM val),
e3239868
DH
759 "Set the slot of the structure @var{handle} with index @var{pos}\n"
760 "to @var{val}. Signal an error if the slot can not be written\n"
761 "to.")
1bbd0b84 762#define FUNC_NAME s_scm_struct_set_x
0f2d19dd 763{
aa42c036
LC
764 SCM vtable;
765 scm_t_bits *data;
a55c2b68 766 size_t p;
0f2d19dd 767
34d19ef6 768 SCM_VALIDATE_STRUCT (1, handle);
0f2d19dd 769
aa42c036 770 vtable = SCM_STRUCT_VTABLE (handle);
0f2d19dd 771 data = SCM_STRUCT_DATA (handle);
a55c2b68 772 p = scm_to_size_t (pos);
0f2d19dd 773
aa42c036
LC
774 if (SCM_LIKELY (SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_SIMPLE)
775 && SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_SIMPLE_RW)
776 && p < SCM_STRUCT_DATA_REF (vtable, scm_vtable_index_size)))
e03b7f73 777 /* The fast path: HANDLE is a struct with only "pw" fields. */
aa42c036
LC
778 data[p] = SCM_UNPACK (val);
779 else
780 {
781 SCM layout;
782 size_t layout_len, n_fields;
783 scm_t_wchar field_type = 0;
0f2d19dd 784
aa42c036
LC
785 layout = SCM_STRUCT_LAYOUT (handle);
786 layout_len = scm_i_symbol_length (layout);
787 n_fields = layout_len / 2;
0f2d19dd 788
aa42c036
LC
789 if (SCM_LAYOUT_TAILP (scm_i_symbol_ref (layout, layout_len - 1)))
790 n_fields += data[n_fields - 1];
791
792 SCM_ASSERT_RANGE (1, pos, p < n_fields);
793
794 if (p * 2 < layout_len)
795 {
796 char set_x;
797 field_type = scm_i_symbol_ref (layout, p * 2);
798 set_x = scm_i_symbol_ref (layout, p * 2 + 1);
799 if (set_x != 'w' && set_x != 'h')
800 SCM_MISC_ERROR ("set! denied for field ~A", scm_list_1 (pos));
801 }
802 else if (scm_i_symbol_ref (layout, layout_len - 1) == 'W')
803 field_type = scm_i_symbol_ref (layout, layout_len - 2);
804 else
1afff620 805 SCM_MISC_ERROR ("set! denied for field ~A", scm_list_1 (pos));
aa42c036
LC
806
807 switch (field_type)
808 {
809 case 'u':
810 data[p] = SCM_NUM2ULONG (3, val);
811 break;
0f2d19dd
JB
812
813#if 0
aa42c036
LC
814 case 'i':
815 data[p] = SCM_NUM2LONG (3, val);
816 break;
0f2d19dd 817
aa42c036
LC
818 case 'd':
819 *((double *)&(data[p])) = scm_num2dbl (val, (char *)SCM_ARG3);
820 break;
0f2d19dd
JB
821#endif
822
aa42c036
LC
823 case 'p':
824 data[p] = SCM_UNPACK (val);
825 break;
0f2d19dd 826
aa42c036
LC
827 case 's':
828 SCM_MISC_ERROR ("self fields immutable", SCM_EOL);
0f2d19dd 829
aa42c036
LC
830 default:
831 SCM_MISC_ERROR ("unrecognized field type: ~S",
832 scm_list_1 (SCM_MAKE_CHAR (field_type)));
833 }
0f2d19dd
JB
834 }
835
836 return val;
837}
1bbd0b84 838#undef FUNC_NAME
0f2d19dd
JB
839
840
a1ec6916 841SCM_DEFINE (scm_struct_vtable, "struct-vtable", 1, 0, 0,
1bbd0b84 842 (SCM handle),
b7e64f8b
BT
843 "Return the vtable structure that describes the type of struct\n"
844 "associated with @var{handle}.")
1bbd0b84 845#define FUNC_NAME s_scm_struct_vtable
0f2d19dd 846{
34d19ef6 847 SCM_VALIDATE_STRUCT (1, handle);
0f2d19dd
JB
848 return SCM_STRUCT_VTABLE (handle);
849}
1bbd0b84 850#undef FUNC_NAME
0f2d19dd
JB
851
852
98d5f601
MD
853/* {Associating names and classes with vtables}
854 *
855 * The name of a vtable should probably be stored as a slot. This is
856 * a backward compatible solution until agreement has been achieved on
857 * how to associate names with vtables.
858 */
859
c014a02e 860unsigned long
d587c9e8 861scm_struct_ihashq (SCM obj, unsigned long n, void *closure)
98d5f601 862{
ad196599
MD
863 /* The length of the hash table should be a relative prime it's not
864 necessary to shift down the address. */
f1267706 865 return SCM_UNPACK (obj) % n;
98d5f601
MD
866}
867
a1ec6916 868SCM_DEFINE (scm_struct_vtable_name, "struct-vtable-name", 1, 0, 0,
1bbd0b84 869 (SCM vtable),
e3239868 870 "Return the name of the vtable @var{vtable}.")
1bbd0b84 871#define FUNC_NAME s_scm_struct_vtable_name
98d5f601 872{
34d19ef6 873 SCM_VALIDATE_VTABLE (1, vtable);
f3c6a02c 874 return SCM_VTABLE_NAME (vtable);
98d5f601 875}
1bbd0b84 876#undef FUNC_NAME
98d5f601 877
a1ec6916 878SCM_DEFINE (scm_set_struct_vtable_name_x, "set-struct-vtable-name!", 2, 0, 0,
1bbd0b84 879 (SCM vtable, SCM name),
e3239868 880 "Set the name of the vtable @var{vtable} to @var{name}.")
1bbd0b84 881#define FUNC_NAME s_scm_set_struct_vtable_name_x
98d5f601 882{
34d19ef6
HWN
883 SCM_VALIDATE_VTABLE (1, vtable);
884 SCM_VALIDATE_SYMBOL (2, name);
f3c6a02c
AW
885 SCM_SET_VTABLE_NAME (vtable, name);
886 /* FIXME: remove this, and implement proper struct classes instead.
887 (Vtables *are* classes.) */
888 scm_i_define_class_for_vtable (vtable);
98d5f601 889 return SCM_UNSPECIFIED;
0f2d19dd 890}
1bbd0b84 891#undef FUNC_NAME
0f2d19dd
JB
892
893
894\f
895
bafcafb2 896void
1bbd0b84 897scm_print_struct (SCM exp, SCM port, scm_print_state *pstate)
bafcafb2 898{
7888309b 899 if (scm_is_true (scm_procedure_p (SCM_STRUCT_PRINTER (exp))))
4bfdf158
MD
900 scm_printer_apply (SCM_STRUCT_PRINTER (exp), exp, port, pstate);
901 else
bafcafb2 902 {
a1ae1799
MD
903 SCM vtable = SCM_STRUCT_VTABLE (exp);
904 SCM name = scm_struct_vtable_name (vtable);
0607ebbf 905 scm_puts_unlocked ("#<", port);
7888309b 906 if (scm_is_true (name))
b6cf4d02
AW
907 {
908 scm_display (name, port);
0607ebbf 909 scm_putc_unlocked (' ', port);
b6cf4d02 910 }
a1ae1799 911 else
b6cf4d02
AW
912 {
913 if (SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_VTABLE))
0607ebbf 914 scm_puts_unlocked ("vtable:", port);
b6cf4d02 915 else
0607ebbf 916 scm_puts_unlocked ("struct:", port);
b6cf4d02 917 scm_uintprint (SCM_UNPACK (vtable), 16, port);
0607ebbf 918 scm_putc_unlocked (' ', port);
b6cf4d02 919 scm_write (SCM_VTABLE_LAYOUT (vtable), port);
0607ebbf 920 scm_putc_unlocked (' ', port);
b6cf4d02 921 }
0345e278 922 scm_uintprint (SCM_UNPACK (exp), 16, port);
b6cf4d02
AW
923 /* hackety hack */
924 if (SCM_STRUCT_APPLICABLE_P (exp))
925 {
926 if (scm_is_true (SCM_STRUCT_PROCEDURE (exp)))
927 {
0607ebbf 928 scm_puts_unlocked (" proc: ", port);
b6cf4d02
AW
929 if (scm_is_true (scm_procedure_p (SCM_STRUCT_PROCEDURE (exp))))
930 scm_write (SCM_STRUCT_PROCEDURE (exp), port);
931 else
0607ebbf 932 scm_puts_unlocked ("(not a procedure?)", port);
b6cf4d02
AW
933 }
934 if (SCM_STRUCT_SETTER_P (exp))
935 {
0607ebbf 936 scm_puts_unlocked (" setter: ", port);
b6cf4d02
AW
937 scm_write (SCM_STRUCT_SETTER (exp), port);
938 }
939 }
0607ebbf 940 scm_putc_unlocked ('>', port);
bafcafb2 941 }
bafcafb2 942}
1cc91f1b 943
0f2d19dd
JB
944void
945scm_init_struct ()
0f2d19dd 946{
40c73b59
AW
947 SCM name;
948
01e74380
LC
949 /* The first word of a struct is equal to `SCM_STRUCT_DATA (vtable) +
950 scm_tc3_struct', and `SCM_STRUCT_DATA (vtable)' is 2 words after VTABLE by
951 default. */
952 GC_REGISTER_DISPLACEMENT (2 * sizeof (scm_t_bits) + scm_tc3_struct);
b6cf4d02 953
227eff6a
LC
954 /* In the general case, `SCM_STRUCT_DATA (obj)' points 2 words after the
955 beginning of a GC-allocated region; that region is different from that of
956 OBJ once OBJ has undergone class redefinition. */
957 GC_REGISTER_DISPLACEMENT (2 * sizeof (scm_t_bits));
958
b6cf4d02 959 required_vtable_fields = scm_from_locale_string (SCM_VTABLE_BASE_LAYOUT);
fb5f79a8 960 scm_c_define ("standard-vtable-fields", required_vtable_fields);
b6cf4d02
AW
961 required_applicable_fields = scm_from_locale_string (SCM_APPLICABLE_BASE_LAYOUT);
962 required_applicable_with_setter_fields = scm_from_locale_string (SCM_APPLICABLE_WITH_SETTER_BASE_LAYOUT);
651f2cd2 963
0818837f 964 scm_standard_vtable_vtable = scm_i_make_vtable_vtable (scm_nullstr);
40c73b59
AW
965 name = scm_from_utf8_symbol ("<standard-vtable>");
966 scm_set_struct_vtable_name_x (scm_standard_vtable_vtable, name);
967 scm_define (name, scm_standard_vtable_vtable);
b6cf4d02
AW
968
969 scm_applicable_struct_vtable_vtable =
db5ed685 970 scm_make_struct (scm_standard_vtable_vtable, SCM_INUM0,
b6cf4d02 971 scm_list_1 (scm_make_struct_layout (required_vtable_fields)));
40c73b59 972 name = scm_from_utf8_symbol ("<applicable-struct-vtable>");
b6cf4d02
AW
973 SCM_SET_VTABLE_FLAGS (scm_applicable_struct_vtable_vtable,
974 SCM_VTABLE_FLAG_APPLICABLE_VTABLE);
40c73b59
AW
975 scm_set_struct_vtable_name_x (scm_applicable_struct_vtable_vtable, name);
976 scm_define (name, scm_applicable_struct_vtable_vtable);
b6cf4d02
AW
977
978 scm_applicable_struct_with_setter_vtable_vtable =
db5ed685 979 scm_make_struct (scm_standard_vtable_vtable, SCM_INUM0,
b6cf4d02 980 scm_list_1 (scm_make_struct_layout (required_vtable_fields)));
40c73b59
AW
981 name = scm_from_utf8_symbol ("<applicable-struct-with-setter-vtable>");
982 scm_set_struct_vtable_name_x (scm_applicable_struct_with_setter_vtable_vtable, name);
b6cf4d02
AW
983 SCM_SET_VTABLE_FLAGS (scm_applicable_struct_with_setter_vtable_vtable,
984 SCM_VTABLE_FLAG_APPLICABLE_VTABLE | SCM_VTABLE_FLAG_SETTER_VTABLE);
40c73b59 985 scm_define (name, scm_applicable_struct_with_setter_vtable_vtable);
651f2cd2 986
e11e83f3 987 scm_c_define ("vtable-index-layout", scm_from_int (scm_vtable_index_layout));
86d31dfe 988 scm_c_define ("vtable-index-printer",
b6cf4d02 989 scm_from_int (scm_vtable_index_instance_printer));
e11e83f3 990 scm_c_define ("vtable-offset-user", scm_from_int (scm_vtable_offset_user));
a0599745 991#include "libguile/struct.x"
0f2d19dd 992}
89e00824
ML
993
994/*
995 Local Variables:
996 c-file-style: "gnu"
997 End:
998*/