* deprecated.h, boolean.h (SCM_FALSEP, SCM_NFALSEP, SCM_BOOL,
[bpt/guile.git] / libguile / goops.c
1 /* Copyright (C) 1998,1999,2000,2001,2002,2003,2004
2 * Free Software Foundation, Inc.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
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
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18 \f
19
20 /* This software is a derivative work of other copyrighted softwares; the
21 * copyright notices of these softwares are placed in the file COPYRIGHTS
22 *
23 * This file is based upon stklos.c from the STk distribution by
24 * Erick Gallesio <eg@unice.fr>.
25 */
26
27 #include <stdio.h>
28
29 #include "libguile/_scm.h"
30 #include "libguile/alist.h"
31 #include "libguile/debug.h"
32 #include "libguile/dynl.h"
33 #include "libguile/dynwind.h"
34 #include "libguile/eval.h"
35 #include "libguile/hashtab.h"
36 #include "libguile/keywords.h"
37 #include "libguile/macros.h"
38 #include "libguile/modules.h"
39 #include "libguile/objects.h"
40 #include "libguile/ports.h"
41 #include "libguile/procprop.h"
42 #include "libguile/random.h"
43 #include "libguile/root.h"
44 #include "libguile/smob.h"
45 #include "libguile/strings.h"
46 #include "libguile/strports.h"
47 #include "libguile/vectors.h"
48 #include "libguile/weaks.h"
49
50 #include "libguile/validate.h"
51 #include "libguile/goops.h"
52
53 #define SPEC_OF(x) SCM_SLOT (x, scm_si_specializers)
54
55 #define DEFVAR(v, val) \
56 { scm_eval (scm_list_3 (scm_sym_define_public, (v), (val)), \
57 scm_module_goops); }
58 /* Temporary hack until we get the new module system */
59 /*fixme* Should optimize by keeping track of the variable object itself */
60 #define GETVAR(v) (SCM_VARIABLE_REF (scm_call_2 (scm_goops_lookup_closure, \
61 (v), SCM_BOOL_F)))
62
63 /* Fixme: Should use already interned symbols */
64 #define CALL_GF1(name, a) (scm_call_1 (GETVAR (scm_str2symbol (name)), \
65 a))
66 #define CALL_GF2(name, a, b) (scm_call_2 (GETVAR (scm_str2symbol (name)), \
67 a, b))
68 #define CALL_GF3(name, a, b, c) (scm_call_3 (GETVAR (scm_str2symbol (name)), \
69 a, b, c))
70 #define CALL_GF4(name, a, b, c, d) (scm_call_4 (GETVAR (scm_str2symbol (name)), \
71 a, b, c, d))
72
73 /* Class redefinition protocol:
74
75 A class is represented by a heap header h1 which points to a
76 malloc:ed memory block m1.
77
78 When a new version of a class is created, a new header h2 and
79 memory block m2 are allocated. The headers h1 and h2 then switch
80 pointers so that h1 refers to m2 and h2 to m1. In this way, names
81 bound to h1 will point to the new class at the same time as h2 will
82 be a handle which the GC will us to free m1.
83
84 The `redefined' slot of m1 will be set to point to h1. An old
85 instance will have it's class pointer (the CAR of the heap header)
86 pointing to m1. The non-immediate `redefined'-slot in m1 indicates
87 the class modification and the new class pointer can be found via
88 h1.
89 */
90
91 /* The following definition is located in libguile/objects.h:
92 #define SCM_OBJ_CLASS_REDEF(x) (SCM_STRUCT_VTABLE_DATA(x)[scm_si_redefined])
93 */
94
95 #define TEST_CHANGE_CLASS(obj, class) \
96 { \
97 class = SCM_CLASS_OF (obj); \
98 if (scm_is_true (SCM_OBJ_CLASS_REDEF (obj))) \
99 { \
100 scm_change_object_class (obj, class, SCM_OBJ_CLASS_REDEF (obj));\
101 class = SCM_CLASS_OF (obj); \
102 } \
103 }
104
105 #define NXT_MTHD_METHODS(m) (SCM_VELTS (m)[1])
106 #define NXT_MTHD_ARGS(m) (SCM_VELTS (m)[2])
107
108 #define SCM_GOOPS_UNBOUND SCM_UNBOUND
109 #define SCM_GOOPS_UNBOUNDP(x) ((x) == SCM_GOOPS_UNBOUND)
110
111 static int goops_loaded_p = 0;
112 static scm_t_rstate *goops_rstate;
113
114 static SCM scm_goops_lookup_closure;
115
116 /* Some classes are defined in libguile/objects.c. */
117 SCM scm_class_top, scm_class_object, scm_class_class;
118 SCM scm_class_applicable;
119 SCM scm_class_entity, scm_class_entity_with_setter;
120 SCM scm_class_generic, scm_class_generic_with_setter;
121 SCM scm_class_accessor;
122 SCM scm_class_extended_generic, scm_class_extended_generic_with_setter;
123 SCM scm_class_extended_accessor;
124 SCM scm_class_method;
125 SCM scm_class_simple_method, scm_class_accessor_method;
126 SCM scm_class_procedure_class;
127 SCM scm_class_operator_class, scm_class_operator_with_setter_class;
128 SCM scm_class_entity_class;
129 SCM scm_class_number, scm_class_list;
130 SCM scm_class_keyword;
131 SCM scm_class_port, scm_class_input_output_port;
132 SCM scm_class_input_port, scm_class_output_port;
133 SCM scm_class_foreign_class, scm_class_foreign_object;
134 SCM scm_class_foreign_slot;
135 SCM scm_class_self, scm_class_protected;
136 SCM scm_class_opaque, scm_class_read_only;
137 SCM scm_class_protected_opaque, scm_class_protected_read_only;
138 SCM scm_class_scm;
139 SCM scm_class_int, scm_class_float, scm_class_double;
140
141 SCM_SYMBOL (scm_sym_define_public, "define-public");
142
143 static SCM scm_make_unbound (void);
144 static SCM scm_unbound_p (SCM obj);
145 static SCM scm_assert_bound (SCM value, SCM obj);
146 static SCM scm_at_assert_bound_ref (SCM obj, SCM index);
147 static SCM scm_sys_goops_loaded (void);
148
149 /******************************************************************************
150 *
151 * Compute-cpl
152 *
153 * This version doesn't fully handle multiple-inheritance. It serves
154 * only for booting classes and will be overloaded in Scheme
155 *
156 ******************************************************************************/
157
158 static SCM
159 map (SCM (*proc) (SCM), SCM ls)
160 {
161 if (SCM_NULLP (ls))
162 return ls;
163 else
164 {
165 SCM res = scm_cons (proc (SCM_CAR (ls)), SCM_EOL);
166 SCM h = res;
167 ls = SCM_CDR (ls);
168 while (!SCM_NULLP (ls))
169 {
170 SCM_SETCDR (h, scm_cons (proc (SCM_CAR (ls)), SCM_EOL));
171 h = SCM_CDR (h);
172 ls = SCM_CDR (ls);
173 }
174 return res;
175 }
176 }
177
178 static SCM
179 filter_cpl (SCM ls)
180 {
181 SCM res = SCM_EOL;
182 while (!SCM_NULLP (ls))
183 {
184 SCM el = SCM_CAR (ls);
185 if (scm_is_false (scm_c_memq (el, res)))
186 res = scm_cons (el, res);
187 ls = SCM_CDR (ls);
188 }
189 return res;
190 }
191
192 static SCM
193 compute_cpl (SCM class)
194 {
195 if (goops_loaded_p)
196 return CALL_GF1 ("compute-cpl", class);
197 else
198 {
199 SCM supers = SCM_SLOT (class, scm_si_direct_supers);
200 SCM ls = scm_append (scm_acons (class, supers,
201 map (compute_cpl, supers)));
202 return scm_reverse_x (filter_cpl (ls), SCM_EOL);
203 }
204 }
205
206 /******************************************************************************
207 *
208 * compute-slots
209 *
210 ******************************************************************************/
211
212 static SCM
213 remove_duplicate_slots (SCM l, SCM res, SCM slots_already_seen)
214 {
215 SCM tmp;
216
217 if (SCM_NULLP (l))
218 return res;
219
220 tmp = SCM_CAAR (l);
221 if (!SCM_SYMBOLP (tmp))
222 scm_misc_error ("%compute-slots", "bad slot name ~S", scm_list_1 (tmp));
223
224 if (scm_is_false (scm_c_memq (tmp, slots_already_seen))) {
225 res = scm_cons (SCM_CAR (l), res);
226 slots_already_seen = scm_cons (tmp, slots_already_seen);
227 }
228
229 return remove_duplicate_slots (SCM_CDR (l), res, slots_already_seen);
230 }
231
232 static SCM
233 build_slots_list (SCM dslots, SCM cpl)
234 {
235 register SCM res = dslots;
236
237 for (cpl = SCM_CDR (cpl); !SCM_NULLP (cpl); cpl = SCM_CDR (cpl))
238 res = scm_append (scm_list_2 (SCM_SLOT (SCM_CAR (cpl),
239 scm_si_direct_slots),
240 res));
241
242 /* res contains a list of slots. Remove slots which appears more than once */
243 return remove_duplicate_slots (scm_reverse (res), SCM_EOL, SCM_EOL);
244 }
245
246 static SCM
247 maplist (SCM ls)
248 {
249 SCM orig = ls;
250 while (!SCM_NULLP (ls))
251 {
252 if (!SCM_CONSP (SCM_CAR (ls)))
253 SCM_SETCAR (ls, scm_cons (SCM_CAR (ls), SCM_EOL));
254 ls = SCM_CDR (ls);
255 }
256 return orig;
257 }
258
259
260 SCM_DEFINE (scm_sys_compute_slots, "%compute-slots", 1, 0, 0,
261 (SCM class),
262 "Return a list consisting of the names of all slots belonging to\n"
263 "class @var{class}, i. e. the slots of @var{class} and of all of\n"
264 "its superclasses.")
265 #define FUNC_NAME s_scm_sys_compute_slots
266 {
267 SCM_VALIDATE_CLASS (1, class);
268 return build_slots_list (SCM_SLOT (class, scm_si_direct_slots),
269 SCM_SLOT (class, scm_si_cpl));
270 }
271 #undef FUNC_NAME
272
273
274 /******************************************************************************
275 *
276 * compute-getters-n-setters
277 *
278 * This version doesn't handle slot options. It serves only for booting
279 * classes and will be overloaded in Scheme.
280 *
281 ******************************************************************************/
282
283 SCM_KEYWORD (k_init_value, "init-value");
284 SCM_KEYWORD (k_init_thunk, "init-thunk");
285
286 static SCM
287 compute_getters_n_setters (SCM slots)
288 {
289 SCM res = SCM_EOL;
290 SCM *cdrloc = &res;
291 long i = 0;
292
293 for ( ; !SCM_NULLP (slots); slots = SCM_CDR (slots))
294 {
295 SCM init = SCM_BOOL_F;
296 SCM options = SCM_CDAR (slots);
297 if (!SCM_NULLP (options))
298 {
299 init = scm_get_keyword (k_init_value, options, 0);
300 if (init)
301 {
302 init = scm_i_eval_x (scm_list_3 (scm_sym_lambda,
303 SCM_EOL,
304 scm_list_2 (scm_sym_quote,
305 init)),
306 SCM_EOL);
307 }
308 else
309 init = scm_get_keyword (k_init_thunk, options, SCM_BOOL_F);
310 }
311 *cdrloc = scm_cons (scm_cons (SCM_CAAR (slots),
312 scm_cons (init,
313 SCM_MAKINUM (i++))),
314 SCM_EOL);
315 cdrloc = SCM_CDRLOC (*cdrloc);
316 }
317 return res;
318 }
319
320 /******************************************************************************
321 *
322 * initialize-object
323 *
324 ******************************************************************************/
325
326 /*fixme* Manufacture keywords in advance */
327 SCM
328 scm_i_get_keyword (SCM key, SCM l, long len, SCM default_value, const char *subr)
329 {
330 long i;
331
332 for (i = 0; i != len; i += 2)
333 {
334 SCM obj = SCM_CAR (l);
335
336 if (!SCM_KEYWORDP (obj))
337 scm_misc_error (subr, "bad keyword: ~S", scm_list_1 (obj));
338 else if (SCM_EQ_P (obj, key))
339 return SCM_CADR (l);
340 else
341 l = SCM_CDDR (l);
342 }
343
344 return default_value;
345 }
346
347
348 SCM_DEFINE (scm_get_keyword, "get-keyword", 3, 0, 0,
349 (SCM key, SCM l, SCM default_value),
350 "Determine an associated value for the keyword @var{key} from\n"
351 "the list @var{l}. The list @var{l} has to consist of an even\n"
352 "number of elements, where, starting with the first, every\n"
353 "second element is a keyword, followed by its associated value.\n"
354 "If @var{l} does not hold a value for @var{key}, the value\n"
355 "@var{default_value} is returned.")
356 #define FUNC_NAME s_scm_get_keyword
357 {
358 long len;
359
360 SCM_ASSERT (SCM_KEYWORDP (key), key, SCM_ARG1, FUNC_NAME);
361 len = scm_ilength (l);
362 if (len < 0 || len % 2 == 1)
363 scm_misc_error (FUNC_NAME, "Bad keyword-value list: ~S", scm_list_1 (l));
364
365 return scm_i_get_keyword (key, l, len, default_value, FUNC_NAME);
366 }
367 #undef FUNC_NAME
368
369
370 SCM_KEYWORD (k_init_keyword, "init-keyword");
371
372 static SCM get_slot_value (SCM class, SCM obj, SCM slotdef);
373 static SCM set_slot_value (SCM class, SCM obj, SCM slotdef, SCM value);
374
375 SCM_DEFINE (scm_sys_initialize_object, "%initialize-object", 2, 0, 0,
376 (SCM obj, SCM initargs),
377 "Initialize the object @var{obj} with the given arguments\n"
378 "@var{initargs}.")
379 #define FUNC_NAME s_scm_sys_initialize_object
380 {
381 SCM tmp, get_n_set, slots;
382 SCM class = SCM_CLASS_OF (obj);
383 long n_initargs;
384
385 SCM_VALIDATE_INSTANCE (1, obj);
386 n_initargs = scm_ilength (initargs);
387 SCM_ASSERT ((n_initargs & 1) == 0, initargs, SCM_ARG2, FUNC_NAME);
388
389 get_n_set = SCM_SLOT (class, scm_si_getters_n_setters);
390 slots = SCM_SLOT (class, scm_si_slots);
391
392 /* See for each slot how it must be initialized */
393 for (;
394 !SCM_NULLP (slots);
395 get_n_set = SCM_CDR (get_n_set), slots = SCM_CDR (slots))
396 {
397 SCM slot_name = SCM_CAR (slots);
398 SCM slot_value = 0;
399
400 if (!SCM_NULLP (SCM_CDR (slot_name)))
401 {
402 /* This slot admits (perhaps) to be initialized at creation time */
403 long n = scm_ilength (SCM_CDR (slot_name));
404 if (n & 1) /* odd or -1 */
405 SCM_MISC_ERROR ("class contains bogus slot definition: ~S",
406 scm_list_1 (slot_name));
407 tmp = scm_i_get_keyword (k_init_keyword,
408 SCM_CDR (slot_name),
409 n,
410 0,
411 FUNC_NAME);
412 slot_name = SCM_CAR (slot_name);
413 if (tmp)
414 {
415 /* an initarg was provided for this slot */
416 if (!SCM_KEYWORDP (tmp))
417 SCM_MISC_ERROR ("initarg must be a keyword. It was ~S",
418 scm_list_1 (tmp));
419 slot_value = scm_i_get_keyword (tmp,
420 initargs,
421 n_initargs,
422 0,
423 FUNC_NAME);
424 }
425 }
426
427 if (slot_value)
428 /* set slot to provided value */
429 set_slot_value (class, obj, SCM_CAR (get_n_set), slot_value);
430 else
431 {
432 /* set slot to its :init-form if it exists */
433 tmp = SCM_CADAR (get_n_set);
434 if (scm_is_true (tmp))
435 {
436 slot_value = get_slot_value (class, obj, SCM_CAR (get_n_set));
437 if (SCM_GOOPS_UNBOUNDP (slot_value))
438 {
439 SCM env = SCM_EXTEND_ENV (SCM_EOL, SCM_EOL, SCM_ENV (tmp));
440 set_slot_value (class,
441 obj,
442 SCM_CAR (get_n_set),
443 scm_eval_body (SCM_CLOSURE_BODY (tmp), env));
444 }
445 }
446 }
447 }
448
449 return obj;
450 }
451 #undef FUNC_NAME
452
453 /* NOTE: The following macros are interdependent with code
454 * in goops.scm:compute-getters-n-setters
455 */
456 #define SCM_GNS_INSTANCE_ALLOCATED_P(gns) \
457 (SCM_INUMP (SCM_CDDR (gns)) \
458 || (SCM_CONSP (SCM_CDDR (gns)) \
459 && SCM_CONSP (SCM_CDDDR (gns)) \
460 && SCM_CONSP (SCM_CDDDDR (gns))))
461 #define SCM_GNS_INDEX(gns) \
462 (SCM_INUMP (SCM_CDDR (gns)) \
463 ? SCM_INUM (SCM_CDDR (gns)) \
464 : SCM_INUM (SCM_CAR (SCM_CDDDDR (gns))))
465 #define SCM_GNS_SIZE(gns) \
466 (SCM_INUMP (SCM_CDDR (gns)) \
467 ? 1 \
468 : SCM_INUM (SCM_CADR (SCM_CDDDDR (gns))))
469
470 SCM_KEYWORD (k_class, "class");
471 SCM_KEYWORD (k_allocation, "allocation");
472 SCM_KEYWORD (k_instance, "instance");
473
474 SCM_DEFINE (scm_sys_prep_layout_x, "%prep-layout!", 1, 0, 0,
475 (SCM class),
476 "")
477 #define FUNC_NAME s_scm_sys_prep_layout_x
478 {
479 SCM slots, getters_n_setters, nfields;
480 unsigned long int n, i;
481 char *s;
482
483 SCM_VALIDATE_INSTANCE (1, class);
484 slots = SCM_SLOT (class, scm_si_slots);
485 getters_n_setters = SCM_SLOT (class, scm_si_getters_n_setters);
486 nfields = SCM_SLOT (class, scm_si_nfields);
487 if (!SCM_INUMP (nfields) || SCM_INUM (nfields) < 0)
488 SCM_MISC_ERROR ("bad value in nfields slot: ~S",
489 scm_list_1 (nfields));
490 n = 2 * SCM_INUM (nfields);
491 if (n < sizeof (SCM_CLASS_CLASS_LAYOUT) - 1
492 && SCM_SUBCLASSP (class, scm_class_class))
493 SCM_MISC_ERROR ("class object doesn't have enough fields: ~S",
494 scm_list_1 (nfields));
495
496 s = n > 0 ? scm_malloc (n) : 0;
497 i = 0;
498 while (SCM_CONSP (getters_n_setters))
499 {
500 if (SCM_GNS_INSTANCE_ALLOCATED_P (SCM_CAR (getters_n_setters)))
501 {
502 SCM type;
503 int len, index, size;
504 char p, a;
505
506 if (i >= n || !SCM_CONSP (slots))
507 goto inconsistent;
508
509 /* extract slot type */
510 len = scm_ilength (SCM_CDAR (slots));
511 type = scm_i_get_keyword (k_class, SCM_CDAR (slots),
512 len, SCM_BOOL_F, FUNC_NAME);
513 /* determine slot GC protection and access mode */
514 if (scm_is_false (type))
515 {
516 p = 'p';
517 a = 'w';
518 }
519 else
520 {
521 if (!SCM_CLASSP (type))
522 {
523 if (s)
524 free (s);
525 SCM_MISC_ERROR ("bad slot class", SCM_EOL);
526 }
527 else if (SCM_SUBCLASSP (type, scm_class_foreign_slot))
528 {
529 if (SCM_SUBCLASSP (type, scm_class_self))
530 p = 's';
531 else if (SCM_SUBCLASSP (type, scm_class_protected))
532 p = 'p';
533 else
534 p = 'u';
535
536 if (SCM_SUBCLASSP (type, scm_class_opaque))
537 a = 'o';
538 else if (SCM_SUBCLASSP (type, scm_class_read_only))
539 a = 'r';
540 else
541 a = 'w';
542 }
543 else
544 {
545 p = 'p';
546 a = 'w';
547 }
548 }
549
550 index = SCM_GNS_INDEX (SCM_CAR (getters_n_setters));
551 if (index != (i >> 1))
552 goto inconsistent;
553 size = SCM_GNS_SIZE (SCM_CAR (getters_n_setters));
554 while (size)
555 {
556 s[i++] = p;
557 s[i++] = a;
558 --size;
559 }
560 }
561 slots = SCM_CDR (slots);
562 getters_n_setters = SCM_CDR (getters_n_setters);
563 }
564 if (!SCM_NULLP (slots))
565 {
566 inconsistent:
567 if (s)
568 free (s);
569 SCM_MISC_ERROR ("inconsistent getters-n-setters", SCM_EOL);
570 }
571 SCM_SET_SLOT (class, scm_si_layout, scm_mem2symbol (s, n));
572 if (s)
573 free (s);
574 return SCM_UNSPECIFIED;
575 }
576 #undef FUNC_NAME
577
578 static void prep_hashsets (SCM);
579
580 SCM_DEFINE (scm_sys_inherit_magic_x, "%inherit-magic!", 2, 0, 0,
581 (SCM class, SCM dsupers),
582 "")
583 #define FUNC_NAME s_scm_sys_inherit_magic_x
584 {
585 SCM ls = dsupers;
586 long flags = 0;
587 SCM_VALIDATE_INSTANCE (1, class);
588 while (!SCM_NULLP (ls))
589 {
590 SCM_ASSERT (SCM_CONSP (ls)
591 && SCM_INSTANCEP (SCM_CAR (ls)),
592 dsupers,
593 SCM_ARG2,
594 FUNC_NAME);
595 flags |= SCM_CLASS_FLAGS (SCM_CAR (ls));
596 ls = SCM_CDR (ls);
597 }
598 flags &= SCM_CLASSF_INHERIT;
599 if (flags & SCM_CLASSF_ENTITY)
600 SCM_SET_CLASS_DESTRUCTOR (class, scm_struct_free_entity);
601 else
602 {
603 long n = SCM_INUM (SCM_SLOT (class, scm_si_nfields));
604 #if 0
605 /*
606 * We could avoid calling scm_gc_malloc in the allocation code
607 * (in which case the following two lines are needed). Instead
608 * we make 0-slot instances non-light, so that the light case
609 * can be handled without special cases.
610 */
611 if (n == 0)
612 SCM_SET_CLASS_DESTRUCTOR (class, scm_struct_free_0);
613 #endif
614 if (n > 0 && !(flags & SCM_CLASSF_METACLASS))
615 {
616 /* NOTE: The following depends on scm_struct_i_size. */
617 flags |= SCM_STRUCTF_LIGHT + n * sizeof (SCM); /* use light representation */
618 SCM_SET_CLASS_DESTRUCTOR (class, scm_struct_free_light);
619 }
620 }
621 SCM_SET_CLASS_FLAGS (class, flags);
622
623 prep_hashsets (class);
624
625 return SCM_UNSPECIFIED;
626 }
627 #undef FUNC_NAME
628
629 static void
630 prep_hashsets (SCM class)
631 {
632 unsigned int i;
633
634 for (i = 0; i < 7; ++i)
635 SCM_SET_HASHSET (class, i, scm_c_uniform32 (goops_rstate));
636 }
637
638 /******************************************************************************/
639
640 SCM
641 scm_basic_basic_make_class (SCM class, SCM name, SCM dsupers, SCM dslots)
642 {
643 SCM z, cpl, slots, nfields, g_n_s;
644
645 /* Allocate one instance */
646 z = scm_make_struct (class, SCM_INUM0, SCM_EOL);
647
648 /* Initialize its slots */
649 SCM_SET_SLOT (z, scm_si_direct_supers, dsupers);
650 cpl = compute_cpl (z);
651 slots = build_slots_list (maplist (dslots), cpl);
652 nfields = SCM_MAKINUM (scm_ilength (slots));
653 g_n_s = compute_getters_n_setters (slots);
654
655 SCM_SET_SLOT (z, scm_si_name, name);
656 SCM_SET_SLOT (z, scm_si_direct_slots, dslots);
657 SCM_SET_SLOT (z, scm_si_direct_subclasses, SCM_EOL);
658 SCM_SET_SLOT (z, scm_si_direct_methods, SCM_EOL);
659 SCM_SET_SLOT (z, scm_si_cpl, cpl);
660 SCM_SET_SLOT (z, scm_si_slots, slots);
661 SCM_SET_SLOT (z, scm_si_nfields, nfields);
662 SCM_SET_SLOT (z, scm_si_getters_n_setters, g_n_s);
663 SCM_SET_SLOT (z, scm_si_redefined, SCM_BOOL_F);
664 SCM_SET_SLOT (z, scm_si_environment,
665 scm_top_level_env (SCM_TOP_LEVEL_LOOKUP_CLOSURE));
666
667 /* Add this class in the direct-subclasses slot of dsupers */
668 {
669 SCM tmp;
670 for (tmp = dsupers; !SCM_NULLP (tmp); tmp = SCM_CDR (tmp))
671 SCM_SET_SLOT (SCM_CAR (tmp), scm_si_direct_subclasses,
672 scm_cons (z, SCM_SLOT (SCM_CAR (tmp),
673 scm_si_direct_subclasses)));
674 }
675
676 /* Support for the underlying structs: */
677 SCM_SET_CLASS_FLAGS (z, (class == scm_class_entity_class
678 ? (SCM_CLASSF_GOOPS_OR_VALID
679 | SCM_CLASSF_OPERATOR
680 | SCM_CLASSF_ENTITY)
681 : class == scm_class_operator_class
682 ? SCM_CLASSF_GOOPS_OR_VALID | SCM_CLASSF_OPERATOR
683 : SCM_CLASSF_GOOPS_OR_VALID));
684 return z;
685 }
686
687 SCM
688 scm_basic_make_class (SCM class, SCM name, SCM dsupers, SCM dslots)
689 {
690 SCM z = scm_basic_basic_make_class (class, name, dsupers, dslots);
691 scm_sys_inherit_magic_x (z, dsupers);
692 scm_sys_prep_layout_x (z);
693 return z;
694 }
695
696 /******************************************************************************/
697
698 SCM_SYMBOL (sym_layout, "layout");
699 SCM_SYMBOL (sym_vcell, "vcell");
700 SCM_SYMBOL (sym_vtable, "vtable");
701 SCM_SYMBOL (sym_print, "print");
702 SCM_SYMBOL (sym_procedure, "procedure");
703 SCM_SYMBOL (sym_setter, "setter");
704 SCM_SYMBOL (sym_redefined, "redefined");
705 SCM_SYMBOL (sym_h0, "h0");
706 SCM_SYMBOL (sym_h1, "h1");
707 SCM_SYMBOL (sym_h2, "h2");
708 SCM_SYMBOL (sym_h3, "h3");
709 SCM_SYMBOL (sym_h4, "h4");
710 SCM_SYMBOL (sym_h5, "h5");
711 SCM_SYMBOL (sym_h6, "h6");
712 SCM_SYMBOL (sym_h7, "h7");
713 SCM_SYMBOL (sym_name, "name");
714 SCM_SYMBOL (sym_direct_supers, "direct-supers");
715 SCM_SYMBOL (sym_direct_slots, "direct-slots");
716 SCM_SYMBOL (sym_direct_subclasses, "direct-subclasses");
717 SCM_SYMBOL (sym_direct_methods, "direct-methods");
718 SCM_SYMBOL (sym_cpl, "cpl");
719 SCM_SYMBOL (sym_default_slot_definition_class, "default-slot-definition-class");
720 SCM_SYMBOL (sym_slots, "slots");
721 SCM_SYMBOL (sym_getters_n_setters, "getters-n-setters");
722 SCM_SYMBOL (sym_keyword_access, "keyword-access");
723 SCM_SYMBOL (sym_nfields, "nfields");
724 SCM_SYMBOL (sym_environment, "environment");
725
726
727 static SCM
728 build_class_class_slots ()
729 {
730 return scm_list_n (
731 scm_list_3 (sym_layout, k_class, scm_class_protected_read_only),
732 scm_list_3 (sym_vtable, k_class, scm_class_self),
733 scm_list_1 (sym_print),
734 scm_list_3 (sym_procedure, k_class, scm_class_protected_opaque),
735 scm_list_3 (sym_setter, k_class, scm_class_protected_opaque),
736 scm_list_1 (sym_redefined),
737 scm_list_3 (sym_h0, k_class, scm_class_int),
738 scm_list_3 (sym_h1, k_class, scm_class_int),
739 scm_list_3 (sym_h2, k_class, scm_class_int),
740 scm_list_3 (sym_h3, k_class, scm_class_int),
741 scm_list_3 (sym_h4, k_class, scm_class_int),
742 scm_list_3 (sym_h5, k_class, scm_class_int),
743 scm_list_3 (sym_h6, k_class, scm_class_int),
744 scm_list_3 (sym_h7, k_class, scm_class_int),
745 scm_list_1 (sym_name),
746 scm_list_1 (sym_direct_supers),
747 scm_list_1 (sym_direct_slots),
748 scm_list_1 (sym_direct_subclasses),
749 scm_list_1 (sym_direct_methods),
750 scm_list_1 (sym_cpl),
751 scm_list_1 (sym_default_slot_definition_class),
752 scm_list_1 (sym_slots),
753 scm_list_1 (sym_getters_n_setters),
754 scm_list_1 (sym_keyword_access),
755 scm_list_1 (sym_nfields),
756 scm_list_1 (sym_environment),
757 SCM_UNDEFINED);
758 }
759
760 static void
761 create_basic_classes (void)
762 {
763 /* SCM slots_of_class = build_class_class_slots (); */
764
765 /**** <scm_class_class> ****/
766 SCM cs = scm_makfrom0str (SCM_CLASS_CLASS_LAYOUT
767 + 2 * scm_vtable_offset_user);
768 SCM name = scm_str2symbol ("<class>");
769 scm_class_class = scm_permanent_object (scm_make_vtable_vtable (cs,
770 SCM_INUM0,
771 SCM_EOL));
772 SCM_SET_CLASS_FLAGS (scm_class_class, (SCM_CLASSF_GOOPS_OR_VALID
773 | SCM_CLASSF_METACLASS));
774
775 SCM_SET_SLOT (scm_class_class, scm_si_name, name);
776 SCM_SET_SLOT (scm_class_class, scm_si_direct_supers, SCM_EOL); /* will be changed */
777 /* SCM_SET_SLOT (scm_class_class, scm_si_direct_slots, slots_of_class); */
778 SCM_SET_SLOT (scm_class_class, scm_si_direct_subclasses, SCM_EOL);
779 SCM_SET_SLOT (scm_class_class, scm_si_direct_methods, SCM_EOL);
780 SCM_SET_SLOT (scm_class_class, scm_si_cpl, SCM_EOL); /* will be changed */
781 /* SCM_SET_SLOT (scm_class_class, scm_si_slots, slots_of_class); */
782 SCM_SET_SLOT (scm_class_class, scm_si_nfields, SCM_MAKINUM (SCM_N_CLASS_SLOTS));
783 /* SCM_SET_SLOT (scm_class_class, scm_si_getters_n_setters,
784 compute_getters_n_setters (slots_of_class)); */
785 SCM_SET_SLOT (scm_class_class, scm_si_redefined, SCM_BOOL_F);
786 SCM_SET_SLOT (scm_class_class, scm_si_environment,
787 scm_top_level_env (SCM_TOP_LEVEL_LOOKUP_CLOSURE));
788
789 prep_hashsets (scm_class_class);
790
791 DEFVAR(name, scm_class_class);
792
793 /**** <scm_class_top> ****/
794 name = scm_str2symbol ("<top>");
795 scm_class_top = scm_permanent_object (scm_basic_make_class (scm_class_class,
796 name,
797 SCM_EOL,
798 SCM_EOL));
799
800 DEFVAR(name, scm_class_top);
801
802 /**** <scm_class_object> ****/
803 name = scm_str2symbol ("<object>");
804 scm_class_object = scm_permanent_object (scm_basic_make_class (scm_class_class,
805 name,
806 scm_list_1 (scm_class_top),
807 SCM_EOL));
808
809 DEFVAR (name, scm_class_object);
810
811 /* <top> <object> and <class> were partially initialized. Correct them here */
812 SCM_SET_SLOT (scm_class_object, scm_si_direct_subclasses, scm_list_1 (scm_class_class));
813
814 SCM_SET_SLOT (scm_class_class, scm_si_direct_supers, scm_list_1 (scm_class_object));
815 SCM_SET_SLOT (scm_class_class, scm_si_cpl, scm_list_3 (scm_class_class, scm_class_object, scm_class_top));
816 }
817
818 /******************************************************************************/
819
820 SCM_DEFINE (scm_instance_p, "instance?", 1, 0, 0,
821 (SCM obj),
822 "Return @code{#t} if @var{obj} is an instance.")
823 #define FUNC_NAME s_scm_instance_p
824 {
825 return scm_from_bool (SCM_INSTANCEP (obj));
826 }
827 #undef FUNC_NAME
828
829
830 /******************************************************************************
831 *
832 * Meta object accessors
833 *
834 ******************************************************************************/
835 SCM_DEFINE (scm_class_name, "class-name", 1, 0, 0,
836 (SCM obj),
837 "Return the class name of @var{obj}.")
838 #define FUNC_NAME s_scm_class_name
839 {
840 SCM_VALIDATE_CLASS (1, obj);
841 return scm_slot_ref (obj, sym_name);
842 }
843 #undef FUNC_NAME
844
845 SCM_DEFINE (scm_class_direct_supers, "class-direct-supers", 1, 0, 0,
846 (SCM obj),
847 "Return the direct superclasses of the class @var{obj}.")
848 #define FUNC_NAME s_scm_class_direct_supers
849 {
850 SCM_VALIDATE_CLASS (1, obj);
851 return scm_slot_ref (obj, sym_direct_supers);
852 }
853 #undef FUNC_NAME
854
855 SCM_DEFINE (scm_class_direct_slots, "class-direct-slots", 1, 0, 0,
856 (SCM obj),
857 "Return the direct slots of the class @var{obj}.")
858 #define FUNC_NAME s_scm_class_direct_slots
859 {
860 SCM_VALIDATE_CLASS (1, obj);
861 return scm_slot_ref (obj, sym_direct_slots);
862 }
863 #undef FUNC_NAME
864
865 SCM_DEFINE (scm_class_direct_subclasses, "class-direct-subclasses", 1, 0, 0,
866 (SCM obj),
867 "Return the direct subclasses of the class @var{obj}.")
868 #define FUNC_NAME s_scm_class_direct_subclasses
869 {
870 SCM_VALIDATE_CLASS (1, obj);
871 return scm_slot_ref(obj, sym_direct_subclasses);
872 }
873 #undef FUNC_NAME
874
875 SCM_DEFINE (scm_class_direct_methods, "class-direct-methods", 1, 0, 0,
876 (SCM obj),
877 "Return the direct methods of the class @var{obj}")
878 #define FUNC_NAME s_scm_class_direct_methods
879 {
880 SCM_VALIDATE_CLASS (1, obj);
881 return scm_slot_ref (obj, sym_direct_methods);
882 }
883 #undef FUNC_NAME
884
885 SCM_DEFINE (scm_class_precedence_list, "class-precedence-list", 1, 0, 0,
886 (SCM obj),
887 "Return the class precedence list of the class @var{obj}.")
888 #define FUNC_NAME s_scm_class_precedence_list
889 {
890 SCM_VALIDATE_CLASS (1, obj);
891 return scm_slot_ref (obj, sym_cpl);
892 }
893 #undef FUNC_NAME
894
895 SCM_DEFINE (scm_class_slots, "class-slots", 1, 0, 0,
896 (SCM obj),
897 "Return the slot list of the class @var{obj}.")
898 #define FUNC_NAME s_scm_class_slots
899 {
900 SCM_VALIDATE_CLASS (1, obj);
901 return scm_slot_ref (obj, sym_slots);
902 }
903 #undef FUNC_NAME
904
905 SCM_DEFINE (scm_class_environment, "class-environment", 1, 0, 0,
906 (SCM obj),
907 "Return the environment of the class @var{obj}.")
908 #define FUNC_NAME s_scm_class_environment
909 {
910 SCM_VALIDATE_CLASS (1, obj);
911 return scm_slot_ref(obj, sym_environment);
912 }
913 #undef FUNC_NAME
914
915
916 SCM_DEFINE (scm_generic_function_name, "generic-function-name", 1, 0, 0,
917 (SCM obj),
918 "Return the name of the generic function @var{obj}.")
919 #define FUNC_NAME s_scm_generic_function_name
920 {
921 SCM_VALIDATE_GENERIC (1, obj);
922 return scm_procedure_property (obj, scm_sym_name);
923 }
924 #undef FUNC_NAME
925
926 SCM_SYMBOL (sym_methods, "methods");
927 SCM_SYMBOL (sym_extended_by, "extended-by");
928 SCM_SYMBOL (sym_extends, "extends");
929
930 static
931 SCM fold_downward_gf_methods (SCM method_lists, SCM gf)
932 {
933 SCM gfs = scm_slot_ref (gf, sym_extended_by);
934 method_lists = scm_cons (scm_slot_ref (gf, sym_methods), method_lists);
935 while (!SCM_NULLP (gfs))
936 {
937 method_lists = fold_downward_gf_methods (method_lists, SCM_CAR (gfs));
938 gfs = SCM_CDR (gfs);
939 }
940 return method_lists;
941 }
942
943 static
944 SCM fold_upward_gf_methods (SCM method_lists, SCM gf)
945 {
946 if (SCM_IS_A_P (gf, scm_class_extended_generic))
947 {
948 SCM gfs = scm_slot_ref (gf, sym_extends);
949 while (!SCM_NULLP (gfs))
950 {
951 SCM methods = scm_slot_ref (SCM_CAR (gfs), sym_methods);
952 method_lists = fold_upward_gf_methods (scm_cons (methods,
953 method_lists),
954 SCM_CAR (gfs));
955 gfs = SCM_CDR (gfs);
956 }
957 }
958 return method_lists;
959 }
960
961 SCM_DEFINE (scm_generic_function_methods, "generic-function-methods", 1, 0, 0,
962 (SCM obj),
963 "Return the methods of the generic function @var{obj}.")
964 #define FUNC_NAME s_scm_generic_function_methods
965 {
966 SCM methods;
967 SCM_VALIDATE_GENERIC (1, obj);
968 methods = fold_upward_gf_methods (SCM_EOL, obj);
969 methods = fold_downward_gf_methods (methods, obj);
970 return scm_append (methods);
971 }
972 #undef FUNC_NAME
973
974 SCM_DEFINE (scm_method_generic_function, "method-generic-function", 1, 0, 0,
975 (SCM obj),
976 "Return the generic function for the method @var{obj}.")
977 #define FUNC_NAME s_scm_method_generic_function
978 {
979 SCM_VALIDATE_METHOD (1, obj);
980 return scm_slot_ref (obj, scm_str2symbol ("generic-function"));
981 }
982 #undef FUNC_NAME
983
984 SCM_DEFINE (scm_method_specializers, "method-specializers", 1, 0, 0,
985 (SCM obj),
986 "Return specializers of the method @var{obj}.")
987 #define FUNC_NAME s_scm_method_specializers
988 {
989 SCM_VALIDATE_METHOD (1, obj);
990 return scm_slot_ref (obj, scm_str2symbol ("specializers"));
991 }
992 #undef FUNC_NAME
993
994 SCM_DEFINE (scm_method_procedure, "method-procedure", 1, 0, 0,
995 (SCM obj),
996 "Return the procedure of the method @var{obj}.")
997 #define FUNC_NAME s_scm_method_procedure
998 {
999 SCM_VALIDATE_METHOD (1, obj);
1000 return scm_slot_ref (obj, sym_procedure);
1001 }
1002 #undef FUNC_NAME
1003
1004 SCM_DEFINE (scm_accessor_method_slot_definition, "accessor-method-slot-definition", 1, 0, 0,
1005 (SCM obj),
1006 "Return the slot definition of the accessor @var{obj}.")
1007 #define FUNC_NAME s_scm_accessor_method_slot_definition
1008 {
1009 SCM_VALIDATE_ACCESSOR (1, obj);
1010 return scm_slot_ref (obj, scm_str2symbol ("slot-definition"));
1011 }
1012 #undef FUNC_NAME
1013
1014 SCM_DEFINE (scm_sys_tag_body, "%tag-body", 1, 0, 0,
1015 (SCM body),
1016 "Internal GOOPS magic---don't use this function!")
1017 #define FUNC_NAME s_scm_sys_tag_body
1018 {
1019 return scm_cons (SCM_IM_LAMBDA, body);
1020 }
1021 #undef FUNC_NAME
1022
1023 /******************************************************************************
1024 *
1025 * S l o t a c c e s s
1026 *
1027 ******************************************************************************/
1028
1029 SCM_DEFINE (scm_make_unbound, "make-unbound", 0, 0, 0,
1030 (),
1031 "Return the unbound value.")
1032 #define FUNC_NAME s_scm_make_unbound
1033 {
1034 return SCM_GOOPS_UNBOUND;
1035 }
1036 #undef FUNC_NAME
1037
1038 SCM_DEFINE (scm_unbound_p, "unbound?", 1, 0, 0,
1039 (SCM obj),
1040 "Return @code{#t} if @var{obj} is unbound.")
1041 #define FUNC_NAME s_scm_unbound_p
1042 {
1043 return SCM_GOOPS_UNBOUNDP (obj) ? SCM_BOOL_T : SCM_BOOL_F;
1044 }
1045 #undef FUNC_NAME
1046
1047 SCM_DEFINE (scm_assert_bound, "assert-bound", 2, 0, 0,
1048 (SCM value, SCM obj),
1049 "Return @var{value} if it is bound, and invoke the\n"
1050 "@var{slot-unbound} method of @var{obj} if it is not.")
1051 #define FUNC_NAME s_scm_assert_bound
1052 {
1053 if (SCM_GOOPS_UNBOUNDP (value))
1054 return CALL_GF1 ("slot-unbound", obj);
1055 return value;
1056 }
1057 #undef FUNC_NAME
1058
1059 SCM_DEFINE (scm_at_assert_bound_ref, "@assert-bound-ref", 2, 0, 0,
1060 (SCM obj, SCM index),
1061 "Like @code{assert-bound}, but use @var{index} for accessing\n"
1062 "the value from @var{obj}.")
1063 #define FUNC_NAME s_scm_at_assert_bound_ref
1064 {
1065 SCM value = SCM_SLOT (obj, SCM_INUM (index));
1066 if (SCM_GOOPS_UNBOUNDP (value))
1067 return CALL_GF1 ("slot-unbound", obj);
1068 return value;
1069 }
1070 #undef FUNC_NAME
1071
1072 SCM_DEFINE (scm_sys_fast_slot_ref, "%fast-slot-ref", 2, 0, 0,
1073 (SCM obj, SCM index),
1074 "Return the slot value with index @var{index} from @var{obj}.")
1075 #define FUNC_NAME s_scm_sys_fast_slot_ref
1076 {
1077 unsigned long int i;
1078
1079 SCM_VALIDATE_INSTANCE (1, obj);
1080 SCM_VALIDATE_INUM (2, index);
1081 SCM_ASSERT_RANGE (2, index, SCM_INUM (index) >= 0);
1082 i = SCM_INUM (index);
1083 SCM_ASSERT_RANGE (2, index, i < SCM_NUMBER_OF_SLOTS (obj));
1084
1085 return SCM_SLOT (obj, i);
1086 }
1087 #undef FUNC_NAME
1088
1089 SCM_DEFINE (scm_sys_fast_slot_set_x, "%fast-slot-set!", 3, 0, 0,
1090 (SCM obj, SCM index, SCM value),
1091 "Set the slot with index @var{index} in @var{obj} to\n"
1092 "@var{value}.")
1093 #define FUNC_NAME s_scm_sys_fast_slot_set_x
1094 {
1095 unsigned long int i;
1096
1097 SCM_VALIDATE_INSTANCE (1, obj);
1098 SCM_VALIDATE_INUM (2, index);
1099 SCM_ASSERT_RANGE (2, index, SCM_INUM (index) >= 0);
1100 i = SCM_INUM (index);
1101 SCM_ASSERT_RANGE (2, index, i < SCM_NUMBER_OF_SLOTS (obj));
1102
1103 SCM_SET_SLOT (obj, i, value);
1104
1105 return SCM_UNSPECIFIED;
1106 }
1107 #undef FUNC_NAME
1108
1109
1110 SCM_SYNTAX (s_atslot_ref, "@slot-ref", scm_i_makbimacro, scm_m_atslot_ref);
1111 SCM_SYNTAX (s_atslot_set_x, "@slot-set!", scm_i_makbimacro, scm_m_atslot_set_x);
1112
1113
1114 /** Utilities **/
1115
1116 /* In the future, this function will return the effective slot
1117 * definition associated with SLOT_NAME. Now it just returns some of
1118 * the information which will be stored in the effective slot
1119 * definition.
1120 */
1121
1122 static SCM
1123 slot_definition_using_name (SCM class, SCM slot_name)
1124 {
1125 register SCM slots = SCM_SLOT (class, scm_si_getters_n_setters);
1126 for (; !SCM_NULLP (slots); slots = SCM_CDR (slots))
1127 if (SCM_CAAR (slots) == slot_name)
1128 return SCM_CAR (slots);
1129 return SCM_BOOL_F;
1130 }
1131
1132 static SCM
1133 get_slot_value (SCM class SCM_UNUSED, SCM obj, SCM slotdef)
1134 {
1135 SCM access = SCM_CDDR (slotdef);
1136 /* Two cases here:
1137 * - access is an integer (the offset of this slot in the slots vector)
1138 * - otherwise (car access) is the getter function to apply
1139 */
1140 if (SCM_INUMP (access))
1141 return SCM_SLOT (obj, SCM_INUM (access));
1142 else
1143 {
1144 /* We must evaluate (apply (car access) (list obj))
1145 * where (car access) is known to be a closure of arity 1 */
1146 register SCM code, env;
1147
1148 code = SCM_CAR (access);
1149 if (!SCM_CLOSUREP (code))
1150 return SCM_SUBRF (code) (obj);
1151 env = SCM_EXTEND_ENV (SCM_CLOSURE_FORMALS (code),
1152 scm_list_1 (obj),
1153 SCM_ENV (code));
1154 /* Evaluate the closure body */
1155 return scm_eval_body (SCM_CLOSURE_BODY (code), env);
1156 }
1157 }
1158
1159 static SCM
1160 get_slot_value_using_name (SCM class, SCM obj, SCM slot_name)
1161 {
1162 SCM slotdef = slot_definition_using_name (class, slot_name);
1163 if (scm_is_true (slotdef))
1164 return get_slot_value (class, obj, slotdef);
1165 else
1166 return CALL_GF3 ("slot-missing", class, obj, slot_name);
1167 }
1168
1169 static SCM
1170 set_slot_value (SCM class SCM_UNUSED, SCM obj, SCM slotdef, SCM value)
1171 {
1172 SCM access = SCM_CDDR (slotdef);
1173 /* Two cases here:
1174 * - access is an integer (the offset of this slot in the slots vector)
1175 * - otherwise (cadr access) is the setter function to apply
1176 */
1177 if (SCM_INUMP (access))
1178 SCM_SET_SLOT (obj, SCM_INUM (access), value);
1179 else
1180 {
1181 /* We must evaluate (apply (cadr l) (list obj value))
1182 * where (cadr l) is known to be a closure of arity 2 */
1183 register SCM code, env;
1184
1185 code = SCM_CADR (access);
1186 if (!SCM_CLOSUREP (code))
1187 SCM_SUBRF (code) (obj, value);
1188 else
1189 {
1190 env = SCM_EXTEND_ENV (SCM_CLOSURE_FORMALS (code),
1191 scm_list_2 (obj, value),
1192 SCM_ENV (code));
1193 /* Evaluate the closure body */
1194 scm_eval_body (SCM_CLOSURE_BODY (code), env);
1195 }
1196 }
1197 return SCM_UNSPECIFIED;
1198 }
1199
1200 static SCM
1201 set_slot_value_using_name (SCM class, SCM obj, SCM slot_name, SCM value)
1202 {
1203 SCM slotdef = slot_definition_using_name (class, slot_name);
1204 if (scm_is_true (slotdef))
1205 return set_slot_value (class, obj, slotdef, value);
1206 else
1207 return CALL_GF4 ("slot-missing", class, obj, slot_name, value);
1208 }
1209
1210 static SCM
1211 test_slot_existence (SCM class SCM_UNUSED, SCM obj, SCM slot_name)
1212 {
1213 register SCM l;
1214
1215 for (l = SCM_ACCESSORS_OF (obj); !SCM_NULLP (l); l = SCM_CDR (l))
1216 if (SCM_EQ_P (SCM_CAAR (l), slot_name))
1217 return SCM_BOOL_T;
1218
1219 return SCM_BOOL_F;
1220 }
1221
1222 /* ======================================== */
1223
1224 SCM_DEFINE (scm_slot_ref_using_class, "slot-ref-using-class", 3, 0, 0,
1225 (SCM class, SCM obj, SCM slot_name),
1226 "")
1227 #define FUNC_NAME s_scm_slot_ref_using_class
1228 {
1229 SCM res;
1230
1231 SCM_VALIDATE_CLASS (1, class);
1232 SCM_VALIDATE_INSTANCE (2, obj);
1233 SCM_VALIDATE_SYMBOL (3, slot_name);
1234
1235 res = get_slot_value_using_name (class, obj, slot_name);
1236 if (SCM_GOOPS_UNBOUNDP (res))
1237 return CALL_GF3 ("slot-unbound", class, obj, slot_name);
1238 return res;
1239 }
1240 #undef FUNC_NAME
1241
1242
1243 SCM_DEFINE (scm_slot_set_using_class_x, "slot-set-using-class!", 4, 0, 0,
1244 (SCM class, SCM obj, SCM slot_name, SCM value),
1245 "")
1246 #define FUNC_NAME s_scm_slot_set_using_class_x
1247 {
1248 SCM_VALIDATE_CLASS (1, class);
1249 SCM_VALIDATE_INSTANCE (2, obj);
1250 SCM_VALIDATE_SYMBOL (3, slot_name);
1251
1252 return set_slot_value_using_name (class, obj, slot_name, value);
1253 }
1254 #undef FUNC_NAME
1255
1256
1257 SCM_DEFINE (scm_slot_bound_using_class_p, "slot-bound-using-class?", 3, 0, 0,
1258 (SCM class, SCM obj, SCM slot_name),
1259 "")
1260 #define FUNC_NAME s_scm_slot_bound_using_class_p
1261 {
1262 SCM_VALIDATE_CLASS (1, class);
1263 SCM_VALIDATE_INSTANCE (2, obj);
1264 SCM_VALIDATE_SYMBOL (3, slot_name);
1265
1266 return (SCM_GOOPS_UNBOUNDP (get_slot_value_using_name (class, obj, slot_name))
1267 ? SCM_BOOL_F
1268 : SCM_BOOL_T);
1269 }
1270 #undef FUNC_NAME
1271
1272 SCM_DEFINE (scm_slot_exists_using_class_p, "slot-exists-using-class?", 3, 0, 0,
1273 (SCM class, SCM obj, SCM slot_name),
1274 "")
1275 #define FUNC_NAME s_scm_slot_exists_using_class_p
1276 {
1277 SCM_VALIDATE_CLASS (1, class);
1278 SCM_VALIDATE_INSTANCE (2, obj);
1279 SCM_VALIDATE_SYMBOL (3, slot_name);
1280 return test_slot_existence (class, obj, slot_name);
1281 }
1282 #undef FUNC_NAME
1283
1284
1285 /* ======================================== */
1286
1287 SCM_DEFINE (scm_slot_ref, "slot-ref", 2, 0, 0,
1288 (SCM obj, SCM slot_name),
1289 "Return the value from @var{obj}'s slot with the name\n"
1290 "@var{slot_name}.")
1291 #define FUNC_NAME s_scm_slot_ref
1292 {
1293 SCM res, class;
1294
1295 SCM_VALIDATE_INSTANCE (1, obj);
1296 TEST_CHANGE_CLASS (obj, class);
1297
1298 res = get_slot_value_using_name (class, obj, slot_name);
1299 if (SCM_GOOPS_UNBOUNDP (res))
1300 return CALL_GF3 ("slot-unbound", class, obj, slot_name);
1301 return res;
1302 }
1303 #undef FUNC_NAME
1304
1305 SCM_DEFINE (scm_slot_set_x, "slot-set!", 3, 0, 0,
1306 (SCM obj, SCM slot_name, SCM value),
1307 "Set the slot named @var{slot_name} of @var{obj} to @var{value}.")
1308 #define FUNC_NAME s_scm_slot_set_x
1309 {
1310 SCM class;
1311
1312 SCM_VALIDATE_INSTANCE (1, obj);
1313 TEST_CHANGE_CLASS(obj, class);
1314
1315 return set_slot_value_using_name (class, obj, slot_name, value);
1316 }
1317 #undef FUNC_NAME
1318
1319 const char *scm_s_slot_set_x = s_scm_slot_set_x;
1320
1321 SCM_DEFINE (scm_slot_bound_p, "slot-bound?", 2, 0, 0,
1322 (SCM obj, SCM slot_name),
1323 "Return @code{#t} if the slot named @var{slot_name} of @var{obj}\n"
1324 "is bound.")
1325 #define FUNC_NAME s_scm_slot_bound_p
1326 {
1327 SCM class;
1328
1329 SCM_VALIDATE_INSTANCE (1, obj);
1330 TEST_CHANGE_CLASS(obj, class);
1331
1332 return (SCM_GOOPS_UNBOUNDP (get_slot_value_using_name (class,
1333 obj,
1334 slot_name))
1335 ? SCM_BOOL_F
1336 : SCM_BOOL_T);
1337 }
1338 #undef FUNC_NAME
1339
1340 SCM_DEFINE (scm_slot_exists_p, "slot-exists?", 2, 0, 0,
1341 (SCM obj, SCM slot_name),
1342 "Return @code{#t} if @var{obj} has a slot named @var{slot_name}.")
1343 #define FUNC_NAME s_scm_slot_exists_p
1344 {
1345 SCM class;
1346
1347 SCM_VALIDATE_INSTANCE (1, obj);
1348 SCM_VALIDATE_SYMBOL (2, slot_name);
1349 TEST_CHANGE_CLASS (obj, class);
1350
1351 return test_slot_existence (class, obj, slot_name);
1352 }
1353 #undef FUNC_NAME
1354
1355
1356 /******************************************************************************
1357 *
1358 * %allocate-instance (the low level instance allocation primitive)
1359 *
1360 ******************************************************************************/
1361
1362 static void clear_method_cache (SCM);
1363
1364 static SCM
1365 wrap_init (SCM class, SCM *m, long n)
1366 {
1367 long i;
1368
1369 /* Set all slots to unbound */
1370 for (i = 0; i < n; i++)
1371 m[i] = SCM_GOOPS_UNBOUND;
1372
1373 return scm_double_cell ((((scm_t_bits) SCM_STRUCT_DATA (class))
1374 | scm_tc3_struct),
1375 (scm_t_bits) m, 0, 0);
1376 }
1377
1378 SCM_DEFINE (scm_sys_allocate_instance, "%allocate-instance", 2, 0, 0,
1379 (SCM class, SCM initargs),
1380 "Create a new instance of class @var{class} and initialize it\n"
1381 "from the arguments @var{initargs}.")
1382 #define FUNC_NAME s_scm_sys_allocate_instance
1383 {
1384 SCM *m;
1385 long n;
1386
1387 SCM_VALIDATE_CLASS (1, class);
1388
1389 /* Most instances */
1390 if (SCM_CLASS_FLAGS (class) & SCM_STRUCTF_LIGHT)
1391 {
1392 n = SCM_INUM (SCM_SLOT (class, scm_si_nfields));
1393 m = (SCM *) scm_gc_malloc (n * sizeof (SCM), "struct");
1394 return wrap_init (class, m, n);
1395 }
1396
1397 /* Foreign objects */
1398 if (SCM_CLASS_FLAGS (class) & SCM_CLASSF_FOREIGN)
1399 return scm_make_foreign_object (class, initargs);
1400
1401 n = SCM_INUM (SCM_SLOT (class, scm_si_nfields));
1402
1403 /* Entities */
1404 if (SCM_CLASS_FLAGS (class) & SCM_CLASSF_ENTITY)
1405 {
1406 m = (SCM *) scm_alloc_struct (n, scm_struct_entity_n_extra_words,
1407 "entity struct");
1408 m[scm_struct_i_setter] = SCM_BOOL_F;
1409 m[scm_struct_i_procedure] = SCM_BOOL_F;
1410 /* Generic functions */
1411 if (SCM_CLASS_FLAGS (class) & SCM_CLASSF_PURE_GENERIC)
1412 {
1413 SCM gf = wrap_init (class, m, n);
1414 clear_method_cache (gf);
1415 return gf;
1416 }
1417 else
1418 return wrap_init (class, m, n);
1419 }
1420
1421 /* Class objects */
1422 if (SCM_CLASS_FLAGS (class) & SCM_CLASSF_METACLASS)
1423 {
1424 long i;
1425
1426 /* allocate class object */
1427 SCM z = scm_make_struct (class, SCM_INUM0, SCM_EOL);
1428
1429 SCM_SET_SLOT (z, scm_si_print, SCM_GOOPS_UNBOUND);
1430 for (i = scm_si_goops_fields; i < n; i++)
1431 SCM_SET_SLOT (z, i, SCM_GOOPS_UNBOUND);
1432
1433 if (SCM_SUBCLASSP (class, scm_class_entity_class))
1434 SCM_SET_CLASS_FLAGS (z, SCM_CLASSF_OPERATOR | SCM_CLASSF_ENTITY);
1435 else if (SCM_SUBCLASSP (class, scm_class_operator_class))
1436 SCM_SET_CLASS_FLAGS (z, SCM_CLASSF_OPERATOR);
1437
1438 return z;
1439 }
1440
1441 /* Non-light instances */
1442 {
1443 m = (SCM *) scm_alloc_struct (n, scm_struct_n_extra_words, "heavy struct");
1444 return wrap_init (class, m, n);
1445 }
1446 }
1447 #undef FUNC_NAME
1448
1449 SCM_DEFINE (scm_sys_set_object_setter_x, "%set-object-setter!", 2, 0, 0,
1450 (SCM obj, SCM setter),
1451 "")
1452 #define FUNC_NAME s_scm_sys_set_object_setter_x
1453 {
1454 SCM_ASSERT (SCM_STRUCTP (obj)
1455 && ((SCM_CLASS_FLAGS (obj) & SCM_CLASSF_OPERATOR)
1456 || SCM_I_ENTITYP (obj)),
1457 obj,
1458 SCM_ARG1,
1459 FUNC_NAME);
1460 if (SCM_I_ENTITYP (obj))
1461 SCM_SET_ENTITY_SETTER (obj, setter);
1462 else
1463 SCM_OPERATOR_CLASS (obj)->setter = setter;
1464 return SCM_UNSPECIFIED;
1465 }
1466 #undef FUNC_NAME
1467
1468 /******************************************************************************
1469 *
1470 * %modify-instance (used by change-class to modify in place)
1471 *
1472 ******************************************************************************/
1473
1474 SCM_DEFINE (scm_sys_modify_instance, "%modify-instance", 2, 0, 0,
1475 (SCM old, SCM new),
1476 "")
1477 #define FUNC_NAME s_scm_sys_modify_instance
1478 {
1479 SCM_VALIDATE_INSTANCE (1, old);
1480 SCM_VALIDATE_INSTANCE (2, new);
1481
1482 /* Exchange the data contained in old and new. We exchange rather than
1483 * scratch the old value with new to be correct with GC.
1484 * See "Class redefinition protocol above".
1485 */
1486 SCM_REDEFER_INTS;
1487 {
1488 SCM car = SCM_CAR (old);
1489 SCM cdr = SCM_CDR (old);
1490 SCM_SETCAR (old, SCM_CAR (new));
1491 SCM_SETCDR (old, SCM_CDR (new));
1492 SCM_SETCAR (new, car);
1493 SCM_SETCDR (new, cdr);
1494 }
1495 SCM_REALLOW_INTS;
1496 return SCM_UNSPECIFIED;
1497 }
1498 #undef FUNC_NAME
1499
1500 SCM_DEFINE (scm_sys_modify_class, "%modify-class", 2, 0, 0,
1501 (SCM old, SCM new),
1502 "")
1503 #define FUNC_NAME s_scm_sys_modify_class
1504 {
1505 SCM_VALIDATE_CLASS (1, old);
1506 SCM_VALIDATE_CLASS (2, new);
1507
1508 SCM_REDEFER_INTS;
1509 {
1510 SCM car = SCM_CAR (old);
1511 SCM cdr = SCM_CDR (old);
1512 SCM_SETCAR (old, SCM_CAR (new));
1513 SCM_SETCDR (old, SCM_CDR (new));
1514 SCM_STRUCT_DATA (old)[scm_vtable_index_vtable] = SCM_UNPACK (old);
1515 SCM_SETCAR (new, car);
1516 SCM_SETCDR (new, cdr);
1517 SCM_STRUCT_DATA (new)[scm_vtable_index_vtable] = SCM_UNPACK (new);
1518 }
1519 SCM_REALLOW_INTS;
1520 return SCM_UNSPECIFIED;
1521 }
1522 #undef FUNC_NAME
1523
1524 SCM_DEFINE (scm_sys_invalidate_class, "%invalidate-class", 1, 0, 0,
1525 (SCM class),
1526 "")
1527 #define FUNC_NAME s_scm_sys_invalidate_class
1528 {
1529 SCM_VALIDATE_CLASS (1, class);
1530 SCM_CLEAR_CLASS_FLAGS (class, SCM_CLASSF_GOOPS_VALID);
1531 return SCM_UNSPECIFIED;
1532 }
1533 #undef FUNC_NAME
1534
1535 /* When instances change class, they finally get a new body, but
1536 * before that, they go through purgatory in hell. Odd as it may
1537 * seem, this data structure saves us from eternal suffering in
1538 * infinite recursions.
1539 */
1540
1541 static scm_t_bits **hell;
1542 static long n_hell = 1; /* one place for the evil one himself */
1543 static long hell_size = 4;
1544 static SCM hell_mutex;
1545
1546 static long
1547 burnin (SCM o)
1548 {
1549 long i;
1550 for (i = 1; i < n_hell; ++i)
1551 if (SCM_STRUCT_DATA (o) == hell[i])
1552 return i;
1553 return 0;
1554 }
1555
1556 static void
1557 go_to_hell (void *o)
1558 {
1559 SCM obj = SCM_PACK ((scm_t_bits) o);
1560 scm_lock_mutex (hell_mutex);
1561 if (n_hell == hell_size)
1562 {
1563 long new_size = 2 * hell_size;
1564 hell = scm_realloc (hell, new_size);
1565 hell_size = new_size;
1566 }
1567 hell[n_hell++] = SCM_STRUCT_DATA (obj);
1568 scm_unlock_mutex (hell_mutex);
1569 }
1570
1571 static void
1572 go_to_heaven (void *o)
1573 {
1574 scm_lock_mutex (hell_mutex);
1575 hell[burnin (SCM_PACK ((scm_t_bits) o))] = hell[--n_hell];
1576 scm_unlock_mutex (hell_mutex);
1577 }
1578
1579
1580 SCM_SYMBOL (scm_sym_change_class, "change-class");
1581
1582 static SCM
1583 purgatory (void *args)
1584 {
1585 return scm_apply_0 (GETVAR (scm_sym_change_class),
1586 SCM_PACK ((scm_t_bits) args));
1587 }
1588
1589 /* This function calls the generic function change-class for all
1590 * instances which aren't currently undergoing class change.
1591 */
1592
1593 void
1594 scm_change_object_class (SCM obj, SCM old_class SCM_UNUSED, SCM new_class)
1595 {
1596 if (!burnin (obj))
1597 scm_internal_dynamic_wind (go_to_hell, purgatory, go_to_heaven,
1598 (void *) SCM_UNPACK (scm_list_2 (obj, new_class)),
1599 (void *) SCM_UNPACK (obj));
1600 }
1601
1602 /******************************************************************************
1603 *
1604 * GGGG FFFFF
1605 * G F
1606 * G GG FFF
1607 * G G F
1608 * GGG E N E R I C F U N C T I O N S
1609 *
1610 * This implementation provides
1611 * - generic functions (with class specializers)
1612 * - multi-methods
1613 * - next-method
1614 * - a hard-coded MOP for standard gf, which can be overloaded for non-std gf
1615 *
1616 ******************************************************************************/
1617
1618 SCM_KEYWORD (k_name, "name");
1619
1620 SCM_SYMBOL (sym_no_method, "no-method");
1621
1622 static SCM list_of_no_method;
1623
1624 SCM_GLOBAL_SYMBOL (scm_sym_args, "args");
1625
1626
1627 SCM
1628 scm_make_method_cache (SCM gf)
1629 {
1630 return scm_list_5 (SCM_IM_DISPATCH,
1631 scm_sym_args,
1632 SCM_MAKINUM (1),
1633 scm_c_make_vector (SCM_INITIAL_MCACHE_SIZE,
1634 list_of_no_method),
1635 gf);
1636 }
1637
1638 static void
1639 clear_method_cache (SCM gf)
1640 {
1641 SCM cache = scm_make_method_cache (gf);
1642 SCM_SET_ENTITY_PROCEDURE (gf, cache);
1643 SCM_SET_SLOT (gf, scm_si_used_by, SCM_BOOL_F);
1644 }
1645
1646 SCM_DEFINE (scm_sys_invalidate_method_cache_x, "%invalidate-method-cache!", 1, 0, 0,
1647 (SCM gf),
1648 "")
1649 #define FUNC_NAME s_scm_sys_invalidate_method_cache_x
1650 {
1651 SCM used_by;
1652 SCM_ASSERT (SCM_PUREGENERICP (gf), gf, SCM_ARG1, FUNC_NAME);
1653 used_by = SCM_SLOT (gf, scm_si_used_by);
1654 if (scm_is_true (used_by))
1655 {
1656 SCM methods = SCM_SLOT (gf, scm_si_methods);
1657 for (; SCM_CONSP (used_by); used_by = SCM_CDR (used_by))
1658 scm_sys_invalidate_method_cache_x (SCM_CAR (used_by));
1659 clear_method_cache (gf);
1660 for (; SCM_CONSP (methods); methods = SCM_CDR (methods))
1661 SCM_SET_SLOT (SCM_CAR (methods), scm_si_code_table, SCM_EOL);
1662 }
1663 {
1664 SCM n = SCM_SLOT (gf, scm_si_n_specialized);
1665 /* The sign of n is a flag indicating rest args. */
1666 SCM_SET_MCACHE_N_SPECIALIZED (SCM_ENTITY_PROCEDURE (gf), n);
1667 }
1668 return SCM_UNSPECIFIED;
1669 }
1670 #undef FUNC_NAME
1671
1672 SCM_DEFINE (scm_generic_capability_p, "generic-capability?", 1, 0, 0,
1673 (SCM proc),
1674 "")
1675 #define FUNC_NAME s_scm_generic_capability_p
1676 {
1677 SCM_ASSERT (scm_is_true (scm_procedure_p (proc)),
1678 proc, SCM_ARG1, FUNC_NAME);
1679 return (scm_subr_p (proc) && SCM_SUBR_GENERIC (proc)
1680 ? SCM_BOOL_T
1681 : SCM_BOOL_F);
1682 }
1683 #undef FUNC_NAME
1684
1685 SCM_DEFINE (scm_enable_primitive_generic_x, "enable-primitive-generic!", 0, 0, 1,
1686 (SCM subrs),
1687 "")
1688 #define FUNC_NAME s_scm_enable_primitive_generic_x
1689 {
1690 SCM_VALIDATE_REST_ARGUMENT (subrs);
1691 while (!SCM_NULLP (subrs))
1692 {
1693 SCM subr = SCM_CAR (subrs);
1694 SCM_ASSERT (scm_subr_p (subr) && SCM_SUBR_GENERIC (subr),
1695 subr, SCM_ARGn, FUNC_NAME);
1696 *SCM_SUBR_GENERIC (subr)
1697 = scm_make (scm_list_3 (scm_class_generic,
1698 k_name,
1699 SCM_SNAME (subr)));
1700 subrs = SCM_CDR (subrs);
1701 }
1702 return SCM_UNSPECIFIED;
1703 }
1704 #undef FUNC_NAME
1705
1706 SCM_DEFINE (scm_primitive_generic_generic, "primitive-generic-generic", 1, 0, 0,
1707 (SCM subr),
1708 "")
1709 #define FUNC_NAME s_scm_primitive_generic_generic
1710 {
1711 if (scm_subr_p (subr) && SCM_SUBR_GENERIC (subr))
1712 {
1713 if (!*SCM_SUBR_GENERIC (subr))
1714 scm_enable_primitive_generic_x (scm_list_1 (subr));
1715 return *SCM_SUBR_GENERIC (subr);
1716 }
1717 SCM_WRONG_TYPE_ARG (SCM_ARG1, subr);
1718 }
1719 #undef FUNC_NAME
1720
1721 typedef struct t_extension {
1722 struct t_extension *next;
1723 SCM extended;
1724 SCM extension;
1725 } t_extension;
1726
1727 static t_extension *extensions = 0;
1728
1729 SCM_VARIABLE (scm_var_make_extended_generic, "make-extended-generic");
1730
1731 void
1732 scm_c_extend_primitive_generic (SCM extended, SCM extension)
1733 {
1734 if (goops_loaded_p)
1735 {
1736 SCM gf, gext;
1737 if (!*SCM_SUBR_GENERIC (extended))
1738 scm_enable_primitive_generic_x (scm_list_1 (extended));
1739 gf = *SCM_SUBR_GENERIC (extended);
1740 gext = scm_call_2 (SCM_VARIABLE_REF (scm_var_make_extended_generic),
1741 gf,
1742 SCM_SNAME (extension));
1743 *SCM_SUBR_GENERIC (extension) = gext;
1744 }
1745 else
1746 {
1747 t_extension *e = scm_malloc (sizeof (t_extension));
1748 t_extension **loc = &extensions;
1749 /* Make sure that extensions are placed before their own
1750 * extensions in the extensions list. O(N^2) algorithm, but
1751 * extensions of primitive generics are rare.
1752 */
1753 while (*loc && extension != (*loc)->extended)
1754 loc = &(*loc)->next;
1755 e->next = *loc;
1756 e->extended = extended;
1757 e->extension = extension;
1758 *loc = e;
1759 }
1760 }
1761
1762 static void
1763 setup_extended_primitive_generics ()
1764 {
1765 while (extensions)
1766 {
1767 t_extension *e = extensions;
1768 scm_c_extend_primitive_generic (e->extended, e->extension);
1769 extensions = e->next;
1770 free (e);
1771 }
1772 }
1773
1774 /******************************************************************************
1775 *
1776 * Protocol for calling a generic fumction
1777 * This protocol is roughly equivalent to (parameter are a little bit different
1778 * for efficiency reasons):
1779 *
1780 * + apply-generic (gf args)
1781 * + compute-applicable-methods (gf args ...)
1782 * + sort-applicable-methods (methods args)
1783 * + apply-methods (gf methods args)
1784 *
1785 * apply-methods calls make-next-method to build the "continuation" of a a
1786 * method. Applying a next-method will call apply-next-method which in
1787 * turn will call apply again to call effectively the following method.
1788 *
1789 ******************************************************************************/
1790
1791 static int
1792 applicablep (SCM actual, SCM formal)
1793 {
1794 /* We already know that the cpl is well formed. */
1795 return scm_is_true (scm_c_memq (formal, SCM_SLOT (actual, scm_si_cpl)));
1796 }
1797
1798 static int
1799 more_specificp (SCM m1, SCM m2, SCM const *targs)
1800 {
1801 register SCM s1, s2;
1802 register long i;
1803 /*
1804 * Note:
1805 * m1 and m2 can have != length (i.e. one can be one element longer than the
1806 * other when we have a dotted parameter list). For instance, with the call
1807 * (M 1)
1808 * with
1809 * (define-method M (a . l) ....)
1810 * (define-method M (a) ....)
1811 *
1812 * we consider that the second method is more specific.
1813 *
1814 * BTW, targs is an array of types. We don't need it's size since
1815 * we already know that m1 and m2 are applicable (no risk to go past
1816 * the end of this array).
1817 *
1818 */
1819 for (i=0, s1=SPEC_OF(m1), s2=SPEC_OF(m2); ; i++, s1=SCM_CDR(s1), s2=SCM_CDR(s2)) {
1820 if (SCM_NULLP(s1)) return 1;
1821 if (SCM_NULLP(s2)) return 0;
1822 if (SCM_CAR(s1) != SCM_CAR(s2)) {
1823 register SCM l, cs1 = SCM_CAR(s1), cs2 = SCM_CAR(s2);
1824
1825 for (l = SCM_SLOT (targs[i], scm_si_cpl); ; l = SCM_CDR(l)) {
1826 if (cs1 == SCM_CAR(l))
1827 return 1;
1828 if (cs2 == SCM_CAR(l))
1829 return 0;
1830 }
1831 return 0;/* should not occur! */
1832 }
1833 }
1834 return 0; /* should not occur! */
1835 }
1836
1837 #define BUFFSIZE 32 /* big enough for most uses */
1838
1839 static SCM
1840 scm_i_vector2list (SCM l, long len)
1841 {
1842 long j;
1843 SCM z = scm_c_make_vector (len, SCM_UNDEFINED);
1844
1845 for (j = 0; j < len; j++, l = SCM_CDR (l)) {
1846 SCM_VECTOR_SET (z, j, SCM_CAR (l));
1847 }
1848 return z;
1849 }
1850
1851 static SCM
1852 sort_applicable_methods (SCM method_list, long size, SCM const *targs)
1853 {
1854 long i, j, incr;
1855 SCM *v, vector = SCM_EOL;
1856 SCM buffer[BUFFSIZE];
1857 SCM save = method_list;
1858
1859 /* For reasonably sized method_lists we can try to avoid all the
1860 * consing and reorder the list in place...
1861 * This idea is due to David McClain <Dave_McClain@msn.com>
1862 */
1863 if (size <= BUFFSIZE)
1864 {
1865 for (i = 0; i < size; i++)
1866 {
1867 buffer[i] = SCM_CAR (method_list);
1868 method_list = SCM_CDR (method_list);
1869 }
1870 v = buffer;
1871 }
1872 else
1873 {
1874 /* Too many elements in method_list to keep everything locally */
1875 vector = scm_i_vector2list (save, size);
1876
1877 /*
1878 This is a new vector. Don't worry about the write barrier.
1879 We're not allocating elements in this routine, so this should
1880 pose no problem.
1881 */
1882 v = SCM_WRITABLE_VELTS (vector);
1883 }
1884
1885 /* Use a simple shell sort since it is generally faster than qsort on
1886 * small vectors (which is probably mostly the case when we have to
1887 * sort a list of applicable methods).
1888 */
1889 for (incr = size / 2; incr; incr /= 2)
1890 {
1891 for (i = incr; i < size; i++)
1892 {
1893 for (j = i - incr; j >= 0; j -= incr)
1894 {
1895 if (more_specificp (v[j], v[j+incr], targs))
1896 break;
1897 else
1898 {
1899 SCM tmp = v[j + incr];
1900 v[j + incr] = v[j];
1901 v[j] = tmp;
1902 }
1903 }
1904 }
1905 }
1906
1907 if (size <= BUFFSIZE)
1908 {
1909 /* We did it in locally, so restore the original list (reordered) in-place */
1910 for (i = 0, method_list = save; i < size; i++, v++)
1911 {
1912 SCM_SETCAR (method_list, *v);
1913 method_list = SCM_CDR (method_list);
1914 }
1915 return save;
1916 }
1917 /* If we are here, that's that we did it the hard way... */
1918 return scm_vector_to_list (vector);
1919 }
1920
1921 SCM
1922 scm_compute_applicable_methods (SCM gf, SCM args, long len, int find_method_p)
1923 {
1924 register long i;
1925 long count = 0;
1926 SCM l, fl, applicable = SCM_EOL;
1927 SCM save = args;
1928 SCM buffer[BUFFSIZE];
1929 SCM const *types;
1930 SCM *p;
1931 SCM tmp = SCM_EOL;
1932
1933 /* Build the list of arguments types */
1934 if (len >= BUFFSIZE) {
1935 tmp = scm_c_make_vector (len, SCM_UNDEFINED);
1936 /* NOTE: Using pointers to malloced memory won't work if we
1937 1. have preemtive threading, and,
1938 2. have a GC which moves objects. */
1939 types = p = SCM_WRITABLE_VELTS(tmp);
1940
1941 /*
1942 note that we don't have to work to reset the generation
1943 count. TMP is a new vector anyway, and it is found
1944 conservatively.
1945 */
1946 }
1947 else
1948 types = p = buffer;
1949
1950 for ( ; !SCM_NULLP (args); args = SCM_CDR (args))
1951 *p++ = scm_class_of (SCM_CAR (args));
1952
1953 /* Build a list of all applicable methods */
1954 for (l = scm_generic_function_methods (gf); !SCM_NULLP (l); l = SCM_CDR (l))
1955 {
1956 fl = SPEC_OF (SCM_CAR (l));
1957 /* Only accept accessors which match exactly in first arg. */
1958 if (SCM_ACCESSORP (SCM_CAR (l))
1959 && (SCM_NULLP (fl) || types[0] != SCM_CAR (fl)))
1960 continue;
1961 for (i = 0; ; i++, fl = SCM_CDR (fl))
1962 {
1963 if (SCM_INSTANCEP (fl)
1964 /* We have a dotted argument list */
1965 || (i >= len && SCM_NULLP (fl)))
1966 { /* both list exhausted */
1967 applicable = scm_cons (SCM_CAR (l), applicable);
1968 count += 1;
1969 break;
1970 }
1971 if (i >= len
1972 || SCM_NULLP (fl)
1973 || !applicablep (types[i], SCM_CAR (fl)))
1974 break;
1975 }
1976 }
1977
1978 if (count == 0)
1979 {
1980 if (find_method_p)
1981 return SCM_BOOL_F;
1982 CALL_GF2 ("no-applicable-method", gf, save);
1983 /* if we are here, it's because no-applicable-method hasn't signaled an error */
1984 return SCM_BOOL_F;
1985 }
1986
1987 scm_remember_upto_here_1 (tmp);
1988 return (count == 1
1989 ? applicable
1990 : sort_applicable_methods (applicable, count, types));
1991 }
1992
1993 #if 0
1994 SCM_PROC (s_sys_compute_applicable_methods, "%compute-applicable-methods", 2, 0, 0, scm_sys_compute_applicable_methods);
1995 #endif
1996
1997 static const char s_sys_compute_applicable_methods[] = "%compute-applicable-methods";
1998
1999 SCM
2000 scm_sys_compute_applicable_methods (SCM gf, SCM args)
2001 #define FUNC_NAME s_sys_compute_applicable_methods
2002 {
2003 long n;
2004 SCM_VALIDATE_GENERIC (1, gf);
2005 n = scm_ilength (args);
2006 SCM_ASSERT (n >= 0, args, SCM_ARG2, FUNC_NAME);
2007 return scm_compute_applicable_methods (gf, args, n, 1);
2008 }
2009 #undef FUNC_NAME
2010
2011 SCM_SYMBOL (sym_compute_applicable_methods, "compute-applicable-methods");
2012 SCM_VARIABLE_INIT (var_compute_applicable_methods, "compute-applicable-methods", scm_c_define_gsubr (s_sys_compute_applicable_methods, 2, 0, 0, scm_sys_compute_applicable_methods));
2013
2014 static void
2015 lock_cache_mutex (void *m)
2016 {
2017 SCM mutex = SCM_PACK ((scm_t_bits) m);
2018 scm_lock_mutex (mutex);
2019 }
2020
2021 static void
2022 unlock_cache_mutex (void *m)
2023 {
2024 SCM mutex = SCM_PACK ((scm_t_bits) m);
2025 scm_unlock_mutex (mutex);
2026 }
2027
2028 static SCM
2029 call_memoize_method (void *a)
2030 {
2031 SCM args = SCM_PACK ((scm_t_bits) a);
2032 SCM gf = SCM_CAR (args);
2033 SCM x = SCM_CADR (args);
2034 /* First check if another thread has inserted a method between
2035 * the cache miss and locking the mutex.
2036 */
2037 SCM cmethod = scm_mcache_lookup_cmethod (x, SCM_CDDR (args));
2038 if (scm_is_true (cmethod))
2039 return cmethod;
2040 /*fixme* Use scm_apply */
2041 return CALL_GF3 ("memoize-method!", gf, SCM_CDDR (args), x);
2042 }
2043
2044 SCM
2045 scm_memoize_method (SCM x, SCM args)
2046 {
2047 SCM gf = SCM_CAR (scm_last_pair (x));
2048 return scm_internal_dynamic_wind (
2049 lock_cache_mutex,
2050 call_memoize_method,
2051 unlock_cache_mutex,
2052 (void *) SCM_UNPACK (scm_cons2 (gf, x, args)),
2053 (void *) SCM_UNPACK (SCM_SLOT (gf, scm_si_cache_mutex)));
2054 }
2055
2056 /******************************************************************************
2057 *
2058 * A simple make (which will be redefined later in Scheme)
2059 * This version handles only creation of gf, methods and classes (no instances)
2060 *
2061 * Since this code will disappear when Goops will be fully booted,
2062 * no precaution is taken to be efficient.
2063 *
2064 ******************************************************************************/
2065
2066 SCM_KEYWORD (k_setter, "setter");
2067 SCM_KEYWORD (k_specializers, "specializers");
2068 SCM_KEYWORD (k_procedure, "procedure");
2069 SCM_KEYWORD (k_dsupers, "dsupers");
2070 SCM_KEYWORD (k_slots, "slots");
2071 SCM_KEYWORD (k_gf, "generic-function");
2072
2073 SCM_DEFINE (scm_make, "make", 0, 0, 1,
2074 (SCM args),
2075 "Make a new object. @var{args} must contain the class and\n"
2076 "all necessary initialization information.")
2077 #define FUNC_NAME s_scm_make
2078 {
2079 SCM class, z;
2080 long len = scm_ilength (args);
2081
2082 if (len <= 0 || (len & 1) == 0)
2083 SCM_WRONG_NUM_ARGS ();
2084
2085 class = SCM_CAR(args);
2086 args = SCM_CDR(args);
2087
2088 if (class == scm_class_generic || class == scm_class_accessor)
2089 {
2090 z = scm_make_struct (class, SCM_INUM0,
2091 scm_list_5 (SCM_EOL,
2092 SCM_INUM0,
2093 SCM_BOOL_F,
2094 scm_make_mutex (),
2095 SCM_EOL));
2096 scm_set_procedure_property_x (z, scm_sym_name,
2097 scm_get_keyword (k_name,
2098 args,
2099 SCM_BOOL_F));
2100 clear_method_cache (z);
2101 if (class == scm_class_accessor)
2102 {
2103 SCM setter = scm_get_keyword (k_setter, args, SCM_BOOL_F);
2104 if (scm_is_true (setter))
2105 scm_sys_set_object_setter_x (z, setter);
2106 }
2107 }
2108 else
2109 {
2110 z = scm_sys_allocate_instance (class, args);
2111
2112 if (class == scm_class_method
2113 || class == scm_class_simple_method
2114 || class == scm_class_accessor_method)
2115 {
2116 SCM_SET_SLOT (z, scm_si_generic_function,
2117 scm_i_get_keyword (k_gf,
2118 args,
2119 len - 1,
2120 SCM_BOOL_F,
2121 FUNC_NAME));
2122 SCM_SET_SLOT (z, scm_si_specializers,
2123 scm_i_get_keyword (k_specializers,
2124 args,
2125 len - 1,
2126 SCM_EOL,
2127 FUNC_NAME));
2128 SCM_SET_SLOT (z, scm_si_procedure,
2129 scm_i_get_keyword (k_procedure,
2130 args,
2131 len - 1,
2132 SCM_EOL,
2133 FUNC_NAME));
2134 SCM_SET_SLOT (z, scm_si_code_table, SCM_EOL);
2135 }
2136 else
2137 {
2138 /* In all the others case, make a new class .... No instance here */
2139 SCM_SET_SLOT (z, scm_si_name,
2140 scm_i_get_keyword (k_name,
2141 args,
2142 len - 1,
2143 scm_str2symbol ("???"),
2144 FUNC_NAME));
2145 SCM_SET_SLOT (z, scm_si_direct_supers,
2146 scm_i_get_keyword (k_dsupers,
2147 args,
2148 len - 1,
2149 SCM_EOL,
2150 FUNC_NAME));
2151 SCM_SET_SLOT (z, scm_si_direct_slots,
2152 scm_i_get_keyword (k_slots,
2153 args,
2154 len - 1,
2155 SCM_EOL,
2156 FUNC_NAME));
2157 }
2158 }
2159 return z;
2160 }
2161 #undef FUNC_NAME
2162
2163 SCM_DEFINE (scm_find_method, "find-method", 0, 0, 1,
2164 (SCM l),
2165 "")
2166 #define FUNC_NAME s_scm_find_method
2167 {
2168 SCM gf;
2169 long len = scm_ilength (l);
2170
2171 if (len == 0)
2172 SCM_WRONG_NUM_ARGS ();
2173
2174 gf = SCM_CAR(l); l = SCM_CDR(l);
2175 SCM_VALIDATE_GENERIC (1, gf);
2176 if (SCM_NULLP (SCM_SLOT (gf, scm_si_methods)))
2177 SCM_MISC_ERROR ("no methods for generic ~S", scm_list_1 (gf));
2178
2179 return scm_compute_applicable_methods (gf, l, len - 1, 1);
2180 }
2181 #undef FUNC_NAME
2182
2183 SCM_DEFINE (scm_sys_method_more_specific_p, "%method-more-specific?", 3, 0, 0,
2184 (SCM m1, SCM m2, SCM targs),
2185 "")
2186 #define FUNC_NAME s_scm_sys_method_more_specific_p
2187 {
2188 SCM l, v;
2189 long i, len;
2190
2191 SCM_VALIDATE_METHOD (1, m1);
2192 SCM_VALIDATE_METHOD (2, m2);
2193 SCM_ASSERT ((len = scm_ilength (targs)) != -1, targs, SCM_ARG3, FUNC_NAME);
2194
2195 /* Verify that all the arguments of targs are classes and place them in a vector*/
2196 v = scm_c_make_vector (len, SCM_EOL);
2197
2198 for (i = 0, l = targs; !SCM_NULLP (l); i++, l = SCM_CDR (l)) {
2199 SCM_ASSERT (SCM_CLASSP (SCM_CAR (l)), targs, SCM_ARG3, FUNC_NAME);
2200 SCM_VECTOR_SET (v, i, SCM_CAR(l));
2201 }
2202 return more_specificp (m1, m2, SCM_VELTS(v)) ? SCM_BOOL_T: SCM_BOOL_F;
2203 }
2204 #undef FUNC_NAME
2205
2206
2207
2208 /******************************************************************************
2209 *
2210 * Initializations
2211 *
2212 ******************************************************************************/
2213
2214 static void
2215 fix_cpl (SCM c, SCM before, SCM after)
2216 {
2217 SCM cpl = SCM_SLOT (c, scm_si_cpl);
2218 SCM ls = scm_c_memq (after, cpl);
2219 SCM tail = scm_delq1_x (before, SCM_CDR (ls));
2220 if (scm_is_false (ls))
2221 /* if this condition occurs, fix_cpl should not be applied this way */
2222 abort ();
2223 SCM_SETCAR (ls, before);
2224 SCM_SETCDR (ls, scm_cons (after, tail));
2225 {
2226 SCM dslots = SCM_SLOT (c, scm_si_direct_slots);
2227 SCM slots = build_slots_list (maplist (dslots), cpl);
2228 SCM g_n_s = compute_getters_n_setters (slots);
2229 SCM_SET_SLOT (c, scm_si_slots, slots);
2230 SCM_SET_SLOT (c, scm_si_getters_n_setters, g_n_s);
2231 }
2232 }
2233
2234
2235 static void
2236 make_stdcls (SCM *var, char *name, SCM meta, SCM super, SCM slots)
2237 {
2238 SCM tmp = scm_str2symbol (name);
2239
2240 *var = scm_permanent_object (scm_basic_make_class (meta,
2241 tmp,
2242 SCM_CONSP (super)
2243 ? super
2244 : scm_list_1 (super),
2245 slots));
2246 DEFVAR(tmp, *var);
2247 }
2248
2249
2250 SCM_KEYWORD (k_slot_definition, "slot-definition");
2251
2252 static void
2253 create_standard_classes (void)
2254 {
2255 SCM slots;
2256 SCM method_slots = scm_list_4 (scm_str2symbol ("generic-function"),
2257 scm_str2symbol ("specializers"),
2258 sym_procedure,
2259 scm_str2symbol ("code-table"));
2260 SCM amethod_slots = scm_list_1 (scm_list_3 (scm_str2symbol ("slot-definition"),
2261 k_init_keyword,
2262 k_slot_definition));
2263 SCM mutex_slot = scm_list_1 (scm_str2symbol ("make-mutex"));
2264 SCM mutex_closure = scm_i_eval_x (scm_list_3 (scm_sym_lambda,
2265 SCM_EOL,
2266 mutex_slot),
2267 SCM_EOL);
2268 SCM gf_slots = scm_list_5 (scm_str2symbol ("methods"),
2269 scm_list_3 (scm_str2symbol ("n-specialized"),
2270 k_init_value,
2271 SCM_INUM0),
2272 scm_list_3 (scm_str2symbol ("used-by"),
2273 k_init_value,
2274 SCM_BOOL_F),
2275 scm_list_3 (scm_str2symbol ("cache-mutex"),
2276 k_init_thunk,
2277 mutex_closure),
2278 scm_list_3 (scm_str2symbol ("extended-by"),
2279 k_init_value,
2280 SCM_EOL));
2281 SCM egf_slots = scm_list_1 (scm_list_3 (scm_str2symbol ("extends"),
2282 k_init_value,
2283 SCM_EOL));
2284 /* Foreign class slot classes */
2285 make_stdcls (&scm_class_foreign_slot, "<foreign-slot>",
2286 scm_class_class, scm_class_top, SCM_EOL);
2287 make_stdcls (&scm_class_protected, "<protected-slot>",
2288 scm_class_class, scm_class_foreign_slot, SCM_EOL);
2289 make_stdcls (&scm_class_opaque, "<opaque-slot>",
2290 scm_class_class, scm_class_foreign_slot, SCM_EOL);
2291 make_stdcls (&scm_class_read_only, "<read-only-slot>",
2292 scm_class_class, scm_class_foreign_slot, SCM_EOL);
2293 make_stdcls (&scm_class_self, "<self-slot>",
2294 scm_class_class,
2295 scm_class_read_only,
2296 SCM_EOL);
2297 make_stdcls (&scm_class_protected_opaque, "<protected-opaque-slot>",
2298 scm_class_class,
2299 scm_list_2 (scm_class_protected, scm_class_opaque),
2300 SCM_EOL);
2301 make_stdcls (&scm_class_protected_read_only, "<protected-read-only-slot>",
2302 scm_class_class,
2303 scm_list_2 (scm_class_protected, scm_class_read_only),
2304 SCM_EOL);
2305 make_stdcls (&scm_class_scm, "<scm-slot>",
2306 scm_class_class, scm_class_protected, SCM_EOL);
2307 make_stdcls (&scm_class_int, "<int-slot>",
2308 scm_class_class, scm_class_foreign_slot, SCM_EOL);
2309 make_stdcls (&scm_class_float, "<float-slot>",
2310 scm_class_class, scm_class_foreign_slot, SCM_EOL);
2311 make_stdcls (&scm_class_double, "<double-slot>",
2312 scm_class_class, scm_class_foreign_slot, SCM_EOL);
2313
2314 /* Continue initialization of class <class> */
2315
2316 slots = build_class_class_slots ();
2317 SCM_SET_SLOT (scm_class_class, scm_si_direct_slots, slots);
2318 SCM_SET_SLOT (scm_class_class, scm_si_slots, slots);
2319 SCM_SET_SLOT (scm_class_class, scm_si_getters_n_setters,
2320 compute_getters_n_setters (slots));
2321
2322 make_stdcls (&scm_class_foreign_class, "<foreign-class>",
2323 scm_class_class, scm_class_class,
2324 scm_list_2 (scm_list_3 (scm_str2symbol ("constructor"),
2325 k_class,
2326 scm_class_opaque),
2327 scm_list_3 (scm_str2symbol ("destructor"),
2328 k_class,
2329 scm_class_opaque)));
2330 make_stdcls (&scm_class_foreign_object, "<foreign-object>",
2331 scm_class_foreign_class, scm_class_object, SCM_EOL);
2332 SCM_SET_CLASS_FLAGS (scm_class_foreign_object, SCM_CLASSF_FOREIGN);
2333
2334 /* scm_class_generic functions classes */
2335 make_stdcls (&scm_class_procedure_class, "<procedure-class>",
2336 scm_class_class, scm_class_class, SCM_EOL);
2337 make_stdcls (&scm_class_entity_class, "<entity-class>",
2338 scm_class_class, scm_class_procedure_class, SCM_EOL);
2339 make_stdcls (&scm_class_operator_class, "<operator-class>",
2340 scm_class_class, scm_class_procedure_class, SCM_EOL);
2341 make_stdcls (&scm_class_operator_with_setter_class,
2342 "<operator-with-setter-class>",
2343 scm_class_class, scm_class_operator_class, SCM_EOL);
2344 make_stdcls (&scm_class_method, "<method>",
2345 scm_class_class, scm_class_object, method_slots);
2346 make_stdcls (&scm_class_simple_method, "<simple-method>",
2347 scm_class_class, scm_class_method, SCM_EOL);
2348 SCM_SET_CLASS_FLAGS (scm_class_simple_method, SCM_CLASSF_SIMPLE_METHOD);
2349 make_stdcls (&scm_class_accessor_method, "<accessor-method>",
2350 scm_class_class, scm_class_simple_method, amethod_slots);
2351 SCM_SET_CLASS_FLAGS (scm_class_accessor_method, SCM_CLASSF_ACCESSOR_METHOD);
2352 make_stdcls (&scm_class_applicable, "<applicable>",
2353 scm_class_class, scm_class_top, SCM_EOL);
2354 make_stdcls (&scm_class_entity, "<entity>",
2355 scm_class_entity_class,
2356 scm_list_2 (scm_class_object, scm_class_applicable),
2357 SCM_EOL);
2358 make_stdcls (&scm_class_entity_with_setter, "<entity-with-setter>",
2359 scm_class_entity_class, scm_class_entity, SCM_EOL);
2360 make_stdcls (&scm_class_generic, "<generic>",
2361 scm_class_entity_class, scm_class_entity, gf_slots);
2362 SCM_SET_CLASS_FLAGS (scm_class_generic, SCM_CLASSF_PURE_GENERIC);
2363 make_stdcls (&scm_class_extended_generic, "<extended-generic>",
2364 scm_class_entity_class, scm_class_generic, egf_slots);
2365 SCM_SET_CLASS_FLAGS (scm_class_extended_generic, SCM_CLASSF_PURE_GENERIC);
2366 make_stdcls (&scm_class_generic_with_setter, "<generic-with-setter>",
2367 scm_class_entity_class,
2368 scm_list_2 (scm_class_generic, scm_class_entity_with_setter),
2369 SCM_EOL);
2370 SCM_SET_CLASS_FLAGS (scm_class_generic_with_setter, SCM_CLASSF_PURE_GENERIC);
2371 make_stdcls (&scm_class_accessor, "<accessor>",
2372 scm_class_entity_class, scm_class_generic_with_setter, SCM_EOL);
2373 SCM_SET_CLASS_FLAGS (scm_class_accessor, SCM_CLASSF_PURE_GENERIC);
2374 make_stdcls (&scm_class_extended_generic_with_setter,
2375 "<extended-generic-with-setter>",
2376 scm_class_entity_class,
2377 scm_list_2 (scm_class_generic_with_setter,
2378 scm_class_extended_generic),
2379 SCM_EOL);
2380 SCM_SET_CLASS_FLAGS (scm_class_extended_generic_with_setter,
2381 SCM_CLASSF_PURE_GENERIC);
2382 make_stdcls (&scm_class_extended_accessor, "<extended-accessor>",
2383 scm_class_entity_class,
2384 scm_list_2 (scm_class_accessor,
2385 scm_class_extended_generic_with_setter),
2386 SCM_EOL);
2387 fix_cpl (scm_class_extended_accessor,
2388 scm_class_extended_generic, scm_class_generic);
2389 SCM_SET_CLASS_FLAGS (scm_class_extended_accessor, SCM_CLASSF_PURE_GENERIC);
2390
2391 /* Primitive types classes */
2392 make_stdcls (&scm_class_boolean, "<boolean>",
2393 scm_class_class, scm_class_top, SCM_EOL);
2394 make_stdcls (&scm_class_char, "<char>",
2395 scm_class_class, scm_class_top, SCM_EOL);
2396 make_stdcls (&scm_class_list, "<list>",
2397 scm_class_class, scm_class_top, SCM_EOL);
2398 make_stdcls (&scm_class_pair, "<pair>",
2399 scm_class_class, scm_class_list, SCM_EOL);
2400 make_stdcls (&scm_class_null, "<null>",
2401 scm_class_class, scm_class_list, SCM_EOL);
2402 make_stdcls (&scm_class_string, "<string>",
2403 scm_class_class, scm_class_top, SCM_EOL);
2404 make_stdcls (&scm_class_symbol, "<symbol>",
2405 scm_class_class, scm_class_top, SCM_EOL);
2406 make_stdcls (&scm_class_vector, "<vector>",
2407 scm_class_class, scm_class_top, SCM_EOL);
2408 make_stdcls (&scm_class_number, "<number>",
2409 scm_class_class, scm_class_top, SCM_EOL);
2410 make_stdcls (&scm_class_complex, "<complex>",
2411 scm_class_class, scm_class_number, SCM_EOL);
2412 make_stdcls (&scm_class_real, "<real>",
2413 scm_class_class, scm_class_complex, SCM_EOL);
2414 make_stdcls (&scm_class_integer, "<integer>",
2415 scm_class_class, scm_class_real, SCM_EOL);
2416 make_stdcls (&scm_class_fraction, "<fraction>",
2417 scm_class_class, scm_class_real, SCM_EOL);
2418 make_stdcls (&scm_class_keyword, "<keyword>",
2419 scm_class_class, scm_class_top, SCM_EOL);
2420 make_stdcls (&scm_class_unknown, "<unknown>",
2421 scm_class_class, scm_class_top, SCM_EOL);
2422 make_stdcls (&scm_class_procedure, "<procedure>",
2423 scm_class_procedure_class, scm_class_applicable, SCM_EOL);
2424 make_stdcls (&scm_class_procedure_with_setter, "<procedure-with-setter>",
2425 scm_class_procedure_class, scm_class_procedure, SCM_EOL);
2426 make_stdcls (&scm_class_primitive_generic, "<primitive-generic>",
2427 scm_class_procedure_class, scm_class_procedure, SCM_EOL);
2428 make_stdcls (&scm_class_port, "<port>",
2429 scm_class_class, scm_class_top, SCM_EOL);
2430 make_stdcls (&scm_class_input_port, "<input-port>",
2431 scm_class_class, scm_class_port, SCM_EOL);
2432 make_stdcls (&scm_class_output_port, "<output-port>",
2433 scm_class_class, scm_class_port, SCM_EOL);
2434 make_stdcls (&scm_class_input_output_port, "<input-output-port>",
2435 scm_class_class,
2436 scm_list_2 (scm_class_input_port, scm_class_output_port),
2437 SCM_EOL);
2438 }
2439
2440 /**********************************************************************
2441 *
2442 * Smob classes
2443 *
2444 **********************************************************************/
2445
2446 static SCM
2447 make_class_from_template (char const *template, char const *type_name, SCM supers, int applicablep)
2448 {
2449 SCM class, name;
2450 if (type_name)
2451 {
2452 char buffer[100];
2453 sprintf (buffer, template, type_name);
2454 name = scm_str2symbol (buffer);
2455 }
2456 else
2457 name = SCM_GOOPS_UNBOUND;
2458
2459 class = scm_permanent_object (scm_basic_make_class (applicablep
2460 ? scm_class_procedure_class
2461 : scm_class_class,
2462 name,
2463 supers,
2464 SCM_EOL));
2465
2466 /* Only define name if doesn't already exist. */
2467 if (!SCM_GOOPS_UNBOUNDP (name)
2468 && scm_is_false (scm_call_2 (scm_goops_lookup_closure, name, SCM_BOOL_F)))
2469 DEFVAR (name, class);
2470 return class;
2471 }
2472
2473 SCM
2474 scm_make_extended_class (char const *type_name, int applicablep)
2475 {
2476 return make_class_from_template ("<%s>",
2477 type_name,
2478 scm_list_1 (applicablep
2479 ? scm_class_applicable
2480 : scm_class_top),
2481 applicablep);
2482 }
2483
2484 void
2485 scm_i_inherit_applicable (SCM c)
2486 {
2487 if (!SCM_SUBCLASSP (c, scm_class_applicable))
2488 {
2489 SCM dsupers = SCM_SLOT (c, scm_si_direct_supers);
2490 SCM cpl = SCM_SLOT (c, scm_si_cpl);
2491 /* patch scm_class_applicable into direct-supers */
2492 SCM top = scm_c_memq (scm_class_top, dsupers);
2493 if (scm_is_false (top))
2494 dsupers = scm_append (scm_list_2 (dsupers,
2495 scm_list_1 (scm_class_applicable)));
2496 else
2497 {
2498 SCM_SETCAR (top, scm_class_applicable);
2499 SCM_SETCDR (top, scm_cons (scm_class_top, SCM_CDR (top)));
2500 }
2501 SCM_SET_SLOT (c, scm_si_direct_supers, dsupers);
2502 /* patch scm_class_applicable into cpl */
2503 top = scm_c_memq (scm_class_top, cpl);
2504 if (scm_is_false (top))
2505 abort ();
2506 else
2507 {
2508 SCM_SETCAR (top, scm_class_applicable);
2509 SCM_SETCDR (top, scm_cons (scm_class_top, SCM_CDR (top)));
2510 }
2511 /* add class to direct-subclasses of scm_class_applicable */
2512 SCM_SET_SLOT (scm_class_applicable,
2513 scm_si_direct_subclasses,
2514 scm_cons (c, SCM_SLOT (scm_class_applicable,
2515 scm_si_direct_subclasses)));
2516 }
2517 }
2518
2519 static void
2520 create_smob_classes (void)
2521 {
2522 long i;
2523
2524 scm_smob_class = (SCM *) scm_malloc (255 * sizeof (SCM));
2525 for (i = 0; i < 255; ++i)
2526 scm_smob_class[i] = 0;
2527
2528 scm_smob_class[SCM_TC2SMOBNUM (scm_tc16_keyword)] = scm_class_keyword;
2529
2530 for (i = 0; i < scm_numsmob; ++i)
2531 if (!scm_smob_class[i])
2532 scm_smob_class[i] = scm_make_extended_class (SCM_SMOBNAME (i),
2533 scm_smobs[i].apply != 0);
2534 }
2535
2536 void
2537 scm_make_port_classes (long ptobnum, char *type_name)
2538 {
2539 SCM c, class = make_class_from_template ("<%s-port>",
2540 type_name,
2541 scm_list_1 (scm_class_port),
2542 0);
2543 scm_port_class[SCM_IN_PCLASS_INDEX + ptobnum]
2544 = make_class_from_template ("<%s-input-port>",
2545 type_name,
2546 scm_list_2 (class, scm_class_input_port),
2547 0);
2548 scm_port_class[SCM_OUT_PCLASS_INDEX + ptobnum]
2549 = make_class_from_template ("<%s-output-port>",
2550 type_name,
2551 scm_list_2 (class, scm_class_output_port),
2552 0);
2553 scm_port_class[SCM_INOUT_PCLASS_INDEX + ptobnum]
2554 = c
2555 = make_class_from_template ("<%s-input-output-port>",
2556 type_name,
2557 scm_list_2 (class, scm_class_input_output_port),
2558 0);
2559 /* Patch cpl (since this tree is too complex for the C level compute-cpl) */
2560 SCM_SET_SLOT (c, scm_si_cpl,
2561 scm_cons2 (c, class, SCM_SLOT (scm_class_input_output_port, scm_si_cpl)));
2562 }
2563
2564 static void
2565 create_port_classes (void)
2566 {
2567 long i;
2568
2569 scm_port_class = (SCM *) scm_malloc (3 * 256 * sizeof (SCM));
2570 for (i = 0; i < 3 * 256; ++i)
2571 scm_port_class[i] = 0;
2572
2573 for (i = 0; i < scm_numptob; ++i)
2574 scm_make_port_classes (i, SCM_PTOBNAME (i));
2575 }
2576
2577 static SCM
2578 make_struct_class (void *closure SCM_UNUSED,
2579 SCM vtable, SCM data, SCM prev SCM_UNUSED)
2580 {
2581 if (scm_is_true (SCM_STRUCT_TABLE_NAME (data)))
2582 SCM_SET_STRUCT_TABLE_CLASS (data,
2583 scm_make_extended_class
2584 (SCM_SYMBOL_CHARS (SCM_STRUCT_TABLE_NAME (data)),
2585 SCM_CLASS_FLAGS (vtable) & SCM_CLASSF_OPERATOR));
2586 return SCM_UNSPECIFIED;
2587 }
2588
2589 static void
2590 create_struct_classes (void)
2591 {
2592 scm_internal_hash_fold (make_struct_class, 0, SCM_BOOL_F, scm_struct_table);
2593 }
2594
2595 /**********************************************************************
2596 *
2597 * C interface
2598 *
2599 **********************************************************************/
2600
2601 void
2602 scm_load_goops ()
2603 {
2604 if (!goops_loaded_p)
2605 scm_c_resolve_module ("oop goops");
2606 }
2607
2608
2609 SCM
2610 scm_make_foreign_object (SCM class, SCM initargs)
2611 #define FUNC_NAME s_scm_make
2612 {
2613 void * (*constructor) (SCM)
2614 = (void * (*) (SCM)) SCM_SLOT (class, scm_si_constructor);
2615 if (constructor == 0)
2616 SCM_MISC_ERROR ("Can't make instances of class ~S", scm_list_1 (class));
2617 return scm_wrap_object (class, constructor (initargs));
2618 }
2619 #undef FUNC_NAME
2620
2621
2622 static size_t
2623 scm_free_foreign_object (SCM *class, SCM *data)
2624 {
2625 size_t (*destructor) (void *)
2626 = (size_t (*) (void *)) class[scm_si_destructor];
2627 return destructor (data);
2628 }
2629
2630 SCM
2631 scm_make_class (SCM meta, char *s_name, SCM supers, size_t size,
2632 void * (*constructor) (SCM initargs),
2633 size_t (*destructor) (void *))
2634 {
2635 SCM name, class;
2636 name = scm_str2symbol (s_name);
2637 if (SCM_NULLP (supers))
2638 supers = scm_list_1 (scm_class_foreign_object);
2639 class = scm_basic_basic_make_class (meta, name, supers, SCM_EOL);
2640 scm_sys_inherit_magic_x (class, supers);
2641
2642 if (destructor != 0)
2643 {
2644 SCM_SET_SLOT (class, scm_si_destructor, (SCM) destructor);
2645 SCM_SET_CLASS_DESTRUCTOR (class, scm_free_foreign_object);
2646 }
2647 else if (size > 0)
2648 {
2649 SCM_SET_CLASS_DESTRUCTOR (class, scm_struct_free_light);
2650 SCM_SET_CLASS_INSTANCE_SIZE (class, size);
2651 }
2652
2653 SCM_SET_SLOT (class, scm_si_layout, scm_str2symbol (""));
2654 SCM_SET_SLOT (class, scm_si_constructor, (SCM) constructor);
2655
2656 return class;
2657 }
2658
2659 SCM_SYMBOL (sym_o, "o");
2660 SCM_SYMBOL (sym_x, "x");
2661
2662 SCM_KEYWORD (k_accessor, "accessor");
2663 SCM_KEYWORD (k_getter, "getter");
2664
2665 static SCM
2666 default_setter (SCM obj SCM_UNUSED, SCM c SCM_UNUSED)
2667 {
2668 scm_misc_error ("slot-set!", "read-only slot", SCM_EOL);
2669 return 0;
2670 }
2671
2672 void
2673 scm_add_slot (SCM class, char *slot_name, SCM slot_class,
2674 SCM (*getter) (SCM obj),
2675 SCM (*setter) (SCM obj, SCM x),
2676 char *accessor_name)
2677 {
2678 {
2679 SCM get = scm_c_make_subr ("goops:get", scm_tc7_subr_1, getter);
2680 SCM set = scm_c_make_subr ("goops:set", scm_tc7_subr_2,
2681 setter ? setter : default_setter);
2682
2683 /* Dirk:FIXME:: The following two expressions make use of the fact that
2684 * the memoizer will accept a subr-object in the place of a function.
2685 * This is not guaranteed to stay this way. */
2686 SCM getm = scm_i_eval_x (scm_list_3 (scm_sym_lambda,
2687 scm_list_1 (sym_o),
2688 scm_list_2 (get, sym_o)),
2689 SCM_EOL);
2690 SCM setm = scm_i_eval_x (scm_list_3 (scm_sym_lambda,
2691 scm_list_2 (sym_o, sym_x),
2692 scm_list_3 (set, sym_o, sym_x)),
2693 SCM_EOL);
2694
2695 {
2696 SCM name = scm_str2symbol (slot_name);
2697 SCM aname = scm_str2symbol (accessor_name);
2698 SCM gf = scm_ensure_accessor (aname);
2699 SCM slot = scm_list_5 (name,
2700 k_class,
2701 slot_class,
2702 setter ? k_accessor : k_getter,
2703 gf);
2704 scm_add_method (gf, scm_make (scm_list_5 (scm_class_accessor_method,
2705 k_specializers,
2706 scm_list_1 (class),
2707 k_procedure,
2708 getm)));
2709 scm_add_method (scm_setter (gf),
2710 scm_make (scm_list_5 (scm_class_accessor_method,
2711 k_specializers,
2712 scm_list_2 (class, scm_class_top),
2713 k_procedure,
2714 setm)));
2715 DEFVAR (aname, gf);
2716
2717 SCM_SET_SLOT (class, scm_si_slots,
2718 scm_append_x (scm_list_2 (SCM_SLOT (class, scm_si_slots),
2719 scm_list_1 (slot))));
2720 {
2721 SCM n = SCM_SLOT (class, scm_si_nfields);
2722 SCM gns = scm_list_n (name, SCM_BOOL_F, get, set, n, SCM_MAKINUM (1));
2723 SCM_SET_SLOT (class, scm_si_getters_n_setters,
2724 scm_append_x (scm_list_2 (SCM_SLOT (class, scm_si_getters_n_setters),
2725 scm_list_1 (gns))));
2726 SCM_SET_SLOT (class, scm_si_nfields, SCM_MAKINUM (SCM_INUM (n) + 1));
2727 }
2728 }
2729 }
2730 }
2731
2732 SCM
2733 scm_wrap_object (SCM class, void *data)
2734 {
2735 return scm_double_cell (SCM_UNPACK (SCM_CDR (class)) | scm_tc3_struct,
2736 (scm_t_bits) data,
2737 0, 0);
2738 }
2739
2740 SCM scm_components;
2741
2742 SCM
2743 scm_wrap_component (SCM class, SCM container, void *data)
2744 {
2745 SCM obj = scm_wrap_object (class, data);
2746 SCM handle = scm_hash_fn_create_handle_x (scm_components,
2747 obj,
2748 SCM_BOOL_F,
2749 scm_struct_ihashq,
2750 scm_sloppy_assq,
2751 0);
2752 SCM_SETCDR (handle, container);
2753 return obj;
2754 }
2755
2756 SCM
2757 scm_ensure_accessor (SCM name)
2758 {
2759 SCM gf = scm_call_2 (SCM_TOP_LEVEL_LOOKUP_CLOSURE, name, SCM_BOOL_F);
2760 if (!SCM_IS_A_P (gf, scm_class_accessor))
2761 {
2762 gf = scm_make (scm_list_3 (scm_class_generic, k_name, name));
2763 gf = scm_make (scm_list_5 (scm_class_accessor,
2764 k_name, name, k_setter, gf));
2765 }
2766 return gf;
2767 }
2768
2769 SCM_SYMBOL (sym_internal_add_method_x, "internal-add-method!");
2770
2771 void
2772 scm_add_method (SCM gf, SCM m)
2773 {
2774 scm_eval (scm_list_3 (sym_internal_add_method_x, gf, m), scm_module_goops);
2775 }
2776
2777 #ifdef GUILE_DEBUG
2778 /*
2779 * Debugging utilities
2780 */
2781
2782 SCM_DEFINE (scm_pure_generic_p, "pure-generic?", 1, 0, 0,
2783 (SCM obj),
2784 "Return @code{#t} if @var{obj} is a pure generic.")
2785 #define FUNC_NAME s_scm_pure_generic_p
2786 {
2787 return scm_from_bool (SCM_PUREGENERICP (obj));
2788 }
2789 #undef FUNC_NAME
2790
2791 #endif /* GUILE_DEBUG */
2792
2793 /*
2794 * Initialization
2795 */
2796
2797 SCM_DEFINE (scm_sys_goops_loaded, "%goops-loaded", 0, 0, 0,
2798 (),
2799 "Announce that GOOPS is loaded and perform initialization\n"
2800 "on the C level which depends on the loaded GOOPS modules.")
2801 #define FUNC_NAME s_scm_sys_goops_loaded
2802 {
2803 goops_loaded_p = 1;
2804 var_compute_applicable_methods =
2805 scm_sym2var (sym_compute_applicable_methods, scm_goops_lookup_closure,
2806 SCM_BOOL_F);
2807 setup_extended_primitive_generics ();
2808 return SCM_UNSPECIFIED;
2809 }
2810 #undef FUNC_NAME
2811
2812 SCM scm_module_goops;
2813
2814 SCM
2815 scm_init_goops_builtins (void)
2816 {
2817 scm_module_goops = scm_current_module ();
2818 scm_goops_lookup_closure = scm_module_lookup_closure (scm_module_goops);
2819
2820 /* Not really necessary right now, but who knows...
2821 */
2822 scm_permanent_object (scm_module_goops);
2823 scm_permanent_object (scm_goops_lookup_closure);
2824
2825 scm_components = scm_permanent_object (scm_make_weak_key_hash_table
2826 (SCM_MAKINUM (37)));
2827
2828 goops_rstate = scm_c_make_rstate ("GOOPS", 5);
2829
2830 #include "libguile/goops.x"
2831
2832 list_of_no_method = scm_permanent_object (scm_list_1 (sym_no_method));
2833
2834 hell = scm_malloc (hell_size);
2835 hell_mutex = scm_permanent_object (scm_make_mutex ());
2836
2837 create_basic_classes ();
2838 create_standard_classes ();
2839 create_smob_classes ();
2840 create_struct_classes ();
2841 create_port_classes ();
2842
2843 {
2844 SCM name = scm_str2symbol ("no-applicable-method");
2845 scm_no_applicable_method
2846 = scm_permanent_object (scm_make (scm_list_3 (scm_class_generic,
2847 k_name,
2848 name)));
2849 DEFVAR (name, scm_no_applicable_method);
2850 }
2851
2852 return SCM_UNSPECIFIED;
2853 }
2854
2855 void
2856 scm_init_goops ()
2857 {
2858 scm_c_define_gsubr ("%init-goops-builtins", 0, 0, 0,
2859 scm_init_goops_builtins);
2860 }
2861
2862 /*
2863 Local Variables:
2864 c-file-style: "gnu"
2865 End:
2866 */