Use new vector elements API or simple vector API, as appropriate.
[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
65 #define CALL_GF1(name, a) (scm_call_1 (GETVAR (scm_from_locale_symbol (name)), \
66 a))
67 #define CALL_GF2(name, a, b) (scm_call_2 (GETVAR (scm_from_locale_symbol (name)), \
68 a, b))
69 #define CALL_GF3(name, a, b, c) (scm_call_3 (GETVAR (scm_from_locale_symbol (name)), \
70 a, b, c))
71 #define CALL_GF4(name, a, b, c, d) (scm_call_4 (GETVAR (scm_from_locale_symbol (name)), \
72 a, b, c, d))
73
74 /* Class redefinition protocol:
75
76 A class is represented by a heap header h1 which points to a
77 malloc:ed memory block m1.
78
79 When a new version of a class is created, a new header h2 and
80 memory block m2 are allocated. The headers h1 and h2 then switch
81 pointers so that h1 refers to m2 and h2 to m1. In this way, names
82 bound to h1 will point to the new class at the same time as h2 will
83 be a handle which the GC will us to free m1.
84
85 The `redefined' slot of m1 will be set to point to h1. An old
86 instance will have it's class pointer (the CAR of the heap header)
87 pointing to m1. The non-immediate `redefined'-slot in m1 indicates
88 the class modification and the new class pointer can be found via
89 h1.
90 */
91
92 /* The following definition is located in libguile/objects.h:
93 #define SCM_OBJ_CLASS_REDEF(x) (SCM_STRUCT_VTABLE_DATA(x)[scm_si_redefined])
94 */
95
96 #define TEST_CHANGE_CLASS(obj, class) \
97 { \
98 class = SCM_CLASS_OF (obj); \
99 if (scm_is_true (SCM_OBJ_CLASS_REDEF (obj))) \
100 { \
101 scm_change_object_class (obj, class, SCM_OBJ_CLASS_REDEF (obj));\
102 class = SCM_CLASS_OF (obj); \
103 } \
104 }
105
106 #define NXT_MTHD_METHODS(m) (SCM_VELTS (m)[1])
107 #define NXT_MTHD_ARGS(m) (SCM_VELTS (m)[2])
108
109 #define SCM_GOOPS_UNBOUND SCM_UNBOUND
110 #define SCM_GOOPS_UNBOUNDP(x) ((x) == SCM_GOOPS_UNBOUND)
111
112 static int goops_loaded_p = 0;
113 static scm_t_rstate *goops_rstate;
114
115 static SCM scm_goops_lookup_closure;
116
117 /* Some classes are defined in libguile/objects.c. */
118 SCM scm_class_top, scm_class_object, scm_class_class;
119 SCM scm_class_applicable;
120 SCM scm_class_entity, scm_class_entity_with_setter;
121 SCM scm_class_generic, scm_class_generic_with_setter;
122 SCM scm_class_accessor;
123 SCM scm_class_extended_generic, scm_class_extended_generic_with_setter;
124 SCM scm_class_extended_accessor;
125 SCM scm_class_method;
126 SCM scm_class_simple_method, scm_class_accessor_method;
127 SCM scm_class_procedure_class;
128 SCM scm_class_operator_class, scm_class_operator_with_setter_class;
129 SCM scm_class_entity_class;
130 SCM scm_class_number, scm_class_list;
131 SCM scm_class_keyword;
132 SCM scm_class_port, scm_class_input_output_port;
133 SCM scm_class_input_port, scm_class_output_port;
134 SCM scm_class_foreign_class, scm_class_foreign_object;
135 SCM scm_class_foreign_slot;
136 SCM scm_class_self, scm_class_protected;
137 SCM scm_class_opaque, scm_class_read_only;
138 SCM scm_class_protected_opaque, scm_class_protected_read_only;
139 SCM scm_class_scm;
140 SCM scm_class_int, scm_class_float, scm_class_double;
141
142 SCM_SYMBOL (scm_sym_define_public, "define-public");
143
144 static SCM scm_make_unbound (void);
145 static SCM scm_unbound_p (SCM obj);
146 static SCM scm_assert_bound (SCM value, SCM obj);
147 static SCM scm_at_assert_bound_ref (SCM obj, SCM index);
148 static SCM scm_sys_goops_loaded (void);
149
150 /******************************************************************************
151 *
152 * Compute-cpl
153 *
154 * This version doesn't fully handle multiple-inheritance. It serves
155 * only for booting classes and will be overloaded in Scheme
156 *
157 ******************************************************************************/
158
159 static SCM
160 map (SCM (*proc) (SCM), SCM ls)
161 {
162 if (scm_is_null (ls))
163 return ls;
164 else
165 {
166 SCM res = scm_cons (proc (SCM_CAR (ls)), SCM_EOL);
167 SCM h = res;
168 ls = SCM_CDR (ls);
169 while (!scm_is_null (ls))
170 {
171 SCM_SETCDR (h, scm_cons (proc (SCM_CAR (ls)), SCM_EOL));
172 h = SCM_CDR (h);
173 ls = SCM_CDR (ls);
174 }
175 return res;
176 }
177 }
178
179 static SCM
180 filter_cpl (SCM ls)
181 {
182 SCM res = SCM_EOL;
183 while (!scm_is_null (ls))
184 {
185 SCM el = SCM_CAR (ls);
186 if (scm_is_false (scm_c_memq (el, res)))
187 res = scm_cons (el, res);
188 ls = SCM_CDR (ls);
189 }
190 return res;
191 }
192
193 static SCM
194 compute_cpl (SCM class)
195 {
196 if (goops_loaded_p)
197 return CALL_GF1 ("compute-cpl", class);
198 else
199 {
200 SCM supers = SCM_SLOT (class, scm_si_direct_supers);
201 SCM ls = scm_append (scm_acons (class, supers,
202 map (compute_cpl, supers)));
203 return scm_reverse_x (filter_cpl (ls), SCM_EOL);
204 }
205 }
206
207 /******************************************************************************
208 *
209 * compute-slots
210 *
211 ******************************************************************************/
212
213 static SCM
214 remove_duplicate_slots (SCM l, SCM res, SCM slots_already_seen)
215 {
216 SCM tmp;
217
218 if (scm_is_null (l))
219 return res;
220
221 tmp = SCM_CAAR (l);
222 if (!scm_is_symbol (tmp))
223 scm_misc_error ("%compute-slots", "bad slot name ~S", scm_list_1 (tmp));
224
225 if (scm_is_false (scm_c_memq (tmp, slots_already_seen))) {
226 res = scm_cons (SCM_CAR (l), res);
227 slots_already_seen = scm_cons (tmp, slots_already_seen);
228 }
229
230 return remove_duplicate_slots (SCM_CDR (l), res, slots_already_seen);
231 }
232
233 static SCM
234 build_slots_list (SCM dslots, SCM cpl)
235 {
236 register SCM res = dslots;
237
238 for (cpl = SCM_CDR (cpl); !scm_is_null (cpl); cpl = SCM_CDR (cpl))
239 res = scm_append (scm_list_2 (SCM_SLOT (SCM_CAR (cpl),
240 scm_si_direct_slots),
241 res));
242
243 /* res contains a list of slots. Remove slots which appears more than once */
244 return remove_duplicate_slots (scm_reverse (res), SCM_EOL, SCM_EOL);
245 }
246
247 static SCM
248 maplist (SCM ls)
249 {
250 SCM orig = ls;
251 while (!scm_is_null (ls))
252 {
253 if (!scm_is_pair (SCM_CAR (ls)))
254 SCM_SETCAR (ls, scm_cons (SCM_CAR (ls), SCM_EOL));
255 ls = SCM_CDR (ls);
256 }
257 return orig;
258 }
259
260
261 SCM_DEFINE (scm_sys_compute_slots, "%compute-slots", 1, 0, 0,
262 (SCM class),
263 "Return a list consisting of the names of all slots belonging to\n"
264 "class @var{class}, i. e. the slots of @var{class} and of all of\n"
265 "its superclasses.")
266 #define FUNC_NAME s_scm_sys_compute_slots
267 {
268 SCM_VALIDATE_CLASS (1, class);
269 return build_slots_list (SCM_SLOT (class, scm_si_direct_slots),
270 SCM_SLOT (class, scm_si_cpl));
271 }
272 #undef FUNC_NAME
273
274
275 /******************************************************************************
276 *
277 * compute-getters-n-setters
278 *
279 * This version doesn't handle slot options. It serves only for booting
280 * classes and will be overloaded in Scheme.
281 *
282 ******************************************************************************/
283
284 SCM_KEYWORD (k_init_value, "init-value");
285 SCM_KEYWORD (k_init_thunk, "init-thunk");
286
287 static SCM
288 compute_getters_n_setters (SCM slots)
289 {
290 SCM res = SCM_EOL;
291 SCM *cdrloc = &res;
292 long i = 0;
293
294 for ( ; !scm_is_null (slots); slots = SCM_CDR (slots))
295 {
296 SCM init = SCM_BOOL_F;
297 SCM options = SCM_CDAR (slots);
298 if (!scm_is_null (options))
299 {
300 init = scm_get_keyword (k_init_value, options, 0);
301 if (init)
302 {
303 init = scm_i_eval_x (scm_list_3 (scm_sym_lambda,
304 SCM_EOL,
305 scm_list_2 (scm_sym_quote,
306 init)),
307 SCM_EOL);
308 }
309 else
310 init = scm_get_keyword (k_init_thunk, options, SCM_BOOL_F);
311 }
312 *cdrloc = scm_cons (scm_cons (SCM_CAAR (slots),
313 scm_cons (init,
314 scm_from_int (i++))),
315 SCM_EOL);
316 cdrloc = SCM_CDRLOC (*cdrloc);
317 }
318 return res;
319 }
320
321 /******************************************************************************
322 *
323 * initialize-object
324 *
325 ******************************************************************************/
326
327 /*fixme* Manufacture keywords in advance */
328 SCM
329 scm_i_get_keyword (SCM key, SCM l, long len, SCM default_value, const char *subr)
330 {
331 long i;
332
333 for (i = 0; i != len; i += 2)
334 {
335 SCM obj = SCM_CAR (l);
336
337 if (!scm_is_keyword (obj))
338 scm_misc_error (subr, "bad keyword: ~S", scm_list_1 (obj));
339 else if (scm_is_eq (obj, key))
340 return SCM_CADR (l);
341 else
342 l = SCM_CDDR (l);
343 }
344
345 return default_value;
346 }
347
348
349 SCM_DEFINE (scm_get_keyword, "get-keyword", 3, 0, 0,
350 (SCM key, SCM l, SCM default_value),
351 "Determine an associated value for the keyword @var{key} from\n"
352 "the list @var{l}. The list @var{l} has to consist of an even\n"
353 "number of elements, where, starting with the first, every\n"
354 "second element is a keyword, followed by its associated value.\n"
355 "If @var{l} does not hold a value for @var{key}, the value\n"
356 "@var{default_value} is returned.")
357 #define FUNC_NAME s_scm_get_keyword
358 {
359 long len;
360
361 SCM_ASSERT (scm_is_keyword (key), key, SCM_ARG1, FUNC_NAME);
362 len = scm_ilength (l);
363 if (len < 0 || len % 2 == 1)
364 scm_misc_error (FUNC_NAME, "Bad keyword-value list: ~S", scm_list_1 (l));
365
366 return scm_i_get_keyword (key, l, len, default_value, FUNC_NAME);
367 }
368 #undef FUNC_NAME
369
370
371 SCM_KEYWORD (k_init_keyword, "init-keyword");
372
373 static SCM get_slot_value (SCM class, SCM obj, SCM slotdef);
374 static SCM set_slot_value (SCM class, SCM obj, SCM slotdef, SCM value);
375
376 SCM_DEFINE (scm_sys_initialize_object, "%initialize-object", 2, 0, 0,
377 (SCM obj, SCM initargs),
378 "Initialize the object @var{obj} with the given arguments\n"
379 "@var{initargs}.")
380 #define FUNC_NAME s_scm_sys_initialize_object
381 {
382 SCM tmp, get_n_set, slots;
383 SCM class = SCM_CLASS_OF (obj);
384 long n_initargs;
385
386 SCM_VALIDATE_INSTANCE (1, obj);
387 n_initargs = scm_ilength (initargs);
388 SCM_ASSERT ((n_initargs & 1) == 0, initargs, SCM_ARG2, FUNC_NAME);
389
390 get_n_set = SCM_SLOT (class, scm_si_getters_n_setters);
391 slots = SCM_SLOT (class, scm_si_slots);
392
393 /* See for each slot how it must be initialized */
394 for (;
395 !scm_is_null (slots);
396 get_n_set = SCM_CDR (get_n_set), slots = SCM_CDR (slots))
397 {
398 SCM slot_name = SCM_CAR (slots);
399 SCM slot_value = 0;
400
401 if (!scm_is_null (SCM_CDR (slot_name)))
402 {
403 /* This slot admits (perhaps) to be initialized at creation time */
404 long n = scm_ilength (SCM_CDR (slot_name));
405 if (n & 1) /* odd or -1 */
406 SCM_MISC_ERROR ("class contains bogus slot definition: ~S",
407 scm_list_1 (slot_name));
408 tmp = scm_i_get_keyword (k_init_keyword,
409 SCM_CDR (slot_name),
410 n,
411 0,
412 FUNC_NAME);
413 slot_name = SCM_CAR (slot_name);
414 if (tmp)
415 {
416 /* an initarg was provided for this slot */
417 if (!scm_is_keyword (tmp))
418 SCM_MISC_ERROR ("initarg must be a keyword. It was ~S",
419 scm_list_1 (tmp));
420 slot_value = scm_i_get_keyword (tmp,
421 initargs,
422 n_initargs,
423 0,
424 FUNC_NAME);
425 }
426 }
427
428 if (slot_value)
429 /* set slot to provided value */
430 set_slot_value (class, obj, SCM_CAR (get_n_set), slot_value);
431 else
432 {
433 /* set slot to its :init-form if it exists */
434 tmp = SCM_CADAR (get_n_set);
435 if (scm_is_true (tmp))
436 {
437 slot_value = get_slot_value (class, obj, SCM_CAR (get_n_set));
438 if (SCM_GOOPS_UNBOUNDP (slot_value))
439 {
440 SCM env = SCM_EXTEND_ENV (SCM_EOL, SCM_EOL, SCM_ENV (tmp));
441 set_slot_value (class,
442 obj,
443 SCM_CAR (get_n_set),
444 scm_eval_body (SCM_CLOSURE_BODY (tmp), env));
445 }
446 }
447 }
448 }
449
450 return obj;
451 }
452 #undef FUNC_NAME
453
454 /* NOTE: The following macros are interdependent with code
455 * in goops.scm:compute-getters-n-setters
456 */
457 #define SCM_GNS_INSTANCE_ALLOCATED_P(gns) \
458 (SCM_I_INUMP (SCM_CDDR (gns)) \
459 || (scm_is_pair (SCM_CDDR (gns)) \
460 && scm_is_pair (SCM_CDDDR (gns)) \
461 && scm_is_pair (SCM_CDDDDR (gns))))
462 #define SCM_GNS_INDEX(gns) \
463 (SCM_I_INUMP (SCM_CDDR (gns)) \
464 ? SCM_I_INUM (SCM_CDDR (gns)) \
465 : scm_to_long (SCM_CAR (SCM_CDDDDR (gns))))
466 #define SCM_GNS_SIZE(gns) \
467 (SCM_I_INUMP (SCM_CDDR (gns)) \
468 ? 1 \
469 : scm_to_long (SCM_CADR (SCM_CDDDDR (gns))))
470
471 SCM_KEYWORD (k_class, "class");
472 SCM_KEYWORD (k_allocation, "allocation");
473 SCM_KEYWORD (k_instance, "instance");
474
475 SCM_DEFINE (scm_sys_prep_layout_x, "%prep-layout!", 1, 0, 0,
476 (SCM class),
477 "")
478 #define FUNC_NAME s_scm_sys_prep_layout_x
479 {
480 SCM slots, getters_n_setters, nfields;
481 unsigned long int n, i;
482 char *s;
483 SCM layout;
484
485 SCM_VALIDATE_INSTANCE (1, class);
486 slots = SCM_SLOT (class, scm_si_slots);
487 getters_n_setters = SCM_SLOT (class, scm_si_getters_n_setters);
488 nfields = SCM_SLOT (class, scm_si_nfields);
489 if (!SCM_I_INUMP (nfields) || SCM_I_INUM (nfields) < 0)
490 SCM_MISC_ERROR ("bad value in nfields slot: ~S",
491 scm_list_1 (nfields));
492 n = 2 * SCM_I_INUM (nfields);
493 if (n < sizeof (SCM_CLASS_CLASS_LAYOUT) - 1
494 && SCM_SUBCLASSP (class, scm_class_class))
495 SCM_MISC_ERROR ("class object doesn't have enough fields: ~S",
496 scm_list_1 (nfields));
497
498 layout = scm_i_make_string (n, &s);
499 i = 0;
500 while (scm_is_pair (getters_n_setters))
501 {
502 if (SCM_GNS_INSTANCE_ALLOCATED_P (SCM_CAR (getters_n_setters)))
503 {
504 SCM type;
505 int len, index, size;
506 char p, a;
507
508 if (i >= n || !scm_is_pair (slots))
509 goto inconsistent;
510
511 /* extract slot type */
512 len = scm_ilength (SCM_CDAR (slots));
513 type = scm_i_get_keyword (k_class, SCM_CDAR (slots),
514 len, SCM_BOOL_F, FUNC_NAME);
515 /* determine slot GC protection and access mode */
516 if (scm_is_false (type))
517 {
518 p = 'p';
519 a = 'w';
520 }
521 else
522 {
523 if (!SCM_CLASSP (type))
524 SCM_MISC_ERROR ("bad slot class", SCM_EOL);
525 else if (SCM_SUBCLASSP (type, scm_class_foreign_slot))
526 {
527 if (SCM_SUBCLASSP (type, scm_class_self))
528 p = 's';
529 else if (SCM_SUBCLASSP (type, scm_class_protected))
530 p = 'p';
531 else
532 p = 'u';
533
534 if (SCM_SUBCLASSP (type, scm_class_opaque))
535 a = 'o';
536 else if (SCM_SUBCLASSP (type, scm_class_read_only))
537 a = 'r';
538 else
539 a = 'w';
540 }
541 else
542 {
543 p = 'p';
544 a = 'w';
545 }
546 }
547
548 index = SCM_GNS_INDEX (SCM_CAR (getters_n_setters));
549 if (index != (i >> 1))
550 goto inconsistent;
551 size = SCM_GNS_SIZE (SCM_CAR (getters_n_setters));
552 while (size)
553 {
554 s[i++] = p;
555 s[i++] = a;
556 --size;
557 }
558 }
559 slots = SCM_CDR (slots);
560 getters_n_setters = SCM_CDR (getters_n_setters);
561 }
562 if (!scm_is_null (slots))
563 {
564 inconsistent:
565 SCM_MISC_ERROR ("inconsistent getters-n-setters", SCM_EOL);
566 }
567 SCM_SET_SLOT (class, scm_si_layout, scm_string_to_symbol (layout));
568 return SCM_UNSPECIFIED;
569 }
570 #undef FUNC_NAME
571
572 static void prep_hashsets (SCM);
573
574 SCM_DEFINE (scm_sys_inherit_magic_x, "%inherit-magic!", 2, 0, 0,
575 (SCM class, SCM dsupers),
576 "")
577 #define FUNC_NAME s_scm_sys_inherit_magic_x
578 {
579 SCM ls = dsupers;
580 long flags = 0;
581 SCM_VALIDATE_INSTANCE (1, class);
582 while (!scm_is_null (ls))
583 {
584 SCM_ASSERT (scm_is_pair (ls)
585 && SCM_INSTANCEP (SCM_CAR (ls)),
586 dsupers,
587 SCM_ARG2,
588 FUNC_NAME);
589 flags |= SCM_CLASS_FLAGS (SCM_CAR (ls));
590 ls = SCM_CDR (ls);
591 }
592 flags &= SCM_CLASSF_INHERIT;
593 if (flags & SCM_CLASSF_ENTITY)
594 SCM_SET_CLASS_DESTRUCTOR (class, scm_struct_free_entity);
595 else
596 {
597 long n = SCM_I_INUM (SCM_SLOT (class, scm_si_nfields));
598 #if 0
599 /*
600 * We could avoid calling scm_gc_malloc in the allocation code
601 * (in which case the following two lines are needed). Instead
602 * we make 0-slot instances non-light, so that the light case
603 * can be handled without special cases.
604 */
605 if (n == 0)
606 SCM_SET_CLASS_DESTRUCTOR (class, scm_struct_free_0);
607 #endif
608 if (n > 0 && !(flags & SCM_CLASSF_METACLASS))
609 {
610 /* NOTE: The following depends on scm_struct_i_size. */
611 flags |= SCM_STRUCTF_LIGHT + n * sizeof (SCM); /* use light representation */
612 SCM_SET_CLASS_DESTRUCTOR (class, scm_struct_free_light);
613 }
614 }
615 SCM_SET_CLASS_FLAGS (class, flags);
616
617 prep_hashsets (class);
618
619 return SCM_UNSPECIFIED;
620 }
621 #undef FUNC_NAME
622
623 static void
624 prep_hashsets (SCM class)
625 {
626 unsigned int i;
627
628 for (i = 0; i < 7; ++i)
629 SCM_SET_HASHSET (class, i, scm_c_uniform32 (goops_rstate));
630 }
631
632 /******************************************************************************/
633
634 SCM
635 scm_basic_basic_make_class (SCM class, SCM name, SCM dsupers, SCM dslots)
636 {
637 SCM z, cpl, slots, nfields, g_n_s;
638
639 /* Allocate one instance */
640 z = scm_make_struct (class, SCM_INUM0, SCM_EOL);
641
642 /* Initialize its slots */
643 SCM_SET_SLOT (z, scm_si_direct_supers, dsupers);
644 cpl = compute_cpl (z);
645 slots = build_slots_list (maplist (dslots), cpl);
646 nfields = scm_from_int (scm_ilength (slots));
647 g_n_s = compute_getters_n_setters (slots);
648
649 SCM_SET_SLOT (z, scm_si_name, name);
650 SCM_SET_SLOT (z, scm_si_direct_slots, dslots);
651 SCM_SET_SLOT (z, scm_si_direct_subclasses, SCM_EOL);
652 SCM_SET_SLOT (z, scm_si_direct_methods, SCM_EOL);
653 SCM_SET_SLOT (z, scm_si_cpl, cpl);
654 SCM_SET_SLOT (z, scm_si_slots, slots);
655 SCM_SET_SLOT (z, scm_si_nfields, nfields);
656 SCM_SET_SLOT (z, scm_si_getters_n_setters, g_n_s);
657 SCM_SET_SLOT (z, scm_si_redefined, SCM_BOOL_F);
658 SCM_SET_SLOT (z, scm_si_environment,
659 scm_top_level_env (SCM_TOP_LEVEL_LOOKUP_CLOSURE));
660
661 /* Add this class in the direct-subclasses slot of dsupers */
662 {
663 SCM tmp;
664 for (tmp = dsupers; !scm_is_null (tmp); tmp = SCM_CDR (tmp))
665 SCM_SET_SLOT (SCM_CAR (tmp), scm_si_direct_subclasses,
666 scm_cons (z, SCM_SLOT (SCM_CAR (tmp),
667 scm_si_direct_subclasses)));
668 }
669
670 /* Support for the underlying structs: */
671 SCM_SET_CLASS_FLAGS (z, (class == scm_class_entity_class
672 ? (SCM_CLASSF_GOOPS_OR_VALID
673 | SCM_CLASSF_OPERATOR
674 | SCM_CLASSF_ENTITY)
675 : class == scm_class_operator_class
676 ? SCM_CLASSF_GOOPS_OR_VALID | SCM_CLASSF_OPERATOR
677 : SCM_CLASSF_GOOPS_OR_VALID));
678 return z;
679 }
680
681 SCM
682 scm_basic_make_class (SCM class, SCM name, SCM dsupers, SCM dslots)
683 {
684 SCM z = scm_basic_basic_make_class (class, name, dsupers, dslots);
685 scm_sys_inherit_magic_x (z, dsupers);
686 scm_sys_prep_layout_x (z);
687 return z;
688 }
689
690 /******************************************************************************/
691
692 SCM_SYMBOL (sym_layout, "layout");
693 SCM_SYMBOL (sym_vcell, "vcell");
694 SCM_SYMBOL (sym_vtable, "vtable");
695 SCM_SYMBOL (sym_print, "print");
696 SCM_SYMBOL (sym_procedure, "procedure");
697 SCM_SYMBOL (sym_setter, "setter");
698 SCM_SYMBOL (sym_redefined, "redefined");
699 SCM_SYMBOL (sym_h0, "h0");
700 SCM_SYMBOL (sym_h1, "h1");
701 SCM_SYMBOL (sym_h2, "h2");
702 SCM_SYMBOL (sym_h3, "h3");
703 SCM_SYMBOL (sym_h4, "h4");
704 SCM_SYMBOL (sym_h5, "h5");
705 SCM_SYMBOL (sym_h6, "h6");
706 SCM_SYMBOL (sym_h7, "h7");
707 SCM_SYMBOL (sym_name, "name");
708 SCM_SYMBOL (sym_direct_supers, "direct-supers");
709 SCM_SYMBOL (sym_direct_slots, "direct-slots");
710 SCM_SYMBOL (sym_direct_subclasses, "direct-subclasses");
711 SCM_SYMBOL (sym_direct_methods, "direct-methods");
712 SCM_SYMBOL (sym_cpl, "cpl");
713 SCM_SYMBOL (sym_default_slot_definition_class, "default-slot-definition-class");
714 SCM_SYMBOL (sym_slots, "slots");
715 SCM_SYMBOL (sym_getters_n_setters, "getters-n-setters");
716 SCM_SYMBOL (sym_keyword_access, "keyword-access");
717 SCM_SYMBOL (sym_nfields, "nfields");
718 SCM_SYMBOL (sym_environment, "environment");
719
720
721 static SCM
722 build_class_class_slots ()
723 {
724 return scm_list_n (
725 scm_list_3 (sym_layout, k_class, scm_class_protected_read_only),
726 scm_list_3 (sym_vtable, k_class, scm_class_self),
727 scm_list_1 (sym_print),
728 scm_list_3 (sym_procedure, k_class, scm_class_protected_opaque),
729 scm_list_3 (sym_setter, k_class, scm_class_protected_opaque),
730 scm_list_1 (sym_redefined),
731 scm_list_3 (sym_h0, k_class, scm_class_int),
732 scm_list_3 (sym_h1, k_class, scm_class_int),
733 scm_list_3 (sym_h2, k_class, scm_class_int),
734 scm_list_3 (sym_h3, k_class, scm_class_int),
735 scm_list_3 (sym_h4, k_class, scm_class_int),
736 scm_list_3 (sym_h5, k_class, scm_class_int),
737 scm_list_3 (sym_h6, k_class, scm_class_int),
738 scm_list_3 (sym_h7, k_class, scm_class_int),
739 scm_list_1 (sym_name),
740 scm_list_1 (sym_direct_supers),
741 scm_list_1 (sym_direct_slots),
742 scm_list_1 (sym_direct_subclasses),
743 scm_list_1 (sym_direct_methods),
744 scm_list_1 (sym_cpl),
745 scm_list_1 (sym_default_slot_definition_class),
746 scm_list_1 (sym_slots),
747 scm_list_1 (sym_getters_n_setters),
748 scm_list_1 (sym_keyword_access),
749 scm_list_1 (sym_nfields),
750 scm_list_1 (sym_environment),
751 SCM_UNDEFINED);
752 }
753
754 static void
755 create_basic_classes (void)
756 {
757 /* SCM slots_of_class = build_class_class_slots (); */
758
759 /**** <scm_class_class> ****/
760 SCM cs = scm_from_locale_string (SCM_CLASS_CLASS_LAYOUT
761 + 2 * scm_vtable_offset_user);
762 SCM name = scm_from_locale_symbol ("<class>");
763 scm_class_class = scm_permanent_object (scm_make_vtable_vtable (cs,
764 SCM_INUM0,
765 SCM_EOL));
766 SCM_SET_CLASS_FLAGS (scm_class_class, (SCM_CLASSF_GOOPS_OR_VALID
767 | SCM_CLASSF_METACLASS));
768
769 SCM_SET_SLOT (scm_class_class, scm_si_name, name);
770 SCM_SET_SLOT (scm_class_class, scm_si_direct_supers, SCM_EOL); /* will be changed */
771 /* SCM_SET_SLOT (scm_class_class, scm_si_direct_slots, slots_of_class); */
772 SCM_SET_SLOT (scm_class_class, scm_si_direct_subclasses, SCM_EOL);
773 SCM_SET_SLOT (scm_class_class, scm_si_direct_methods, SCM_EOL);
774 SCM_SET_SLOT (scm_class_class, scm_si_cpl, SCM_EOL); /* will be changed */
775 /* SCM_SET_SLOT (scm_class_class, scm_si_slots, slots_of_class); */
776 SCM_SET_SLOT (scm_class_class, scm_si_nfields, scm_from_int (SCM_N_CLASS_SLOTS));
777 /* SCM_SET_SLOT (scm_class_class, scm_si_getters_n_setters,
778 compute_getters_n_setters (slots_of_class)); */
779 SCM_SET_SLOT (scm_class_class, scm_si_redefined, SCM_BOOL_F);
780 SCM_SET_SLOT (scm_class_class, scm_si_environment,
781 scm_top_level_env (SCM_TOP_LEVEL_LOOKUP_CLOSURE));
782
783 prep_hashsets (scm_class_class);
784
785 DEFVAR(name, scm_class_class);
786
787 /**** <scm_class_top> ****/
788 name = scm_from_locale_symbol ("<top>");
789 scm_class_top = scm_permanent_object (scm_basic_make_class (scm_class_class,
790 name,
791 SCM_EOL,
792 SCM_EOL));
793
794 DEFVAR(name, scm_class_top);
795
796 /**** <scm_class_object> ****/
797 name = scm_from_locale_symbol ("<object>");
798 scm_class_object = scm_permanent_object (scm_basic_make_class (scm_class_class,
799 name,
800 scm_list_1 (scm_class_top),
801 SCM_EOL));
802
803 DEFVAR (name, scm_class_object);
804
805 /* <top> <object> and <class> were partially initialized. Correct them here */
806 SCM_SET_SLOT (scm_class_object, scm_si_direct_subclasses, scm_list_1 (scm_class_class));
807
808 SCM_SET_SLOT (scm_class_class, scm_si_direct_supers, scm_list_1 (scm_class_object));
809 SCM_SET_SLOT (scm_class_class, scm_si_cpl, scm_list_3 (scm_class_class, scm_class_object, scm_class_top));
810 }
811
812 /******************************************************************************/
813
814 SCM_DEFINE (scm_instance_p, "instance?", 1, 0, 0,
815 (SCM obj),
816 "Return @code{#t} if @var{obj} is an instance.")
817 #define FUNC_NAME s_scm_instance_p
818 {
819 return scm_from_bool (SCM_INSTANCEP (obj));
820 }
821 #undef FUNC_NAME
822
823
824 /******************************************************************************
825 *
826 * Meta object accessors
827 *
828 ******************************************************************************/
829 SCM_DEFINE (scm_class_name, "class-name", 1, 0, 0,
830 (SCM obj),
831 "Return the class name of @var{obj}.")
832 #define FUNC_NAME s_scm_class_name
833 {
834 SCM_VALIDATE_CLASS (1, obj);
835 return scm_slot_ref (obj, sym_name);
836 }
837 #undef FUNC_NAME
838
839 SCM_DEFINE (scm_class_direct_supers, "class-direct-supers", 1, 0, 0,
840 (SCM obj),
841 "Return the direct superclasses of the class @var{obj}.")
842 #define FUNC_NAME s_scm_class_direct_supers
843 {
844 SCM_VALIDATE_CLASS (1, obj);
845 return scm_slot_ref (obj, sym_direct_supers);
846 }
847 #undef FUNC_NAME
848
849 SCM_DEFINE (scm_class_direct_slots, "class-direct-slots", 1, 0, 0,
850 (SCM obj),
851 "Return the direct slots of the class @var{obj}.")
852 #define FUNC_NAME s_scm_class_direct_slots
853 {
854 SCM_VALIDATE_CLASS (1, obj);
855 return scm_slot_ref (obj, sym_direct_slots);
856 }
857 #undef FUNC_NAME
858
859 SCM_DEFINE (scm_class_direct_subclasses, "class-direct-subclasses", 1, 0, 0,
860 (SCM obj),
861 "Return the direct subclasses of the class @var{obj}.")
862 #define FUNC_NAME s_scm_class_direct_subclasses
863 {
864 SCM_VALIDATE_CLASS (1, obj);
865 return scm_slot_ref(obj, sym_direct_subclasses);
866 }
867 #undef FUNC_NAME
868
869 SCM_DEFINE (scm_class_direct_methods, "class-direct-methods", 1, 0, 0,
870 (SCM obj),
871 "Return the direct methods of the class @var{obj}")
872 #define FUNC_NAME s_scm_class_direct_methods
873 {
874 SCM_VALIDATE_CLASS (1, obj);
875 return scm_slot_ref (obj, sym_direct_methods);
876 }
877 #undef FUNC_NAME
878
879 SCM_DEFINE (scm_class_precedence_list, "class-precedence-list", 1, 0, 0,
880 (SCM obj),
881 "Return the class precedence list of the class @var{obj}.")
882 #define FUNC_NAME s_scm_class_precedence_list
883 {
884 SCM_VALIDATE_CLASS (1, obj);
885 return scm_slot_ref (obj, sym_cpl);
886 }
887 #undef FUNC_NAME
888
889 SCM_DEFINE (scm_class_slots, "class-slots", 1, 0, 0,
890 (SCM obj),
891 "Return the slot list of the class @var{obj}.")
892 #define FUNC_NAME s_scm_class_slots
893 {
894 SCM_VALIDATE_CLASS (1, obj);
895 return scm_slot_ref (obj, sym_slots);
896 }
897 #undef FUNC_NAME
898
899 SCM_DEFINE (scm_class_environment, "class-environment", 1, 0, 0,
900 (SCM obj),
901 "Return the environment of the class @var{obj}.")
902 #define FUNC_NAME s_scm_class_environment
903 {
904 SCM_VALIDATE_CLASS (1, obj);
905 return scm_slot_ref(obj, sym_environment);
906 }
907 #undef FUNC_NAME
908
909
910 SCM_DEFINE (scm_generic_function_name, "generic-function-name", 1, 0, 0,
911 (SCM obj),
912 "Return the name of the generic function @var{obj}.")
913 #define FUNC_NAME s_scm_generic_function_name
914 {
915 SCM_VALIDATE_GENERIC (1, obj);
916 return scm_procedure_property (obj, scm_sym_name);
917 }
918 #undef FUNC_NAME
919
920 SCM_SYMBOL (sym_methods, "methods");
921 SCM_SYMBOL (sym_extended_by, "extended-by");
922 SCM_SYMBOL (sym_extends, "extends");
923
924 static
925 SCM fold_downward_gf_methods (SCM method_lists, SCM gf)
926 {
927 SCM gfs = scm_slot_ref (gf, sym_extended_by);
928 method_lists = scm_cons (scm_slot_ref (gf, sym_methods), method_lists);
929 while (!scm_is_null (gfs))
930 {
931 method_lists = fold_downward_gf_methods (method_lists, SCM_CAR (gfs));
932 gfs = SCM_CDR (gfs);
933 }
934 return method_lists;
935 }
936
937 static
938 SCM fold_upward_gf_methods (SCM method_lists, SCM gf)
939 {
940 if (SCM_IS_A_P (gf, scm_class_extended_generic))
941 {
942 SCM gfs = scm_slot_ref (gf, sym_extends);
943 while (!scm_is_null (gfs))
944 {
945 SCM methods = scm_slot_ref (SCM_CAR (gfs), sym_methods);
946 method_lists = fold_upward_gf_methods (scm_cons (methods,
947 method_lists),
948 SCM_CAR (gfs));
949 gfs = SCM_CDR (gfs);
950 }
951 }
952 return method_lists;
953 }
954
955 SCM_DEFINE (scm_generic_function_methods, "generic-function-methods", 1, 0, 0,
956 (SCM obj),
957 "Return the methods of the generic function @var{obj}.")
958 #define FUNC_NAME s_scm_generic_function_methods
959 {
960 SCM methods;
961 SCM_VALIDATE_GENERIC (1, obj);
962 methods = fold_upward_gf_methods (SCM_EOL, obj);
963 methods = fold_downward_gf_methods (methods, obj);
964 return scm_append (methods);
965 }
966 #undef FUNC_NAME
967
968 SCM_DEFINE (scm_method_generic_function, "method-generic-function", 1, 0, 0,
969 (SCM obj),
970 "Return the generic function for the method @var{obj}.")
971 #define FUNC_NAME s_scm_method_generic_function
972 {
973 SCM_VALIDATE_METHOD (1, obj);
974 return scm_slot_ref (obj, scm_from_locale_symbol ("generic-function"));
975 }
976 #undef FUNC_NAME
977
978 SCM_DEFINE (scm_method_specializers, "method-specializers", 1, 0, 0,
979 (SCM obj),
980 "Return specializers of the method @var{obj}.")
981 #define FUNC_NAME s_scm_method_specializers
982 {
983 SCM_VALIDATE_METHOD (1, obj);
984 return scm_slot_ref (obj, scm_from_locale_symbol ("specializers"));
985 }
986 #undef FUNC_NAME
987
988 SCM_DEFINE (scm_method_procedure, "method-procedure", 1, 0, 0,
989 (SCM obj),
990 "Return the procedure of the method @var{obj}.")
991 #define FUNC_NAME s_scm_method_procedure
992 {
993 SCM_VALIDATE_METHOD (1, obj);
994 return scm_slot_ref (obj, sym_procedure);
995 }
996 #undef FUNC_NAME
997
998 SCM_DEFINE (scm_accessor_method_slot_definition, "accessor-method-slot-definition", 1, 0, 0,
999 (SCM obj),
1000 "Return the slot definition of the accessor @var{obj}.")
1001 #define FUNC_NAME s_scm_accessor_method_slot_definition
1002 {
1003 SCM_VALIDATE_ACCESSOR (1, obj);
1004 return scm_slot_ref (obj, scm_from_locale_symbol ("slot-definition"));
1005 }
1006 #undef FUNC_NAME
1007
1008 SCM_DEFINE (scm_sys_tag_body, "%tag-body", 1, 0, 0,
1009 (SCM body),
1010 "Internal GOOPS magic---don't use this function!")
1011 #define FUNC_NAME s_scm_sys_tag_body
1012 {
1013 return scm_cons (SCM_IM_LAMBDA, body);
1014 }
1015 #undef FUNC_NAME
1016
1017 /******************************************************************************
1018 *
1019 * S l o t a c c e s s
1020 *
1021 ******************************************************************************/
1022
1023 SCM_DEFINE (scm_make_unbound, "make-unbound", 0, 0, 0,
1024 (),
1025 "Return the unbound value.")
1026 #define FUNC_NAME s_scm_make_unbound
1027 {
1028 return SCM_GOOPS_UNBOUND;
1029 }
1030 #undef FUNC_NAME
1031
1032 SCM_DEFINE (scm_unbound_p, "unbound?", 1, 0, 0,
1033 (SCM obj),
1034 "Return @code{#t} if @var{obj} is unbound.")
1035 #define FUNC_NAME s_scm_unbound_p
1036 {
1037 return SCM_GOOPS_UNBOUNDP (obj) ? SCM_BOOL_T : SCM_BOOL_F;
1038 }
1039 #undef FUNC_NAME
1040
1041 SCM_DEFINE (scm_assert_bound, "assert-bound", 2, 0, 0,
1042 (SCM value, SCM obj),
1043 "Return @var{value} if it is bound, and invoke the\n"
1044 "@var{slot-unbound} method of @var{obj} if it is not.")
1045 #define FUNC_NAME s_scm_assert_bound
1046 {
1047 if (SCM_GOOPS_UNBOUNDP (value))
1048 return CALL_GF1 ("slot-unbound", obj);
1049 return value;
1050 }
1051 #undef FUNC_NAME
1052
1053 SCM_DEFINE (scm_at_assert_bound_ref, "@assert-bound-ref", 2, 0, 0,
1054 (SCM obj, SCM index),
1055 "Like @code{assert-bound}, but use @var{index} for accessing\n"
1056 "the value from @var{obj}.")
1057 #define FUNC_NAME s_scm_at_assert_bound_ref
1058 {
1059 SCM value = SCM_SLOT (obj, scm_to_int (index));
1060 if (SCM_GOOPS_UNBOUNDP (value))
1061 return CALL_GF1 ("slot-unbound", obj);
1062 return value;
1063 }
1064 #undef FUNC_NAME
1065
1066 SCM_DEFINE (scm_sys_fast_slot_ref, "%fast-slot-ref", 2, 0, 0,
1067 (SCM obj, SCM index),
1068 "Return the slot value with index @var{index} from @var{obj}.")
1069 #define FUNC_NAME s_scm_sys_fast_slot_ref
1070 {
1071 unsigned long int i;
1072
1073 SCM_VALIDATE_INSTANCE (1, obj);
1074 i = scm_to_unsigned_integer (index, 0, SCM_NUMBER_OF_SLOTS(obj)-1);
1075 return SCM_SLOT (obj, i);
1076 }
1077 #undef FUNC_NAME
1078
1079 SCM_DEFINE (scm_sys_fast_slot_set_x, "%fast-slot-set!", 3, 0, 0,
1080 (SCM obj, SCM index, SCM value),
1081 "Set the slot with index @var{index} in @var{obj} to\n"
1082 "@var{value}.")
1083 #define FUNC_NAME s_scm_sys_fast_slot_set_x
1084 {
1085 unsigned long int i;
1086
1087 SCM_VALIDATE_INSTANCE (1, obj);
1088 i = scm_to_unsigned_integer (index, 0, SCM_NUMBER_OF_SLOTS(obj)-1);
1089
1090 SCM_SET_SLOT (obj, i, value);
1091
1092 return SCM_UNSPECIFIED;
1093 }
1094 #undef FUNC_NAME
1095
1096
1097 SCM_SYNTAX (s_atslot_ref, "@slot-ref", scm_i_makbimacro, scm_m_atslot_ref);
1098 SCM_SYNTAX (s_atslot_set_x, "@slot-set!", scm_i_makbimacro, scm_m_atslot_set_x);
1099
1100
1101 /** Utilities **/
1102
1103 /* In the future, this function will return the effective slot
1104 * definition associated with SLOT_NAME. Now it just returns some of
1105 * the information which will be stored in the effective slot
1106 * definition.
1107 */
1108
1109 static SCM
1110 slot_definition_using_name (SCM class, SCM slot_name)
1111 {
1112 register SCM slots = SCM_SLOT (class, scm_si_getters_n_setters);
1113 for (; !scm_is_null (slots); slots = SCM_CDR (slots))
1114 if (SCM_CAAR (slots) == slot_name)
1115 return SCM_CAR (slots);
1116 return SCM_BOOL_F;
1117 }
1118
1119 static SCM
1120 get_slot_value (SCM class SCM_UNUSED, SCM obj, SCM slotdef)
1121 {
1122 SCM access = SCM_CDDR (slotdef);
1123 /* Two cases here:
1124 * - access is an integer (the offset of this slot in the slots vector)
1125 * - otherwise (car access) is the getter function to apply
1126 *
1127 * Instances have never more than SCM_MOST_POSITIVE_FIXNUM slots, so
1128 * we can just assume fixnums here.
1129 */
1130 if (SCM_I_INUMP (access))
1131 return SCM_SLOT (obj, SCM_I_INUM (access));
1132 else
1133 {
1134 /* We must evaluate (apply (car access) (list obj))
1135 * where (car access) is known to be a closure of arity 1 */
1136 register SCM code, env;
1137
1138 code = SCM_CAR (access);
1139 if (!SCM_CLOSUREP (code))
1140 return SCM_SUBRF (code) (obj);
1141 env = SCM_EXTEND_ENV (SCM_CLOSURE_FORMALS (code),
1142 scm_list_1 (obj),
1143 SCM_ENV (code));
1144 /* Evaluate the closure body */
1145 return scm_eval_body (SCM_CLOSURE_BODY (code), env);
1146 }
1147 }
1148
1149 static SCM
1150 get_slot_value_using_name (SCM class, SCM obj, SCM slot_name)
1151 {
1152 SCM slotdef = slot_definition_using_name (class, slot_name);
1153 if (scm_is_true (slotdef))
1154 return get_slot_value (class, obj, slotdef);
1155 else
1156 return CALL_GF3 ("slot-missing", class, obj, slot_name);
1157 }
1158
1159 static SCM
1160 set_slot_value (SCM class SCM_UNUSED, SCM obj, SCM slotdef, SCM value)
1161 {
1162 SCM access = SCM_CDDR (slotdef);
1163 /* Two cases here:
1164 * - access is an integer (the offset of this slot in the slots vector)
1165 * - otherwise (cadr access) is the setter function to apply
1166 *
1167 * Instances have never more than SCM_MOST_POSITIVE_FIXNUM slots, so
1168 * we can just assume fixnums here.
1169 */
1170 if (SCM_I_INUMP (access))
1171 SCM_SET_SLOT (obj, SCM_I_INUM (access), value);
1172 else
1173 {
1174 /* We must evaluate (apply (cadr l) (list obj value))
1175 * where (cadr l) is known to be a closure of arity 2 */
1176 register SCM code, env;
1177
1178 code = SCM_CADR (access);
1179 if (!SCM_CLOSUREP (code))
1180 SCM_SUBRF (code) (obj, value);
1181 else
1182 {
1183 env = SCM_EXTEND_ENV (SCM_CLOSURE_FORMALS (code),
1184 scm_list_2 (obj, value),
1185 SCM_ENV (code));
1186 /* Evaluate the closure body */
1187 scm_eval_body (SCM_CLOSURE_BODY (code), env);
1188 }
1189 }
1190 return SCM_UNSPECIFIED;
1191 }
1192
1193 static SCM
1194 set_slot_value_using_name (SCM class, SCM obj, SCM slot_name, SCM value)
1195 {
1196 SCM slotdef = slot_definition_using_name (class, slot_name);
1197 if (scm_is_true (slotdef))
1198 return set_slot_value (class, obj, slotdef, value);
1199 else
1200 return CALL_GF4 ("slot-missing", class, obj, slot_name, value);
1201 }
1202
1203 static SCM
1204 test_slot_existence (SCM class SCM_UNUSED, SCM obj, SCM slot_name)
1205 {
1206 register SCM l;
1207
1208 for (l = SCM_ACCESSORS_OF (obj); !scm_is_null (l); l = SCM_CDR (l))
1209 if (scm_is_eq (SCM_CAAR (l), slot_name))
1210 return SCM_BOOL_T;
1211
1212 return SCM_BOOL_F;
1213 }
1214
1215 /* ======================================== */
1216
1217 SCM_DEFINE (scm_slot_ref_using_class, "slot-ref-using-class", 3, 0, 0,
1218 (SCM class, SCM obj, SCM slot_name),
1219 "")
1220 #define FUNC_NAME s_scm_slot_ref_using_class
1221 {
1222 SCM res;
1223
1224 SCM_VALIDATE_CLASS (1, class);
1225 SCM_VALIDATE_INSTANCE (2, obj);
1226 SCM_VALIDATE_SYMBOL (3, slot_name);
1227
1228 res = get_slot_value_using_name (class, obj, slot_name);
1229 if (SCM_GOOPS_UNBOUNDP (res))
1230 return CALL_GF3 ("slot-unbound", class, obj, slot_name);
1231 return res;
1232 }
1233 #undef FUNC_NAME
1234
1235
1236 SCM_DEFINE (scm_slot_set_using_class_x, "slot-set-using-class!", 4, 0, 0,
1237 (SCM class, SCM obj, SCM slot_name, SCM value),
1238 "")
1239 #define FUNC_NAME s_scm_slot_set_using_class_x
1240 {
1241 SCM_VALIDATE_CLASS (1, class);
1242 SCM_VALIDATE_INSTANCE (2, obj);
1243 SCM_VALIDATE_SYMBOL (3, slot_name);
1244
1245 return set_slot_value_using_name (class, obj, slot_name, value);
1246 }
1247 #undef FUNC_NAME
1248
1249
1250 SCM_DEFINE (scm_slot_bound_using_class_p, "slot-bound-using-class?", 3, 0, 0,
1251 (SCM class, SCM obj, SCM slot_name),
1252 "")
1253 #define FUNC_NAME s_scm_slot_bound_using_class_p
1254 {
1255 SCM_VALIDATE_CLASS (1, class);
1256 SCM_VALIDATE_INSTANCE (2, obj);
1257 SCM_VALIDATE_SYMBOL (3, slot_name);
1258
1259 return (SCM_GOOPS_UNBOUNDP (get_slot_value_using_name (class, obj, slot_name))
1260 ? SCM_BOOL_F
1261 : SCM_BOOL_T);
1262 }
1263 #undef FUNC_NAME
1264
1265 SCM_DEFINE (scm_slot_exists_using_class_p, "slot-exists-using-class?", 3, 0, 0,
1266 (SCM class, SCM obj, SCM slot_name),
1267 "")
1268 #define FUNC_NAME s_scm_slot_exists_using_class_p
1269 {
1270 SCM_VALIDATE_CLASS (1, class);
1271 SCM_VALIDATE_INSTANCE (2, obj);
1272 SCM_VALIDATE_SYMBOL (3, slot_name);
1273 return test_slot_existence (class, obj, slot_name);
1274 }
1275 #undef FUNC_NAME
1276
1277
1278 /* ======================================== */
1279
1280 SCM_DEFINE (scm_slot_ref, "slot-ref", 2, 0, 0,
1281 (SCM obj, SCM slot_name),
1282 "Return the value from @var{obj}'s slot with the name\n"
1283 "@var{slot_name}.")
1284 #define FUNC_NAME s_scm_slot_ref
1285 {
1286 SCM res, class;
1287
1288 SCM_VALIDATE_INSTANCE (1, obj);
1289 TEST_CHANGE_CLASS (obj, class);
1290
1291 res = get_slot_value_using_name (class, obj, slot_name);
1292 if (SCM_GOOPS_UNBOUNDP (res))
1293 return CALL_GF3 ("slot-unbound", class, obj, slot_name);
1294 return res;
1295 }
1296 #undef FUNC_NAME
1297
1298 SCM_DEFINE (scm_slot_set_x, "slot-set!", 3, 0, 0,
1299 (SCM obj, SCM slot_name, SCM value),
1300 "Set the slot named @var{slot_name} of @var{obj} to @var{value}.")
1301 #define FUNC_NAME s_scm_slot_set_x
1302 {
1303 SCM class;
1304
1305 SCM_VALIDATE_INSTANCE (1, obj);
1306 TEST_CHANGE_CLASS(obj, class);
1307
1308 return set_slot_value_using_name (class, obj, slot_name, value);
1309 }
1310 #undef FUNC_NAME
1311
1312 const char *scm_s_slot_set_x = s_scm_slot_set_x;
1313
1314 SCM_DEFINE (scm_slot_bound_p, "slot-bound?", 2, 0, 0,
1315 (SCM obj, SCM slot_name),
1316 "Return @code{#t} if the slot named @var{slot_name} of @var{obj}\n"
1317 "is bound.")
1318 #define FUNC_NAME s_scm_slot_bound_p
1319 {
1320 SCM class;
1321
1322 SCM_VALIDATE_INSTANCE (1, obj);
1323 TEST_CHANGE_CLASS(obj, class);
1324
1325 return (SCM_GOOPS_UNBOUNDP (get_slot_value_using_name (class,
1326 obj,
1327 slot_name))
1328 ? SCM_BOOL_F
1329 : SCM_BOOL_T);
1330 }
1331 #undef FUNC_NAME
1332
1333 SCM_DEFINE (scm_slot_exists_p, "slot-exists?", 2, 0, 0,
1334 (SCM obj, SCM slot_name),
1335 "Return @code{#t} if @var{obj} has a slot named @var{slot_name}.")
1336 #define FUNC_NAME s_scm_slot_exists_p
1337 {
1338 SCM class;
1339
1340 SCM_VALIDATE_INSTANCE (1, obj);
1341 SCM_VALIDATE_SYMBOL (2, slot_name);
1342 TEST_CHANGE_CLASS (obj, class);
1343
1344 return test_slot_existence (class, obj, slot_name);
1345 }
1346 #undef FUNC_NAME
1347
1348
1349 /******************************************************************************
1350 *
1351 * %allocate-instance (the low level instance allocation primitive)
1352 *
1353 ******************************************************************************/
1354
1355 static void clear_method_cache (SCM);
1356
1357 static SCM
1358 wrap_init (SCM class, SCM *m, long n)
1359 {
1360 long i;
1361
1362 /* Set all slots to unbound */
1363 for (i = 0; i < n; i++)
1364 m[i] = SCM_GOOPS_UNBOUND;
1365
1366 return scm_double_cell ((((scm_t_bits) SCM_STRUCT_DATA (class))
1367 | scm_tc3_struct),
1368 (scm_t_bits) m, 0, 0);
1369 }
1370
1371 SCM_DEFINE (scm_sys_allocate_instance, "%allocate-instance", 2, 0, 0,
1372 (SCM class, SCM initargs),
1373 "Create a new instance of class @var{class} and initialize it\n"
1374 "from the arguments @var{initargs}.")
1375 #define FUNC_NAME s_scm_sys_allocate_instance
1376 {
1377 SCM *m;
1378 long n;
1379
1380 SCM_VALIDATE_CLASS (1, class);
1381
1382 /* Most instances */
1383 if (SCM_CLASS_FLAGS (class) & SCM_STRUCTF_LIGHT)
1384 {
1385 n = SCM_I_INUM (SCM_SLOT (class, scm_si_nfields));
1386 m = (SCM *) scm_gc_malloc (n * sizeof (SCM), "struct");
1387 return wrap_init (class, m, n);
1388 }
1389
1390 /* Foreign objects */
1391 if (SCM_CLASS_FLAGS (class) & SCM_CLASSF_FOREIGN)
1392 return scm_make_foreign_object (class, initargs);
1393
1394 n = SCM_I_INUM (SCM_SLOT (class, scm_si_nfields));
1395
1396 /* Entities */
1397 if (SCM_CLASS_FLAGS (class) & SCM_CLASSF_ENTITY)
1398 {
1399 m = (SCM *) scm_alloc_struct (n, scm_struct_entity_n_extra_words,
1400 "entity struct");
1401 m[scm_struct_i_setter] = SCM_BOOL_F;
1402 m[scm_struct_i_procedure] = SCM_BOOL_F;
1403 /* Generic functions */
1404 if (SCM_CLASS_FLAGS (class) & SCM_CLASSF_PURE_GENERIC)
1405 {
1406 SCM gf = wrap_init (class, m, n);
1407 clear_method_cache (gf);
1408 return gf;
1409 }
1410 else
1411 return wrap_init (class, m, n);
1412 }
1413
1414 /* Class objects */
1415 if (SCM_CLASS_FLAGS (class) & SCM_CLASSF_METACLASS)
1416 {
1417 long i;
1418
1419 /* allocate class object */
1420 SCM z = scm_make_struct (class, SCM_INUM0, SCM_EOL);
1421
1422 SCM_SET_SLOT (z, scm_si_print, SCM_GOOPS_UNBOUND);
1423 for (i = scm_si_goops_fields; i < n; i++)
1424 SCM_SET_SLOT (z, i, SCM_GOOPS_UNBOUND);
1425
1426 if (SCM_SUBCLASSP (class, scm_class_entity_class))
1427 SCM_SET_CLASS_FLAGS (z, SCM_CLASSF_OPERATOR | SCM_CLASSF_ENTITY);
1428 else if (SCM_SUBCLASSP (class, scm_class_operator_class))
1429 SCM_SET_CLASS_FLAGS (z, SCM_CLASSF_OPERATOR);
1430
1431 return z;
1432 }
1433
1434 /* Non-light instances */
1435 {
1436 m = (SCM *) scm_alloc_struct (n, scm_struct_n_extra_words, "heavy struct");
1437 return wrap_init (class, m, n);
1438 }
1439 }
1440 #undef FUNC_NAME
1441
1442 SCM_DEFINE (scm_sys_set_object_setter_x, "%set-object-setter!", 2, 0, 0,
1443 (SCM obj, SCM setter),
1444 "")
1445 #define FUNC_NAME s_scm_sys_set_object_setter_x
1446 {
1447 SCM_ASSERT (SCM_STRUCTP (obj)
1448 && ((SCM_CLASS_FLAGS (obj) & SCM_CLASSF_OPERATOR)
1449 || SCM_I_ENTITYP (obj)),
1450 obj,
1451 SCM_ARG1,
1452 FUNC_NAME);
1453 if (SCM_I_ENTITYP (obj))
1454 SCM_SET_ENTITY_SETTER (obj, setter);
1455 else
1456 SCM_OPERATOR_CLASS (obj)->setter = setter;
1457 return SCM_UNSPECIFIED;
1458 }
1459 #undef FUNC_NAME
1460
1461 /******************************************************************************
1462 *
1463 * %modify-instance (used by change-class to modify in place)
1464 *
1465 ******************************************************************************/
1466
1467 SCM_DEFINE (scm_sys_modify_instance, "%modify-instance", 2, 0, 0,
1468 (SCM old, SCM new),
1469 "")
1470 #define FUNC_NAME s_scm_sys_modify_instance
1471 {
1472 SCM_VALIDATE_INSTANCE (1, old);
1473 SCM_VALIDATE_INSTANCE (2, new);
1474
1475 /* Exchange the data contained in old and new. We exchange rather than
1476 * scratch the old value with new to be correct with GC.
1477 * See "Class redefinition protocol above".
1478 */
1479 SCM_REDEFER_INTS;
1480 {
1481 SCM car = SCM_CAR (old);
1482 SCM cdr = SCM_CDR (old);
1483 SCM_SETCAR (old, SCM_CAR (new));
1484 SCM_SETCDR (old, SCM_CDR (new));
1485 SCM_SETCAR (new, car);
1486 SCM_SETCDR (new, cdr);
1487 }
1488 SCM_REALLOW_INTS;
1489 return SCM_UNSPECIFIED;
1490 }
1491 #undef FUNC_NAME
1492
1493 SCM_DEFINE (scm_sys_modify_class, "%modify-class", 2, 0, 0,
1494 (SCM old, SCM new),
1495 "")
1496 #define FUNC_NAME s_scm_sys_modify_class
1497 {
1498 SCM_VALIDATE_CLASS (1, old);
1499 SCM_VALIDATE_CLASS (2, new);
1500
1501 SCM_REDEFER_INTS;
1502 {
1503 SCM car = SCM_CAR (old);
1504 SCM cdr = SCM_CDR (old);
1505 SCM_SETCAR (old, SCM_CAR (new));
1506 SCM_SETCDR (old, SCM_CDR (new));
1507 SCM_STRUCT_DATA (old)[scm_vtable_index_vtable] = SCM_UNPACK (old);
1508 SCM_SETCAR (new, car);
1509 SCM_SETCDR (new, cdr);
1510 SCM_STRUCT_DATA (new)[scm_vtable_index_vtable] = SCM_UNPACK (new);
1511 }
1512 SCM_REALLOW_INTS;
1513 return SCM_UNSPECIFIED;
1514 }
1515 #undef FUNC_NAME
1516
1517 SCM_DEFINE (scm_sys_invalidate_class, "%invalidate-class", 1, 0, 0,
1518 (SCM class),
1519 "")
1520 #define FUNC_NAME s_scm_sys_invalidate_class
1521 {
1522 SCM_VALIDATE_CLASS (1, class);
1523 SCM_CLEAR_CLASS_FLAGS (class, SCM_CLASSF_GOOPS_VALID);
1524 return SCM_UNSPECIFIED;
1525 }
1526 #undef FUNC_NAME
1527
1528 /* When instances change class, they finally get a new body, but
1529 * before that, they go through purgatory in hell. Odd as it may
1530 * seem, this data structure saves us from eternal suffering in
1531 * infinite recursions.
1532 */
1533
1534 static scm_t_bits **hell;
1535 static long n_hell = 1; /* one place for the evil one himself */
1536 static long hell_size = 4;
1537 static SCM hell_mutex;
1538
1539 static long
1540 burnin (SCM o)
1541 {
1542 long i;
1543 for (i = 1; i < n_hell; ++i)
1544 if (SCM_STRUCT_DATA (o) == hell[i])
1545 return i;
1546 return 0;
1547 }
1548
1549 static void
1550 go_to_hell (void *o)
1551 {
1552 SCM obj = SCM_PACK ((scm_t_bits) o);
1553 scm_lock_mutex (hell_mutex);
1554 if (n_hell == hell_size)
1555 {
1556 long new_size = 2 * hell_size;
1557 hell = scm_realloc (hell, new_size);
1558 hell_size = new_size;
1559 }
1560 hell[n_hell++] = SCM_STRUCT_DATA (obj);
1561 scm_unlock_mutex (hell_mutex);
1562 }
1563
1564 static void
1565 go_to_heaven (void *o)
1566 {
1567 scm_lock_mutex (hell_mutex);
1568 hell[burnin (SCM_PACK ((scm_t_bits) o))] = hell[--n_hell];
1569 scm_unlock_mutex (hell_mutex);
1570 }
1571
1572
1573 SCM_SYMBOL (scm_sym_change_class, "change-class");
1574
1575 static SCM
1576 purgatory (void *args)
1577 {
1578 return scm_apply_0 (GETVAR (scm_sym_change_class),
1579 SCM_PACK ((scm_t_bits) args));
1580 }
1581
1582 /* This function calls the generic function change-class for all
1583 * instances which aren't currently undergoing class change.
1584 */
1585
1586 void
1587 scm_change_object_class (SCM obj, SCM old_class SCM_UNUSED, SCM new_class)
1588 {
1589 if (!burnin (obj))
1590 scm_internal_dynamic_wind (go_to_hell, purgatory, go_to_heaven,
1591 (void *) SCM_UNPACK (scm_list_2 (obj, new_class)),
1592 (void *) SCM_UNPACK (obj));
1593 }
1594
1595 /******************************************************************************
1596 *
1597 * GGGG FFFFF
1598 * G F
1599 * G GG FFF
1600 * G G F
1601 * GGG E N E R I C F U N C T I O N S
1602 *
1603 * This implementation provides
1604 * - generic functions (with class specializers)
1605 * - multi-methods
1606 * - next-method
1607 * - a hard-coded MOP for standard gf, which can be overloaded for non-std gf
1608 *
1609 ******************************************************************************/
1610
1611 SCM_KEYWORD (k_name, "name");
1612
1613 SCM_SYMBOL (sym_no_method, "no-method");
1614
1615 static SCM list_of_no_method;
1616
1617 SCM_GLOBAL_SYMBOL (scm_sym_args, "args");
1618
1619
1620 SCM
1621 scm_make_method_cache (SCM gf)
1622 {
1623 return scm_list_5 (SCM_IM_DISPATCH,
1624 scm_sym_args,
1625 scm_from_int (1),
1626 scm_c_make_vector (SCM_INITIAL_MCACHE_SIZE,
1627 list_of_no_method),
1628 gf);
1629 }
1630
1631 static void
1632 clear_method_cache (SCM gf)
1633 {
1634 SCM cache = scm_make_method_cache (gf);
1635 SCM_SET_ENTITY_PROCEDURE (gf, cache);
1636 SCM_SET_SLOT (gf, scm_si_used_by, SCM_BOOL_F);
1637 }
1638
1639 SCM_DEFINE (scm_sys_invalidate_method_cache_x, "%invalidate-method-cache!", 1, 0, 0,
1640 (SCM gf),
1641 "")
1642 #define FUNC_NAME s_scm_sys_invalidate_method_cache_x
1643 {
1644 SCM used_by;
1645 SCM_ASSERT (SCM_PUREGENERICP (gf), gf, SCM_ARG1, FUNC_NAME);
1646 used_by = SCM_SLOT (gf, scm_si_used_by);
1647 if (scm_is_true (used_by))
1648 {
1649 SCM methods = SCM_SLOT (gf, scm_si_methods);
1650 for (; scm_is_pair (used_by); used_by = SCM_CDR (used_by))
1651 scm_sys_invalidate_method_cache_x (SCM_CAR (used_by));
1652 clear_method_cache (gf);
1653 for (; scm_is_pair (methods); methods = SCM_CDR (methods))
1654 SCM_SET_SLOT (SCM_CAR (methods), scm_si_code_table, SCM_EOL);
1655 }
1656 {
1657 SCM n = SCM_SLOT (gf, scm_si_n_specialized);
1658 /* The sign of n is a flag indicating rest args. */
1659 SCM_SET_MCACHE_N_SPECIALIZED (SCM_ENTITY_PROCEDURE (gf), n);
1660 }
1661 return SCM_UNSPECIFIED;
1662 }
1663 #undef FUNC_NAME
1664
1665 SCM_DEFINE (scm_generic_capability_p, "generic-capability?", 1, 0, 0,
1666 (SCM proc),
1667 "")
1668 #define FUNC_NAME s_scm_generic_capability_p
1669 {
1670 SCM_ASSERT (scm_is_true (scm_procedure_p (proc)),
1671 proc, SCM_ARG1, FUNC_NAME);
1672 return (scm_subr_p (proc) && SCM_SUBR_GENERIC (proc)
1673 ? SCM_BOOL_T
1674 : SCM_BOOL_F);
1675 }
1676 #undef FUNC_NAME
1677
1678 SCM_DEFINE (scm_enable_primitive_generic_x, "enable-primitive-generic!", 0, 0, 1,
1679 (SCM subrs),
1680 "")
1681 #define FUNC_NAME s_scm_enable_primitive_generic_x
1682 {
1683 SCM_VALIDATE_REST_ARGUMENT (subrs);
1684 while (!scm_is_null (subrs))
1685 {
1686 SCM subr = SCM_CAR (subrs);
1687 SCM_ASSERT (scm_subr_p (subr) && SCM_SUBR_GENERIC (subr),
1688 subr, SCM_ARGn, FUNC_NAME);
1689 *SCM_SUBR_GENERIC (subr)
1690 = scm_make (scm_list_3 (scm_class_generic,
1691 k_name,
1692 SCM_SNAME (subr)));
1693 subrs = SCM_CDR (subrs);
1694 }
1695 return SCM_UNSPECIFIED;
1696 }
1697 #undef FUNC_NAME
1698
1699 SCM_DEFINE (scm_primitive_generic_generic, "primitive-generic-generic", 1, 0, 0,
1700 (SCM subr),
1701 "")
1702 #define FUNC_NAME s_scm_primitive_generic_generic
1703 {
1704 if (scm_subr_p (subr) && SCM_SUBR_GENERIC (subr))
1705 {
1706 if (!*SCM_SUBR_GENERIC (subr))
1707 scm_enable_primitive_generic_x (scm_list_1 (subr));
1708 return *SCM_SUBR_GENERIC (subr);
1709 }
1710 SCM_WRONG_TYPE_ARG (SCM_ARG1, subr);
1711 }
1712 #undef FUNC_NAME
1713
1714 typedef struct t_extension {
1715 struct t_extension *next;
1716 SCM extended;
1717 SCM extension;
1718 } t_extension;
1719
1720 static t_extension *extensions = 0;
1721
1722 SCM_VARIABLE (scm_var_make_extended_generic, "make-extended-generic");
1723
1724 void
1725 scm_c_extend_primitive_generic (SCM extended, SCM extension)
1726 {
1727 if (goops_loaded_p)
1728 {
1729 SCM gf, gext;
1730 if (!*SCM_SUBR_GENERIC (extended))
1731 scm_enable_primitive_generic_x (scm_list_1 (extended));
1732 gf = *SCM_SUBR_GENERIC (extended);
1733 gext = scm_call_2 (SCM_VARIABLE_REF (scm_var_make_extended_generic),
1734 gf,
1735 SCM_SNAME (extension));
1736 *SCM_SUBR_GENERIC (extension) = gext;
1737 }
1738 else
1739 {
1740 t_extension *e = scm_malloc (sizeof (t_extension));
1741 t_extension **loc = &extensions;
1742 /* Make sure that extensions are placed before their own
1743 * extensions in the extensions list. O(N^2) algorithm, but
1744 * extensions of primitive generics are rare.
1745 */
1746 while (*loc && extension != (*loc)->extended)
1747 loc = &(*loc)->next;
1748 e->next = *loc;
1749 e->extended = extended;
1750 e->extension = extension;
1751 *loc = e;
1752 }
1753 }
1754
1755 static void
1756 setup_extended_primitive_generics ()
1757 {
1758 while (extensions)
1759 {
1760 t_extension *e = extensions;
1761 scm_c_extend_primitive_generic (e->extended, e->extension);
1762 extensions = e->next;
1763 free (e);
1764 }
1765 }
1766
1767 /******************************************************************************
1768 *
1769 * Protocol for calling a generic fumction
1770 * This protocol is roughly equivalent to (parameter are a little bit different
1771 * for efficiency reasons):
1772 *
1773 * + apply-generic (gf args)
1774 * + compute-applicable-methods (gf args ...)
1775 * + sort-applicable-methods (methods args)
1776 * + apply-methods (gf methods args)
1777 *
1778 * apply-methods calls make-next-method to build the "continuation" of a a
1779 * method. Applying a next-method will call apply-next-method which in
1780 * turn will call apply again to call effectively the following method.
1781 *
1782 ******************************************************************************/
1783
1784 static int
1785 applicablep (SCM actual, SCM formal)
1786 {
1787 /* We already know that the cpl is well formed. */
1788 return scm_is_true (scm_c_memq (formal, SCM_SLOT (actual, scm_si_cpl)));
1789 }
1790
1791 static int
1792 more_specificp (SCM m1, SCM m2, SCM const *targs)
1793 {
1794 register SCM s1, s2;
1795 register long i;
1796 /*
1797 * Note:
1798 * m1 and m2 can have != length (i.e. one can be one element longer than the
1799 * other when we have a dotted parameter list). For instance, with the call
1800 * (M 1)
1801 * with
1802 * (define-method M (a . l) ....)
1803 * (define-method M (a) ....)
1804 *
1805 * we consider that the second method is more specific.
1806 *
1807 * BTW, targs is an array of types. We don't need it's size since
1808 * we already know that m1 and m2 are applicable (no risk to go past
1809 * the end of this array).
1810 *
1811 */
1812 for (i=0, s1=SPEC_OF(m1), s2=SPEC_OF(m2); ; i++, s1=SCM_CDR(s1), s2=SCM_CDR(s2)) {
1813 if (scm_is_null(s1)) return 1;
1814 if (scm_is_null(s2)) return 0;
1815 if (SCM_CAR(s1) != SCM_CAR(s2)) {
1816 register SCM l, cs1 = SCM_CAR(s1), cs2 = SCM_CAR(s2);
1817
1818 for (l = SCM_SLOT (targs[i], scm_si_cpl); ; l = SCM_CDR(l)) {
1819 if (cs1 == SCM_CAR(l))
1820 return 1;
1821 if (cs2 == SCM_CAR(l))
1822 return 0;
1823 }
1824 return 0;/* should not occur! */
1825 }
1826 }
1827 return 0; /* should not occur! */
1828 }
1829
1830 #define BUFFSIZE 32 /* big enough for most uses */
1831
1832 static SCM
1833 scm_i_vector2list (SCM l, long len)
1834 {
1835 long j;
1836 SCM z = scm_c_make_vector (len, SCM_UNDEFINED);
1837
1838 for (j = 0; j < len; j++, l = SCM_CDR (l)) {
1839 SCM_SIMPLE_VECTOR_SET (z, j, SCM_CAR (l));
1840 }
1841 return z;
1842 }
1843
1844 static SCM
1845 sort_applicable_methods (SCM method_list, long size, SCM const *targs)
1846 {
1847 long i, j, incr;
1848 SCM *v, vector = SCM_EOL;
1849 SCM buffer[BUFFSIZE];
1850 SCM save = method_list;
1851 scm_t_array_handle handle;
1852
1853 /* For reasonably sized method_lists we can try to avoid all the
1854 * consing and reorder the list in place...
1855 * This idea is due to David McClain <Dave_McClain@msn.com>
1856 */
1857 if (size <= BUFFSIZE)
1858 {
1859 for (i = 0; i < size; i++)
1860 {
1861 buffer[i] = SCM_CAR (method_list);
1862 method_list = SCM_CDR (method_list);
1863 }
1864 v = buffer;
1865 }
1866 else
1867 {
1868 /* Too many elements in method_list to keep everything locally */
1869 vector = scm_i_vector2list (save, size);
1870 v = scm_vector_writable_elements (vector, &handle, NULL, NULL);
1871 }
1872
1873 /* Use a simple shell sort since it is generally faster than qsort on
1874 * small vectors (which is probably mostly the case when we have to
1875 * sort a list of applicable methods).
1876 */
1877 for (incr = size / 2; incr; incr /= 2)
1878 {
1879 for (i = incr; i < size; i++)
1880 {
1881 for (j = i - incr; j >= 0; j -= incr)
1882 {
1883 if (more_specificp (v[j], v[j+incr], targs))
1884 break;
1885 else
1886 {
1887 SCM tmp = v[j + incr];
1888 v[j + incr] = v[j];
1889 v[j] = tmp;
1890 }
1891 }
1892 }
1893 }
1894
1895 if (size <= BUFFSIZE)
1896 {
1897 /* We did it in locally, so restore the original list (reordered) in-place */
1898 for (i = 0, method_list = save; i < size; i++, v++)
1899 {
1900 SCM_SETCAR (method_list, *v);
1901 method_list = SCM_CDR (method_list);
1902 }
1903 return save;
1904 }
1905
1906 /* If we are here, that's that we did it the hard way... */
1907 return scm_vector_to_list (vector);
1908 }
1909
1910 SCM
1911 scm_compute_applicable_methods (SCM gf, SCM args, long len, int find_method_p)
1912 {
1913 register long i;
1914 long count = 0;
1915 SCM l, fl, applicable = SCM_EOL;
1916 SCM save = args;
1917 SCM buffer[BUFFSIZE];
1918 SCM const *types;
1919 SCM *p;
1920 SCM tmp = SCM_EOL;
1921 scm_t_array_handle handle;
1922
1923 /* Build the list of arguments types */
1924 if (len >= BUFFSIZE)
1925 {
1926 tmp = scm_c_make_vector (len, SCM_UNDEFINED);
1927 types = p = scm_vector_writable_elements (tmp, &handle, NULL, NULL);
1928
1929 /*
1930 note that we don't have to work to reset the generation
1931 count. TMP is a new vector anyway, and it is found
1932 conservatively.
1933 */
1934 }
1935 else
1936 types = p = buffer;
1937
1938 for ( ; !scm_is_null (args); args = SCM_CDR (args))
1939 *p++ = scm_class_of (SCM_CAR (args));
1940
1941 /* Build a list of all applicable methods */
1942 for (l = scm_generic_function_methods (gf); !scm_is_null (l); l = SCM_CDR (l))
1943 {
1944 fl = SPEC_OF (SCM_CAR (l));
1945 /* Only accept accessors which match exactly in first arg. */
1946 if (SCM_ACCESSORP (SCM_CAR (l))
1947 && (scm_is_null (fl) || types[0] != SCM_CAR (fl)))
1948 continue;
1949 for (i = 0; ; i++, fl = SCM_CDR (fl))
1950 {
1951 if (SCM_INSTANCEP (fl)
1952 /* We have a dotted argument list */
1953 || (i >= len && scm_is_null (fl)))
1954 { /* both list exhausted */
1955 applicable = scm_cons (SCM_CAR (l), applicable);
1956 count += 1;
1957 break;
1958 }
1959 if (i >= len
1960 || scm_is_null (fl)
1961 || !applicablep (types[i], SCM_CAR (fl)))
1962 break;
1963 }
1964 }
1965
1966 if (count == 0)
1967 {
1968 if (find_method_p)
1969 return SCM_BOOL_F;
1970 CALL_GF2 ("no-applicable-method", gf, save);
1971 /* if we are here, it's because no-applicable-method hasn't signaled an error */
1972 return SCM_BOOL_F;
1973 }
1974
1975 return (count == 1
1976 ? applicable
1977 : sort_applicable_methods (applicable, count, types));
1978 }
1979
1980 #if 0
1981 SCM_PROC (s_sys_compute_applicable_methods, "%compute-applicable-methods", 2, 0, 0, scm_sys_compute_applicable_methods);
1982 #endif
1983
1984 static const char s_sys_compute_applicable_methods[] = "%compute-applicable-methods";
1985
1986 SCM
1987 scm_sys_compute_applicable_methods (SCM gf, SCM args)
1988 #define FUNC_NAME s_sys_compute_applicable_methods
1989 {
1990 long n;
1991 SCM_VALIDATE_GENERIC (1, gf);
1992 n = scm_ilength (args);
1993 SCM_ASSERT (n >= 0, args, SCM_ARG2, FUNC_NAME);
1994 return scm_compute_applicable_methods (gf, args, n, 1);
1995 }
1996 #undef FUNC_NAME
1997
1998 SCM_SYMBOL (sym_compute_applicable_methods, "compute-applicable-methods");
1999 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));
2000
2001 static void
2002 lock_cache_mutex (void *m)
2003 {
2004 SCM mutex = SCM_PACK ((scm_t_bits) m);
2005 scm_lock_mutex (mutex);
2006 }
2007
2008 static void
2009 unlock_cache_mutex (void *m)
2010 {
2011 SCM mutex = SCM_PACK ((scm_t_bits) m);
2012 scm_unlock_mutex (mutex);
2013 }
2014
2015 static SCM
2016 call_memoize_method (void *a)
2017 {
2018 SCM args = SCM_PACK ((scm_t_bits) a);
2019 SCM gf = SCM_CAR (args);
2020 SCM x = SCM_CADR (args);
2021 /* First check if another thread has inserted a method between
2022 * the cache miss and locking the mutex.
2023 */
2024 SCM cmethod = scm_mcache_lookup_cmethod (x, SCM_CDDR (args));
2025 if (scm_is_true (cmethod))
2026 return cmethod;
2027 /*fixme* Use scm_apply */
2028 return CALL_GF3 ("memoize-method!", gf, SCM_CDDR (args), x);
2029 }
2030
2031 SCM
2032 scm_memoize_method (SCM x, SCM args)
2033 {
2034 SCM gf = SCM_CAR (scm_last_pair (x));
2035 return scm_internal_dynamic_wind (
2036 lock_cache_mutex,
2037 call_memoize_method,
2038 unlock_cache_mutex,
2039 (void *) SCM_UNPACK (scm_cons2 (gf, x, args)),
2040 (void *) SCM_UNPACK (SCM_SLOT (gf, scm_si_cache_mutex)));
2041 }
2042
2043 /******************************************************************************
2044 *
2045 * A simple make (which will be redefined later in Scheme)
2046 * This version handles only creation of gf, methods and classes (no instances)
2047 *
2048 * Since this code will disappear when Goops will be fully booted,
2049 * no precaution is taken to be efficient.
2050 *
2051 ******************************************************************************/
2052
2053 SCM_KEYWORD (k_setter, "setter");
2054 SCM_KEYWORD (k_specializers, "specializers");
2055 SCM_KEYWORD (k_procedure, "procedure");
2056 SCM_KEYWORD (k_dsupers, "dsupers");
2057 SCM_KEYWORD (k_slots, "slots");
2058 SCM_KEYWORD (k_gf, "generic-function");
2059
2060 SCM_DEFINE (scm_make, "make", 0, 0, 1,
2061 (SCM args),
2062 "Make a new object. @var{args} must contain the class and\n"
2063 "all necessary initialization information.")
2064 #define FUNC_NAME s_scm_make
2065 {
2066 SCM class, z;
2067 long len = scm_ilength (args);
2068
2069 if (len <= 0 || (len & 1) == 0)
2070 SCM_WRONG_NUM_ARGS ();
2071
2072 class = SCM_CAR(args);
2073 args = SCM_CDR(args);
2074
2075 if (class == scm_class_generic || class == scm_class_accessor)
2076 {
2077 z = scm_make_struct (class, SCM_INUM0,
2078 scm_list_5 (SCM_EOL,
2079 SCM_INUM0,
2080 SCM_BOOL_F,
2081 scm_make_mutex (),
2082 SCM_EOL));
2083 scm_set_procedure_property_x (z, scm_sym_name,
2084 scm_get_keyword (k_name,
2085 args,
2086 SCM_BOOL_F));
2087 clear_method_cache (z);
2088 if (class == scm_class_accessor)
2089 {
2090 SCM setter = scm_get_keyword (k_setter, args, SCM_BOOL_F);
2091 if (scm_is_true (setter))
2092 scm_sys_set_object_setter_x (z, setter);
2093 }
2094 }
2095 else
2096 {
2097 z = scm_sys_allocate_instance (class, args);
2098
2099 if (class == scm_class_method
2100 || class == scm_class_simple_method
2101 || class == scm_class_accessor_method)
2102 {
2103 SCM_SET_SLOT (z, scm_si_generic_function,
2104 scm_i_get_keyword (k_gf,
2105 args,
2106 len - 1,
2107 SCM_BOOL_F,
2108 FUNC_NAME));
2109 SCM_SET_SLOT (z, scm_si_specializers,
2110 scm_i_get_keyword (k_specializers,
2111 args,
2112 len - 1,
2113 SCM_EOL,
2114 FUNC_NAME));
2115 SCM_SET_SLOT (z, scm_si_procedure,
2116 scm_i_get_keyword (k_procedure,
2117 args,
2118 len - 1,
2119 SCM_EOL,
2120 FUNC_NAME));
2121 SCM_SET_SLOT (z, scm_si_code_table, SCM_EOL);
2122 }
2123 else
2124 {
2125 /* In all the others case, make a new class .... No instance here */
2126 SCM_SET_SLOT (z, scm_si_name,
2127 scm_i_get_keyword (k_name,
2128 args,
2129 len - 1,
2130 scm_from_locale_symbol ("???"),
2131 FUNC_NAME));
2132 SCM_SET_SLOT (z, scm_si_direct_supers,
2133 scm_i_get_keyword (k_dsupers,
2134 args,
2135 len - 1,
2136 SCM_EOL,
2137 FUNC_NAME));
2138 SCM_SET_SLOT (z, scm_si_direct_slots,
2139 scm_i_get_keyword (k_slots,
2140 args,
2141 len - 1,
2142 SCM_EOL,
2143 FUNC_NAME));
2144 }
2145 }
2146 return z;
2147 }
2148 #undef FUNC_NAME
2149
2150 SCM_DEFINE (scm_find_method, "find-method", 0, 0, 1,
2151 (SCM l),
2152 "")
2153 #define FUNC_NAME s_scm_find_method
2154 {
2155 SCM gf;
2156 long len = scm_ilength (l);
2157
2158 if (len == 0)
2159 SCM_WRONG_NUM_ARGS ();
2160
2161 gf = SCM_CAR(l); l = SCM_CDR(l);
2162 SCM_VALIDATE_GENERIC (1, gf);
2163 if (scm_is_null (SCM_SLOT (gf, scm_si_methods)))
2164 SCM_MISC_ERROR ("no methods for generic ~S", scm_list_1 (gf));
2165
2166 return scm_compute_applicable_methods (gf, l, len - 1, 1);
2167 }
2168 #undef FUNC_NAME
2169
2170 SCM_DEFINE (scm_sys_method_more_specific_p, "%method-more-specific?", 3, 0, 0,
2171 (SCM m1, SCM m2, SCM targs),
2172 "")
2173 #define FUNC_NAME s_scm_sys_method_more_specific_p
2174 {
2175 SCM l, v, result;
2176 SCM *v_elts;
2177 long i, len;
2178 scm_t_array_handle handle;
2179
2180 SCM_VALIDATE_METHOD (1, m1);
2181 SCM_VALIDATE_METHOD (2, m2);
2182 SCM_ASSERT ((len = scm_ilength (targs)) != -1, targs, SCM_ARG3, FUNC_NAME);
2183
2184 /* Verify that all the arguments of targs are classes and place them
2185 in a vector
2186 */
2187
2188 v = scm_c_make_vector (len, SCM_EOL);
2189 v_elts = scm_vector_writable_elements (v, &handle, NULL, NULL);
2190
2191 for (i = 0, l = targs; !scm_is_null (l); i++, l = SCM_CDR (l))
2192 {
2193 SCM_ASSERT (SCM_CLASSP (SCM_CAR (l)), targs, SCM_ARG3, FUNC_NAME);
2194 v_elts[i] = SCM_CAR(l);
2195 }
2196
2197 /* V_ELTS is only protected as long as HANDLE is, so we need to make
2198 sure that more_specificp is not tail-called.
2199 */
2200 result = more_specificp (m1, m2, v_elts) ? SCM_BOOL_T: SCM_BOOL_F;
2201 scm_remember_upto_here_1 (v);
2202 return result;
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_from_locale_symbol (name);
2239
2240 *var = scm_permanent_object (scm_basic_make_class (meta,
2241 tmp,
2242 scm_is_pair (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_from_locale_symbol ("generic-function"),
2257 scm_from_locale_symbol ("specializers"),
2258 sym_procedure,
2259 scm_from_locale_symbol ("code-table"));
2260 SCM amethod_slots = scm_list_1 (scm_list_3 (scm_from_locale_symbol ("slot-definition"),
2261 k_init_keyword,
2262 k_slot_definition));
2263 SCM mutex_slot = scm_list_1 (scm_from_locale_symbol ("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_from_locale_symbol ("methods"),
2269 scm_list_3 (scm_from_locale_symbol ("n-specialized"),
2270 k_init_value,
2271 SCM_INUM0),
2272 scm_list_3 (scm_from_locale_symbol ("used-by"),
2273 k_init_value,
2274 SCM_BOOL_F),
2275 scm_list_3 (scm_from_locale_symbol ("cache-mutex"),
2276 k_init_thunk,
2277 mutex_closure),
2278 scm_list_3 (scm_from_locale_symbol ("extended-by"),
2279 k_init_value,
2280 SCM_EOL));
2281 SCM egf_slots = scm_list_1 (scm_list_3 (scm_from_locale_symbol ("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_from_locale_symbol ("constructor"),
2325 k_class,
2326 scm_class_opaque),
2327 scm_list_3 (scm_from_locale_symbol ("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_from_locale_symbol (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_i_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_from_locale_symbol (s_name);
2637 if (scm_is_null (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_from_locale_symbol (""));
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_from_locale_symbol (slot_name);
2697 SCM aname = scm_from_locale_symbol (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_from_int (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_sum (n, scm_from_int (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_from_int (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_from_locale_symbol ("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 */