Initial revision
[bpt/guile.git] / libguile / struct.c
1 /* Copyright (C) 1996,1997,1998,1999,2000,2001 Free Software Foundation, Inc.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
40 * If you do not wish that, delete this exception notice. */
41
42
43 \f
44
45 #include "libguile/_scm.h"
46 #include "libguile/chars.h"
47 #include "libguile/eval.h"
48 #include "libguile/alist.h"
49 #include "libguile/weaks.h"
50 #include "libguile/hashtab.h"
51 #include "libguile/ports.h"
52 #include "libguile/strings.h"
53
54 #include "libguile/validate.h"
55 #include "libguile/struct.h"
56
57 #ifdef HAVE_STRING_H
58 #include <string.h>
59 #endif
60
61 \f
62
63 static SCM required_vtable_fields = SCM_BOOL_F;
64 SCM scm_struct_table;
65
66 \f
67 SCM_DEFINE (scm_make_struct_layout, "make-struct-layout", 1, 0, 0,
68 (SCM fields),
69 "Return a new structure layout object.\n\n"
70 "@var{fields} must be a string made up of pairs of characters\n"
71 "strung together. The first character of each pair describes a field\n"
72 "type, the second a field protection. Allowed types are 'p' for\n"
73 "GC-protected Scheme data, 'u' for unprotected binary data, and 's' for\n"
74 "a field that points to the structure itself. Allowed protections\n"
75 "are 'w' for mutable fields, 'r' for read-only fields, and 'o' for opaque\n"
76 "fields. The last field protection specification may be capitalized to\n"
77 "indicate that the field is a tail-array.")
78 #define FUNC_NAME s_scm_make_struct_layout
79 {
80 SCM new_sym;
81 SCM_VALIDATE_STRING (1, fields);
82
83 { /* scope */
84 char * field_desc;
85 size_t len;
86 int x;
87
88 len = SCM_STRING_LENGTH (fields);
89 if (len % 2 == 1)
90 SCM_MISC_ERROR ("odd length field specification: ~S",
91 scm_list_1 (fields));
92
93 field_desc = SCM_STRING_CHARS (fields);
94
95 for (x = 0; x < len; x += 2)
96 {
97 switch (field_desc[x])
98 {
99 case 'u':
100 case 'p':
101 #if 0
102 case 'i':
103 case 'd':
104 #endif
105 case 's':
106 break;
107 default:
108 SCM_MISC_ERROR ("unrecognized field type: ~S",
109 scm_list_1 (SCM_MAKE_CHAR (field_desc[x])));
110 }
111
112 switch (field_desc[x + 1])
113 {
114 case 'w':
115 if (field_desc[x] == 's')
116 SCM_MISC_ERROR ("self fields not writable", SCM_EOL);
117 case 'r':
118 case 'o':
119 break;
120 case 'R':
121 case 'W':
122 case 'O':
123 if (field_desc[x] == 's')
124 SCM_MISC_ERROR ("self fields not allowed in tail array",
125 SCM_EOL);
126 if (x != len - 2)
127 SCM_MISC_ERROR ("tail array field must be last field in layout",
128 SCM_EOL);
129 break;
130 default:
131 SCM_MISC_ERROR ("unrecognized ref specification: ~S",
132 scm_list_1 (SCM_MAKE_CHAR (field_desc[x + 1])));
133 }
134 #if 0
135 if (field_desc[x] == 'd')
136 {
137 if (field_desc[x + 2] != '-')
138 SCM_MISC_ERROR ("missing dash field at position ~A",
139 scm_list_1 (SCM_MAKINUM (x / 2)));
140 x += 2;
141 goto recheck_ref;
142 }
143 #endif
144 }
145 new_sym = scm_mem2symbol (field_desc, len);
146 }
147 return scm_return_first (new_sym, fields);
148 }
149 #undef FUNC_NAME
150
151 \f
152
153
154
155 static void
156 scm_struct_init (SCM handle, SCM layout, scm_t_bits * mem, int tail_elts, SCM inits)
157 {
158 unsigned char * fields_desc = (unsigned char *) SCM_SYMBOL_CHARS (layout) - 2;
159 unsigned char prot = 0;
160 int n_fields = SCM_SYMBOL_LENGTH (layout) / 2;
161 int tailp = 0;
162
163 while (n_fields)
164 {
165 if (!tailp)
166 {
167 fields_desc += 2;
168 prot = fields_desc[1];
169 if (SCM_LAYOUT_TAILP (prot))
170 {
171 tailp = 1;
172 prot = prot == 'R' ? 'r' : prot == 'W' ? 'w' : 'o';
173 *mem++ = tail_elts;
174 n_fields += tail_elts - 1;
175 if (n_fields == 0)
176 break;
177 }
178 }
179
180 switch (*fields_desc)
181 {
182 #if 0
183 case 'i':
184 if ((prot != 'r' && prot != 'w') || inits == SCM_EOL)
185 *mem = 0;
186 else
187 {
188 *mem = scm_num2long (SCM_CAR (inits), SCM_ARGn, "scm_struct_init");
189 inits = SCM_CDR (inits);
190 }
191 break;
192 #endif
193
194 case 'u':
195 if ((prot != 'r' && prot != 'w') || SCM_NULLP (inits))
196 *mem = 0;
197 else
198 {
199 *mem = scm_num2ulong (SCM_CAR (inits),
200 SCM_ARGn,
201 "scm_struct_init");
202 inits = SCM_CDR (inits);
203 }
204 break;
205
206 case 'p':
207 if ((prot != 'r' && prot != 'w') || SCM_NULLP (inits))
208 *mem = SCM_UNPACK (SCM_BOOL_F);
209 else
210 {
211 *mem = SCM_UNPACK (SCM_CAR (inits));
212 inits = SCM_CDR (inits);
213 }
214
215 break;
216
217 #if 0
218 case 'd':
219 if ((prot != 'r' && prot != 'w') || inits == SCM_EOL)
220 *((double *)mem) = 0.0;
221 else
222 {
223 *mem = scm_num2dbl (SCM_CAR (inits), "scm_struct_init");
224 inits = SCM_CDR (inits);
225 }
226 fields_desc += 2;
227 break;
228 #endif
229
230 case 's':
231 *mem = SCM_UNPACK (handle);
232 break;
233 }
234
235 n_fields--;
236 mem++;
237 }
238 }
239
240
241 SCM_DEFINE (scm_struct_p, "struct?", 1, 0, 0,
242 (SCM x),
243 "Return @code{#t} iff @var{x} is a structure object, else\n"
244 "@code{#f}.")
245 #define FUNC_NAME s_scm_struct_p
246 {
247 return SCM_BOOL(SCM_STRUCTP (x));
248 }
249 #undef FUNC_NAME
250
251 SCM_DEFINE (scm_struct_vtable_p, "struct-vtable?", 1, 0, 0,
252 (SCM x),
253 "Return @code{#t} iff @var{x} is a vtable structure.")
254 #define FUNC_NAME s_scm_struct_vtable_p
255 {
256 SCM layout;
257 scm_t_bits * mem;
258
259 if (!SCM_STRUCTP (x))
260 return SCM_BOOL_F;
261
262 layout = SCM_STRUCT_LAYOUT (x);
263
264 if (SCM_SYMBOL_LENGTH (layout) < SCM_STRING_LENGTH (required_vtable_fields))
265 return SCM_BOOL_F;
266
267 if (strncmp (SCM_SYMBOL_CHARS (layout), SCM_STRING_CHARS (required_vtable_fields),
268 SCM_STRING_LENGTH (required_vtable_fields)))
269 return SCM_BOOL_F;
270
271 mem = SCM_STRUCT_DATA (x);
272
273 return SCM_BOOL (SCM_SYMBOLP (SCM_PACK (mem[scm_vtable_index_layout])));
274 }
275 #undef FUNC_NAME
276
277
278 /* All struct data must be allocated at an address whose bottom three
279 bits are zero. This is because the tag for a struct lives in the
280 bottom three bits of the struct's car, and the upper bits point to
281 the data of its vtable, which is a struct itself. Thus, if the
282 address of that data doesn't end in three zeros, tagging it will
283 destroy the pointer.
284
285 This function allocates a block of memory, and returns a pointer at
286 least scm_struct_n_extra_words words into the block. Furthermore,
287 it guarantees that that pointer's least three significant bits are
288 all zero.
289
290 The argument n_words should be the number of words that should
291 appear after the returned address. (That is, it shouldn't include
292 scm_struct_n_extra_words.)
293
294 This function initializes the following fields of the struct:
295
296 scm_struct_i_ptr --- the actual start of the block of memory; the
297 address you should pass to 'free' to dispose of the block.
298 This field allows us to both guarantee that the returned
299 address is divisible by eight, and allow the GC to free the
300 block.
301
302 scm_struct_i_n_words --- the number of words allocated to the
303 block, including the extra fields. This is used by the GC.
304
305 Ugh. */
306
307
308 scm_t_bits *
309 scm_alloc_struct (int n_words, int n_extra, char *who)
310 {
311 int size = sizeof (scm_t_bits) * (n_words + n_extra) + 7;
312 void * block = scm_must_malloc (size, who);
313
314 /* Adjust the pointer to hide the extra words. */
315 scm_t_bits * p = (scm_t_bits *) block + n_extra;
316
317 /* Adjust it even further so it's aligned on an eight-byte boundary. */
318 p = (scm_t_bits *) (((scm_t_bits) p + 7) & ~7);
319
320 /* Initialize a few fields as described above. */
321 p[scm_struct_i_free] = (scm_t_bits) scm_struct_free_standard;
322 p[scm_struct_i_ptr] = (scm_t_bits) block;
323 p[scm_struct_i_n_words] = n_words;
324 p[scm_struct_i_flags] = 0;
325
326 return p;
327 }
328
329 size_t
330 scm_struct_free_0 (scm_t_bits * vtable SCM_UNUSED,
331 scm_t_bits * data SCM_UNUSED)
332 {
333 return 0;
334 }
335
336 size_t
337 scm_struct_free_light (scm_t_bits * vtable, scm_t_bits * data)
338 {
339 scm_must_free (data);
340 return vtable [scm_struct_i_size] & ~SCM_STRUCTF_MASK;
341 }
342
343 size_t
344 scm_struct_free_standard (scm_t_bits * vtable SCM_UNUSED, scm_t_bits * data)
345 {
346 size_t n = (data[scm_struct_i_n_words] + scm_struct_n_extra_words)
347 * sizeof (scm_t_bits) + 7;
348 scm_must_free ((void *) data[scm_struct_i_ptr]);
349 return n;
350 }
351
352 size_t
353 scm_struct_free_entity (scm_t_bits * vtable SCM_UNUSED, scm_t_bits * data)
354 {
355 size_t n = (data[scm_struct_i_n_words] + scm_struct_entity_n_extra_words)
356 * sizeof (scm_t_bits) + 7;
357 scm_must_free ((void *) data[scm_struct_i_ptr]);
358 return n;
359 }
360
361 static void *
362 scm_struct_gc_init (void *dummy1 SCM_UNUSED,
363 void *dummy2 SCM_UNUSED,
364 void *dummy3 SCM_UNUSED)
365 {
366 scm_structs_to_free = SCM_EOL;
367 return 0;
368 }
369
370 static void *
371 scm_free_structs (void *dummy1 SCM_UNUSED,
372 void *dummy2 SCM_UNUSED,
373 void *dummy3 SCM_UNUSED)
374 {
375 SCM newchain = scm_structs_to_free;
376 do
377 {
378 /* Mark vtables in GC chain. GC mark set means delay freeing. */
379 SCM chain = newchain;
380 while (!SCM_NULLP (chain))
381 {
382 SCM vtable = SCM_STRUCT_VTABLE (chain);
383 if (SCM_STRUCT_GC_CHAIN (vtable) != 0 && vtable != chain)
384 SCM_SETGCMARK (vtable);
385 chain = SCM_STRUCT_GC_CHAIN (chain);
386 }
387 /* Free unmarked structs. */
388 chain = newchain;
389 newchain = SCM_EOL;
390 while (!SCM_NULLP (chain))
391 {
392 SCM obj = chain;
393 chain = SCM_STRUCT_GC_CHAIN (chain);
394 if (SCM_GCMARKP (obj))
395 {
396 SCM_CLRGCMARK (obj);
397 SCM_SET_STRUCT_GC_CHAIN (obj, newchain);
398 newchain = obj;
399 }
400 else
401 {
402 /* XXX - use less explicit code. */
403 scm_t_bits word0 = SCM_CELL_WORD_0 (obj) - scm_tc3_struct;
404 scm_t_bits * vtable_data = (scm_t_bits *) word0;
405 scm_t_bits * data = SCM_STRUCT_DATA (obj);
406 scm_t_struct_free free_struct_data
407 = ((scm_t_struct_free) vtable_data[scm_struct_i_free]);
408 SCM_SET_CELL_TYPE (obj, scm_tc_free_cell);
409 free_struct_data (vtable_data, data);
410 }
411 }
412 }
413 while (!SCM_NULLP (newchain));
414 return 0;
415 }
416
417 SCM_DEFINE (scm_make_struct, "make-struct", 2, 0, 1,
418 (SCM vtable, SCM tail_array_size, SCM init),
419 "Create a new structure.\n\n"
420 "@var{type} must be a vtable structure (@pxref{Vtables}).\n\n"
421 "@var{tail-elts} must be a non-negative integer. If the layout\n"
422 "specification indicated by @var{type} includes a tail-array,\n"
423 "this is the number of elements allocated to that array.\n\n"
424 "The @var{init1}, @dots{} are optional arguments describing how\n"
425 "successive fields of the structure should be initialized. Only fields\n"
426 "with protection 'r' or 'w' can be initialized, except for fields of\n"
427 "type 's', which are automatically initialized to point to the new\n"
428 "structure itself; fields with protection 'o' can not be initialized by\n"
429 "Scheme programs.\n\n"
430 "If fewer optional arguments than initializable fields are supplied,\n"
431 "fields of type 'p' get default value #f while fields of type 'u' are\n"
432 "initialized to 0.\n\n"
433 "Structs are currently the basic representation for record-like data\n"
434 "structures in Guile. The plan is to eventually replace them with a\n"
435 "new representation which will at the same time be easier to use and\n"
436 "more powerful.\n\n"
437 "For more information, see the documentation for @code{make-vtable-vtable}.")
438 #define FUNC_NAME s_scm_make_struct
439 {
440 SCM layout;
441 int basic_size;
442 int tail_elts;
443 scm_t_bits * data;
444 SCM handle;
445
446 SCM_VALIDATE_VTABLE (1,vtable);
447 SCM_VALIDATE_INUM (2,tail_array_size);
448 SCM_VALIDATE_REST_ARGUMENT (init);
449
450 layout = SCM_PACK (SCM_STRUCT_DATA (vtable) [scm_vtable_index_layout]);
451 basic_size = SCM_SYMBOL_LENGTH (layout) / 2;
452 tail_elts = SCM_INUM (tail_array_size);
453 SCM_DEFER_INTS;
454 if (SCM_STRUCT_DATA (vtable)[scm_struct_i_flags] & SCM_STRUCTF_ENTITY)
455 {
456 data = scm_alloc_struct (basic_size + tail_elts,
457 scm_struct_entity_n_extra_words,
458 "make-struct");
459 data[scm_struct_i_procedure] = SCM_UNPACK (SCM_BOOL_F);
460 data[scm_struct_i_setter] = SCM_UNPACK (SCM_BOOL_F);
461 }
462 else
463 data = scm_alloc_struct (basic_size + tail_elts,
464 scm_struct_n_extra_words,
465 "make-struct");
466 handle = scm_alloc_double_cell ((((scm_t_bits) SCM_STRUCT_DATA (vtable))
467 + scm_tc3_struct),
468 (scm_t_bits) data, 0, 0);
469 scm_struct_init (handle, layout, data, tail_elts, init);
470 SCM_ALLOW_INTS;
471 return handle;
472 }
473 #undef FUNC_NAME
474
475
476
477 SCM_DEFINE (scm_make_vtable_vtable, "make-vtable-vtable", 2, 0, 1,
478 (SCM user_fields, SCM tail_array_size, SCM init),
479 "Return a new, self-describing vtable structure.\n\n"
480 "@var{user-fields} is a string describing user defined fields of the\n"
481 "vtable beginning at index @code{vtable-offset-user}\n"
482 "(see @code{make-struct-layout}).\n\n"
483 "@var{tail-size} specifies the size of the tail-array (if any) of\n"
484 "this vtable.\n\n"
485 "@var{init1}, @dots{} are the optional initializers for the fields of\n"
486 "the vtable.\n\n"
487 "Vtables have one initializable system field---the struct printer.\n"
488 "This field comes before the user fields in the initializers passed\n"
489 "to @code{make-vtable-vtable} and @code{make-struct}, and thus works as\n"
490 "a third optional argument to @code{make-vtable-vtable} and a fourth to\n"
491 "@code{make-struct} when creating vtables:\n\n"
492 "If the value is a procedure, it will be called instead of the standard\n"
493 "printer whenever a struct described by this vtable is printed.\n"
494 "The procedure will be called with arguments STRUCT and PORT.\n\n"
495 "The structure of a struct is described by a vtable, so the vtable is\n"
496 "in essence the type of the struct. The vtable is itself a struct with\n"
497 "a vtable. This could go on forever if it weren't for the\n"
498 "vtable-vtables which are self-describing vtables, and thus terminate\n"
499 "the chain.\n\n"
500 "There are several potential ways of using structs, but the standard\n"
501 "one is to use three kinds of structs, together building up a type\n"
502 "sub-system: one vtable-vtable working as the root and one or several\n"
503 "\"types\", each with a set of \"instances\". (The vtable-vtable should be\n"
504 "compared to the class <class> which is the class of itself.)\n\n"
505 "@lisp\n"
506 "(define ball-root (make-vtable-vtable \"pr\" 0))\n\n"
507 "(define (make-ball-type ball-color)\n"
508 " (make-struct ball-root 0\n"
509 " (make-struct-layout \"pw\")\n"
510 " (lambda (ball port)\n"
511 " (format port \"#<a ~A ball owned by ~A>\"\n"
512 " (color ball)\n"
513 " (owner ball)))\n"
514 " ball-color))\n"
515 "(define (color ball) (struct-ref (struct-vtable ball) vtable-offset-user))\n"
516 "(define (owner ball) (struct-ref ball 0))\n\n"
517 "(define red (make-ball-type 'red))\n"
518 "(define green (make-ball-type 'green))\n\n"
519 "(define (make-ball type owner) (make-struct type 0 owner))\n\n"
520 "(define ball (make-ball green 'Nisse))\n"
521 "ball @result{} #<a green ball owned by Nisse>\n"
522 "@end lisp")
523 #define FUNC_NAME s_scm_make_vtable_vtable
524 {
525 SCM fields;
526 SCM layout;
527 int basic_size;
528 int tail_elts;
529 scm_t_bits * data;
530 SCM handle;
531
532 SCM_VALIDATE_STRING (1, user_fields);
533 SCM_VALIDATE_INUM (2, tail_array_size);
534 SCM_VALIDATE_REST_ARGUMENT (init);
535
536 fields = scm_string_append (scm_list_2 (required_vtable_fields,
537 user_fields));
538 layout = scm_make_struct_layout (fields);
539 basic_size = SCM_SYMBOL_LENGTH (layout) / 2;
540 tail_elts = SCM_INUM (tail_array_size);
541 SCM_DEFER_INTS;
542 data = scm_alloc_struct (basic_size + tail_elts,
543 scm_struct_n_extra_words,
544 "make-vtable-vtable");
545 handle = scm_alloc_double_cell ((scm_t_bits) data + scm_tc3_struct,
546 (scm_t_bits) data, 0, 0);
547 data [scm_vtable_index_layout] = SCM_UNPACK (layout);
548 scm_struct_init (handle, layout, data, tail_elts, scm_cons (layout, init));
549 SCM_ALLOW_INTS;
550 return handle;
551 }
552 #undef FUNC_NAME
553
554 \f
555
556
557 SCM_DEFINE (scm_struct_ref, "struct-ref", 2, 0, 0,
558 (SCM handle, SCM pos),
559 "@deffnx {Scheme Procedure} struct-set! struct n value\n"
560 "Access (or modify) the @var{n}th field of @var{struct}.\n\n"
561 "If the field is of type 'p', then it can be set to an arbitrary value.\n\n"
562 "If the field is of type 'u', then it can only be set to a non-negative\n"
563 "integer value small enough to fit in one machine word.")
564 #define FUNC_NAME s_scm_struct_ref
565 {
566 SCM answer = SCM_UNDEFINED;
567 scm_t_bits * data;
568 SCM layout;
569 int p;
570 scm_t_bits n_fields;
571 char * fields_desc;
572 char field_type = 0;
573
574
575 SCM_VALIDATE_STRUCT (1,handle);
576 SCM_VALIDATE_INUM (2,pos);
577
578 layout = SCM_STRUCT_LAYOUT (handle);
579 data = SCM_STRUCT_DATA (handle);
580 p = SCM_INUM (pos);
581
582 fields_desc = SCM_SYMBOL_CHARS (layout);
583 n_fields = data[scm_struct_i_n_words];
584
585 SCM_ASSERT_RANGE(1,pos, p < n_fields);
586
587 if (p * 2 < SCM_SYMBOL_LENGTH (layout))
588 {
589 char ref;
590 field_type = fields_desc[p * 2];
591 ref = fields_desc[p * 2 + 1];
592 if ((ref != 'r') && (ref != 'w'))
593 {
594 if ((ref == 'R') || (ref == 'W'))
595 field_type = 'u';
596 else
597 SCM_MISC_ERROR ("ref denied for field ~A", scm_list_1 (pos));
598 }
599 }
600 else if (fields_desc[SCM_SYMBOL_LENGTH (layout) - 1] != 'O')
601 field_type = fields_desc[SCM_SYMBOL_LENGTH (layout) - 2];
602 else
603 SCM_MISC_ERROR ("ref denied for field ~A", scm_list_1 (pos));
604
605 switch (field_type)
606 {
607 case 'u':
608 answer = scm_ulong2num (data[p]);
609 break;
610
611 #if 0
612 case 'i':
613 answer = scm_long2num (data[p]);
614 break;
615
616 case 'd':
617 answer = scm_make_real (*((double *)&(data[p])));
618 break;
619 #endif
620
621 case 's':
622 case 'p':
623 answer = SCM_PACK (data[p]);
624 break;
625
626
627 default:
628 SCM_MISC_ERROR ("unrecognized field type: ~S",
629 scm_list_1 (SCM_MAKE_CHAR (field_type)));
630 }
631
632 return answer;
633 }
634 #undef FUNC_NAME
635
636
637 SCM_DEFINE (scm_struct_set_x, "struct-set!", 3, 0, 0,
638 (SCM handle, SCM pos, SCM val),
639 "Set the slot of the structure @var{handle} with index @var{pos}\n"
640 "to @var{val}. Signal an error if the slot can not be written\n"
641 "to.")
642 #define FUNC_NAME s_scm_struct_set_x
643 {
644 scm_t_bits * data;
645 SCM layout;
646 int p;
647 int n_fields;
648 char * fields_desc;
649 char field_type = 0;
650
651 SCM_VALIDATE_STRUCT (1,handle);
652 SCM_VALIDATE_INUM (2,pos);
653
654 layout = SCM_STRUCT_LAYOUT (handle);
655 data = SCM_STRUCT_DATA (handle);
656 p = SCM_INUM (pos);
657
658 fields_desc = SCM_SYMBOL_CHARS (layout);
659 n_fields = data[scm_struct_i_n_words];
660
661 SCM_ASSERT_RANGE (1,pos, p < n_fields);
662
663 if (p * 2 < SCM_SYMBOL_LENGTH (layout))
664 {
665 char set_x;
666 field_type = fields_desc[p * 2];
667 set_x = fields_desc [p * 2 + 1];
668 if (set_x != 'w')
669 SCM_MISC_ERROR ("set! denied for field ~A", scm_list_1 (pos));
670 }
671 else if (fields_desc[SCM_SYMBOL_LENGTH (layout) - 1] == 'W')
672 field_type = fields_desc[SCM_SYMBOL_LENGTH (layout) - 2];
673 else
674 SCM_MISC_ERROR ("set! denied for field ~A", scm_list_1 (pos));
675
676 switch (field_type)
677 {
678 case 'u':
679 data[p] = SCM_NUM2ULONG (3, val);
680 break;
681
682 #if 0
683 case 'i':
684 data[p] = SCM_NUM2LONG (3, val);
685 break;
686
687 case 'd':
688 *((double *)&(data[p])) = scm_num2dbl (val, (char *)SCM_ARG3);
689 break;
690 #endif
691
692 case 'p':
693 data[p] = SCM_UNPACK (val);
694 break;
695
696 case 's':
697 SCM_MISC_ERROR ("self fields immutable", SCM_EOL);
698
699 default:
700 SCM_MISC_ERROR ("unrecognized field type: ~S",
701 scm_list_1 (SCM_MAKE_CHAR (field_type)));
702 }
703
704 return val;
705 }
706 #undef FUNC_NAME
707
708
709 SCM_DEFINE (scm_struct_vtable, "struct-vtable", 1, 0, 0,
710 (SCM handle),
711 "Return the vtable structure that describes the type of @var{struct}.")
712 #define FUNC_NAME s_scm_struct_vtable
713 {
714 SCM_VALIDATE_STRUCT (1,handle);
715 return SCM_STRUCT_VTABLE (handle);
716 }
717 #undef FUNC_NAME
718
719
720 SCM_DEFINE (scm_struct_vtable_tag, "struct-vtable-tag", 1, 0, 0,
721 (SCM handle),
722 "Return the vtable tag of the structure @var{handle}.")
723 #define FUNC_NAME s_scm_struct_vtable_tag
724 {
725 SCM_VALIDATE_VTABLE (1,handle);
726 return scm_long2num ((long) SCM_STRUCT_DATA (handle) >> 3);
727 }
728 #undef FUNC_NAME
729
730 /* {Associating names and classes with vtables}
731 *
732 * The name of a vtable should probably be stored as a slot. This is
733 * a backward compatible solution until agreement has been achieved on
734 * how to associate names with vtables.
735 */
736
737 unsigned long
738 scm_struct_ihashq (SCM obj, unsigned long n)
739 {
740 /* The length of the hash table should be a relative prime it's not
741 necessary to shift down the address. */
742 return SCM_UNPACK (obj) % n;
743 }
744
745 SCM
746 scm_struct_create_handle (SCM obj)
747 {
748 SCM handle = scm_hash_fn_create_handle_x (scm_struct_table,
749 obj,
750 SCM_BOOL_F,
751 scm_struct_ihashq,
752 scm_sloppy_assq,
753 0);
754 if (SCM_FALSEP (SCM_CDR (handle)))
755 SCM_SETCDR (handle, scm_cons (SCM_BOOL_F, SCM_BOOL_F));
756 return handle;
757 }
758
759 SCM_DEFINE (scm_struct_vtable_name, "struct-vtable-name", 1, 0, 0,
760 (SCM vtable),
761 "Return the name of the vtable @var{vtable}.")
762 #define FUNC_NAME s_scm_struct_vtable_name
763 {
764 SCM_VALIDATE_VTABLE (1,vtable);
765 return SCM_STRUCT_TABLE_NAME (SCM_CDR (scm_struct_create_handle (vtable)));
766 }
767 #undef FUNC_NAME
768
769 SCM_DEFINE (scm_set_struct_vtable_name_x, "set-struct-vtable-name!", 2, 0, 0,
770 (SCM vtable, SCM name),
771 "Set the name of the vtable @var{vtable} to @var{name}.")
772 #define FUNC_NAME s_scm_set_struct_vtable_name_x
773 {
774 SCM_VALIDATE_VTABLE (1,vtable);
775 SCM_VALIDATE_SYMBOL (2,name);
776 SCM_SET_STRUCT_TABLE_NAME (SCM_CDR (scm_struct_create_handle (vtable)),
777 name);
778 return SCM_UNSPECIFIED;
779 }
780 #undef FUNC_NAME
781
782
783 \f
784
785 void
786 scm_print_struct (SCM exp, SCM port, scm_print_state *pstate)
787 {
788 if (SCM_NFALSEP (scm_procedure_p (SCM_STRUCT_PRINTER (exp))))
789 scm_printer_apply (SCM_STRUCT_PRINTER (exp), exp, port, pstate);
790 else
791 {
792 SCM vtable = SCM_STRUCT_VTABLE (exp);
793 SCM name = scm_struct_vtable_name (vtable);
794 scm_puts ("#<", port);
795 if (SCM_NFALSEP (name))
796 scm_display (name, port);
797 else
798 scm_puts ("struct", port);
799 scm_putc (' ', port);
800 scm_intprint (SCM_UNPACK (vtable), 16, port);
801 scm_putc (':', port);
802 scm_intprint (SCM_UNPACK (exp), 16, port);
803 scm_putc ('>', port);
804 }
805 }
806
807 void
808 scm_struct_prehistory ()
809 {
810 scm_c_hook_add (&scm_before_mark_c_hook, scm_struct_gc_init, 0, 0);
811 scm_c_hook_add (&scm_after_sweep_c_hook, scm_free_structs, 0, 0);
812 }
813
814 void
815 scm_init_struct ()
816 {
817 scm_struct_table
818 = scm_permanent_object (scm_make_weak_key_hash_table (SCM_MAKINUM (31)));
819 required_vtable_fields = scm_makfrom0str ("prsrpw");
820 scm_permanent_object (required_vtable_fields);
821 scm_c_define ("vtable-index-layout", SCM_MAKINUM (scm_vtable_index_layout));
822 scm_c_define ("vtable-index-vtable", SCM_MAKINUM (scm_vtable_index_vtable));
823 scm_c_define ("vtable-index-printer",
824 SCM_MAKINUM (scm_vtable_index_printer));
825 scm_c_define ("vtable-offset-user", SCM_MAKINUM (scm_vtable_offset_user));
826 #ifndef SCM_MAGIC_SNARFER
827 #include "libguile/struct.x"
828 #endif
829 }
830
831 /*
832 Local Variables:
833 c-file-style: "gnu"
834 End:
835 */