1 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; This software is derived from software originally released by Xerox
5 ;;;; Corporation. Copyright and release statements follow. Later modifications
6 ;;;; to the software are in the public domain and are provided with
7 ;;;; absolutely no warranty. See the COPYING and CREDITS files for more
10 ;;;; copyright information from original PCL sources:
12 ;;;; Copyright (c) 1985, 1986, 1987, 1988, 1989, 1990 Xerox Corporation.
13 ;;;; All rights reserved.
15 ;;;; Use and copying of this software and preparation of derivative works based
16 ;;;; upon this software are permitted. Any distribution of this software or
17 ;;;; derivative works must comply with all applicable United States export
20 ;;;; This software is made available AS IS, and Xerox Corporation makes no
21 ;;;; warranty about the software, its performance or its conformity to any
26 (defmethod slot-accessor-function ((slotd effective-slot-definition) type)
27 (let ((info (slot-definition-info slotd)))
29 (reader (slot-info-reader info))
30 (writer (slot-info-writer info))
31 (boundp (slot-info-boundp info)))))
33 (defmethod (setf slot-accessor-function) (function
34 (slotd effective-slot-definition)
36 (let ((info (slot-definition-info slotd)))
38 (reader (setf (slot-info-reader info) function))
39 (writer (setf (slot-info-writer info) function))
40 (boundp (setf (slot-info-boundp info) function)))))
42 (defconstant +slotd-reader-function-std-p+ 1)
43 (defconstant +slotd-writer-function-std-p+ 2)
44 (defconstant +slotd-boundp-function-std-p+ 4)
45 (defconstant +slotd-all-function-std-p+ 7)
47 (defmethod slot-accessor-std-p ((slotd effective-slot-definition) type)
48 (let ((flags (slot-value slotd 'accessor-flags)))
49 (declare (type fixnum flags))
51 (eql +slotd-all-function-std-p+ flags)
52 (let ((mask (ecase type
53 (reader +slotd-reader-function-std-p+)
54 (writer +slotd-writer-function-std-p+)
55 (boundp +slotd-boundp-function-std-p+))))
56 (declare (type fixnum mask))
57 (not (zerop (the fixnum (logand mask flags))))))))
59 (defmethod (setf slot-accessor-std-p) (value
60 (slotd effective-slot-definition)
62 (let ((mask (ecase type
63 (reader +slotd-reader-function-std-p+)
64 (writer +slotd-writer-function-std-p+)
65 (boundp +slotd-boundp-function-std-p+)))
66 (flags (slot-value slotd 'accessor-flags)))
67 (declare (type fixnum mask flags))
68 (setf (slot-value slotd 'accessor-flags)
70 (the fixnum (logior mask flags))
71 (the fixnum (logand (the fixnum (lognot mask)) flags)))))
74 (defmethod initialize-internal-slot-functions
75 ((slotd effective-slot-definition))
76 (let* ((name (slot-value slotd 'name))
77 (class (slot-value slotd '%class)))
78 (dolist (type '(reader writer boundp))
79 (let* ((gf-name (ecase type
80 (reader 'slot-value-using-class)
81 (writer '(setf slot-value-using-class))
82 (boundp 'slot-boundp-using-class)))
83 (gf (gdefinition gf-name)))
84 ;; KLUDGE: this logic is cut'n'pasted from
85 ;; GET-ACCESSOR-METHOD-FUNCTION, which (for STD-CLASSes) is
86 ;; only called later, because it does things that can't be
87 ;; computed this early in class finalization; however, we need
88 ;; this bit as early as possible. -- CSR, 2009-11-05
89 (setf (slot-accessor-std-p slotd type)
90 (let* ((std-method (standard-svuc-method type))
91 (str-method (structure-svuc-method type))
92 (types1 `((eql ,class) (class-eq ,class) (eql ,slotd)))
93 (types (if (eq type 'writer) `(t ,@types1) types1))
94 (methods (compute-applicable-methods-using-types gf types)))
95 (null (cdr methods))))
96 (setf (slot-accessor-function slotd type)
98 (declare (dynamic-extent args))
99 ;; FIXME: a tiny amount of wasted SLOT-ACCESSOR-STD-P
100 ;; work here (see KLUDGE comment above).
101 (let ((fun (compute-slot-accessor-info slotd type gf)))
102 (apply fun args))))))))
104 (defmethod finalize-internal-slot-functions ((slotd effective-slot-definition))
105 (dolist (type '(reader writer boundp))
106 (let* ((gf-name (ecase type
107 (reader 'slot-value-using-class)
108 (writer '(setf slot-value-using-class))
109 (boundp 'slot-boundp-using-class)))
110 (gf (gdefinition gf-name)))
111 (compute-slot-accessor-info slotd type gf))))
113 ;;; CMUCL (Gerd PCL 2003-04-25) comment:
115 ;;; Compute an effective method for SLOT-VALUE-USING-CLASS, (SETF
116 ;;; SLOT-VALUE-USING-CLASS) or SLOT-BOUNDP-USING-CLASS for reading/
117 ;;; writing/testing effective slot SLOTD.
119 ;;; TYPE is one of the symbols READER, WRITER or BOUNDP, depending on
120 ;;; GF. Store the effective method in the effective slot definition
121 ;;; object itself; these GFs have special dispatch functions calling
122 ;;; effective methods directly retrieved from effective slot
123 ;;; definition objects, as an optimization.
125 ;;; FIXME: Change the function name to COMPUTE-SVUC-SLOTD-FUNCTION,
127 (defmethod compute-slot-accessor-info ((slotd effective-slot-definition)
129 (let* ((name (slot-value slotd 'name))
130 (class (slot-value slotd '%class)))
131 (multiple-value-bind (function std-p)
132 (if (eq **boot-state** 'complete)
133 (get-accessor-method-function gf type class slotd)
134 (get-optimized-std-accessor-method-function class slotd type))
135 (setf (slot-accessor-std-p slotd type) std-p)
136 (setf (slot-accessor-function slotd type) function))))
138 (defmethod slot-definition-allocation ((slotd structure-slot-definition))
141 ;;;; various class accessors that are a little more complicated than can be
142 ;;;; done with automatically generated reader methods
144 (defmethod class-prototype :before (class)
145 (unless (class-finalized-p class)
146 (error "~@<~S is not finalized.~:@>" class)))
148 ;;; KLUDGE: For some reason factoring the common body into a function
149 ;;; breaks PCL bootstrapping, so just generate it with a macrolet for
151 (macrolet ((def (class)
152 `(defmethod class-prototype ((class ,class))
153 (with-slots (prototype) class
155 (setf prototype (allocate-instance class)))))))
157 (def condition-class)
158 (def structure-class))
160 (defmethod class-direct-default-initargs ((class slot-class))
161 (plist-value class 'direct-default-initargs))
163 (defmethod class-default-initargs ((class slot-class))
164 (plist-value class 'default-initargs))
166 (defmethod class-slot-cells ((class std-class))
167 (plist-value class 'class-slot-cells))
168 (defmethod (setf class-slot-cells) (new-value (class std-class))
169 (setf (plist-value class 'class-slot-cells) new-value))
171 ;;;; class accessors that are even a little bit more complicated than those
172 ;;;; above. These have a protocol for updating them, we must implement that
175 ;;; Maintaining the direct subclasses backpointers. The update methods are
176 ;;; here, the values are read by an automatically generated reader method.
177 (defmethod add-direct-subclass ((class class) (subclass class))
178 (with-slots (direct-subclasses) class
179 (pushnew subclass direct-subclasses :test #'eq)
181 (defmethod remove-direct-subclass ((class class) (subclass class))
182 (with-slots (direct-subclasses) class
183 (setq direct-subclasses (remove subclass direct-subclasses))
186 ;;; Maintaining the direct-methods and direct-generic-functions backpointers.
188 ;;; There are four generic functions involved, each has one method for the
189 ;;; class case and another method for the damned EQL specializers. All of
190 ;;; these are specified methods and appear in their specified place in the
193 ;;; ADD-DIRECT-METHOD
194 ;;; REMOVE-DIRECT-METHOD
195 ;;; SPECIALIZER-DIRECT-METHODS
196 ;;; SPECIALIZER-DIRECT-GENERIC-FUNCTIONS
198 ;;; In each case, we maintain one value which is a cons. The car is the list
199 ;;; methods. The cdr is a list of the generic functions. The cdr is always
202 ;;; This needs to be used recursively, in case a non-trivial user
203 ;;; defined ADD/REMOVE-DIRECT-METHOD method ends up calling another
204 ;;; function using the same lock.
205 (defvar *specializer-lock* (sb-thread::make-spinlock :name "Specializer lock"))
207 (defmethod add-direct-method :around ((specializer specializer) method)
208 ;; All the actions done under this lock are done in an order
209 ;; that is safe to unwind at any point.
210 (sb-thread::with-recursive-system-spinlock (*specializer-lock*)
213 (defmethod remove-direct-method :around ((specializer specializer) method)
214 ;; All the actions done under this lock are done in an order
215 ;; that is safe to unwind at any point.
216 (sb-thread::with-recursive-system-spinlock (*specializer-lock*)
219 (defmethod add-direct-method ((specializer class) (method method))
220 (let ((cell (slot-value specializer 'direct-methods)))
221 ;; We need to first smash the CDR, because a parallel read may
222 ;; be in progress, and because if an interrupt catches us we
223 ;; need to have a consistent state.
225 (car cell) (adjoin method (car cell) :test #'eq)))
228 (defmethod remove-direct-method ((specializer class) (method method))
229 (let ((cell (slot-value specializer 'direct-methods)))
230 ;; We need to first smash the CDR, because a parallel read may
231 ;; be in progress, and because if an interrupt catches us we
232 ;; need to have a consistent state.
234 (car cell) (remove method (car cell))))
237 (defmethod specializer-direct-methods ((specializer class))
238 (with-slots (direct-methods) specializer
239 (car direct-methods)))
241 (defmethod specializer-direct-generic-functions ((specializer class))
242 (let ((cell (slot-value specializer 'direct-methods)))
243 ;; If an ADD/REMOVE-METHOD is in progress, no matter: either
244 ;; we behave as if we got just first or just after -- it's just
245 ;; for update that we need to lock.
247 (sb-thread::with-spinlock (*specializer-lock*)
250 (dolist (m (car cell))
251 ;; the old PCL code used COLLECTING-ONCE which used
252 ;; #'EQ to check for newness
253 (pushnew (method-generic-function m) collect :test #'eq))
254 (nreverse collect)))))))
256 ;;; This hash table is used to store the direct methods and direct generic
257 ;;; functions of EQL specializers. Each value in the table is the cons.
259 ;;; These tables are shared between threads, so they need to be synchronized.
260 (defvar *eql-specializer-methods* (make-hash-table :test 'eql :synchronized t))
261 (defvar *class-eq-specializer-methods* (make-hash-table :test 'eq :synchronized t))
263 (defmethod specializer-method-table ((specializer eql-specializer))
264 *eql-specializer-methods*)
266 (defmethod specializer-method-table ((specializer class-eq-specializer))
267 *class-eq-specializer-methods*)
269 (defmethod add-direct-method ((specializer specializer-with-object)
271 (let* ((object (specializer-object specializer))
272 (table (specializer-method-table specializer))
273 (entry (gethash object table)))
276 (setf (gethash object table) (cons nil nil))))
277 ;; We need to first smash the CDR, because a parallel read may
278 ;; be in progress, and because if an interrupt catches us we
279 ;; need to have a consistent state.
281 (car entry) (adjoin method (car entry) :test #'eq))
284 (defmethod remove-direct-method ((specializer specializer-with-object)
286 (let* ((object (specializer-object specializer))
287 (entry (gethash object (specializer-method-table specializer))))
289 ;; We need to first smash the CDR, because a parallel read may
290 ;; be in progress, and because if an interrupt catches us we
291 ;; need to have a consistent state.
293 (car entry) (remove method (car entry))))
296 (defmethod specializer-direct-methods ((specializer specializer-with-object))
297 (car (gethash (specializer-object specializer)
298 (specializer-method-table specializer))))
300 (defmethod specializer-direct-generic-functions ((specializer
301 specializer-with-object))
302 (let* ((object (specializer-object specializer))
303 (entry (gethash object (specializer-method-table specializer))))
306 (sb-thread::with-spinlock (*specializer-lock*)
309 (dolist (m (car entry))
310 (pushnew (method-generic-function m) collect :test #'eq))
311 (nreverse collect))))))))
313 (defun map-specializers (function)
314 (map-all-classes (lambda (class)
315 (funcall function (class-eq-specializer class))
316 (funcall function class)))
317 (maphash (lambda (object methods)
318 (declare (ignore methods))
319 (intern-eql-specializer object))
320 *eql-specializer-methods*)
321 (maphash (lambda (object specl)
322 (declare (ignore object))
323 (funcall function specl))
324 *eql-specializer-table*)
327 (defun map-all-generic-functions (function)
328 (let ((all-generic-functions (make-hash-table :test 'eq)))
329 (map-specializers (lambda (specl)
330 (dolist (gf (specializer-direct-generic-functions
332 (unless (gethash gf all-generic-functions)
333 (setf (gethash gf all-generic-functions) t)
334 (funcall function gf))))))
337 (defmethod shared-initialize :after ((specl class-eq-specializer)
340 (declare (ignore slot-names))
341 (setf (slot-value specl '%type) `(class-eq ,(specializer-class specl))))
343 (defmethod shared-initialize :after ((specl eql-specializer) slot-names &key)
344 (declare (ignore slot-names))
345 (setf (slot-value specl '%type)
346 `(eql ,(specializer-object specl)))
347 (setf (info :type :translator specl)
348 (constantly (make-member-type :members (list (specializer-object specl))))))
350 (defun real-load-defclass (name metaclass-name supers slots other
351 readers writers slot-names source-location safe-p)
352 (with-single-package-locked-error (:symbol name "defining ~S as a class")
353 (%compiler-defclass name readers writers slot-names)
354 (let ((res (apply #'ensure-class name :metaclass metaclass-name
355 :direct-superclasses supers
357 :definition-source source-location
362 (setf (gdefinition 'load-defclass) #'real-load-defclass)
364 (defun ensure-class (name &rest args)
366 (apply #'ensure-class-using-class
367 (let ((class (find-class name nil)))
368 (when (and class (eq name (class-name class)))
369 ;; NAME is the proper name of CLASS, so redefine it
374 (defmethod ensure-class-using-class ((class null) name &rest args &key)
376 (multiple-value-bind (meta initargs)
377 (frob-ensure-class-args args)
378 (setf class (apply #'make-instance meta :name name initargs))
379 (without-package-locks
380 (setf (find-class name) class))))
381 ;; After boot (SETF FIND-CLASS) does this.
382 (unless (eq **boot-state** 'complete)
383 (%set-class-type-translation class name))
386 (defmethod ensure-class-using-class ((class pcl-class) name &rest args &key)
388 (multiple-value-bind (meta initargs)
389 (frob-ensure-class-args args)
390 (unless (eq (class-of class) meta)
391 (apply #'change-class class meta initargs))
392 (apply #'reinitialize-instance class initargs)
393 (without-package-locks
394 (setf (find-class name) class))))
395 ;; After boot (SETF FIND-CLASS) does this.
396 (unless (eq **boot-state** 'complete)
397 (%set-class-type-translation class name))
400 (defun frob-ensure-class-args (args)
401 (let (metaclass metaclassp reversed-plist)
402 (flet ((frob-superclass (s)
405 ((legal-class-name-p s)
406 (or (find-class s nil)
407 (ensure-class s :metaclass 'forward-referenced-class)))
408 (t (error "Not a class or a legal class name: ~S." s)))))
409 (doplist (key val) args
410 (cond ((eq key :metaclass)
412 (setf metaclass val metaclassp key)))
414 (when (eq key :direct-superclasses)
415 (setf val (mapcar #'frob-superclass val)))
416 (setf reversed-plist (list* val key reversed-plist)))))
417 (values (cond (metaclassp
418 (if (classp metaclass)
420 (find-class metaclass)))
421 (t *the-class-standard-class*))
422 (nreverse reversed-plist)))))
424 ;;; This is used to call initfunctions of :allocation :class slots.
425 (defun call-initfun (fun slotd safe)
426 (declare (function fun))
427 (let ((value (funcall fun)))
429 (let ((type (slot-definition-type slotd)))
430 (unless (or (eq t type)
432 (error 'type-error :expected-type type :datum value))))
435 (defmethod shared-initialize :after
436 ((class std-class) slot-names &key
437 (direct-superclasses nil direct-superclasses-p)
438 (direct-slots nil direct-slots-p)
439 (direct-default-initargs nil direct-default-initargs-p)
441 (cond (direct-superclasses-p
442 (setq direct-superclasses
443 (or direct-superclasses
444 (list (if (funcallable-standard-class-p class)
445 *the-class-funcallable-standard-object*
446 *the-class-standard-object*))))
447 (dolist (superclass direct-superclasses)
448 (unless (validate-superclass class superclass)
449 (error "~@<The class ~S was specified as a ~
450 super-class of the class ~S, ~
451 but the meta-classes ~S and ~S are incompatible. ~
452 Define a method for ~S to avoid this error.~@:>"
453 superclass class (class-of superclass) (class-of class)
454 'validate-superclass)))
455 (setf (slot-value class 'direct-superclasses) direct-superclasses))
457 (setq direct-superclasses (slot-value class 'direct-superclasses))))
460 (setf (slot-value class 'direct-slots)
461 (mapcar (lambda (pl) (make-direct-slotd class pl))
463 (slot-value class 'direct-slots)))
464 (if direct-default-initargs-p
465 (setf (plist-value class 'direct-default-initargs)
466 direct-default-initargs)
467 (setq direct-default-initargs
468 (plist-value class 'direct-default-initargs)))
469 (setf (plist-value class 'class-slot-cells)
470 (let ((old-class-slot-cells (plist-value class 'class-slot-cells))
471 (safe (safe-p class))
473 (dolist (dslotd direct-slots)
474 (when (eq :class (slot-definition-allocation dslotd))
476 (let* ((name (slot-definition-name dslotd))
477 (old (assoc name old-class-slot-cells)))
480 (member name slot-names :test #'eq))
481 (let* ((initfunction (slot-definition-initfunction dslotd))
484 (call-initfun initfunction dslotd safe)
486 (push (cons name value) collect))
487 (push old collect)))))
489 (add-direct-subclasses class direct-superclasses)
490 (if (class-finalized-p class)
491 ;; required by AMOP, "Reinitialization of Class Metaobjects"
492 (finalize-inheritance class)
493 (update-class class nil))
494 (add-slot-accessors class direct-slots definition-source)
495 (make-preliminary-layout class))
497 (defmethod shared-initialize :after ((class forward-referenced-class)
498 slot-names &key &allow-other-keys)
499 (declare (ignore slot-names))
500 (make-preliminary-layout class))
502 (defvar *allow-forward-referenced-classes-in-cpl-p* nil)
504 ;;; Give CLASS a preliminary layout if it doesn't have one already, to
505 ;;; make it known to the type system.
506 (defun make-preliminary-layout (class)
507 (flet ((compute-preliminary-cpl (root)
508 (let ((*allow-forward-referenced-classes-in-cpl-p* t))
509 (compute-class-precedence-list root))))
511 (without-package-locks
512 (unless (class-finalized-p class)
513 (let ((name (class-name class)))
514 ;; KLUDGE: This is fairly horrible. We need to make a
515 ;; full-fledged CLASSOID here, not just tell the compiler that
516 ;; some class is forthcoming, because there are legitimate
517 ;; questions one can ask of the type system, implemented in
518 ;; terms of CLASSOIDs, involving forward-referenced classes. So.
519 (let ((layout (make-wrapper 0 class)))
520 (setf (slot-value class 'wrapper) layout)
521 (let ((cpl (compute-preliminary-cpl class)))
522 (setf (layout-inherits layout)
523 (order-layout-inherits
524 (map 'simple-vector #'class-wrapper
525 (reverse (rest cpl))))))
526 (register-layout layout :invalidate t)
527 (%set-class-type-translation class (layout-classoid layout)))))
528 (mapc #'make-preliminary-layout (class-direct-subclasses class))))))
531 (defmethod shared-initialize :before ((class class) slot-names &key name)
532 (declare (ignore slot-names name))
533 ;; FIXME: Could this just be CLASS instead of `(CLASS ,CLASS)? If not,
534 ;; why not? (See also similar expression in !BOOTSTRAP-INITIALIZE-CLASS.)
535 (setf (slot-value class '%type) `(class ,class))
536 (setf (slot-value class 'class-eq-specializer)
537 (make-instance 'class-eq-specializer :class class)))
539 (defmethod reinitialize-instance :before ((class slot-class) &key direct-superclasses)
540 (dolist (old-super (set-difference (class-direct-superclasses class) direct-superclasses))
541 (remove-direct-subclass old-super class))
542 (remove-slot-accessors class (class-direct-slots class)))
544 (defmethod reinitialize-instance :after ((class slot-class)
547 (map-dependents class
549 (apply #'update-dependent class dependent initargs))))
551 (defmethod reinitialize-instance :after ((class condition-class) &key)
552 (let* ((name (class-name class))
553 (classoid (find-classoid name))
554 (slots (condition-classoid-slots classoid)))
555 ;; to balance the REMOVE-SLOT-ACCESSORS call in
556 ;; REINITIALIZE-INSTANCE :BEFORE (SLOT-CLASS).
558 (let ((slot-name (condition-slot-name slot)))
559 (dolist (reader (condition-slot-readers slot))
560 ;; FIXME: see comment in SHARED-INITIALIZE :AFTER
561 ;; (CONDITION-CLASS T), below. -- CSR, 2005-11-18
562 (sb-kernel::install-condition-slot-reader reader name slot-name))
563 (dolist (writer (condition-slot-writers slot))
564 (sb-kernel::install-condition-slot-writer writer name slot-name))))))
566 (defmethod shared-initialize :after ((class condition-class) slot-names
567 &key direct-slots direct-superclasses)
568 (declare (ignore slot-names))
569 (let ((classoid (find-classoid (slot-value class 'name))))
570 (with-slots (wrapper %class-precedence-list cpl-available-p
571 prototype (direct-supers direct-superclasses))
573 (setf (slot-value class 'direct-slots)
574 (mapcar (lambda (pl) (make-direct-slotd class pl))
576 (setf (slot-value class 'finalized-p) t)
577 (setf (classoid-pcl-class classoid) class)
578 (setq direct-supers direct-superclasses)
579 (setq wrapper (classoid-layout classoid))
580 (setq %class-precedence-list (compute-class-precedence-list class))
581 (setq cpl-available-p t)
582 (add-direct-subclasses class direct-superclasses)
583 (let ((slots (compute-slots class)))
584 (setf (slot-value class 'slots) slots)
585 (setf (layout-slot-table wrapper) (make-slot-table class slots)))))
586 ;; Comment from Gerd's PCL, 2003-05-15:
588 ;; We don't ADD-SLOT-ACCESSORS here because we don't want to
589 ;; override condition accessors with generic functions. We do this
592 ;; ??? What does the above comment mean and why is it a good idea?
593 ;; CMUCL (which still as of 2005-11-18 uses this code and has this
594 ;; comment) loses slot information in its condition classes:
595 ;; DIRECT-SLOTS is always NIL. We have the right information, so we
596 ;; remove slot accessors but never put them back. I've added a
597 ;; REINITIALIZE-INSTANCE :AFTER (CONDITION-CLASS) method, but what
598 ;; was meant to happen? -- CSR, 2005-11-18
601 (defmethod direct-slot-definition-class ((class condition-class)
603 (declare (ignore initargs))
604 (find-class 'condition-direct-slot-definition))
606 (defmethod effective-slot-definition-class ((class condition-class)
608 (declare (ignore initargs))
609 (find-class 'condition-effective-slot-definition))
611 (defmethod finalize-inheritance ((class condition-class))
612 (aver (slot-value class 'finalized-p))
615 (defmethod compute-effective-slot-definition
616 ((class condition-class) slot-name dslotds)
617 (let* ((slotd (call-next-method))
618 (info (slot-definition-info slotd)))
619 (setf (slot-info-reader info)
621 (handler-case (condition-reader-function x slot-name)
622 ;; FIXME: FIND-SLOT-DEFAULT throws an error if the slot
623 ;; is unbound; maybe it should be a CELL-ERROR of some
625 (error () (values (slot-unbound class x slot-name))))))
626 (setf (slot-info-writer info)
628 (condition-writer-function x v slot-name)))
629 (setf (slot-info-boundp info)
631 (multiple-value-bind (v c)
632 (ignore-errors (condition-reader-function x slot-name))
637 (defmethod compute-slots ((class condition-class))
638 (mapcan (lambda (superclass)
639 (mapcar (lambda (dslotd)
640 (compute-effective-slot-definition
641 class (slot-definition-name dslotd) (list dslotd)))
642 (class-direct-slots superclass)))
643 (reverse (slot-value class '%class-precedence-list))))
645 (defmethod compute-slots :around ((class condition-class))
646 (let ((eslotds (call-next-method)))
647 (mapc #'finalize-internal-slot-functions eslotds)
650 (defmethod shared-initialize :after
651 ((slotd structure-slot-definition) slot-names &key
652 (allocation :instance) allocation-class)
653 (declare (ignore slot-names allocation-class))
654 (unless (eq allocation :instance)
655 (error "Structure slots must have :INSTANCE allocation.")))
657 (defun make-structure-class-defstruct-form (name direct-slots include)
658 (let* ((conc-name (format-symbol *package* "~S structure class " name))
659 (constructor (format-symbol *package* "~Aconstructor" conc-name))
660 (included-name (class-name include))
663 (mapcar #'dsd-name (dd-slots (find-defstruct-description included-name)))))
668 (dolist (slotd (reverse direct-slots))
669 (let* ((slot-name (slot-definition-name slotd))
670 (initform (slot-definition-initform slotd))
671 (type (slot-definition-type slotd))
672 (desc `(,slot-name ,initform :type ,type)))
673 (push `(slot-accessor ,name ,slot-name reader)
675 (push `(slot-accessor ,name ,slot-name writer)
677 (if (member slot-name included-slots :test #'eq)
678 (push desc old-slots)
679 (push desc new-slots))))
680 (let* ((defstruct `(defstruct (,name
682 `((:include ,included-name
684 (:constructor ,constructor ())
686 (:conc-name ,conc-name)
690 (mapcar (lambda (slotd reader-name)
692 (slot-definition-defstruct-accessor-symbol
694 `(defun ,reader-name (obj)
695 (declare (type ,name obj))
697 direct-slots reader-names))
699 (mapcar (lambda (slotd writer-name)
701 (slot-definition-defstruct-accessor-symbol
703 `(defun ,writer-name (nv obj)
704 (declare (type ,name obj))
705 (setf (,accessor obj) nv))))
706 direct-slots writer-names))
710 ,@readers-init ,@writers-init
712 (values defstruct-form constructor reader-names writer-names))))
714 (defun make-defstruct-allocation-function (name)
715 ;; FIXME: Why don't we go class->layout->info == dd
716 (let ((dd (find-defstruct-description name)))
719 (%make-structure-instance-allocator dd nil))
720 (funcallable-structure
721 (%make-funcallable-structure-instance-allocator dd nil)))))
723 (defmethod shared-initialize :after
724 ((class structure-class) slot-names &key
725 (direct-superclasses nil direct-superclasses-p)
726 (direct-slots nil direct-slots-p)
727 direct-default-initargs
729 (declare (ignore slot-names direct-default-initargs))
730 (if direct-superclasses-p
731 (setf (slot-value class 'direct-superclasses)
732 (or direct-superclasses
733 (setq direct-superclasses
734 (and (not (eq (slot-value class 'name) 'structure-object))
735 (list *the-class-structure-object*)))))
736 (setq direct-superclasses (slot-value class 'direct-superclasses)))
737 (let* ((name (slot-value class 'name))
738 (from-defclass-p (slot-value class 'from-defclass-p))
739 (defstruct-p (or from-defclass-p (not (structure-type-p name)))))
741 (setf (slot-value class 'direct-slots)
745 (let* ((slot-name (getf pl :name))
747 (format-symbol *package*
748 "~S structure class ~A"
750 (setq pl (list* :defstruct-accessor-symbol
752 (make-direct-slotd class pl))
754 (setq direct-slots (slot-value class 'direct-slots)))
756 (let ((include (car (slot-value class 'direct-superclasses))))
757 (multiple-value-bind (defstruct-form constructor reader-names writer-names)
758 (make-structure-class-defstruct-form name direct-slots include)
759 (unless (structure-type-p name) (eval defstruct-form))
760 (mapc (lambda (dslotd reader-name writer-name)
761 (let* ((reader (gdefinition reader-name))
762 (writer (when (fboundp writer-name)
763 (gdefinition writer-name))))
764 (setf (slot-value dslotd 'internal-reader-function)
766 (setf (slot-value dslotd 'internal-writer-function)
768 direct-slots reader-names writer-names)
769 (setf (slot-value class 'defstruct-form) defstruct-form)
770 (setf (slot-value class 'defstruct-constructor) constructor)))
771 (setf (slot-value class 'defstruct-constructor)
772 ;; KLUDGE: not class; in fixup.lisp, can't access slots
773 ;; outside methods yet.
774 (make-defstruct-allocation-function name)))
775 (add-direct-subclasses class direct-superclasses)
776 (setf (slot-value class '%class-precedence-list)
777 (compute-class-precedence-list class))
778 (setf (slot-value class 'cpl-available-p) t)
779 (let ((slots (compute-slots class)))
780 (setf (slot-value class 'slots) slots)
781 (let* ((lclass (find-classoid (slot-value class 'name)))
782 (layout (classoid-layout lclass)))
783 (setf (classoid-pcl-class lclass) class)
784 (setf (slot-value class 'wrapper) layout)
785 (setf (layout-slot-table layout) (make-slot-table class slots))))
786 (setf (slot-value class 'finalized-p) t)
787 (add-slot-accessors class direct-slots definition-source)))
789 (defmethod direct-slot-definition-class ((class structure-class) &rest initargs)
790 (declare (ignore initargs))
791 (find-class 'structure-direct-slot-definition))
793 (defmethod finalize-inheritance ((class structure-class))
794 nil) ; always finalized
796 (defun add-slot-accessors (class dslotds &optional source-location)
797 (fix-slot-accessors class dslotds 'add source-location))
799 (defun remove-slot-accessors (class dslotds)
800 (fix-slot-accessors class dslotds 'remove))
802 (defun fix-slot-accessors (class dslotds add/remove &optional source-location)
803 (flet ((fix (gfspec name r/w doc)
804 (let ((gf (cond ((eq add/remove 'add)
805 (or (find-generic-function gfspec nil)
806 (ensure-generic-function
807 gfspec :lambda-list (case r/w
809 (w '(new-value object))))))
811 (find-generic-function gfspec nil)))))
814 (r (if (eq add/remove 'add)
815 (add-reader-method class gf name doc source-location)
816 (remove-reader-method class gf)))
817 (w (if (eq add/remove 'add)
818 (add-writer-method class gf name doc source-location)
819 (remove-writer-method class gf))))))))
820 (dolist (dslotd dslotds)
821 (let ((slot-name (slot-definition-name dslotd))
822 (slot-doc (%slot-definition-documentation dslotd)))
823 (dolist (r (slot-definition-readers dslotd))
824 (fix r slot-name 'r slot-doc))
825 (dolist (w (slot-definition-writers dslotd))
826 (fix w slot-name 'w slot-doc))))))
828 (defun add-direct-subclasses (class supers)
829 (dolist (super supers)
830 (unless (memq class (class-direct-subclasses class))
831 (add-direct-subclass super class))))
833 (defmethod finalize-inheritance ((class std-class))
834 (update-class class t))
836 (defmethod finalize-inheritance ((class forward-referenced-class))
837 ;; FIXME: should we not be thinking a bit about what kinds of error
838 ;; we're throwing? Maybe we need a clos-error type to mix in? Or
839 ;; possibly a forward-referenced-class-error, though that's
840 ;; difficult given e.g. class precedence list calculations...
842 "~@<FINALIZE-INHERITANCE was called on a forward referenced class:~
847 (defun class-has-a-forward-referenced-superclass-p (class)
848 (or (forward-referenced-class-p class)
849 (some #'class-has-a-forward-referenced-superclass-p
850 (class-direct-superclasses class))))
852 ;;; This is called by :after shared-initialize whenever a class is initialized
853 ;;; or reinitialized. The class may or may not be finalized.
854 (defun update-class (class finalizep)
855 (without-package-locks
857 (when (or finalizep (class-finalized-p class))
858 (%update-cpl class (compute-class-precedence-list class))
859 ;; This invocation of UPDATE-SLOTS, in practice, finalizes the
861 (%update-slots class (compute-slots class))
862 (update-gfs-of-class class)
863 (setf (plist-value class 'default-initargs) (compute-default-initargs class))
864 (update-ctors 'finalize-inheritance :class class))
865 (dolist (sub (class-direct-subclasses class))
866 (update-class sub nil)))))
868 (define-condition cpl-protocol-violation (reference-condition error)
869 ((class :initarg :class :reader cpl-protocol-violation-class)
870 (cpl :initarg :cpl :reader cpl-protocol-violation-cpl))
871 (:default-initargs :references (list '(:sbcl :node "Metaobject Protocol")))
874 (format s "~@<Protocol violation: the ~S class ~S ~
875 ~:[has~;does not have~] the class ~S in its ~
876 class precedence list: ~S.~@:>"
877 (class-name (class-of (cpl-protocol-violation-class c)))
878 (cpl-protocol-violation-class c)
879 (eq (class-of (cpl-protocol-violation-class c))
880 *the-class-funcallable-standard-class*)
881 (find-class 'function)
882 (cpl-protocol-violation-cpl c)))))
884 (defun %update-cpl (class cpl)
885 (when (eq (class-of class) *the-class-standard-class*)
886 (when (find (find-class 'function) cpl)
887 (error 'cpl-protocol-violation :class class :cpl cpl)))
888 (when (eq (class-of class) *the-class-funcallable-standard-class*)
889 (unless (find (find-class 'function) cpl)
890 (error 'cpl-protocol-violation :class class :cpl cpl)))
891 (if (class-finalized-p class)
892 (unless (and (equal (class-precedence-list class) cpl)
894 (when (position :class (class-direct-slots c)
895 :key #'slot-definition-allocation)
897 ;; comment from the old CMU CL sources:
898 ;; Need to have the cpl setup before %update-lisp-class-layout
899 ;; is called on CMU CL.
900 (setf (slot-value class '%class-precedence-list) cpl)
901 (setf (slot-value class 'cpl-available-p) t)
902 (%force-cache-flushes class))
904 (setf (slot-value class '%class-precedence-list) cpl)
905 (setf (slot-value class 'cpl-available-p) t)))
906 (update-class-can-precede-p cpl))
908 (defun update-class-can-precede-p (cpl)
910 (let ((first (car cpl)))
911 (dolist (c (cdr cpl))
912 (pushnew c (slot-value first 'can-precede-list) :test #'eq)))
913 (update-class-can-precede-p (cdr cpl))))
915 (defun class-can-precede-p (class1 class2)
916 (member class2 (class-can-precede-list class1) :test #'eq))
918 (defun %update-slots (class eslotds)
919 (let ((instance-slots ())
921 (dolist (eslotd eslotds)
922 (let ((alloc (slot-definition-allocation eslotd)))
924 (:instance (push eslotd instance-slots))
925 (:class (push eslotd class-slots)))))
927 ;; If there is a change in the shape of the instances then the
928 ;; old class is now obsolete.
929 (let* ((nlayout (mapcar (lambda (slotd)
930 (cons (slot-definition-name slotd)
931 (slot-definition-type slotd)))
932 (sort instance-slots #'<
933 :key #'slot-definition-location)))
934 (nslots (length nlayout))
935 (nwrapper-class-slots (compute-class-slots class-slots))
936 (owrapper (when (class-finalized-p class)
937 (class-wrapper class)))
938 (olayout (when owrapper
939 (wrapper-instance-slots-layout owrapper)))
940 (owrapper-class-slots (and owrapper (wrapper-class-slots owrapper)))
942 (cond ((null owrapper)
943 (make-wrapper nslots class))
944 ((and (equal nlayout olayout)
946 (loop for o in owrapper-class-slots
947 for n in nwrapper-class-slots
948 do (unless (eq (car o) (car n)) (return t)))))
951 ;; This will initialize the new wrapper to have the
952 ;; same state as the old wrapper. We will then have
953 ;; to change that. This may seem like wasted work
954 ;; (and it is), but the spec requires that we call
955 ;; MAKE-INSTANCES-OBSOLETE.
956 (make-instances-obsolete class)
957 (class-wrapper class)))))
959 (%update-lisp-class-layout class nwrapper)
960 (setf (slot-value class 'slots) eslotds
961 (wrapper-slot-table nwrapper) (make-slot-table class eslotds)
962 (wrapper-instance-slots-layout nwrapper) nlayout
963 (wrapper-class-slots nwrapper) nwrapper-class-slots
964 (wrapper-length nwrapper) nslots
965 (slot-value class 'wrapper) nwrapper)
966 (do* ((slots (slot-value class 'slots) (cdr slots))
971 "~@<slot names with the same SYMBOL-NAME but ~
972 different SYMBOL-PACKAGE (possible package problem) ~
973 for class ~S:~4I~@:_~<~@{~/sb-impl::print-symbol-with-prefix/~^~:@_~}~:>~@:>"
975 (let* ((slot (car slots))
976 (oslots (remove (slot-definition-name slot) (cdr slots)
978 :key #'slot-definition-name)))
980 (pushnew (cons (slot-definition-name slot)
981 (mapcar #'slot-definition-name oslots))
983 :test #'string= :key #'car))))
984 (setf (slot-value class 'finalized-p) t)
985 (unless (eq owrapper nwrapper)
986 (maybe-update-standard-slot-locations class)))))
988 (defun compute-class-slots (eslotds)
990 (dolist (eslotd eslotds (nreverse collect))
991 (let ((cell (assoc (slot-definition-name eslotd)
993 (slot-definition-allocation-class eslotd)))))
995 (push cell collect)))))
997 (defun update-gf-dfun (class gf)
998 (let ((*new-class* class)
999 (arg-info (gf-arg-info gf)))
1001 ((special-case-for-compute-discriminating-function-p gf))
1002 ((gf-precompute-dfun-and-emf-p arg-info)
1003 (multiple-value-bind (dfun cache info) (make-final-dfun-internal gf)
1004 (update-dfun gf dfun cache info))))))
1006 (defun update-gfs-of-class (class)
1007 (when (and (class-finalized-p class)
1008 (let ((cpl (class-precedence-list class)))
1009 (or (member *the-class-slot-class* cpl :test #'eq)
1010 (member *the-class-standard-effective-slot-definition*
1012 (let ((gf-table (make-hash-table :test 'eq)))
1013 (labels ((collect-gfs (class)
1014 (dolist (gf (specializer-direct-generic-functions class))
1015 (setf (gethash gf gf-table) t))
1016 (mapc #'collect-gfs (class-direct-superclasses class))))
1018 (maphash (lambda (gf ignore)
1019 (declare (ignore ignore))
1020 (update-gf-dfun class gf))
1023 (defmethod compute-default-initargs ((class slot-class))
1024 (let ((initargs (loop for c in (class-precedence-list class)
1025 append (class-direct-default-initargs c))))
1026 (delete-duplicates initargs :test #'eq :key #'car :from-end t)))
1028 ;;;; protocols for constructing direct and effective slot definitions
1030 (defmethod direct-slot-definition-class ((class std-class) &rest initargs)
1031 (declare (ignore initargs))
1032 (find-class 'standard-direct-slot-definition))
1034 (defun make-direct-slotd (class initargs)
1035 (apply #'make-instance
1036 (apply #'direct-slot-definition-class class initargs)
1040 ;;; I (CSR) am not sure, but I believe that the particular order of
1041 ;;; slots is quite important: it is ideal to attempt to have a
1042 ;;; constant slot location for the same notional slots as much as
1043 ;;; possible, so that clever discriminating functions (ONE-INDEX et
1044 ;;; al.) have a chance of working. The below at least walks through
1045 ;;; the slots predictably, but maybe it would be good to compute some
1046 ;;; kind of optimal slot layout by looking at locations of slots in
1048 (defun std-compute-slots (class)
1049 ;; As specified, we must call COMPUTE-EFFECTIVE-SLOT-DEFINITION once
1050 ;; for each different slot name we find in our superclasses. Each
1051 ;; call receives the class and a list of the dslotds with that name.
1052 ;; The list is in most-specific-first order.
1053 (let ((name-dslotds-alist ()))
1054 (dolist (c (reverse (class-precedence-list class)))
1055 (dolist (slot (class-direct-slots c))
1056 (let* ((name (slot-definition-name slot))
1057 (entry (assq name name-dslotds-alist)))
1059 (push slot (cdr entry))
1060 (push (list name slot) name-dslotds-alist)))))
1061 (mapcar (lambda (direct)
1062 (compute-effective-slot-definition class
1065 (nreverse name-dslotds-alist))))
1067 (defmethod compute-slots ((class standard-class))
1068 (std-compute-slots class))
1069 (defmethod compute-slots ((class funcallable-standard-class))
1070 (std-compute-slots class))
1072 (defun std-compute-slots-around (class eslotds)
1074 (safe (safe-p class)))
1075 (dolist (eslotd eslotds eslotds)
1076 (setf (slot-definition-location eslotd)
1077 (case (slot-definition-allocation eslotd)
1081 (let* ((name (slot-definition-name eslotd))
1084 (slot-definition-allocation-class eslotd)
1085 ;; we get here if the user adds an extra slot
1087 (setf (slot-definition-allocation-class eslotd)
1089 ;; which raises the question of what we should
1090 ;; do if we find that said user has added a slot
1091 ;; with the same name as another slot...
1092 (cell (or (assq name (class-slot-cells from-class))
1093 (let ((c (cons name +slot-unbound+)))
1094 (push c (class-slot-cells from-class))
1097 (if (eq +slot-unbound+ (cdr cell))
1098 ;; We may have inherited an initfunction FIXME: Is this
1099 ;; really right? Is the initialization in
1100 ;; SHARED-INITIALIZE (STD-CLASS) not enough?
1101 (let ((initfun (slot-definition-initfunction eslotd)))
1103 (rplacd cell (call-initfun initfun eslotd safe))
1106 (unless (slot-definition-class eslotd)
1107 (setf (slot-definition-class eslotd) class))
1108 (initialize-internal-slot-functions eslotd))))
1110 (defmethod compute-slots :around ((class standard-class))
1111 (let ((eslotds (call-next-method)))
1112 (std-compute-slots-around class eslotds)))
1113 (defmethod compute-slots :around ((class funcallable-standard-class))
1114 (let ((eslotds (call-next-method)))
1115 (std-compute-slots-around class eslotds)))
1117 (defmethod compute-slots ((class structure-class))
1118 (mapcan (lambda (superclass)
1119 (mapcar (lambda (dslotd)
1120 (compute-effective-slot-definition
1122 (slot-definition-name dslotd)
1124 (class-direct-slots superclass)))
1125 (reverse (slot-value class '%class-precedence-list))))
1127 (defmethod compute-slots :around ((class structure-class))
1128 (let ((eslotds (call-next-method)))
1129 (mapc #'finalize-internal-slot-functions eslotds)
1132 (defmethod compute-effective-slot-definition ((class slot-class) name dslotds)
1133 (let* ((initargs (compute-effective-slot-definition-initargs class dslotds))
1134 (class (apply #'effective-slot-definition-class class initargs))
1135 (slotd (apply #'make-instance class initargs)))
1138 (defmethod effective-slot-definition-class ((class std-class) &rest initargs)
1139 (declare (ignore initargs))
1140 (find-class 'standard-effective-slot-definition))
1142 (defmethod effective-slot-definition-class ((class structure-class) &rest initargs)
1143 (declare (ignore initargs))
1144 (find-class 'structure-effective-slot-definition))
1146 (defmethod compute-effective-slot-definition-initargs
1147 ((class slot-class) direct-slotds)
1153 (allocation-class nil)
1156 (documentationp nil)
1161 (dolist (slotd direct-slotds)
1164 (setq name (slot-definition-name slotd)
1167 (awhen (slot-definition-initfunction slotd)
1168 (setq initform (slot-definition-initform slotd)
1171 (unless documentationp
1172 (awhen (%slot-definition-documentation slotd)
1173 (setq documentation it
1176 (setq allocation (slot-definition-allocation slotd)
1177 allocation-class (slot-definition-class slotd)
1179 (setq initargs (append (slot-definition-initargs slotd) initargs))
1180 (let ((slotd-type (slot-definition-type slotd)))
1182 ((eq type t) slotd-type)
1183 ;; This pairwise type intersection is perhaps a
1184 ;; little inefficient and inelegant, but it's
1185 ;; unlikely to lie on the critical path. Shout
1186 ;; if I'm wrong. -- CSR, 2005-11-24
1188 (specifier-type `(and ,type ,slotd-type)))))))))
1191 :initfunction initfunction
1193 :allocation allocation
1194 :allocation-class allocation-class
1197 :documentation documentation)))
1199 (defmethod compute-effective-slot-definition-initargs :around
1200 ((class structure-class) direct-slotds)
1201 (let* ((slotd (car direct-slotds))
1202 (accessor (slot-definition-defstruct-accessor-symbol slotd)))
1203 (list* :defstruct-accessor-symbol accessor
1204 :internal-reader-function
1205 (slot-definition-internal-reader-function slotd)
1206 :internal-writer-function
1207 (slot-definition-internal-writer-function slotd)
1208 (call-next-method))))
1210 ;;; NOTE: For bootstrapping considerations, these can't use MAKE-INSTANCE
1211 ;;; to make the method object. They have to use make-a-method which
1212 ;;; is a specially bootstrapped mechanism for making standard methods.
1213 (defmethod reader-method-class ((class slot-class) direct-slot &rest initargs)
1214 (declare (ignore direct-slot initargs))
1215 (find-class 'standard-reader-method))
1217 (defmethod add-reader-method ((class slot-class) generic-function slot-name slot-documentation source-location)
1218 (add-method generic-function
1219 (make-a-method 'standard-reader-method
1221 (list (or (class-name class) 'object))
1223 (make-reader-method-function class slot-name)
1224 (or slot-documentation "automatically generated reader method")
1225 :slot-name slot-name
1227 :method-class-function #'reader-method-class
1228 :definition-source source-location)))
1230 (defmethod writer-method-class ((class slot-class) direct-slot &rest initargs)
1231 (declare (ignore direct-slot initargs))
1232 (find-class 'standard-writer-method))
1234 (defmethod add-writer-method ((class slot-class) generic-function slot-name slot-documentation source-location)
1235 (add-method generic-function
1236 (make-a-method 'standard-writer-method
1238 (list 'new-value (or (class-name class) 'object))
1239 (list *the-class-t* class)
1240 (make-writer-method-function class slot-name)
1241 (or slot-documentation "automatically generated writer method")
1242 :slot-name slot-name
1244 :method-class-function #'writer-method-class
1245 :definition-source source-location)))
1247 (defmethod add-boundp-method ((class slot-class) generic-function slot-name slot-documentation source-location)
1248 (add-method generic-function
1249 (make-a-method (constantly (find-class 'standard-boundp-method))
1252 (list (or (class-name class) 'object))
1254 (make-boundp-method-function class slot-name)
1255 (or slot-documentation "automatically generated boundp method")
1256 :slot-name slot-name
1257 :definition-source source-location)))
1259 (defmethod remove-reader-method ((class slot-class) generic-function)
1260 (let ((method (get-method generic-function () (list class) nil)))
1261 (when method (remove-method generic-function method))))
1263 (defmethod remove-writer-method ((class slot-class) generic-function)
1265 (get-method generic-function () (list *the-class-t* class) nil)))
1266 (when method (remove-method generic-function method))))
1268 (defmethod remove-boundp-method ((class slot-class) generic-function)
1269 (let ((method (get-method generic-function () (list class) nil)))
1270 (when method (remove-method generic-function method))))
1272 ;;; MAKE-READER-METHOD-FUNCTION and MAKE-WRITER-METHOD-FUNCTION
1273 ;;; function are NOT part of the standard protocol. They are however
1274 ;;; useful; PCL makes use of them internally and documents them for
1275 ;;; PCL users. (FIXME: but SBCL certainly doesn't)
1277 ;;; *** This needs work to make type testing by the writer functions which
1278 ;;; *** do type testing faster. The idea would be to have one constructor
1279 ;;; *** for each possible type test.
1281 ;;; *** There is a subtle bug here which is going to have to be fixed.
1282 ;;; *** Namely, the simplistic use of the template has to be fixed. We
1283 ;;; *** have to give the OPTIMIZE-SLOT-VALUE method the user might have
1284 ;;; *** defined for this metaclass a chance to run.
1286 (defmethod make-reader-method-function ((class slot-class) slot-name)
1287 (make-std-reader-method-function class slot-name))
1289 (defmethod make-writer-method-function ((class slot-class) slot-name)
1290 (make-std-writer-method-function class slot-name))
1292 (defmethod make-boundp-method-function ((class slot-class) slot-name)
1293 (make-std-boundp-method-function class slot-name))
1295 (defmethod compatible-meta-class-change-p (class proto-new-class)
1296 (eq (class-of class) (class-of proto-new-class)))
1298 (defmethod validate-superclass ((class class) (superclass class))
1299 (or (eq superclass *the-class-t*)
1300 (eq (class-of class) (class-of superclass))
1301 (and (eq (class-of superclass) *the-class-standard-class*)
1302 (eq (class-of class) *the-class-funcallable-standard-class*))
1303 (and (eq (class-of superclass) *the-class-funcallable-standard-class*)
1304 (eq (class-of class) *the-class-standard-class*))))
1306 ;;; What this does depends on which of the four possible values of
1307 ;;; LAYOUT-INVALID the PCL wrapper has; the simplest case is when it
1308 ;;; is (:FLUSH <wrapper>) or (:OBSOLETE <wrapper>), when there is
1309 ;;; nothing to do, as the new wrapper has already been created. If
1310 ;;; LAYOUT-INVALID returns NIL, then we invalidate it (setting it to
1311 ;;; (:FLUSH <wrapper>); UPDATE-SLOTS later gets to choose whether or
1312 ;;; not to "upgrade" this to (:OBSOLETE <wrapper>).
1314 ;;; This leaves the case where LAYOUT-INVALID returns T, which happens
1315 ;;; when REGISTER-LAYOUT has invalidated a superclass of CLASS (which
1316 ;;; invalidated all the subclasses in SB-KERNEL land). Again, here we
1317 ;;; must flush the caches and allow UPDATE-SLOTS to decide whether to
1318 ;;; obsolete the wrapper.
1320 ;;; FIXME: either here or in INVALID-WRAPPER-P looks like a good place
1321 ;;; for (AVER (NOT (EQ (LAYOUT-INVALID OWRAPPER)
1322 ;;; :UNINITIALIZED)))
1324 ;;; Thanks to Gerd Moellmann for the explanation. -- CSR, 2002-10-29
1325 (defun %force-cache-flushes (class)
1326 (let* ((owrapper (class-wrapper class)))
1327 ;; We only need to do something if the wrapper is still valid. If
1328 ;; the wrapper isn't valid, state will be FLUSH or OBSOLETE, and
1329 ;; both of those will already be doing what we want. In
1330 ;; particular, we must be sure we never change an OBSOLETE into a
1331 ;; FLUSH since OBSOLETE means do what FLUSH does and then some.
1332 (when (or (not (invalid-wrapper-p owrapper))
1333 ;; KLUDGE: despite the observations above, this remains
1334 ;; a violation of locality or what might be considered
1335 ;; good style. There has to be a better way! -- CSR,
1337 (eq (layout-invalid owrapper) t))
1338 (let ((nwrapper (make-wrapper (layout-length owrapper)
1340 (setf (wrapper-instance-slots-layout nwrapper)
1341 (wrapper-instance-slots-layout owrapper))
1342 (setf (wrapper-class-slots nwrapper)
1343 (wrapper-class-slots owrapper))
1344 (setf (wrapper-slot-table nwrapper)
1345 (wrapper-slot-table owrapper))
1346 (%update-lisp-class-layout class nwrapper)
1347 (setf (slot-value class 'wrapper) nwrapper)
1348 ;; Use :OBSOLETE instead of :FLUSH if any superclass has
1350 (if (find-if (lambda (x)
1351 (and (consp x) (eq :obsolete (car x))))
1352 (layout-inherits owrapper)
1353 :key #'layout-invalid)
1354 (%invalidate-wrapper owrapper :obsolete nwrapper)
1355 (%invalidate-wrapper owrapper :flush nwrapper))))))
1357 ;;; MAKE-INSTANCES-OBSOLETE can be called by user code. It will cause
1358 ;;; the next access to the instance (as defined in 88-002R) to trap
1359 ;;; through the UPDATE-INSTANCE-FOR-REDEFINED-CLASS mechanism.
1360 (defmethod make-instances-obsolete ((class std-class))
1362 (let* ((owrapper (class-wrapper class))
1363 (nwrapper (make-wrapper (layout-length owrapper)
1365 (unless (class-finalized-p class)
1366 (if (class-has-a-forward-referenced-superclass-p class)
1367 (return-from make-instances-obsolete class)
1368 (%update-cpl class (compute-class-precedence-list class))))
1369 (setf (wrapper-instance-slots-layout nwrapper)
1370 (wrapper-instance-slots-layout owrapper))
1371 (setf (wrapper-class-slots nwrapper)
1372 (wrapper-class-slots owrapper))
1373 (setf (wrapper-slot-table nwrapper)
1374 (wrapper-slot-table owrapper))
1375 (%update-lisp-class-layout class nwrapper)
1376 (setf (slot-value class 'wrapper) nwrapper)
1377 (%invalidate-wrapper owrapper :obsolete nwrapper)
1380 (defmethod make-instances-obsolete ((class symbol))
1381 (make-instances-obsolete (find-class class))
1382 ;; ANSI wants the class name when called with a symbol.
1385 ;;; OBSOLETE-INSTANCE-TRAP is the internal trap that is called when we
1386 ;;; see an obsolete instance. The times when it is called are:
1387 ;;; - when the instance is involved in method lookup
1388 ;;; - when attempting to access a slot of an instance
1390 ;;; It is not called by class-of, wrapper-of, or any of the low-level
1391 ;;; instance access macros.
1393 ;;; Of course these times when it is called are an internal
1394 ;;; implementation detail of PCL and are not part of the documented
1395 ;;; description of when the obsolete instance update happens. The
1396 ;;; documented description is as it appears in 88-002R.
1398 ;;; This has to return the new wrapper, so it counts on all the
1399 ;;; methods on obsolete-instance-trap-internal to return the new
1400 ;;; wrapper. It also does a little internal error checking to make
1401 ;;; sure that the traps are only happening when they should, and that
1402 ;;; the trap methods are computing appropriate new wrappers.
1404 ;;; OBSOLETE-INSTANCE-TRAP might be called on structure instances
1405 ;;; after a structure is redefined. In most cases,
1406 ;;; OBSOLETE-INSTANCE-TRAP will not be able to fix the old instance,
1407 ;;; so it must signal an error. The hard part of this is that the
1408 ;;; error system and debugger might cause OBSOLETE-INSTANCE-TRAP to be
1409 ;;; called again, so in that case, we have to return some reasonable
1410 ;;; wrapper, instead.
1412 (defvar *in-obsolete-instance-trap* nil)
1413 (defvar *the-wrapper-of-structure-object*
1414 (class-wrapper (find-class 'structure-object)))
1416 (define-condition obsolete-structure (error)
1417 ((datum :reader obsolete-structure-datum :initarg :datum))
1419 (lambda (condition stream)
1420 ;; Don't try to print the structure, since it probably won't work.
1422 "~@<obsolete structure error for a structure of type ~2I~_~S~:>"
1423 (type-of (obsolete-structure-datum condition))))))
1425 (defun %obsolete-instance-trap (owrapper nwrapper instance)
1426 (if (not (layout-for-std-class-p owrapper))
1427 (if *in-obsolete-instance-trap*
1428 *the-wrapper-of-structure-object*
1429 (let ((*in-obsolete-instance-trap* t))
1430 (error 'obsolete-structure :datum instance)))
1431 (let* ((class (wrapper-class* nwrapper))
1432 (copy (allocate-instance class)) ;??? allocate-instance ???
1433 (olayout (wrapper-instance-slots-layout owrapper))
1434 (nlayout (wrapper-instance-slots-layout nwrapper))
1435 (oslots (get-slots instance))
1436 (nslots (get-slots copy))
1437 (oclass-slots (wrapper-class-slots owrapper))
1441 (safe (safe-p class)))
1443 ;; local --> local transfer value, check type
1444 ;; local --> shared discard value, discard slot
1445 ;; local --> -- discard slot
1446 ;; shared --> local transfer value, check type
1447 ;; shared --> shared -- (cf SHARED-INITIALIZE :AFTER STD-CLASS)
1448 ;; shared --> -- discard value
1449 ;; -- --> local add slot
1452 (flet ((set-value (value npos &optional (otype t))
1454 (let ((ntype (cdr (nth npos nlayout))))
1455 (unless (equal ntype otype)
1456 (assert (typep value ntype) (value)
1457 "~@<Error updating obsolete instance. Current value in slot ~
1458 ~S of an instance of ~S is ~S, which does not match the new ~
1460 (car (nth npos nlayout)) class value ntype))))
1461 (setf (clos-slots-ref nslots npos) value)))
1462 ;; Go through all the old local slots.
1464 (dolist (spec olayout)
1465 (destructuring-bind (name . otype) spec
1466 (let ((npos (position name nlayout :key #'car)))
1468 (set-value (clos-slots-ref oslots opos) npos otype)
1470 (push name discarded)
1471 (unless (eq (clos-slots-ref oslots opos) +slot-unbound+)
1472 (setf (getf plist name) (clos-slots-ref oslots opos)))))))
1475 ;; Go through all the old shared slots.
1476 (dolist (oclass-slot-and-val oclass-slots)
1477 (let ((name (car oclass-slot-and-val))
1478 (val (cdr oclass-slot-and-val)))
1479 (let ((npos (position name nlayout :key #'car)))
1481 (set-value val npos))))))
1483 ;; Go through all the new local slots to compute the added slots.
1484 (dolist (spec nlayout)
1485 (let ((name (car spec)))
1486 (unless (or (member name olayout :key #'car)
1487 (assq name oclass-slots))
1488 (push name added))))
1490 (%swap-wrappers-and-slots instance copy)
1492 (update-instance-for-redefined-class instance
1498 (defun %change-class (instance new-class initargs)
1499 (let* ((old-class (class-of instance))
1500 (copy (allocate-instance new-class))
1501 (new-wrapper (get-wrapper copy))
1502 (old-wrapper (class-wrapper old-class))
1503 (old-layout (wrapper-instance-slots-layout old-wrapper))
1504 (new-layout (wrapper-instance-slots-layout new-wrapper))
1505 (old-slots (get-slots instance))
1506 (new-slots (get-slots copy))
1507 (old-class-slots (wrapper-class-slots old-wrapper))
1508 (safe (safe-p new-class)))
1510 (flet ((set-value (value pos)
1512 (let ((spec (nth pos new-layout)))
1513 (assert (typep value (cdr spec)) (value)
1514 "~@<Error changing class. Current value in slot ~S ~
1515 of an instance of ~S is ~S, which does not match the new ~
1516 slot type ~S in class ~S.~:@>"
1517 (car spec) old-class value
1518 (cdr spec) new-class)))
1519 (setf (clos-slots-ref new-slots pos) value)))
1520 ;; "The values of local slots specified by both the class CTO and
1521 ;; CFROM are retained. If such a local slot was unbound, it
1522 ;; remains unbound."
1523 (let ((new-position 0))
1524 (dolist (new-slot new-layout)
1525 (let* ((name (car new-slot))
1526 (old-position (position name old-layout :key #'car)))
1528 (set-value (clos-slots-ref old-slots old-position)
1530 (incf new-position)))
1532 ;; "The values of slots specified as shared in the class CFROM and
1533 ;; as local in the class CTO are retained."
1534 (dolist (slot-and-val old-class-slots)
1535 (let ((position (position (car slot-and-val) new-layout :key #'car)))
1537 (set-value (cdr slot-and-val) position)))))
1539 ;; Make the copy point to the old instance's storage, and make the
1540 ;; old instance point to the new storage.
1541 (%swap-wrappers-and-slots instance copy)
1543 (apply #'update-instance-for-different-class copy instance initargs)
1547 (defmethod change-class ((instance standard-object) (new-class standard-class)
1550 (unless (class-finalized-p new-class)
1551 (finalize-inheritance new-class))
1552 (let ((cpl (class-precedence-list new-class)))
1556 `(when (eq class (find-class ',class-name))
1557 (error 'metaobject-initialization-violation
1558 :format-control "~@<Cannot ~S objects into ~S metaobjects.~@:>"
1559 :format-arguments (list 'change-class ',class-name)
1560 :references (list '(:amop :initialization ,class-name))))))
1562 (frob generic-function)
1564 (frob slot-definition))))
1565 (%change-class instance new-class initargs)))
1567 (defmethod change-class ((instance forward-referenced-class)
1568 (new-class standard-class) &rest initargs)
1570 (let ((cpl (class-precedence-list new-class)))
1572 (error 'metaobject-initialization-violation
1574 "~@<Cannot ~S ~S objects into non-~S objects.~@:>"
1576 (list 'change-class 'forward-referenced-class 'class)
1578 (list '(:amop :generic-function ensure-class-using-class)
1579 '(:amop :initialization class))))
1580 (when (eq class (find-class 'class))
1582 (%change-class instance new-class initargs)))
1584 (defmethod change-class ((instance funcallable-standard-object)
1585 (new-class funcallable-standard-class)
1588 (let ((cpl (class-precedence-list new-class)))
1592 `(when (eq class (find-class ',class-name))
1593 (error 'metaobject-initialization-violation
1594 :format-control "~@<Cannot ~S objects into ~S metaobjects.~@:>"
1595 :format-arguments (list 'change-class ',class-name)
1596 :references (list '(:amop :initialization ,class-name))))))
1598 (frob generic-function)
1600 (frob slot-definition))))
1601 (%change-class instance new-class initargs)))
1603 (defmethod change-class ((instance standard-object)
1604 (new-class funcallable-standard-class)
1606 (declare (ignore initargs))
1607 (error "You can't change the class of ~S to ~S~@
1608 because it isn't already an instance with metaclass ~S."
1609 instance new-class 'standard-class))
1611 (defmethod change-class ((instance funcallable-standard-object)
1612 (new-class standard-class)
1614 (declare (ignore initargs))
1615 (error "You can't change the class of ~S to ~S~@
1616 because it isn't already an instance with metaclass ~S."
1617 instance new-class 'funcallable-standard-class))
1619 (defmethod change-class ((instance t) (new-class-name symbol) &rest initargs)
1620 (apply #'change-class instance (find-class new-class-name) initargs))
1622 ;;;; The metaclass BUILT-IN-CLASS
1624 ;;;; This metaclass is something of a weird creature. By this point, all
1625 ;;;; instances of it which will exist have been created, and no instance
1626 ;;;; is ever created by calling MAKE-INSTANCE.
1628 ;;;; But, there are other parts of the protocol we must follow and those
1629 ;;;; definitions appear here.
1631 (macrolet ((def (name args control)
1632 `(defmethod ,name ,args
1633 (declare (ignore initargs))
1634 (error 'metaobject-initialization-violation
1635 :format-control ,(format nil "~@<~A~@:>" control)
1636 :format-arguments (list ',name)
1637 :references (list '(:amop :initialization "Class"))))))
1638 (def initialize-instance ((class built-in-class) &rest initargs)
1639 "Cannot ~S an instance of BUILT-IN-CLASS.")
1640 (def reinitialize-instance ((class built-in-class) &rest initargs)
1641 "Cannot ~S an instance of BUILT-IN-CLASS."))
1643 (macrolet ((def (name)
1644 `(defmethod ,name ((class built-in-class)) nil)))
1645 (def class-direct-slots)
1647 (def class-direct-default-initargs)
1648 (def class-default-initargs))
1650 (defmethod validate-superclass ((c class) (s built-in-class))
1651 (or (eq s *the-class-t*) (eq s *the-class-stream*)
1652 ;; FIXME: bad things happen if someone tries to mix in both
1653 ;; FILE-STREAM and STRING-STREAM (as they have the same
1654 ;; layout-depthoid). Is there any way we can provide a useful
1655 ;; error message? -- CSR, 2005-05-03
1656 (eq s *the-class-file-stream*) (eq s *the-class-string-stream*)
1657 ;; This probably shouldn't be mixed in with certain other
1658 ;; classes, too, but it seems to work both with STANDARD-OBJECT
1659 ;; and FUNCALLABLE-STANDARD-OBJECT
1660 (eq s *the-class-sequence*)))
1662 ;;; Some necessary methods for FORWARD-REFERENCED-CLASS
1663 (defmethod class-direct-slots ((class forward-referenced-class)) ())
1664 (defmethod class-direct-default-initargs ((class forward-referenced-class)) ())
1665 (macrolet ((def (method)
1666 `(defmethod ,method ((class forward-referenced-class))
1667 (error "~@<~I~S was called on a forward referenced class:~2I~_~S~:>"
1669 (def class-default-initargs)
1670 (def class-precedence-list)
1673 (defmethod validate-superclass ((c slot-class)
1674 (f forward-referenced-class))
1677 (defmethod add-dependent ((metaobject dependent-update-mixin) dependent)
1678 (pushnew dependent (plist-value metaobject 'dependents) :test #'eq))
1680 (defmethod remove-dependent ((metaobject dependent-update-mixin) dependent)
1681 (setf (plist-value metaobject 'dependents)
1682 (delete dependent (plist-value metaobject 'dependents))))
1684 (defmethod map-dependents ((metaobject dependent-update-mixin) function)
1685 (dolist (dependent (plist-value metaobject 'dependents))
1686 (funcall function dependent)))