fix bug in compile-glil.scm for return opcode-hack
[bpt/guile.git] / libguile / struct.c
CommitLineData
aa42c036 1/* Copyright (C) 1996,1997,1998,1999,2000,2001, 2003, 2004, 2006, 2007, 2008, 2009, 2010 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
a0599745 27#include "libguile/_scm.h"
4e047c3e 28#include "libguile/async.h"
a0599745
MD
29#include "libguile/chars.h"
30#include "libguile/eval.h"
31#include "libguile/alist.h"
32#include "libguile/weaks.h"
33#include "libguile/hashtab.h"
34#include "libguile/ports.h"
35#include "libguile/strings.h"
27646f41 36#include "libguile/srfi-13.h"
a0599745
MD
37
38#include "libguile/validate.h"
39#include "libguile/struct.h"
0f2d19dd 40
d15ad007
LC
41#include "libguile/eq.h"
42
95b88819
GH
43#ifdef HAVE_STRING_H
44#include <string.h>
45#endif
46
1c44468d 47#include "libguile/bdw-gc.h"
5e67dc27 48
0f2d19dd
JB
49\f
50
b6cf4d02
AW
51/* A needlessly obscure test. */
52#define SCM_LAYOUT_TAILP(X) (((X) & 32) == 0) /* R, W or O */
53
0f2d19dd 54static SCM required_vtable_fields = SCM_BOOL_F;
b6cf4d02
AW
55static SCM required_applicable_fields = SCM_BOOL_F;
56static SCM required_applicable_with_setter_fields = SCM_BOOL_F;
57SCM scm_struct_table = 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
696ac4df
LC
206/* Have OBJ, a newly created vtable, inherit flags from VTABLE. VTABLE is a
207 vtable-vtable and OBJ is an instance of VTABLE. */
51f66c91
AW
208void
209scm_i_struct_inherit_vtable_magic (SCM vtable, SCM obj)
210#define FUNC_NAME "%inherit-vtable-magic"
211{
212 /* Verily, what is the deal here, you ask? Basically, we need to know a couple
213 of properties of structures at runtime. For example, "is this structure a
214 vtable of vtables (a metaclass)?"; also, "is this structure applicable?".
215 Both of these questions also imply a certain layout of the structure. So
216 instead of checking the layout at runtime, what we do is pre-verify the
217 layout -- so that at runtime we can just check the applicable flag and
696ac4df 218 dispatch directly to the Scheme procedure in slot 0. */
51f66c91
AW
219 SCM olayout;
220
696ac4df 221 /* Verify that OBJ is a valid vtable. */
51f66c91
AW
222 if (scm_is_false (scm_symbol_p (SCM_VTABLE_LAYOUT (obj))))
223 scm_misc_error (FUNC_NAME, "invalid layout for new vtable",
224 scm_list_1 (SCM_VTABLE_LAYOUT (obj)));
225
aa42c036
LC
226 set_vtable_layout_flags (obj);
227
696ac4df
LC
228 /* If OBJ's vtable is compatible with the required vtable (class) layout, it
229 is a metaclass. */
51f66c91
AW
230 olayout = scm_symbol_to_string (SCM_VTABLE_LAYOUT (obj));
231 if (scm_is_true (scm_leq_p (scm_string_length (required_vtable_fields),
232 scm_string_length (olayout)))
233 && scm_is_true (scm_string_eq (olayout, required_vtable_fields,
234 scm_from_size_t (0),
235 scm_string_length (required_vtable_fields),
236 scm_from_size_t (0),
237 scm_string_length (required_vtable_fields))))
238 SCM_SET_VTABLE_FLAGS (obj, SCM_VTABLE_FLAG_VTABLE);
239
696ac4df
LC
240 /* Finally, if OBJ is an applicable class, verify that its vtable is
241 compatible with the required applicable layout. */
51f66c91
AW
242 if (SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_SETTER_VTABLE))
243 {
244 if (scm_is_false (scm_string_eq (olayout, required_applicable_with_setter_fields,
245 scm_from_size_t (0),
246 scm_from_size_t (4),
247 scm_from_size_t (0),
248 scm_from_size_t (4))))
249 scm_misc_error (FUNC_NAME, "invalid applicable-with-setter struct layout",
250 scm_list_1 (olayout));
251 SCM_SET_VTABLE_FLAGS (obj, SCM_VTABLE_FLAG_APPLICABLE | SCM_VTABLE_FLAG_SETTER);
252 }
253 else if (SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_APPLICABLE_VTABLE))
254 {
255 if (scm_is_false (scm_string_eq (olayout, required_applicable_fields,
256 scm_from_size_t (0),
257 scm_from_size_t (2),
258 scm_from_size_t (0),
259 scm_from_size_t (2))))
260 scm_misc_error (FUNC_NAME, "invalid applicable struct layout",
261 scm_list_1 (olayout));
262 SCM_SET_VTABLE_FLAGS (obj, SCM_VTABLE_FLAG_APPLICABLE);
263 }
264}
265#undef FUNC_NAME
0f2d19dd 266
1cc91f1b 267
f7620510 268static void
66e78727
AW
269scm_struct_init (SCM handle, SCM layout, size_t n_tail,
270 size_t n_inits, scm_t_bits *inits)
0f2d19dd 271{
aa42c036
LC
272 SCM vtable;
273 scm_t_bits *mem;
274
275 vtable = SCM_STRUCT_VTABLE (handle);
276 mem = SCM_STRUCT_DATA (handle);
277
278 if (SCM_UNPACK (vtable) != 0
279 && SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_SIMPLE)
280 && n_tail == 0
281 && n_inits == SCM_STRUCT_DATA_REF (vtable, scm_vtable_index_size))
282 /* The fast path: HANDLE has N_INITS "p" fields. */
283 memcpy (mem, inits, n_inits * sizeof (SCM));
284 else
0f2d19dd 285 {
aa42c036
LC
286 scm_t_wchar prot = 0;
287 int n_fields = scm_i_symbol_length (layout) / 2;
288 int tailp = 0;
289 int i;
290 size_t inits_idx = 0;
291
292 i = -2;
293 while (n_fields)
2c36c351 294 {
aa42c036 295 if (!tailp)
2c36c351 296 {
aa42c036
LC
297 i += 2;
298 prot = scm_i_symbol_ref (layout, i+1);
299 if (SCM_LAYOUT_TAILP (prot))
300 {
301 tailp = 1;
302 prot = prot == 'R' ? 'r' : prot == 'W' ? 'w' : 'o';
303 *mem++ = (scm_t_bits)n_tail;
304 n_fields += n_tail - 1;
305 if (n_fields == 0)
306 break;
307 }
2c36c351 308 }
aa42c036 309 switch (scm_i_symbol_ref (layout, i))
0f2d19dd 310 {
aa42c036
LC
311 case 'u':
312 if ((prot != 'r' && prot != 'w') || inits_idx == n_inits)
313 *mem = 0;
314 else
315 {
316 *mem = scm_to_ulong (SCM_PACK (inits[inits_idx]));
317 inits_idx++;
318 }
319 break;
320
321 case 'p':
322 if ((prot != 'r' && prot != 'w') || inits_idx == n_inits)
323 *mem = SCM_UNPACK (SCM_BOOL_F);
324 else
325 {
326 *mem = inits[inits_idx];
327 inits_idx++;
328 }
329
330 break;
331
332 case 's':
333 *mem = SCM_UNPACK (handle);
334 break;
0f2d19dd 335 }
0f2d19dd 336
aa42c036
LC
337 n_fields--;
338 mem++;
0f2d19dd 339 }
0f2d19dd
JB
340 }
341}
342
343
a1ec6916 344SCM_DEFINE (scm_struct_p, "struct?", 1, 0, 0,
1bbd0b84 345 (SCM x),
0233bfc1 346 "Return @code{#t} iff @var{x} is a structure object, else\n"
942e5b91 347 "@code{#f}.")
1bbd0b84 348#define FUNC_NAME s_scm_struct_p
0f2d19dd 349{
7888309b 350 return scm_from_bool(SCM_STRUCTP (x));
0f2d19dd 351}
1bbd0b84 352#undef FUNC_NAME
0f2d19dd 353
a1ec6916 354SCM_DEFINE (scm_struct_vtable_p, "struct-vtable?", 1, 0, 0,
1bbd0b84 355 (SCM x),
0233bfc1 356 "Return @code{#t} iff @var{x} is a vtable structure.")
1bbd0b84 357#define FUNC_NAME s_scm_struct_vtable_p
0f2d19dd 358{
b6cf4d02
AW
359 return scm_from_bool
360 (SCM_STRUCTP (x)
361 && SCM_STRUCT_VTABLE_FLAG_IS_SET (x, SCM_VTABLE_FLAG_VTABLE));
0f2d19dd 362}
1bbd0b84 363#undef FUNC_NAME
0f2d19dd 364
14d1400f 365
51f66c91
AW
366/* Finalization: invoke the finalizer of the struct pointed to by PTR. */
367static void
368struct_finalizer_trampoline (GC_PTR ptr, GC_PTR unused_data)
369{
370 SCM obj = PTR2SCM (ptr);
371 scm_t_struct_finalize finalize = SCM_STRUCT_FINALIZER (obj);
372
373 if (finalize)
374 finalize (obj);
375}
376
14d1400f
JB
377/* All struct data must be allocated at an address whose bottom three
378 bits are zero. This is because the tag for a struct lives in the
379 bottom three bits of the struct's car, and the upper bits point to
380 the data of its vtable, which is a struct itself. Thus, if the
381 address of that data doesn't end in three zeros, tagging it will
382 destroy the pointer.
383
b6cf4d02
AW
384 I suppose we should make it clear here that, the data must be 8-byte aligned,
385 *within* the struct, and the struct itself should be 8-byte aligned. In
386 practice we ensure this because the data starts two words into a struct.
14d1400f 387
b6cf4d02
AW
388 This function allocates an 8-byte aligned block of memory, whose first word
389 points to the given vtable data, then a data pointer, then n_words of data.
390 */
391SCM
96a44c1c 392scm_i_alloc_struct (scm_t_bits *vtable_data, int n_words)
14d1400f 393{
b6cf4d02
AW
394 scm_t_bits ret;
395 ret = (scm_t_bits)scm_gc_malloc (sizeof (scm_t_bits) * (n_words + 2), "struct");
b6cf4d02
AW
396 SCM_SET_CELL_WORD_0 (SCM_PACK (ret), (scm_t_bits)vtable_data | scm_tc3_struct);
397 SCM_SET_CELL_WORD_1 (SCM_PACK (ret),
398 (scm_t_bits)SCM_CELL_OBJECT_LOC (SCM_PACK (ret), 2));
5e67dc27 399
51f66c91
AW
400 /* vtable_data can be null when making a vtable vtable */
401 if (vtable_data && vtable_data[scm_vtable_index_instance_finalize])
402 {
403 /* Register a finalizer for the newly created instance. */
404 GC_finalization_proc prev_finalizer;
405 GC_PTR prev_finalizer_data;
406 GC_REGISTER_FINALIZER_NO_ORDER ((void*)ret,
407 struct_finalizer_trampoline,
408 NULL,
409 &prev_finalizer,
410 &prev_finalizer_data);
411 }
5e67dc27 412
51f66c91 413 return SCM_PACK (ret);
5e67dc27
LC
414}
415
5e67dc27 416\f
66e78727
AW
417SCM
418scm_c_make_structv (SCM vtable, size_t n_tail, size_t n_init, scm_t_bits *init)
419#define FUNC_NAME "make-struct"
0f2d19dd
JB
420{
421 SCM layout;
a55c2b68 422 size_t basic_size;
b6cf4d02 423 SCM obj;
0f2d19dd 424
34d19ef6 425 SCM_VALIDATE_VTABLE (1, vtable);
0f2d19dd 426
b6cf4d02 427 layout = SCM_VTABLE_LAYOUT (vtable);
cc95e00a 428 basic_size = scm_i_symbol_length (layout) / 2;
651f2cd2 429
66e78727 430 if (n_tail != 0)
651f2cd2
KR
431 {
432 SCM layout_str, last_char;
433
434 if (basic_size == 0)
435 {
436 bad_tail:
437 SCM_MISC_ERROR ("tail array not allowed unless layout ends R, W, or O", SCM_EOL);
438 }
439
440 layout_str = scm_symbol_to_string (layout);
441 last_char = scm_string_ref (layout_str,
442 scm_from_size_t (2 * basic_size - 1));
443 if (! SCM_LAYOUT_TAILP (SCM_CHAR (last_char)))
444 goto bad_tail;
445 }
cb823e63 446
96a44c1c 447 obj = scm_i_alloc_struct (SCM_STRUCT_DATA (vtable), basic_size + n_tail);
5e67dc27 448
66e78727 449 scm_struct_init (obj, layout, n_tail, n_init, init);
b6cf4d02 450
51f66c91
AW
451 /* only check things and inherit magic if the layout was passed as an initarg.
452 something of a hack, but it's for back-compatibility. */
b6cf4d02 453 if (SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_VTABLE)
b6cf4d02 454 && scm_is_true (SCM_VTABLE_LAYOUT (obj)))
51f66c91 455 scm_i_struct_inherit_vtable_magic (vtable, obj);
651f2cd2 456
b6cf4d02 457 return obj;
0f2d19dd 458}
1bbd0b84 459#undef FUNC_NAME
0f2d19dd 460
66e78727
AW
461SCM
462scm_c_make_struct (SCM vtable, size_t n_tail, size_t n_init, scm_t_bits init, ...)
463{
464 va_list foo;
465 scm_t_bits *v;
466 size_t i;
467
468 v = alloca (sizeof (scm_t_bits) * n_init);
469
470 va_start (foo, init);
471 for (i = 0; i < n_init; i++)
472 {
473 v[i] = init;
474 init = va_arg (foo, scm_t_bits);
475 }
476 va_end (foo);
477
478 return scm_c_make_structv (vtable, n_tail, n_init, v);
479}
480
481SCM_DEFINE (scm_make_struct, "make-struct", 2, 0, 1,
482 (SCM vtable, SCM tail_array_size, SCM init),
483 "Create a new structure.\n\n"
484 "@var{type} must be a vtable structure (@pxref{Vtables}).\n\n"
485 "@var{tail-elts} must be a non-negative integer. If the layout\n"
486 "specification indicated by @var{type} includes a tail-array,\n"
487 "this is the number of elements allocated to that array.\n\n"
488 "The @var{init1}, @dots{} are optional arguments describing how\n"
489 "successive fields of the structure should be initialized. Only fields\n"
490 "with protection 'r' or 'w' can be initialized, except for fields of\n"
491 "type 's', which are automatically initialized to point to the new\n"
492 "structure itself. Fields with protection 'o' can not be initialized by\n"
493 "Scheme programs.\n\n"
494 "If fewer optional arguments than initializable fields are supplied,\n"
495 "fields of type 'p' get default value #f while fields of type 'u' are\n"
496 "initialized to 0.\n\n"
497 "For more information, see the documentation for @code{make-vtable-vtable}.")
498#define FUNC_NAME s_scm_make_struct
499{
500 size_t i, n_init;
501 long ilen;
502 scm_t_bits *v;
503
504 SCM_VALIDATE_VTABLE (1, vtable);
505 ilen = scm_ilength (init);
506 if (ilen < 0)
507 SCM_MISC_ERROR ("Rest arguments do not form a proper list.", SCM_EOL);
508
509 n_init = (size_t)ilen;
510
511 /* best to use alloca, but init could be big, so hack to avoid a possible
512 stack overflow */
513 if (n_init < 64)
514 v = alloca (n_init * sizeof(scm_t_bits));
515 else
516 v = scm_gc_malloc (n_init * sizeof(scm_t_bits), "struct");
517
518 for (i = 0; i < n_init; i++, init = SCM_CDR (init))
519 v[i] = SCM_UNPACK (SCM_CAR (init));
520
521 return scm_c_make_structv (vtable, scm_to_size_t (tail_array_size), n_init, v);
522}
523#undef FUNC_NAME
524
0f2d19dd
JB
525
526
a1ec6916 527SCM_DEFINE (scm_make_vtable_vtable, "make-vtable-vtable", 2, 0, 1,
04323af4 528 (SCM user_fields, SCM tail_array_size, SCM init),
b380b885 529 "Return a new, self-describing vtable structure.\n\n"
04323af4
MD
530 "@var{user-fields} is a string describing user defined fields of the\n"
531 "vtable beginning at index @code{vtable-offset-user}\n"
532 "(see @code{make-struct-layout}).\n\n"
b380b885
MD
533 "@var{tail-size} specifies the size of the tail-array (if any) of\n"
534 "this vtable.\n\n"
6386e25c 535 "@var{init1}, @dots{} are the optional initializers for the fields of\n"
04323af4
MD
536 "the vtable.\n\n"
537 "Vtables have one initializable system field---the struct printer.\n"
538 "This field comes before the user fields in the initializers passed\n"
539 "to @code{make-vtable-vtable} and @code{make-struct}, and thus works as\n"
540 "a third optional argument to @code{make-vtable-vtable} and a fourth to\n"
541 "@code{make-struct} when creating vtables:\n\n"
542 "If the value is a procedure, it will be called instead of the standard\n"
543 "printer whenever a struct described by this vtable is printed.\n"
544 "The procedure will be called with arguments STRUCT and PORT.\n\n"
545 "The structure of a struct is described by a vtable, so the vtable is\n"
546 "in essence the type of the struct. The vtable is itself a struct with\n"
547 "a vtable. This could go on forever if it weren't for the\n"
29b4f9fb 548 "vtable-vtables which are self-describing vtables, and thus terminate\n"
04323af4
MD
549 "the chain.\n\n"
550 "There are several potential ways of using structs, but the standard\n"
551 "one is to use three kinds of structs, together building up a type\n"
552 "sub-system: one vtable-vtable working as the root and one or several\n"
553 "\"types\", each with a set of \"instances\". (The vtable-vtable should be\n"
29b4f9fb 554 "compared to the class <class> which is the class of itself.)\n\n"
1e6808ea 555 "@lisp\n"
04323af4
MD
556 "(define ball-root (make-vtable-vtable \"pr\" 0))\n\n"
557 "(define (make-ball-type ball-color)\n"
558 " (make-struct ball-root 0\n"
559 " (make-struct-layout \"pw\")\n"
560 " (lambda (ball port)\n"
561 " (format port \"#<a ~A ball owned by ~A>\"\n"
562 " (color ball)\n"
563 " (owner ball)))\n"
564 " ball-color))\n"
565 "(define (color ball) (struct-ref (struct-vtable ball) vtable-offset-user))\n"
566 "(define (owner ball) (struct-ref ball 0))\n\n"
567 "(define red (make-ball-type 'red))\n"
568 "(define green (make-ball-type 'green))\n\n"
569 "(define (make-ball type owner) (make-struct type 0 owner))\n\n"
570 "(define ball (make-ball green 'Nisse))\n"
571 "ball @result{} #<a green ball owned by Nisse>\n"
9401323e 572 "@end lisp")
1bbd0b84 573#define FUNC_NAME s_scm_make_vtable_vtable
0f2d19dd 574{
696ac4df
LC
575 SCM fields, layout, obj;
576 size_t basic_size, n_tail, i, n_init;
66e78727
AW
577 long ilen;
578 scm_t_bits *v;
0f2d19dd 579
d1ca2c64 580 SCM_VALIDATE_STRING (1, user_fields);
66e78727
AW
581 ilen = scm_ilength (init);
582 if (ilen < 0)
583 SCM_MISC_ERROR ("Rest arguments do not form a proper list.", SCM_EOL);
584
585 n_init = (size_t)ilen + 1; /* + 1 for the layout */
586
587 /* best to use alloca, but init could be big, so hack to avoid a possible
588 stack overflow */
589 if (n_init < 64)
590 v = alloca (n_init * sizeof(scm_t_bits));
591 else
592 v = scm_gc_malloc (n_init * sizeof(scm_t_bits), "struct");
0f2d19dd 593
1afff620
KN
594 fields = scm_string_append (scm_list_2 (required_vtable_fields,
595 user_fields));
0f2d19dd 596 layout = scm_make_struct_layout (fields);
cc95e00a 597 basic_size = scm_i_symbol_length (layout) / 2;
66e78727
AW
598 n_tail = scm_to_size_t (tail_array_size);
599
600 i = 0;
601 v[i++] = SCM_UNPACK (layout);
602 for (; i < n_init; i++, init = SCM_CDR (init))
603 v[i] = SCM_UNPACK (SCM_CAR (init));
604
9de87eea 605 SCM_CRITICAL_SECTION_START;
96a44c1c 606 obj = scm_i_alloc_struct (NULL, basic_size + n_tail);
696ac4df
LC
607 /* Make it so that the vtable of OBJ is itself. */
608 SCM_SET_CELL_WORD_0 (obj, (scm_t_bits) SCM_STRUCT_DATA (obj) | scm_tc3_struct);
9de87eea 609 SCM_CRITICAL_SECTION_END;
696ac4df 610
66e78727 611 scm_struct_init (obj, layout, n_tail, n_init, v);
b6cf4d02 612 SCM_SET_VTABLE_FLAGS (obj, SCM_VTABLE_FLAG_VTABLE);
696ac4df 613
b6cf4d02 614 return obj;
0f2d19dd 615}
1bbd0b84 616#undef FUNC_NAME
0f2d19dd 617
d15ad007 618
651f2cd2
KR
619SCM_DEFINE (scm_make_vtable, "make-vtable", 1, 1, 0,
620 (SCM fields, SCM printer),
621 "Create a vtable, for creating structures with the given\n"
622 "@var{fields}.\n"
623 "\n"
624 "The optional @var{printer} argument is a function to be called\n"
625 "@code{(@var{printer} struct port)} on the structures created.\n"
626 "It should look at @var{struct} and write to @var{port}.")
627#define FUNC_NAME s_scm_make_vtable
628{
629 if (SCM_UNBNDP (printer))
630 printer = SCM_BOOL_F;
631
db5ed685 632 return scm_make_struct (scm_standard_vtable_vtable, SCM_INUM0,
651f2cd2
KR
633 scm_list_2 (scm_make_struct_layout (fields),
634 printer));
635}
636#undef FUNC_NAME
637
638
d15ad007
LC
639/* Return true if S1 and S2 are equal structures, i.e., if their vtable and
640 contents are the same. Field protections are honored. Thus, it is an
641 error to test the equality of structures that contain opaque fields. */
642SCM
643scm_i_struct_equalp (SCM s1, SCM s2)
644#define FUNC_NAME "scm_i_struct_equalp"
645{
646 SCM vtable1, vtable2, layout;
647 size_t struct_size, field_num;
648
649 SCM_VALIDATE_STRUCT (1, s1);
650 SCM_VALIDATE_STRUCT (2, s2);
651
652 vtable1 = SCM_STRUCT_VTABLE (s1);
653 vtable2 = SCM_STRUCT_VTABLE (s2);
654
655 if (!scm_is_eq (vtable1, vtable2))
656 return SCM_BOOL_F;
657
658 layout = SCM_STRUCT_LAYOUT (s1);
659 struct_size = scm_i_symbol_length (layout) / 2;
660
661 for (field_num = 0; field_num < struct_size; field_num++)
662 {
663 SCM s_field_num;
664 SCM field1, field2;
665
666 /* We have to use `scm_struct_ref ()' here so that fields are accessed
667 consistently, notably wrt. field types and access rights. */
668 s_field_num = scm_from_size_t (field_num);
669 field1 = scm_struct_ref (s1, s_field_num);
670 field2 = scm_struct_ref (s2, s_field_num);
671
42ddb3cb
LC
672 /* Self-referencing fields (type `s') must be skipped to avoid infinite
673 recursion. */
674 if (!(scm_is_eq (field1, s1) && (scm_is_eq (field2, s2))))
675 if (scm_is_false (scm_equal_p (field1, field2)))
676 return SCM_BOOL_F;
d15ad007
LC
677 }
678
42ddb3cb
LC
679 /* FIXME: Tail elements should be tested for equality. */
680
d15ad007
LC
681 return SCM_BOOL_T;
682}
683#undef FUNC_NAME
684
685
0f2d19dd
JB
686\f
687
688
a1ec6916 689SCM_DEFINE (scm_struct_ref, "struct-ref", 2, 0, 0,
1bbd0b84 690 (SCM handle, SCM pos),
b6cf4d02 691 "Access the @var{n}th field of @var{struct}.\n\n"
b380b885
MD
692 "If the field is of type 'p', then it can be set to an arbitrary value.\n\n"
693 "If the field is of type 'u', then it can only be set to a non-negative\n"
694 "integer value small enough to fit in one machine word.")
1bbd0b84 695#define FUNC_NAME s_scm_struct_ref
0f2d19dd 696{
aa42c036
LC
697 SCM vtable, answer = SCM_UNDEFINED;
698 scm_t_bits *data;
a55c2b68 699 size_t p;
0f2d19dd 700
34d19ef6 701 SCM_VALIDATE_STRUCT (1, handle);
0f2d19dd 702
aa42c036 703 vtable = SCM_STRUCT_VTABLE (handle);
0f2d19dd 704 data = SCM_STRUCT_DATA (handle);
a55c2b68 705 p = scm_to_size_t (pos);
0f2d19dd 706
aa42c036
LC
707 if (SCM_LIKELY (SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_SIMPLE)
708 && p < SCM_STRUCT_DATA_REF (vtable, scm_vtable_index_size)))
e03b7f73
LC
709 /* The fast path: HANDLE is a struct with only "p" fields. */
710 answer = SCM_PACK (data[p]);
2c36c351 711 else
0f2d19dd 712 {
aa42c036
LC
713 SCM layout;
714 size_t layout_len, n_fields;
715 scm_t_wchar field_type = 0;
716
717 layout = SCM_STRUCT_LAYOUT (handle);
718 layout_len = scm_i_symbol_length (layout);
719 n_fields = layout_len / 2;
720
721 if (SCM_LAYOUT_TAILP (scm_i_symbol_ref (layout, layout_len - 1)))
722 n_fields += data[n_fields - 1];
723
724 SCM_ASSERT_RANGE (1, pos, p < n_fields);
725
726 if (p * 2 < layout_len)
727 {
728 scm_t_wchar ref;
729 field_type = scm_i_symbol_ref (layout, p * 2);
730 ref = scm_i_symbol_ref (layout, p * 2 + 1);
731 if ((ref != 'r') && (ref != 'w') && (ref != 'h'))
732 {
733 if ((ref == 'R') || (ref == 'W'))
734 field_type = 'u';
735 else
736 SCM_MISC_ERROR ("ref denied for field ~A", scm_list_1 (pos));
737 }
738 }
739 else if (scm_i_symbol_ref (layout, layout_len - 1) != 'O')
740 field_type = scm_i_symbol_ref(layout, layout_len - 2);
741 else
742 SCM_MISC_ERROR ("ref denied for field ~A", scm_list_1 (pos));
743
744 switch (field_type)
745 {
746 case 'u':
747 answer = scm_from_ulong (data[p]);
748 break;
0f2d19dd
JB
749
750#if 0
aa42c036
LC
751 case 'i':
752 answer = scm_from_long (data[p]);
753 break;
0f2d19dd 754
aa42c036
LC
755 case 'd':
756 answer = scm_make_real (*((double *)&(data[p])));
757 break;
0f2d19dd
JB
758#endif
759
aa42c036
LC
760 case 's':
761 case 'p':
762 answer = SCM_PACK (data[p]);
763 break;
0f2d19dd
JB
764
765
aa42c036
LC
766 default:
767 SCM_MISC_ERROR ("unrecognized field type: ~S",
768 scm_list_1 (SCM_MAKE_CHAR (field_type)));
769 }
0f2d19dd
JB
770 }
771
772 return answer;
773}
1bbd0b84 774#undef FUNC_NAME
0f2d19dd
JB
775
776
a1ec6916 777SCM_DEFINE (scm_struct_set_x, "struct-set!", 3, 0, 0,
1bbd0b84 778 (SCM handle, SCM pos, SCM val),
e3239868
DH
779 "Set the slot of the structure @var{handle} with index @var{pos}\n"
780 "to @var{val}. Signal an error if the slot can not be written\n"
781 "to.")
1bbd0b84 782#define FUNC_NAME s_scm_struct_set_x
0f2d19dd 783{
aa42c036
LC
784 SCM vtable;
785 scm_t_bits *data;
a55c2b68 786 size_t p;
0f2d19dd 787
34d19ef6 788 SCM_VALIDATE_STRUCT (1, handle);
0f2d19dd 789
aa42c036 790 vtable = SCM_STRUCT_VTABLE (handle);
0f2d19dd 791 data = SCM_STRUCT_DATA (handle);
a55c2b68 792 p = scm_to_size_t (pos);
0f2d19dd 793
aa42c036
LC
794 if (SCM_LIKELY (SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_SIMPLE)
795 && SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_SIMPLE_RW)
796 && p < SCM_STRUCT_DATA_REF (vtable, scm_vtable_index_size)))
e03b7f73 797 /* The fast path: HANDLE is a struct with only "pw" fields. */
aa42c036
LC
798 data[p] = SCM_UNPACK (val);
799 else
800 {
801 SCM layout;
802 size_t layout_len, n_fields;
803 scm_t_wchar field_type = 0;
0f2d19dd 804
aa42c036
LC
805 layout = SCM_STRUCT_LAYOUT (handle);
806 layout_len = scm_i_symbol_length (layout);
807 n_fields = layout_len / 2;
0f2d19dd 808
aa42c036
LC
809 if (SCM_LAYOUT_TAILP (scm_i_symbol_ref (layout, layout_len - 1)))
810 n_fields += data[n_fields - 1];
811
812 SCM_ASSERT_RANGE (1, pos, p < n_fields);
813
814 if (p * 2 < layout_len)
815 {
816 char set_x;
817 field_type = scm_i_symbol_ref (layout, p * 2);
818 set_x = scm_i_symbol_ref (layout, p * 2 + 1);
819 if (set_x != 'w' && set_x != 'h')
820 SCM_MISC_ERROR ("set! denied for field ~A", scm_list_1 (pos));
821 }
822 else if (scm_i_symbol_ref (layout, layout_len - 1) == 'W')
823 field_type = scm_i_symbol_ref (layout, layout_len - 2);
824 else
1afff620 825 SCM_MISC_ERROR ("set! denied for field ~A", scm_list_1 (pos));
aa42c036
LC
826
827 switch (field_type)
828 {
829 case 'u':
830 data[p] = SCM_NUM2ULONG (3, val);
831 break;
0f2d19dd
JB
832
833#if 0
aa42c036
LC
834 case 'i':
835 data[p] = SCM_NUM2LONG (3, val);
836 break;
0f2d19dd 837
aa42c036
LC
838 case 'd':
839 *((double *)&(data[p])) = scm_num2dbl (val, (char *)SCM_ARG3);
840 break;
0f2d19dd
JB
841#endif
842
aa42c036
LC
843 case 'p':
844 data[p] = SCM_UNPACK (val);
845 break;
0f2d19dd 846
aa42c036
LC
847 case 's':
848 SCM_MISC_ERROR ("self fields immutable", SCM_EOL);
0f2d19dd 849
aa42c036
LC
850 default:
851 SCM_MISC_ERROR ("unrecognized field type: ~S",
852 scm_list_1 (SCM_MAKE_CHAR (field_type)));
853 }
0f2d19dd
JB
854 }
855
856 return val;
857}
1bbd0b84 858#undef FUNC_NAME
0f2d19dd
JB
859
860
a1ec6916 861SCM_DEFINE (scm_struct_vtable, "struct-vtable", 1, 0, 0,
1bbd0b84 862 (SCM handle),
b380b885 863 "Return the vtable structure that describes the type of @var{struct}.")
1bbd0b84 864#define FUNC_NAME s_scm_struct_vtable
0f2d19dd 865{
34d19ef6 866 SCM_VALIDATE_STRUCT (1, handle);
0f2d19dd
JB
867 return SCM_STRUCT_VTABLE (handle);
868}
1bbd0b84 869#undef FUNC_NAME
0f2d19dd
JB
870
871
a1ec6916 872SCM_DEFINE (scm_struct_vtable_tag, "struct-vtable-tag", 1, 0, 0,
1bbd0b84 873 (SCM handle),
e3239868 874 "Return the vtable tag of the structure @var{handle}.")
1bbd0b84 875#define FUNC_NAME s_scm_struct_vtable_tag
0f2d19dd 876{
34d19ef6 877 SCM_VALIDATE_VTABLE (1, handle);
b9bd8526 878 return scm_from_ulong (((unsigned long)SCM_STRUCT_DATA (handle)) >> 3);
98d5f601 879}
1bbd0b84 880#undef FUNC_NAME
98d5f601
MD
881
882/* {Associating names and classes with vtables}
883 *
884 * The name of a vtable should probably be stored as a slot. This is
885 * a backward compatible solution until agreement has been achieved on
886 * how to associate names with vtables.
887 */
888
c014a02e 889unsigned long
d587c9e8 890scm_struct_ihashq (SCM obj, unsigned long n, void *closure)
98d5f601 891{
ad196599
MD
892 /* The length of the hash table should be a relative prime it's not
893 necessary to shift down the address. */
f1267706 894 return SCM_UNPACK (obj) % n;
98d5f601
MD
895}
896
897SCM
898scm_struct_create_handle (SCM obj)
899{
900 SCM handle = scm_hash_fn_create_handle_x (scm_struct_table,
901 obj,
902 SCM_BOOL_F,
903 scm_struct_ihashq,
d587c9e8 904 (scm_t_assoc_fn) scm_sloppy_assq,
98d5f601 905 0);
7888309b 906 if (scm_is_false (SCM_CDR (handle)))
98d5f601
MD
907 SCM_SETCDR (handle, scm_cons (SCM_BOOL_F, SCM_BOOL_F));
908 return handle;
909}
910
a1ec6916 911SCM_DEFINE (scm_struct_vtable_name, "struct-vtable-name", 1, 0, 0,
1bbd0b84 912 (SCM vtable),
e3239868 913 "Return the name of the vtable @var{vtable}.")
1bbd0b84 914#define FUNC_NAME s_scm_struct_vtable_name
98d5f601 915{
34d19ef6 916 SCM_VALIDATE_VTABLE (1, vtable);
98d5f601
MD
917 return SCM_STRUCT_TABLE_NAME (SCM_CDR (scm_struct_create_handle (vtable)));
918}
1bbd0b84 919#undef FUNC_NAME
98d5f601 920
a1ec6916 921SCM_DEFINE (scm_set_struct_vtable_name_x, "set-struct-vtable-name!", 2, 0, 0,
1bbd0b84 922 (SCM vtable, SCM name),
e3239868 923 "Set the name of the vtable @var{vtable} to @var{name}.")
1bbd0b84 924#define FUNC_NAME s_scm_set_struct_vtable_name_x
98d5f601 925{
34d19ef6
HWN
926 SCM_VALIDATE_VTABLE (1, vtable);
927 SCM_VALIDATE_SYMBOL (2, name);
98d5f601
MD
928 SCM_SET_STRUCT_TABLE_NAME (SCM_CDR (scm_struct_create_handle (vtable)),
929 name);
930 return SCM_UNSPECIFIED;
0f2d19dd 931}
1bbd0b84 932#undef FUNC_NAME
0f2d19dd
JB
933
934
935\f
936
bafcafb2 937void
1bbd0b84 938scm_print_struct (SCM exp, SCM port, scm_print_state *pstate)
bafcafb2 939{
7888309b 940 if (scm_is_true (scm_procedure_p (SCM_STRUCT_PRINTER (exp))))
4bfdf158
MD
941 scm_printer_apply (SCM_STRUCT_PRINTER (exp), exp, port, pstate);
942 else
bafcafb2 943 {
a1ae1799
MD
944 SCM vtable = SCM_STRUCT_VTABLE (exp);
945 SCM name = scm_struct_vtable_name (vtable);
946 scm_puts ("#<", port);
7888309b 947 if (scm_is_true (name))
b6cf4d02
AW
948 {
949 scm_display (name, port);
950 scm_putc (' ', port);
951 }
a1ae1799 952 else
b6cf4d02
AW
953 {
954 if (SCM_VTABLE_FLAG_IS_SET (vtable, SCM_VTABLE_FLAG_VTABLE))
955 scm_puts ("vtable:", port);
956 else
957 scm_puts ("struct:", port);
958 scm_uintprint (SCM_UNPACK (vtable), 16, port);
959 scm_putc (' ', port);
960 scm_write (SCM_VTABLE_LAYOUT (vtable), port);
961 scm_putc (' ', port);
962 }
0345e278 963 scm_uintprint (SCM_UNPACK (exp), 16, port);
b6cf4d02
AW
964 /* hackety hack */
965 if (SCM_STRUCT_APPLICABLE_P (exp))
966 {
967 if (scm_is_true (SCM_STRUCT_PROCEDURE (exp)))
968 {
969 scm_puts (" proc: ", port);
970 if (scm_is_true (scm_procedure_p (SCM_STRUCT_PROCEDURE (exp))))
971 scm_write (SCM_STRUCT_PROCEDURE (exp), port);
972 else
973 scm_puts ("(not a procedure?)", port);
974 }
975 if (SCM_STRUCT_SETTER_P (exp))
976 {
977 scm_puts (" setter: ", port);
978 scm_write (SCM_STRUCT_SETTER (exp), port);
979 }
980 }
b7f3516f 981 scm_putc ('>', port);
bafcafb2 982 }
bafcafb2 983}
1cc91f1b 984
0f2d19dd
JB
985void
986scm_init_struct ()
0f2d19dd 987{
01e74380
LC
988 /* The first word of a struct is equal to `SCM_STRUCT_DATA (vtable) +
989 scm_tc3_struct', and `SCM_STRUCT_DATA (vtable)' is 2 words after VTABLE by
990 default. */
991 GC_REGISTER_DISPLACEMENT (2 * sizeof (scm_t_bits) + scm_tc3_struct);
b6cf4d02 992
227eff6a
LC
993 /* In the general case, `SCM_STRUCT_DATA (obj)' points 2 words after the
994 beginning of a GC-allocated region; that region is different from that of
995 OBJ once OBJ has undergone class redefinition. */
996 GC_REGISTER_DISPLACEMENT (2 * sizeof (scm_t_bits));
997
b6cf4d02
AW
998 scm_struct_table = scm_make_weak_key_hash_table (scm_from_int (31));
999 required_vtable_fields = scm_from_locale_string (SCM_VTABLE_BASE_LAYOUT);
1000 required_applicable_fields = scm_from_locale_string (SCM_APPLICABLE_BASE_LAYOUT);
1001 required_applicable_with_setter_fields = scm_from_locale_string (SCM_APPLICABLE_WITH_SETTER_BASE_LAYOUT);
651f2cd2 1002
db5ed685 1003 scm_standard_vtable_vtable =
b6cf4d02
AW
1004 scm_make_vtable_vtable (scm_nullstr, SCM_INUM0, SCM_EOL);
1005
1006 scm_applicable_struct_vtable_vtable =
db5ed685 1007 scm_make_struct (scm_standard_vtable_vtable, SCM_INUM0,
b6cf4d02
AW
1008 scm_list_1 (scm_make_struct_layout (required_vtable_fields)));
1009 SCM_SET_VTABLE_FLAGS (scm_applicable_struct_vtable_vtable,
1010 SCM_VTABLE_FLAG_APPLICABLE_VTABLE);
1011 scm_c_define ("<applicable-struct-vtable>", scm_applicable_struct_vtable_vtable);
1012
1013 scm_applicable_struct_with_setter_vtable_vtable =
db5ed685 1014 scm_make_struct (scm_standard_vtable_vtable, SCM_INUM0,
b6cf4d02
AW
1015 scm_list_1 (scm_make_struct_layout (required_vtable_fields)));
1016 SCM_SET_VTABLE_FLAGS (scm_applicable_struct_with_setter_vtable_vtable,
1017 SCM_VTABLE_FLAG_APPLICABLE_VTABLE | SCM_VTABLE_FLAG_SETTER_VTABLE);
1018 scm_c_define ("<applicable-struct-with-setter-vtable>", scm_applicable_struct_with_setter_vtable_vtable);
651f2cd2 1019
e11e83f3 1020 scm_c_define ("vtable-index-layout", scm_from_int (scm_vtable_index_layout));
86d31dfe 1021 scm_c_define ("vtable-index-printer",
b6cf4d02 1022 scm_from_int (scm_vtable_index_instance_printer));
e11e83f3 1023 scm_c_define ("vtable-offset-user", scm_from_int (scm_vtable_offset_user));
a0599745 1024#include "libguile/struct.x"
0f2d19dd 1025}
89e00824
ML
1026
1027/*
1028 Local Variables:
1029 c-file-style: "gnu"
1030 End:
1031*/