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)
28 (reader (slot-definition-reader-function slotd))
29 (writer (slot-definition-writer-function slotd))
30 (boundp (slot-definition-boundp-function slotd))))
32 (defmethod (setf slot-accessor-function) (function
33 (slotd effective-slot-definition)
36 (reader (setf (slot-definition-reader-function slotd) function))
37 (writer (setf (slot-definition-writer-function slotd) function))
38 (boundp (setf (slot-definition-boundp-function slotd) function))))
40 (defconstant +slotd-reader-function-std-p+ 1)
41 (defconstant +slotd-writer-function-std-p+ 2)
42 (defconstant +slotd-boundp-function-std-p+ 4)
43 (defconstant +slotd-all-function-std-p+ 7)
45 (defmethod slot-accessor-std-p ((slotd effective-slot-definition) type)
46 (let ((flags (slot-value slotd 'accessor-flags)))
47 (declare (type fixnum flags))
49 (eql +slotd-all-function-std-p+ flags)
50 (let ((mask (ecase type
51 (reader +slotd-reader-function-std-p+)
52 (writer +slotd-writer-function-std-p+)
53 (boundp +slotd-boundp-function-std-p+))))
54 (declare (type fixnum mask))
55 (not (zerop (the fixnum (logand mask flags))))))))
57 (defmethod (setf slot-accessor-std-p) (value
58 (slotd effective-slot-definition)
60 (let ((mask (ecase type
61 (reader +slotd-reader-function-std-p+)
62 (writer +slotd-writer-function-std-p+)
63 (boundp +slotd-boundp-function-std-p+)))
64 (flags (slot-value slotd 'accessor-flags)))
65 (declare (type fixnum mask flags))
66 (setf (slot-value slotd 'accessor-flags)
68 (the fixnum (logior mask flags))
69 (the fixnum (logand (the fixnum (lognot mask)) flags)))))
72 (defmethod initialize-internal-slot-functions ((slotd
73 effective-slot-definition))
74 (let* ((name (slot-value slotd 'name))
75 (class (slot-value slotd '%class)))
76 (dolist (type '(reader writer boundp))
77 (let* ((gf-name (ecase type
78 (reader 'slot-value-using-class)
79 (writer '(setf slot-value-using-class))
80 (boundp 'slot-boundp-using-class)))
81 (gf (gdefinition gf-name)))
82 (compute-slot-accessor-info slotd type gf)))))
84 ;;; CMUCL (Gerd PCL 2003-04-25) comment:
86 ;;; Compute an effective method for SLOT-VALUE-USING-CLASS, (SETF
87 ;;; SLOT-VALUE-USING-CLASS) or SLOT-BOUNDP-USING-CLASS for reading/
88 ;;; writing/testing effective slot SLOTD.
90 ;;; TYPE is one of the symbols READER, WRITER or BOUNDP, depending on
91 ;;; GF. Store the effective method in the effective slot definition
92 ;;; object itself; these GFs have special dispatch functions calling
93 ;;; effective methods directly retrieved from effective slot
94 ;;; definition objects, as an optimization.
96 ;;; FIXME: Change the function name to COMPUTE-SVUC-SLOTD-FUNCTION,
98 (defmethod compute-slot-accessor-info ((slotd effective-slot-definition)
100 (let* ((name (slot-value slotd 'name))
101 (class (slot-value slotd '%class))
102 (old-slotd (find-slot-definition class name))
103 (old-std-p (and old-slotd (slot-accessor-std-p old-slotd 'all))))
104 (multiple-value-bind (function std-p)
105 (if (eq *boot-state* 'complete)
106 (get-accessor-method-function gf type class slotd)
107 (get-optimized-std-accessor-method-function class slotd type))
108 (setf (slot-accessor-std-p slotd type) std-p)
109 (setf (slot-accessor-function slotd type) function))
110 (when (and old-slotd (not (eq old-std-p (slot-accessor-std-p slotd 'all))))
111 (push (cons class name) *pv-table-cache-update-info*))))
113 (defmethod slot-definition-allocation ((slotd structure-slot-definition))
116 ;;;; various class accessors that are a little more complicated than can be
117 ;;;; done with automatically generated reader methods
119 (defmethod class-prototype :before (class)
120 (unless (class-finalized-p class)
121 (error "~@<~S is not finalized.~:@>" class)))
123 ;;; KLUDGE: For some reason factoring the common body into a function
124 ;;; breaks PCL bootstrapping, so just generate it with a macrolet for
126 (macrolet ((def (class)
127 `(defmethod class-prototype ((class ,class))
128 (with-slots (prototype) class
130 (setf prototype (allocate-instance class)))))))
132 (def condition-class)
133 (def structure-class))
135 (defmethod class-direct-default-initargs ((class slot-class))
136 (plist-value class 'direct-default-initargs))
138 (defmethod class-default-initargs ((class slot-class))
139 (plist-value class 'default-initargs))
141 (defmethod class-slot-cells ((class std-class))
142 (plist-value class 'class-slot-cells))
143 (defmethod (setf class-slot-cells) (new-value (class std-class))
144 (setf (plist-value class 'class-slot-cells) new-value))
146 ;;;; class accessors that are even a little bit more complicated than those
147 ;;;; above. These have a protocol for updating them, we must implement that
150 ;;; Maintaining the direct subclasses backpointers. The update methods are
151 ;;; here, the values are read by an automatically generated reader method.
152 (defmethod add-direct-subclass ((class class) (subclass class))
153 (with-slots (direct-subclasses) class
154 (pushnew subclass direct-subclasses)
156 (defmethod remove-direct-subclass ((class class) (subclass class))
157 (with-slots (direct-subclasses) class
158 (setq direct-subclasses (remove subclass direct-subclasses))
161 ;;; Maintaining the direct-methods and direct-generic-functions backpointers.
163 ;;; There are four generic functions involved, each has one method for the
164 ;;; class case and another method for the damned EQL specializers. All of
165 ;;; these are specified methods and appear in their specified place in the
168 ;;; ADD-DIRECT-METHOD
169 ;;; REMOVE-DIRECT-METHOD
170 ;;; SPECIALIZER-DIRECT-METHODS
171 ;;; SPECIALIZER-DIRECT-GENERIC-FUNCTIONS
173 ;;; In each case, we maintain one value which is a cons. The car is the list
174 ;;; methods. The cdr is a list of the generic functions. The cdr is always
176 (defmethod add-direct-method ((specializer class) (method method))
177 (with-slots (direct-methods) specializer
178 (setf (car direct-methods) (adjoin method (car direct-methods)) ;PUSH
179 (cdr direct-methods) ()))
181 (defmethod remove-direct-method ((specializer class) (method method))
182 (with-slots (direct-methods) specializer
183 (setf (car direct-methods) (remove method (car direct-methods))
184 (cdr direct-methods) ()))
187 (defmethod specializer-direct-methods ((specializer class))
188 (with-slots (direct-methods) specializer
189 (car direct-methods)))
191 (defmethod specializer-direct-generic-functions ((specializer class))
192 (with-slots (direct-methods) specializer
193 (or (cdr direct-methods)
194 (setf (cdr direct-methods)
196 (dolist (m (car direct-methods))
197 ;; the old PCL code used COLLECTING-ONCE which used
198 ;; #'EQ to check for newness
199 (pushnew (method-generic-function m) collect :test #'eq))
200 (nreverse collect))))))
202 ;;; This hash table is used to store the direct methods and direct generic
203 ;;; functions of EQL specializers. Each value in the table is the cons.
204 (defvar *eql-specializer-methods* (make-hash-table :test 'eql))
205 (defvar *class-eq-specializer-methods* (make-hash-table :test 'eq))
207 (defmethod specializer-method-table ((specializer eql-specializer))
208 *eql-specializer-methods*)
210 (defmethod specializer-method-table ((specializer class-eq-specializer))
211 *class-eq-specializer-methods*)
213 (defmethod add-direct-method ((specializer specializer-with-object)
215 (let* ((object (specializer-object specializer))
216 (table (specializer-method-table specializer))
217 (entry (gethash object table)))
220 (setf (gethash object table)
222 (setf (car entry) (adjoin method (car entry))
226 (defmethod remove-direct-method ((specializer specializer-with-object)
228 (let* ((object (specializer-object specializer))
229 (entry (gethash object (specializer-method-table specializer))))
231 (setf (car entry) (remove method (car entry))
235 (defmethod specializer-direct-methods ((specializer specializer-with-object))
236 (car (gethash (specializer-object specializer)
237 (specializer-method-table specializer))))
239 (defmethod specializer-direct-generic-functions ((specializer
240 specializer-with-object))
241 (let* ((object (specializer-object specializer))
242 (entry (gethash object (specializer-method-table specializer))))
247 (dolist (m (car entry))
248 (pushnew (method-generic-function m) collect :test #'eq))
249 (nreverse collect)))))))
251 (defun map-specializers (function)
252 (map-all-classes (lambda (class)
253 (funcall function (class-eq-specializer class))
254 (funcall function class)))
255 (maphash (lambda (object methods)
256 (declare (ignore methods))
257 (intern-eql-specializer object))
258 *eql-specializer-methods*)
259 (maphash (lambda (object specl)
260 (declare (ignore object))
261 (funcall function specl))
262 *eql-specializer-table*)
265 (defun map-all-generic-functions (function)
266 (let ((all-generic-functions (make-hash-table :test 'eq)))
267 (map-specializers (lambda (specl)
268 (dolist (gf (specializer-direct-generic-functions
270 (unless (gethash gf all-generic-functions)
271 (setf (gethash gf all-generic-functions) t)
272 (funcall function gf))))))
275 (defmethod shared-initialize :after ((specl class-eq-specializer)
278 (declare (ignore slot-names))
279 (setf (slot-value specl '%type) `(class-eq ,(specializer-class specl))))
281 (defmethod shared-initialize :after ((specl eql-specializer) slot-names &key)
282 (declare (ignore slot-names))
283 (setf (slot-value specl '%type)
284 `(eql ,(specializer-object specl)))
285 (setf (info :type :translator specl)
286 (constantly (make-member-type :members (list (specializer-object specl))))))
288 (defun real-load-defclass (name metaclass-name supers slots other
289 readers writers slot-names source-location)
290 (with-single-package-locked-error (:symbol name "defining ~S as a class")
291 (%compiler-defclass name readers writers slot-names)
292 (let ((res (apply #'ensure-class name :metaclass metaclass-name
293 :direct-superclasses supers
295 :definition-source source-location
299 (setf (gdefinition 'load-defclass) #'real-load-defclass)
301 (defun ensure-class (name &rest args)
302 (apply #'ensure-class-using-class
303 (let ((class (find-class name nil)))
304 (when (and class (eq name (class-name class)))
305 ;; NAME is the proper name of CLASS, so redefine it
310 (defmethod ensure-class-using-class ((class null) name &rest args &key)
311 (multiple-value-bind (meta initargs)
312 (ensure-class-values class args)
313 (setf class (apply #'make-instance meta :name name initargs))
314 (without-package-locks
315 (setf (find-class name) class))
316 (set-class-type-translation class name)
319 (defmethod ensure-class-using-class ((class pcl-class) name &rest args &key)
320 (multiple-value-bind (meta initargs)
321 (ensure-class-values class args)
322 (unless (eq (class-of class) meta)
323 (apply #'change-class class meta initargs))
324 (apply #'reinitialize-instance class initargs)
325 (without-package-locks
326 (setf (find-class name) class))
327 (set-class-type-translation class name)
332 ((not (legal-class-name-p s))
333 (error "~S is not a class or a legal class name." s))
335 (or (find-class s nil)
336 (ensure-class s :metaclass 'forward-referenced-class)))))
338 (defun ensure-class-values (class initargs)
339 (let (metaclass metaclassp reversed-plist)
340 (doplist (key val) initargs
341 (cond ((eq key :metaclass)
345 (when (eq key :direct-superclasses)
346 (setf val (mapcar #'fix-super val)))
347 (setf reversed-plist (list* val key reversed-plist)))))
348 (values (cond (metaclassp
349 (if (classp metaclass)
351 (find-class metaclass)))
352 ((or (null class) (forward-referenced-class-p class))
353 *the-class-standard-class*)
356 (nreverse reversed-plist))))
359 (defmethod shared-initialize :after
360 ((class std-class) slot-names &key
361 (direct-superclasses nil direct-superclasses-p)
362 (direct-slots nil direct-slots-p)
363 (direct-default-initargs nil direct-default-initargs-p))
364 (cond (direct-superclasses-p
365 (setq direct-superclasses
366 (or direct-superclasses
367 (list (if (funcallable-standard-class-p class)
368 *the-class-funcallable-standard-object*
369 *the-class-standard-object*))))
370 (dolist (superclass direct-superclasses)
371 (unless (validate-superclass class superclass)
372 (error "~@<The class ~S was specified as a ~
373 super-class of the class ~S, ~
374 but the meta-classes ~S and ~S are incompatible. ~
375 Define a method for ~S to avoid this error.~@:>"
376 superclass class (class-of superclass) (class-of class)
377 'validate-superclass)))
378 (setf (slot-value class 'direct-superclasses) direct-superclasses))
380 (setq direct-superclasses (slot-value class 'direct-superclasses))))
383 (setf (slot-value class 'direct-slots)
384 (mapcar (lambda (pl) (make-direct-slotd class pl))
386 (slot-value class 'direct-slots)))
387 (if direct-default-initargs-p
388 (setf (plist-value class 'direct-default-initargs)
389 direct-default-initargs)
390 (setq direct-default-initargs
391 (plist-value class 'direct-default-initargs)))
392 (setf (plist-value class 'class-slot-cells)
393 (let ((old-class-slot-cells (plist-value class 'class-slot-cells))
395 (dolist (dslotd direct-slots)
396 (when (eq :class (slot-definition-allocation dslotd))
398 (let* ((name (slot-definition-name dslotd))
399 (old (assoc name old-class-slot-cells)))
402 (member name slot-names))
403 (let* ((initfunction (slot-definition-initfunction dslotd))
404 (value (if initfunction
405 (funcall initfunction)
407 (push (cons name value) collect))
408 (push old collect)))))
410 (add-direct-subclasses class direct-superclasses)
411 (if (class-finalized-p class)
412 ;; required by AMOP, "Reinitialization of Class Metaobjects"
413 (finalize-inheritance class)
414 (update-class class nil))
415 (add-slot-accessors class direct-slots)
416 (make-preliminary-layout class))
418 (defmethod shared-initialize :after ((class forward-referenced-class)
419 slot-names &key &allow-other-keys)
420 (declare (ignore slot-names))
421 (make-preliminary-layout class))
423 (defvar *allow-forward-referenced-classes-in-cpl-p* nil)
425 ;;; Give CLASS a preliminary layout if it doesn't have one already, to
426 ;;; make it known to the type system.
427 (defun make-preliminary-layout (class)
428 (flet ((compute-preliminary-cpl (root)
429 (let ((*allow-forward-referenced-classes-in-cpl-p* t))
430 (compute-class-precedence-list root))))
431 (without-package-locks
432 (unless (class-finalized-p class)
433 (let ((name (class-name class)))
434 ;; KLUDGE: This is fairly horrible. We need to make a
435 ;; full-fledged CLASSOID here, not just tell the compiler that
436 ;; some class is forthcoming, because there are legitimate
437 ;; questions one can ask of the type system, implemented in
438 ;; terms of CLASSOIDs, involving forward-referenced classes. So.
439 (let ((layout (make-wrapper 0 class)))
440 (setf (slot-value class 'wrapper) layout)
441 (let ((cpl (compute-preliminary-cpl class)))
442 (setf (layout-inherits layout)
443 (order-layout-inherits
444 (map 'simple-vector #'class-wrapper
445 (reverse (rest cpl))))))
446 (register-layout layout :invalidate t)
447 (set-class-type-translation class (layout-classoid layout)))))
448 (mapc #'make-preliminary-layout (class-direct-subclasses class)))))
451 (defmethod shared-initialize :before ((class class) slot-names &key name)
452 (declare (ignore slot-names name))
453 ;; FIXME: Could this just be CLASS instead of `(CLASS ,CLASS)? If not,
454 ;; why not? (See also similar expression in !BOOTSTRAP-INITIALIZE-CLASS.)
455 (setf (slot-value class '%type) `(class ,class))
456 (setf (slot-value class 'class-eq-specializer)
457 (make-instance 'class-eq-specializer :class class)))
459 (defmethod reinitialize-instance :before ((class slot-class) &key direct-superclasses)
460 (dolist (old-super (set-difference (class-direct-superclasses class) direct-superclasses))
461 (remove-direct-subclass old-super class))
462 (remove-slot-accessors class (class-direct-slots class)))
464 (defmethod reinitialize-instance :after ((class slot-class)
467 (map-dependents class
469 (apply #'update-dependent class dependent initargs))))
471 (defmethod reinitialize-instance :after ((class condition-class) &key)
472 (let* ((name (class-name class))
473 (classoid (find-classoid name))
474 (slots (condition-classoid-slots classoid)))
475 ;; to balance the REMOVE-SLOT-ACCESSORS call in
476 ;; REINITIALIZE-INSTANCE :BEFORE (SLOT-CLASS).
478 (let ((slot-name (condition-slot-name slot)))
479 (dolist (reader (condition-slot-readers slot))
480 ;; FIXME: see comment in SHARED-INITIALIZE :AFTER
481 ;; (CONDITION-CLASS T), below. -- CSR, 2005-11-18
482 (sb-kernel::install-condition-slot-reader reader name slot-name))
483 (dolist (writer (condition-slot-writers slot))
484 (sb-kernel::install-condition-slot-writer writer name slot-name))))))
486 (defmethod shared-initialize :after ((class condition-class) slot-names
487 &key direct-slots direct-superclasses)
488 (declare (ignore slot-names))
489 (let ((classoid (find-classoid (class-name class))))
490 (with-slots (wrapper %class-precedence-list cpl-available-p
491 prototype (direct-supers direct-superclasses))
493 (setf (slot-value class 'direct-slots)
494 (mapcar (lambda (pl) (make-direct-slotd class pl))
496 (setf (slot-value class 'finalized-p) t)
497 (setf (classoid-pcl-class classoid) class)
498 (setq direct-supers direct-superclasses)
499 (setq wrapper (classoid-layout classoid))
500 (setq %class-precedence-list (compute-class-precedence-list class))
501 (setq cpl-available-p t)
502 (add-direct-subclasses class direct-superclasses)
503 (setf (slot-value class 'slots) (compute-slots class))))
504 ;; Comment from Gerd's PCL, 2003-05-15:
506 ;; We don't ADD-SLOT-ACCESSORS here because we don't want to
507 ;; override condition accessors with generic functions. We do this
510 ;; ??? What does the above comment mean and why is it a good idea?
511 ;; CMUCL (which still as of 2005-11-18 uses this code and has this
512 ;; comment) loses slot information in its condition classes:
513 ;; DIRECT-SLOTS is always NIL. We have the right information, so we
514 ;; remove slot accessors but never put them back. I've added a
515 ;; REINITIALIZE-INSTANCE :AFTER (CONDITION-CLASS) method, but what
516 ;; was meant to happen? -- CSR, 2005-11-18
517 (update-pv-table-cache-info class))
519 (defmethod direct-slot-definition-class ((class condition-class)
521 (declare (ignore initargs))
522 (find-class 'condition-direct-slot-definition))
524 (defmethod effective-slot-definition-class ((class condition-class)
526 (declare (ignore initargs))
527 (find-class 'condition-effective-slot-definition))
529 (defmethod finalize-inheritance ((class condition-class))
530 (aver (slot-value class 'finalized-p))
533 (defmethod compute-effective-slot-definition
534 ((class condition-class) slot-name dslotds)
535 (let ((slotd (call-next-method)))
536 (setf (slot-definition-reader-function slotd)
538 (handler-case (condition-reader-function x slot-name)
539 ;; FIXME: FIND-SLOT-DEFAULT throws an error if the slot
540 ;; is unbound; maybe it should be a CELL-ERROR of some
542 (error () (values (slot-unbound class x slot-name))))))
543 (setf (slot-definition-writer-function slotd)
545 (condition-writer-function x v slot-name)))
546 (setf (slot-definition-boundp-function slotd)
548 (multiple-value-bind (v c)
549 (ignore-errors (condition-reader-function x slot-name))
554 (defmethod compute-slots ((class condition-class))
555 (mapcan (lambda (superclass)
556 (mapcar (lambda (dslotd)
557 (compute-effective-slot-definition
558 class (slot-definition-name dslotd) (list dslotd)))
559 (class-direct-slots superclass)))
560 (reverse (slot-value class '%class-precedence-list))))
562 (defmethod compute-slots :around ((class condition-class))
563 (let ((eslotds (call-next-method)))
564 (mapc #'initialize-internal-slot-functions eslotds)
567 (defmethod shared-initialize :after
568 ((slotd structure-slot-definition) slot-names &key
569 (allocation :instance) allocation-class)
570 (declare (ignore slot-names allocation-class))
571 (unless (eq allocation :instance)
572 (error "Structure slots must have :INSTANCE allocation.")))
574 (defun make-structure-class-defstruct-form (name direct-slots include)
575 (let* ((conc-name (format-symbol *package* "~S structure class " name))
576 (constructor (format-symbol *package* "~Aconstructor" conc-name))
577 (defstruct `(defstruct (,name
579 `((:include ,(class-name include))))
581 (:conc-name ,conc-name)
582 (:constructor ,constructor ())
584 ,@(mapcar (lambda (slot)
585 `(,(slot-definition-name slot)
588 (reader-names (mapcar (lambda (slotd)
589 (list 'slot-accessor name
590 (slot-definition-name slotd)
593 (writer-names (mapcar (lambda (slotd)
594 (list 'slot-accessor name
595 (slot-definition-name slotd)
599 (mapcar (lambda (slotd reader-name)
601 (slot-definition-defstruct-accessor-symbol
603 `(defun ,reader-name (obj)
604 (declare (type ,name obj))
606 direct-slots reader-names))
608 (mapcar (lambda (slotd writer-name)
610 (slot-definition-defstruct-accessor-symbol
612 `(defun ,writer-name (nv obj)
613 (declare (type ,name obj))
614 (setf (,accessor obj) nv))))
615 direct-slots writer-names))
619 ,@readers-init ,@writers-init
621 (values defstruct-form constructor reader-names writer-names)))
623 (defun make-defstruct-allocation-function (class)
624 (let ((dd (get-structure-dd (class-name class))))
626 (sb-kernel::%make-instance-with-layout
627 (sb-kernel::compiler-layout-or-lose (dd-name dd))))))
629 (defmethod shared-initialize :after
630 ((class structure-class) slot-names &key
631 (direct-superclasses nil direct-superclasses-p)
632 (direct-slots nil direct-slots-p)
633 direct-default-initargs)
634 (declare (ignore slot-names direct-default-initargs))
635 (if direct-superclasses-p
636 (setf (slot-value class 'direct-superclasses)
637 (or direct-superclasses
638 (setq direct-superclasses
639 (and (not (eq (class-name class) 'structure-object))
640 (list *the-class-structure-object*)))))
641 (setq direct-superclasses (slot-value class 'direct-superclasses)))
642 (let* ((name (class-name class))
643 (from-defclass-p (slot-value class 'from-defclass-p))
644 (defstruct-p (or from-defclass-p (not (structure-type-p name)))))
646 (setf (slot-value class 'direct-slots)
650 (let* ((slot-name (getf pl :name))
652 (format-symbol *package*
653 "~S structure class ~A"
655 (setq pl (list* :defstruct-accessor-symbol
657 (make-direct-slotd class pl))
659 (setq direct-slots (slot-value class 'direct-slots)))
661 (let ((include (car (slot-value class 'direct-superclasses))))
662 (multiple-value-bind (defstruct-form constructor reader-names writer-names)
663 (make-structure-class-defstruct-form name direct-slots include)
664 (unless (structure-type-p name) (eval defstruct-form))
665 (mapc (lambda (dslotd reader-name writer-name)
666 (let* ((reader (gdefinition reader-name))
667 (writer (when (fboundp writer-name)
668 (gdefinition writer-name))))
669 (setf (slot-value dslotd 'internal-reader-function)
671 (setf (slot-value dslotd 'internal-writer-function)
673 direct-slots reader-names writer-names)
674 (setf (slot-value class 'defstruct-form) defstruct-form)
675 (setf (slot-value class 'defstruct-constructor) constructor)))
676 (setf (slot-value class 'defstruct-constructor)
677 (make-defstruct-allocation-function class)))
678 (add-direct-subclasses class direct-superclasses)
679 (setf (slot-value class '%class-precedence-list)
680 (compute-class-precedence-list class))
681 (setf (slot-value class 'cpl-available-p) t)
682 (setf (slot-value class 'slots) (compute-slots class))
683 (let ((lclass (find-classoid (class-name class))))
684 (setf (classoid-pcl-class lclass) class)
685 (setf (slot-value class 'wrapper) (classoid-layout lclass)))
686 (setf (slot-value class 'finalized-p) t)
687 (update-pv-table-cache-info class)
688 (add-slot-accessors class direct-slots)))
690 (defmethod direct-slot-definition-class ((class structure-class) &rest initargs)
691 (declare (ignore initargs))
692 (find-class 'structure-direct-slot-definition))
694 (defmethod finalize-inheritance ((class structure-class))
695 nil) ; always finalized
697 (defun add-slot-accessors (class dslotds)
698 (fix-slot-accessors class dslotds 'add))
700 (defun remove-slot-accessors (class dslotds)
701 (fix-slot-accessors class dslotds 'remove))
703 (defun fix-slot-accessors (class dslotds add/remove)
704 (flet ((fix (gfspec name r/w)
705 (let ((gf (cond ((eq add/remove 'add)
707 (without-package-locks
708 (ensure-generic-function gfspec))
709 (ensure-generic-function
710 gfspec :lambda-list (case r/w
712 (w '(new-value object))))))
713 ((generic-function-p (and (fboundp gfspec)
714 (fdefinition gfspec)))
715 (without-package-locks
716 (ensure-generic-function gfspec))))))
719 (r (if (eq add/remove 'add)
720 (add-reader-method class gf name)
721 (remove-reader-method class gf)))
722 (w (if (eq add/remove 'add)
723 (add-writer-method class gf name)
724 (remove-writer-method class gf))))))))
725 (dolist (dslotd dslotds)
726 (let ((slot-name (slot-definition-name dslotd)))
727 (dolist (r (slot-definition-readers dslotd))
728 (fix r slot-name 'r))
729 (dolist (w (slot-definition-writers dslotd))
730 (fix w slot-name 'w))))))
732 (defun add-direct-subclasses (class supers)
733 (dolist (super supers)
734 (unless (memq class (class-direct-subclasses class))
735 (add-direct-subclass super class))))
737 (defmethod finalize-inheritance ((class std-class))
738 (update-class class t))
740 (defmethod finalize-inheritance ((class forward-referenced-class))
741 ;; FIXME: should we not be thinking a bit about what kinds of error
742 ;; we're throwing? Maybe we need a clos-error type to mix in? Or
743 ;; possibly a forward-referenced-class-error, though that's
744 ;; difficult given e.g. class precedence list calculations...
746 "~@<FINALIZE-INHERITANCE was called on a forward referenced class:~
751 (defun class-has-a-forward-referenced-superclass-p (class)
752 (or (forward-referenced-class-p class)
753 (some #'class-has-a-forward-referenced-superclass-p
754 (class-direct-superclasses class))))
756 ;;; This is called by :after shared-initialize whenever a class is initialized
757 ;;; or reinitialized. The class may or may not be finalized.
758 (defun update-class (class finalizep)
759 (without-package-locks
760 (when (or finalizep (class-finalized-p class))
761 (update-cpl class (compute-class-precedence-list class))
762 ;; This invocation of UPDATE-SLOTS, in practice, finalizes the
764 (update-slots class (compute-slots class))
765 (update-gfs-of-class class)
766 (update-initargs class (compute-default-initargs class))
767 (update-ctors 'finalize-inheritance :class class))
768 (dolist (sub (class-direct-subclasses class))
769 (update-class sub nil))))
771 (define-condition cpl-protocol-violation (reference-condition error)
772 ((class :initarg :class :reader cpl-protocol-violation-class)
773 (cpl :initarg :cpl :reader cpl-protocol-violation-cpl))
774 (:default-initargs :references (list '(:sbcl :node "Metaobject Protocol")))
777 (format s "~@<Protocol violation: the ~S class ~S ~
778 ~:[has~;does not have~] the class ~S in its ~
779 class precedence list: ~S.~@:>"
780 (class-name (class-of (cpl-protocol-violation-class c)))
781 (cpl-protocol-violation-class c)
782 (eq (class-of (cpl-protocol-violation-class c))
783 *the-class-funcallable-standard-class*)
784 (find-class 'function)
785 (cpl-protocol-violation-cpl c)))))
787 (defun update-cpl (class cpl)
788 (when (eq (class-of class) *the-class-standard-class*)
789 (when (find (find-class 'function) cpl)
790 (error 'cpl-protocol-violation :class class :cpl cpl)))
791 (when (eq (class-of class) *the-class-funcallable-standard-class*)
792 (unless (find (find-class 'function) cpl)
793 (error 'cpl-protocol-violation :class class :cpl cpl)))
794 (if (class-finalized-p class)
795 (unless (and (equal (class-precedence-list class) cpl)
797 (when (position :class (class-direct-slots c)
798 :key #'slot-definition-allocation)
800 ;; comment from the old CMU CL sources:
801 ;; Need to have the cpl setup before update-lisp-class-layout
802 ;; is called on CMU CL.
803 (setf (slot-value class '%class-precedence-list) cpl)
804 (setf (slot-value class 'cpl-available-p) t)
805 (force-cache-flushes class))
807 (setf (slot-value class '%class-precedence-list) cpl)
808 (setf (slot-value class 'cpl-available-p) t)))
809 (update-class-can-precede-p cpl))
811 (defun update-class-can-precede-p (cpl)
813 (let ((first (car cpl)))
814 (dolist (c (cdr cpl))
815 (pushnew c (slot-value first 'can-precede-list))))
816 (update-class-can-precede-p (cdr cpl))))
818 (defun class-can-precede-p (class1 class2)
819 (member class2 (class-can-precede-list class1)))
821 (defun update-slots (class eslotds)
822 (let ((instance-slots ())
824 (dolist (eslotd eslotds)
825 (let ((alloc (slot-definition-allocation eslotd)))
827 (:instance (push eslotd instance-slots))
828 (:class (push eslotd class-slots)))))
830 ;; If there is a change in the shape of the instances then the
831 ;; old class is now obsolete.
832 (let* ((nlayout (mapcar #'slot-definition-name
833 (sort instance-slots #'<
834 :key #'slot-definition-location)))
835 (nslots (length nlayout))
836 (nwrapper-class-slots (compute-class-slots class-slots))
837 (owrapper (when (class-finalized-p class)
838 (class-wrapper class)))
839 (olayout (when owrapper
840 (wrapper-instance-slots-layout owrapper)))
841 (owrapper-class-slots (and owrapper (wrapper-class-slots owrapper)))
843 (cond ((null owrapper)
844 (make-wrapper nslots class))
845 ((and (equal nlayout olayout)
847 (loop for o in owrapper-class-slots
848 for n in nwrapper-class-slots
849 do (unless (eq (car o) (car n)) (return t)))))
852 ;; This will initialize the new wrapper to have the
853 ;; same state as the old wrapper. We will then have
854 ;; to change that. This may seem like wasted work
855 ;; (and it is), but the spec requires that we call
856 ;; MAKE-INSTANCES-OBSOLETE.
857 (make-instances-obsolete class)
858 (class-wrapper class)))))
860 (with-slots (wrapper slots) class
861 (update-lisp-class-layout class nwrapper)
863 (wrapper-instance-slots-layout nwrapper) nlayout
864 (wrapper-class-slots nwrapper) nwrapper-class-slots
865 (wrapper-no-of-instance-slots nwrapper) nslots
867 (do* ((slots (slot-value class 'slots) (cdr slots))
872 "~@<slot names with the same SYMBOL-NAME but ~
873 different SYMBOL-PACKAGE (possible package problem) ~
874 for class ~S:~4I~@:_~<~@{~S~^~:@_~}~:>~@:>"
876 (let* ((slot (car slots))
877 (oslots (remove (slot-definition-name slot) (cdr slots)
879 :key #'slot-definition-name)))
881 (pushnew (cons (slot-definition-name slot)
882 (mapcar #'slot-definition-name oslots))
884 :test #'string= :key #'car)))))
885 (setf (slot-value class 'finalized-p) t)
886 (unless (eq owrapper nwrapper)
887 (update-pv-table-cache-info class)
888 (maybe-update-standard-class-locations class)))))
890 (defun compute-class-slots (eslotds)
892 (dolist (eslotd eslotds (nreverse collect))
893 (let ((cell (assoc (slot-definition-name eslotd)
895 (slot-definition-allocation-class eslotd)))))
897 (push cell collect)))))
899 (defun update-gfs-of-class (class)
900 (when (and (class-finalized-p class)
901 (let ((cpl (class-precedence-list class)))
902 (or (member *the-class-slot-class* cpl)
903 (member *the-class-standard-effective-slot-definition*
905 (let ((gf-table (make-hash-table :test 'eq)))
906 (labels ((collect-gfs (class)
907 (dolist (gf (specializer-direct-generic-functions class))
908 (setf (gethash gf gf-table) t))
909 (mapc #'collect-gfs (class-direct-superclasses class))))
911 (maphash (lambda (gf ignore)
912 (declare (ignore ignore))
913 (update-gf-dfun class gf))
916 (defun update-initargs (class inits)
917 (setf (plist-value class 'default-initargs) inits))
919 (defmethod compute-default-initargs ((class slot-class))
920 (let ((initargs (loop for c in (class-precedence-list class)
921 append (class-direct-default-initargs c))))
922 (delete-duplicates initargs :test #'eq :key #'car :from-end t)))
924 ;;;; protocols for constructing direct and effective slot definitions
926 (defmethod direct-slot-definition-class ((class std-class) &rest initargs)
927 (declare (ignore initargs))
928 (find-class 'standard-direct-slot-definition))
930 (defun make-direct-slotd (class initargs)
931 (apply #'make-instance
932 (apply #'direct-slot-definition-class class initargs)
936 ;;; I (CSR) am not sure, but I believe that the particular order of
937 ;;; slots is quite important: it is ideal to attempt to have a
938 ;;; constant slot location for the same notional slots as much as
939 ;;; possible, so that clever discriminating functions (ONE-INDEX et
940 ;;; al.) have a chance of working. The below at least walks through
941 ;;; the slots predictably, but maybe it would be good to compute some
942 ;;; kind of optimal slot layout by looking at locations of slots in
944 (defun std-compute-slots (class)
945 ;; As specified, we must call COMPUTE-EFFECTIVE-SLOT-DEFINITION once
946 ;; for each different slot name we find in our superclasses. Each
947 ;; call receives the class and a list of the dslotds with that name.
948 ;; The list is in most-specific-first order.
949 (let ((name-dslotds-alist ()))
950 (dolist (c (reverse (class-precedence-list class)))
951 (dolist (slot (class-direct-slots c))
952 (let* ((name (slot-definition-name slot))
953 (entry (assq name name-dslotds-alist)))
955 (push slot (cdr entry))
956 (push (list name slot) name-dslotds-alist)))))
957 (mapcar (lambda (direct)
958 (compute-effective-slot-definition class
961 (nreverse name-dslotds-alist))))
963 (defmethod compute-slots ((class standard-class))
964 (std-compute-slots class))
965 (defmethod compute-slots ((class funcallable-standard-class))
966 (std-compute-slots class))
968 (defun std-compute-slots-around (class eslotds)
970 (dolist (eslotd eslotds eslotds)
971 (setf (slot-definition-location eslotd)
972 (case (slot-definition-allocation eslotd)
976 (let* ((name (slot-definition-name eslotd))
979 (slot-definition-allocation-class eslotd)
980 ;; we get here if the user adds an extra slot
982 (setf (slot-definition-allocation-class eslotd)
984 ;; which raises the question of what we should
985 ;; do if we find that said user has added a slot
986 ;; with the same name as another slot...
987 (cell (or (assq name (class-slot-cells from-class))
988 (let ((c (cons name +slot-unbound+)))
989 (push c (class-slot-cells from-class))
992 (if (eq +slot-unbound+ (cdr cell))
993 ;; We may have inherited an initfunction
994 (let ((initfun (slot-definition-initfunction eslotd)))
996 (rplacd cell (funcall initfun))
999 (unless (slot-definition-class eslotd)
1000 (setf (slot-definition-class eslotd) class))
1001 (initialize-internal-slot-functions eslotd))))
1003 (defmethod compute-slots :around ((class standard-class))
1004 (let ((eslotds (call-next-method)))
1005 (std-compute-slots-around class eslotds)))
1006 (defmethod compute-slots :around ((class funcallable-standard-class))
1007 (let ((eslotds (call-next-method)))
1008 (std-compute-slots-around class eslotds)))
1010 (defmethod compute-slots ((class structure-class))
1011 (mapcan (lambda (superclass)
1012 (mapcar (lambda (dslotd)
1013 (compute-effective-slot-definition
1015 (slot-definition-name dslotd)
1017 (class-direct-slots superclass)))
1018 (reverse (slot-value class '%class-precedence-list))))
1020 (defmethod compute-slots :around ((class structure-class))
1021 (let ((eslotds (call-next-method)))
1022 (mapc #'initialize-internal-slot-functions eslotds)
1025 (defmethod compute-effective-slot-definition ((class slot-class) name dslotds)
1026 (declare (ignore name))
1027 (let* ((initargs (compute-effective-slot-definition-initargs class dslotds))
1028 (class (apply #'effective-slot-definition-class class initargs)))
1029 (apply #'make-instance class initargs)))
1031 (defmethod effective-slot-definition-class ((class std-class) &rest initargs)
1032 (declare (ignore initargs))
1033 (find-class 'standard-effective-slot-definition))
1035 (defmethod effective-slot-definition-class ((class structure-class) &rest initargs)
1036 (declare (ignore initargs))
1037 (find-class 'structure-effective-slot-definition))
1039 (defmethod compute-effective-slot-definition-initargs
1040 ((class slot-class) direct-slotds)
1046 (allocation-class nil)
1049 (documentationp nil)
1054 (dolist (slotd direct-slotds)
1057 (setq name (slot-definition-name slotd)
1060 (when (slot-definition-initfunction slotd)
1061 (setq initform (slot-definition-initform slotd)
1062 initfunction (slot-definition-initfunction slotd)
1064 (unless documentationp
1065 (when (%slot-definition-documentation slotd)
1066 (setq documentation (%slot-definition-documentation slotd)
1069 (setq allocation (slot-definition-allocation slotd)
1070 allocation-class (slot-definition-class slotd)
1072 (setq initargs (append (slot-definition-initargs slotd) initargs))
1073 (let ((slotd-type (slot-definition-type slotd)))
1075 ((eq type t) slotd-type)
1076 ;; This pairwise type intersection is perhaps a
1077 ;; little inefficient and inelegant, but it's
1078 ;; unlikely to lie on the critical path. Shout
1079 ;; if I'm wrong. -- CSR, 2005-11-24
1081 (specifier-type `(and ,type ,slotd-type)))))))))
1084 :initfunction initfunction
1086 :allocation allocation
1087 :allocation-class allocation-class
1090 :documentation documentation)))
1092 (defmethod compute-effective-slot-definition-initargs :around
1093 ((class structure-class) direct-slotds)
1094 (let ((slotd (car direct-slotds)))
1095 (list* :defstruct-accessor-symbol
1096 (slot-definition-defstruct-accessor-symbol slotd)
1097 :internal-reader-function
1098 (slot-definition-internal-reader-function slotd)
1099 :internal-writer-function
1100 (slot-definition-internal-writer-function slotd)
1101 (call-next-method))))
1103 ;;; NOTE: For bootstrapping considerations, these can't use MAKE-INSTANCE
1104 ;;; to make the method object. They have to use make-a-method which
1105 ;;; is a specially bootstrapped mechanism for making standard methods.
1106 (defmethod reader-method-class ((class slot-class) direct-slot &rest initargs)
1107 (declare (ignore direct-slot initargs))
1108 (find-class 'standard-reader-method))
1110 (defmethod add-reader-method ((class slot-class) generic-function slot-name)
1111 (add-method generic-function
1112 (make-a-method 'standard-reader-method
1114 (list (or (class-name class) 'object))
1116 (make-reader-method-function class slot-name)
1117 "automatically generated reader method"
1118 :slot-name slot-name
1120 :method-class-function #'reader-method-class)))
1122 (defmethod writer-method-class ((class slot-class) direct-slot &rest initargs)
1123 (declare (ignore direct-slot initargs))
1124 (find-class 'standard-writer-method))
1126 (defmethod add-writer-method ((class slot-class) generic-function slot-name)
1127 (add-method generic-function
1128 (make-a-method 'standard-writer-method
1130 (list 'new-value (or (class-name class) 'object))
1131 (list *the-class-t* class)
1132 (make-writer-method-function class slot-name)
1133 "automatically generated writer method"
1134 :slot-name slot-name
1136 :method-class-function #'writer-method-class)))
1138 (defmethod add-boundp-method ((class slot-class) generic-function slot-name)
1139 (add-method generic-function
1140 (make-a-method (constantly (find-class 'standard-boundp-method))
1143 (list (or (class-name class) 'object))
1145 (make-boundp-method-function class slot-name)
1146 "automatically generated boundp method"
1149 (defmethod remove-reader-method ((class slot-class) generic-function)
1150 (let ((method (get-method generic-function () (list class) nil)))
1151 (when method (remove-method generic-function method))))
1153 (defmethod remove-writer-method ((class slot-class) generic-function)
1155 (get-method generic-function () (list *the-class-t* class) nil)))
1156 (when method (remove-method generic-function method))))
1158 (defmethod remove-boundp-method ((class slot-class) generic-function)
1159 (let ((method (get-method generic-function () (list class) nil)))
1160 (when method (remove-method generic-function method))))
1162 ;;; MAKE-READER-METHOD-FUNCTION and MAKE-WRITE-METHOD function are NOT
1163 ;;; part of the standard protocol. They are however useful, PCL makes
1164 ;;; use of them internally and documents them for PCL users.
1166 ;;; *** This needs work to make type testing by the writer functions which
1167 ;;; *** do type testing faster. The idea would be to have one constructor
1168 ;;; *** for each possible type test.
1170 ;;; *** There is a subtle bug here which is going to have to be fixed.
1171 ;;; *** Namely, the simplistic use of the template has to be fixed. We
1172 ;;; *** have to give the OPTIMIZE-SLOT-VALUE method the user might have
1173 ;;; *** defined for this metaclass a chance to run.
1175 (defmethod make-reader-method-function ((class slot-class) slot-name)
1176 (make-std-reader-method-function (class-name class) slot-name))
1178 (defmethod make-writer-method-function ((class slot-class) slot-name)
1179 (make-std-writer-method-function (class-name class) slot-name))
1181 (defmethod make-boundp-method-function ((class slot-class) slot-name)
1182 (make-std-boundp-method-function (class-name class) slot-name))
1184 (defmethod compatible-meta-class-change-p (class proto-new-class)
1185 (eq (class-of class) (class-of proto-new-class)))
1187 (defmethod validate-superclass ((class class) (superclass class))
1188 (or (eq superclass *the-class-t*)
1189 (eq (class-of class) (class-of superclass))
1190 (and (eq (class-of superclass) *the-class-standard-class*)
1191 (eq (class-of class) *the-class-funcallable-standard-class*))
1192 (and (eq (class-of superclass) *the-class-funcallable-standard-class*)
1193 (eq (class-of class) *the-class-standard-class*))))
1195 ;;; What this does depends on which of the four possible values of
1196 ;;; LAYOUT-INVALID the PCL wrapper has; the simplest case is when it
1197 ;;; is (:FLUSH <wrapper>) or (:OBSOLETE <wrapper>), when there is
1198 ;;; nothing to do, as the new wrapper has already been created. If
1199 ;;; LAYOUT-INVALID returns NIL, then we invalidate it (setting it to
1200 ;;; (:FLUSH <wrapper>); UPDATE-SLOTS later gets to choose whether or
1201 ;;; not to "upgrade" this to (:OBSOLETE <wrapper>).
1203 ;;; This leaves the case where LAYOUT-INVALID returns T, which happens
1204 ;;; when REGISTER-LAYOUT has invalidated a superclass of CLASS (which
1205 ;;; invalidated all the subclasses in SB-KERNEL land). Again, here we
1206 ;;; must flush the caches and allow UPDATE-SLOTS to decide whether to
1207 ;;; obsolete the wrapper.
1209 ;;; FIXME: either here or in INVALID-WRAPPER-P looks like a good place
1210 ;;; for (AVER (NOT (EQ (LAYOUT-INVALID OWRAPPER)
1211 ;;; :UNINITIALIZED)))
1213 ;;; Thanks to Gerd Moellmann for the explanation. -- CSR, 2002-10-29
1214 (defun force-cache-flushes (class)
1215 (let* ((owrapper (class-wrapper class)))
1216 ;; We only need to do something if the wrapper is still valid. If
1217 ;; the wrapper isn't valid, state will be FLUSH or OBSOLETE, and
1218 ;; both of those will already be doing what we want. In
1219 ;; particular, we must be sure we never change an OBSOLETE into a
1220 ;; FLUSH since OBSOLETE means do what FLUSH does and then some.
1221 (when (or (not (invalid-wrapper-p owrapper))
1222 ;; KLUDGE: despite the observations above, this remains
1223 ;; a violation of locality or what might be considered
1224 ;; good style. There has to be a better way! -- CSR,
1226 (eq (layout-invalid owrapper) t))
1227 (let ((nwrapper (make-wrapper (wrapper-no-of-instance-slots owrapper)
1229 (setf (wrapper-instance-slots-layout nwrapper)
1230 (wrapper-instance-slots-layout owrapper))
1231 (setf (wrapper-class-slots nwrapper)
1232 (wrapper-class-slots owrapper))
1234 (update-lisp-class-layout class nwrapper)
1235 (setf (slot-value class 'wrapper) nwrapper)
1236 ;; Use :OBSOLETE instead of :FLUSH if any superclass has
1238 (if (find-if (lambda (x)
1239 (and (consp x) (eq :obsolete (car x))))
1240 (layout-inherits owrapper)
1241 :key #'layout-invalid)
1242 (invalidate-wrapper owrapper :obsolete nwrapper)
1243 (invalidate-wrapper owrapper :flush nwrapper)))))))
1245 (defun flush-cache-trap (owrapper nwrapper instance)
1246 (declare (ignore owrapper))
1247 (set-wrapper instance nwrapper))
1249 ;;; MAKE-INSTANCES-OBSOLETE can be called by user code. It will cause
1250 ;;; the next access to the instance (as defined in 88-002R) to trap
1251 ;;; through the UPDATE-INSTANCE-FOR-REDEFINED-CLASS mechanism.
1252 (defmethod make-instances-obsolete ((class std-class))
1253 (let* ((owrapper (class-wrapper class))
1254 (nwrapper (make-wrapper (wrapper-no-of-instance-slots owrapper)
1256 (unless (class-finalized-p class)
1257 (if (class-has-a-forward-referenced-superclass-p class)
1258 (return-from make-instances-obsolete class)
1259 (update-cpl class (compute-class-precedence-list class))))
1260 (setf (wrapper-instance-slots-layout nwrapper)
1261 (wrapper-instance-slots-layout owrapper))
1262 (setf (wrapper-class-slots nwrapper)
1263 (wrapper-class-slots owrapper))
1265 (update-lisp-class-layout class nwrapper)
1266 (setf (slot-value class 'wrapper) nwrapper)
1267 (invalidate-wrapper owrapper :obsolete nwrapper)
1270 (defmethod make-instances-obsolete ((class symbol))
1271 (make-instances-obsolete (find-class class))
1272 ;; ANSI wants the class name when called with a symbol.
1275 ;;; OBSOLETE-INSTANCE-TRAP is the internal trap that is called when we
1276 ;;; see an obsolete instance. The times when it is called are:
1277 ;;; - when the instance is involved in method lookup
1278 ;;; - when attempting to access a slot of an instance
1280 ;;; It is not called by class-of, wrapper-of, or any of the low-level
1281 ;;; instance access macros.
1283 ;;; Of course these times when it is called are an internal
1284 ;;; implementation detail of PCL and are not part of the documented
1285 ;;; description of when the obsolete instance update happens. The
1286 ;;; documented description is as it appears in 88-002R.
1288 ;;; This has to return the new wrapper, so it counts on all the
1289 ;;; methods on obsolete-instance-trap-internal to return the new
1290 ;;; wrapper. It also does a little internal error checking to make
1291 ;;; sure that the traps are only happening when they should, and that
1292 ;;; the trap methods are computing appropriate new wrappers.
1294 ;;; OBSOLETE-INSTANCE-TRAP might be called on structure instances
1295 ;;; after a structure is redefined. In most cases,
1296 ;;; OBSOLETE-INSTANCE-TRAP will not be able to fix the old instance,
1297 ;;; so it must signal an error. The hard part of this is that the
1298 ;;; error system and debugger might cause OBSOLETE-INSTANCE-TRAP to be
1299 ;;; called again, so in that case, we have to return some reasonable
1300 ;;; wrapper, instead.
1302 (defvar *in-obsolete-instance-trap* nil)
1303 (defvar *the-wrapper-of-structure-object*
1304 (class-wrapper (find-class 'structure-object)))
1306 (define-condition obsolete-structure (error)
1307 ((datum :reader obsolete-structure-datum :initarg :datum))
1309 (lambda (condition stream)
1310 ;; Don't try to print the structure, since it probably won't work.
1312 "~@<obsolete structure error for a structure of type ~2I~_~S~:>"
1313 (type-of (obsolete-structure-datum condition))))))
1315 (defun obsolete-instance-trap (owrapper nwrapper instance)
1316 (if (not (pcl-instance-p instance))
1317 (if *in-obsolete-instance-trap*
1318 *the-wrapper-of-structure-object*
1319 (let ((*in-obsolete-instance-trap* t))
1320 (error 'obsolete-structure :datum instance)))
1321 (let* ((class (wrapper-class* nwrapper))
1322 (copy (allocate-instance class)) ;??? allocate-instance ???
1323 (olayout (wrapper-instance-slots-layout owrapper))
1324 (nlayout (wrapper-instance-slots-layout nwrapper))
1325 (oslots (get-slots instance))
1326 (nslots (get-slots copy))
1327 (oclass-slots (wrapper-class-slots owrapper))
1332 ;; local --> local transfer value
1333 ;; local --> shared discard value, discard slot
1334 ;; local --> -- discard slot
1335 ;; shared --> local transfer value
1336 ;; shared --> shared -- (cf SHARED-INITIALIZE :AFTER STD-CLASS)
1337 ;; shared --> -- discard value
1338 ;; -- --> local add slot
1341 ;; Go through all the old local slots.
1343 (dolist (name olayout)
1344 (let ((npos (posq name nlayout)))
1346 (setf (clos-slots-ref nslots npos)
1347 (clos-slots-ref oslots opos))
1349 (push name discarded)
1350 (unless (eq (clos-slots-ref oslots opos) +slot-unbound+)
1351 (setf (getf plist name) (clos-slots-ref oslots opos))))))
1354 ;; Go through all the old shared slots.
1355 (dolist (oclass-slot-and-val oclass-slots)
1356 (let ((name (car oclass-slot-and-val))
1357 (val (cdr oclass-slot-and-val)))
1358 (let ((npos (posq name nlayout)))
1360 (setf (clos-slots-ref nslots npos) val)))))
1362 ;; Go through all the new local slots to compute the added slots.
1363 (dolist (nlocal nlayout)
1364 (unless (or (memq nlocal olayout)
1365 (assq nlocal oclass-slots))
1366 (push nlocal added)))
1368 (swap-wrappers-and-slots instance copy)
1370 (update-instance-for-redefined-class instance
1376 (defun change-class-internal (instance new-class initargs)
1377 (let* ((old-class (class-of instance))
1378 (copy (allocate-instance new-class))
1379 (new-wrapper (get-wrapper copy))
1380 (old-wrapper (class-wrapper old-class))
1381 (old-layout (wrapper-instance-slots-layout old-wrapper))
1382 (new-layout (wrapper-instance-slots-layout new-wrapper))
1383 (old-slots (get-slots instance))
1384 (new-slots (get-slots copy))
1385 (old-class-slots (wrapper-class-slots old-wrapper)))
1387 ;; "The values of local slots specified by both the class CTO and
1388 ;; CFROM are retained. If such a local slot was unbound, it
1389 ;; remains unbound."
1390 (let ((new-position 0))
1391 (dolist (new-slot new-layout)
1392 (let ((old-position (posq new-slot old-layout)))
1394 (setf (clos-slots-ref new-slots new-position)
1395 (clos-slots-ref old-slots old-position))))
1396 (incf new-position)))
1398 ;; "The values of slots specified as shared in the class CFROM and
1399 ;; as local in the class CTO are retained."
1400 (dolist (slot-and-val old-class-slots)
1401 (let ((position (posq (car slot-and-val) new-layout)))
1403 (setf (clos-slots-ref new-slots position) (cdr slot-and-val)))))
1405 ;; Make the copy point to the old instance's storage, and make the
1406 ;; old instance point to the new storage.
1407 (swap-wrappers-and-slots instance copy)
1409 (apply #'update-instance-for-different-class copy instance initargs)
1412 (defmethod change-class ((instance standard-object) (new-class standard-class)
1414 (unless (class-finalized-p new-class)
1415 (finalize-inheritance new-class))
1416 (let ((cpl (class-precedence-list new-class)))
1420 `(when (eq class (find-class ',class-name))
1421 (error 'metaobject-initialization-violation
1422 :format-control "~@<Cannot ~S objects into ~S metaobjects.~@:>"
1423 :format-arguments (list 'change-class ',class-name)
1424 :references (list '(:amop :initialization ,class-name))))))
1426 (frob generic-function)
1428 (frob slot-definition))))
1429 (change-class-internal instance new-class initargs))
1431 (defmethod change-class ((instance forward-referenced-class)
1432 (new-class standard-class) &rest initargs)
1433 (let ((cpl (class-precedence-list new-class)))
1435 (error 'metaobject-initialization-violation
1437 "~@<Cannot ~S ~S objects into non-~S objects.~@:>"
1439 (list 'change-class 'forward-referenced-class 'class)
1441 (list '(:amop :generic-function ensure-class-using-class)
1442 '(:amop :initialization class))))
1443 (when (eq class (find-class 'class))
1445 (change-class-internal instance new-class initargs))
1447 (defmethod change-class ((instance funcallable-standard-object)
1448 (new-class funcallable-standard-class)
1450 (let ((cpl (class-precedence-list new-class)))
1454 `(when (eq class (find-class ',class-name))
1455 (error 'metaobject-initialization-violation
1456 :format-control "~@<Cannot ~S objects into ~S metaobjects.~@:>"
1457 :format-arguments (list 'change-class ',class-name)
1458 :references (list '(:amop :initialization ,class-name))))))
1460 (frob generic-function)
1462 (frob slot-definition))))
1463 (change-class-internal instance new-class initargs))
1465 (defmethod change-class ((instance standard-object)
1466 (new-class funcallable-standard-class)
1468 (declare (ignore initargs))
1469 (error "You can't change the class of ~S to ~S~@
1470 because it isn't already an instance with metaclass ~S."
1471 instance new-class 'standard-class))
1473 (defmethod change-class ((instance funcallable-standard-object)
1474 (new-class standard-class)
1476 (declare (ignore initargs))
1477 (error "You can't change the class of ~S to ~S~@
1478 because it isn't already an instance with metaclass ~S."
1479 instance new-class 'funcallable-standard-class))
1481 (defmethod change-class ((instance t) (new-class-name symbol) &rest initargs)
1482 (apply #'change-class instance (find-class new-class-name) initargs))
1484 ;;;; The metaclass BUILT-IN-CLASS
1486 ;;;; This metaclass is something of a weird creature. By this point, all
1487 ;;;; instances of it which will exist have been created, and no instance
1488 ;;;; is ever created by calling MAKE-INSTANCE.
1490 ;;;; But, there are other parts of the protocol we must follow and those
1491 ;;;; definitions appear here.
1493 (macrolet ((def (name args control)
1494 `(defmethod ,name ,args
1495 (declare (ignore initargs))
1496 (error 'metaobject-initialization-violation
1497 :format-control ,(format nil "~@<~A~@:>" control)
1498 :format-arguments (list ',name)
1499 :references (list '(:amop :initialization "Class"))))))
1500 (def initialize-instance ((class built-in-class) &rest initargs)
1501 "Cannot ~S an instance of BUILT-IN-CLASS.")
1502 (def reinitialize-instance ((class built-in-class) &rest initargs)
1503 "Cannot ~S an instance of BUILT-IN-CLASS."))
1505 (macrolet ((def (name)
1506 `(defmethod ,name ((class built-in-class)) nil)))
1507 (def class-direct-slots)
1509 (def class-direct-default-initargs)
1510 (def class-default-initargs))
1512 (defmethod validate-superclass ((c class) (s built-in-class))
1513 (or (eq s *the-class-t*) (eq s *the-class-stream*)
1514 ;; FIXME: bad things happen if someone tries to mix in both
1515 ;; FILE-STREAM and STRING-STREAM (as they have the same
1516 ;; layout-depthoid). Is there any way we can provide a useful
1517 ;; error message? -- CSR, 2005-05-03
1518 (eq s *the-class-file-stream*) (eq s *the-class-string-stream*)))
1520 ;;; Some necessary methods for FORWARD-REFERENCED-CLASS
1521 (defmethod class-direct-slots ((class forward-referenced-class)) ())
1522 (defmethod class-direct-default-initargs ((class forward-referenced-class)) ())
1523 (macrolet ((def (method)
1524 `(defmethod ,method ((class forward-referenced-class))
1525 (error "~@<~I~S was called on a forward referenced class:~2I~_~S~:>"
1527 (def class-default-initargs)
1528 (def class-precedence-list)
1531 (defmethod validate-superclass ((c slot-class)
1532 (f forward-referenced-class))
1535 (defmethod add-dependent ((metaobject dependent-update-mixin) dependent)
1536 (pushnew dependent (plist-value metaobject 'dependents)))
1538 (defmethod remove-dependent ((metaobject dependent-update-mixin) dependent)
1539 (setf (plist-value metaobject 'dependents)
1540 (delete dependent (plist-value metaobject 'dependents))))
1542 (defmethod map-dependents ((metaobject dependent-update-mixin) function)
1543 (dolist (dependent (plist-value metaobject 'dependents))
1544 (funcall function dependent)))