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