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