0.8.4.30:
[sbcl.git] / src / pcl / std-class.lisp
1 ;;;; This software is part of the SBCL system. See the README file for
2 ;;;; more information.
3
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
8 ;;;; information.
9
10 ;;;; copyright information from original PCL sources:
11 ;;;;
12 ;;;; Copyright (c) 1985, 1986, 1987, 1988, 1989, 1990 Xerox Corporation.
13 ;;;; All rights reserved.
14 ;;;;
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
18 ;;;; control laws.
19 ;;;;
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
22 ;;;; specification.
23
24 (in-package "SB-PCL")
25 \f
26 (defmethod slot-accessor-function ((slotd effective-slot-definition) type)
27   (ecase type
28     (reader (slot-definition-reader-function slotd))
29     (writer (slot-definition-writer-function slotd))
30     (boundp (slot-definition-boundp-function slotd))))
31
32 (defmethod (setf slot-accessor-function) (function
33                                           (slotd effective-slot-definition)
34                                           type)
35   (ecase type
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))))
39
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)
44
45 (defmethod slot-accessor-std-p ((slotd effective-slot-definition) type)
46   (let ((flags (slot-value slotd 'accessor-flags)))
47     (declare (type fixnum flags))
48     (if (eq type 'all)
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))))))))
56
57 (defmethod (setf slot-accessor-std-p) (value
58                                        (slotd effective-slot-definition)
59                                        type)
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)
67           (if value
68               (the fixnum (logior mask flags))
69               (the fixnum (logand (the fixnum (lognot mask)) flags)))))
70   value)
71
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     (let ((table (or (gethash name *name->class->slotd-table*)
77                      (setf (gethash name *name->class->slotd-table*)
78                            (make-hash-table :test 'eq :size 5)))))
79       (setf (gethash class table) slotd))
80     (dolist (type '(reader writer boundp))
81       (let* ((gf-name (ecase type
82                               (reader 'slot-value-using-class)
83                               (writer '(setf slot-value-using-class))
84                               (boundp 'slot-boundp-using-class)))
85              (gf (gdefinition gf-name)))
86         (compute-slot-accessor-info slotd type gf)))
87     (initialize-internal-slot-gfs name)))
88
89 ;;; CMUCL (Gerd PCL 2003-04-25) comment:
90 ;;;
91 ;;; Compute an effective method for SLOT-VALUE-USING-CLASS, (SETF
92 ;;; SLOT-VALUE-USING-CLASS) or SLOT-BOUNDP-USING-CLASS for reading/
93 ;;; writing/testing effective slot SLOTD.
94 ;;;
95 ;;; TYPE is one of the symbols READER, WRITER or BOUNDP, depending on
96 ;;; GF.  Store the effective method in the effective slot definition
97 ;;; object itself; these GFs have special dispatch functions calling
98 ;;; effective methods directly retrieved from effective slot
99 ;;; definition objects, as an optimization.
100 ;;;
101 ;;; FIXME: Change the function name to COMPUTE-SVUC-SLOTD-FUNCTION,
102 ;;; or some such.
103 (defmethod compute-slot-accessor-info ((slotd effective-slot-definition)
104                                        type gf)
105   (let* ((name (slot-value slotd 'name))
106          (class (slot-value slotd 'class))
107          (old-slotd (find-slot-definition class name))
108          (old-std-p (and old-slotd (slot-accessor-std-p old-slotd 'all))))
109     (multiple-value-bind (function std-p)
110         (if (eq *boot-state* 'complete)
111             (get-accessor-method-function gf type class slotd)
112             (get-optimized-std-accessor-method-function class slotd type))
113       (setf (slot-accessor-std-p slotd type) std-p)
114       (setf (slot-accessor-function slotd type) function))
115     (when (and old-slotd (not (eq old-std-p (slot-accessor-std-p slotd 'all))))
116       (push (cons class name) *pv-table-cache-update-info*))))
117
118 (defmethod slot-definition-allocation ((slotd structure-slot-definition))
119   :instance)
120 \f
121 ;;;; various class accessors that are a little more complicated than can be
122 ;;;; done with automatically generated reader methods
123
124 (defmethod class-prototype ((class std-class))
125   (with-slots (prototype) class
126     (or prototype (setq prototype (allocate-instance class)))))
127
128 (defmethod class-prototype ((class structure-class))
129   (with-slots (prototype wrapper defstruct-constructor) class
130     (or prototype
131         (setq prototype
132               (if defstruct-constructor
133                   (allocate-instance class)
134                   (allocate-standard-instance wrapper))))))
135
136 (defmethod class-direct-default-initargs ((class slot-class))
137   (plist-value class 'direct-default-initargs))
138
139 (defmethod class-default-initargs ((class slot-class))
140   (plist-value class 'default-initargs))
141
142 (defmethod class-slot-cells ((class std-class))
143   (plist-value class 'class-slot-cells))
144 \f
145 ;;;; class accessors that are even a little bit more complicated than those
146 ;;;; above. These have a protocol for updating them, we must implement that
147 ;;;; protocol.
148
149 ;;; Maintaining the direct subclasses backpointers. The update methods are
150 ;;; here, the values are read by an automatically generated reader method.
151 (defmethod add-direct-subclass ((class class) (subclass class))
152   (with-slots (direct-subclasses) class
153     (pushnew subclass direct-subclasses)
154     subclass))
155 (defmethod remove-direct-subclass ((class class) (subclass class))
156   (with-slots (direct-subclasses) class
157     (setq direct-subclasses (remove subclass direct-subclasses))
158     subclass))
159
160 ;;; Maintaining the direct-methods and direct-generic-functions backpointers.
161 ;;;
162 ;;; There are four generic functions involved, each has one method for the
163 ;;; class case and another method for the damned EQL specializers. All of
164 ;;; these are specified methods and appear in their specified place in the
165 ;;; class graph.
166 ;;;
167 ;;;   ADD-DIRECT-METHOD
168 ;;;   REMOVE-DIRECT-METHOD
169 ;;;   SPECIALIZER-DIRECT-METHODS
170 ;;;   SPECIALIZER-DIRECT-GENERIC-FUNCTIONS
171 ;;;
172 ;;; In each case, we maintain one value which is a cons. The car is the list
173 ;;; methods. The cdr is a list of the generic functions. The cdr is always
174 ;;; computed lazily.
175 (defmethod add-direct-method ((specializer class) (method method))
176   (with-slots (direct-methods) specializer
177     (setf (car direct-methods) (adjoin method (car direct-methods))     ;PUSH
178           (cdr direct-methods) ()))
179   method)
180 (defmethod remove-direct-method ((specializer class) (method method))
181   (with-slots (direct-methods) specializer
182     (setf (car direct-methods) (remove method (car direct-methods))
183           (cdr direct-methods) ()))
184   method)
185
186 (defmethod specializer-direct-methods ((specializer class))
187   (with-slots (direct-methods) specializer
188     (car direct-methods)))
189
190 (defmethod specializer-direct-generic-functions ((specializer class))
191   (with-slots (direct-methods) specializer
192     (or (cdr direct-methods)
193         (setf (cdr direct-methods)
194               (let (collect)
195                 (dolist (m (car direct-methods))
196                   ;; the old PCL code used COLLECTING-ONCE which used
197                   ;; #'EQ to check for newness
198                   (pushnew (method-generic-function m) collect :test #'eq))
199                 (nreverse collect))))))
200 \f
201 ;;; This hash table is used to store the direct methods and direct generic
202 ;;; functions of EQL specializers. Each value in the table is the cons.
203 (defvar *eql-specializer-methods* (make-hash-table :test 'eql))
204 (defvar *class-eq-specializer-methods* (make-hash-table :test 'eq))
205
206 (defmethod specializer-method-table ((specializer eql-specializer))
207   *eql-specializer-methods*)
208
209 (defmethod specializer-method-table ((specializer class-eq-specializer))
210   *class-eq-specializer-methods*)
211
212 (defmethod add-direct-method ((specializer specializer-with-object)
213                               (method method))
214   (let* ((object (specializer-object specializer))
215          (table (specializer-method-table specializer))
216          (entry (gethash object table)))
217     (unless entry
218       (setq entry
219             (setf (gethash object table)
220                   (cons nil nil))))
221     (setf (car entry) (adjoin method (car entry))
222           (cdr entry) ())
223     method))
224
225 (defmethod remove-direct-method ((specializer specializer-with-object)
226                                  (method method))
227   (let* ((object (specializer-object specializer))
228          (entry (gethash object (specializer-method-table specializer))))
229     (when entry
230       (setf (car entry) (remove method (car entry))
231             (cdr entry) ()))
232     method))
233
234 (defmethod specializer-direct-methods ((specializer specializer-with-object))
235   (car (gethash (specializer-object specializer)
236                 (specializer-method-table specializer))))
237
238 (defmethod specializer-direct-generic-functions ((specializer
239                                                   specializer-with-object))
240   (let* ((object (specializer-object specializer))
241          (entry (gethash object (specializer-method-table specializer))))
242     (when entry
243       (or (cdr entry)
244           (setf (cdr entry)
245                 (let (collect)
246                   (dolist (m (car entry))
247                     (pushnew (method-generic-function m) collect :test #'eq))
248                   (nreverse collect)))))))
249
250 (defun map-specializers (function)
251   (map-all-classes (lambda (class)
252                      (funcall function (class-eq-specializer class))
253                      (funcall function class)))
254   (maphash (lambda (object methods)
255              (declare (ignore methods))
256              (intern-eql-specializer object))
257            *eql-specializer-methods*)
258   (maphash (lambda (object specl)
259              (declare (ignore object))
260              (funcall function specl))
261            *eql-specializer-table*)
262   nil)
263
264 (defun map-all-generic-functions (function)
265   (let ((all-generic-functions (make-hash-table :test 'eq)))
266     (map-specializers (lambda (specl)
267                         (dolist (gf (specializer-direct-generic-functions
268                                      specl))
269                           (unless (gethash gf all-generic-functions)
270                             (setf (gethash gf all-generic-functions) t)
271                             (funcall function gf))))))
272   nil)
273
274 (defmethod shared-initialize :after ((specl class-eq-specializer)
275                                      slot-names
276                                      &key)
277   (declare (ignore slot-names))
278   (setf (slot-value specl 'type) `(class-eq ,(specializer-class specl))))
279
280 (defmethod shared-initialize :after ((specl eql-specializer) slot-names &key)
281   (declare (ignore slot-names))
282   (setf (slot-value specl 'type) `(eql ,(specializer-object specl))))
283 \f
284 (defun real-load-defclass (name metaclass-name supers slots other)
285   (let ((res (apply #'ensure-class name :metaclass metaclass-name
286                     :direct-superclasses supers
287                     :direct-slots slots
288                     :definition-source `((defclass ,name)
289                                          ,*load-pathname*)
290                     other)))
291     res))
292
293 (setf (gdefinition 'load-defclass) #'real-load-defclass)
294
295 (defun ensure-class (name &rest args)
296   (apply #'ensure-class-using-class
297          (let ((class (find-class name nil)))
298            (when (and class (eq name (class-name class)))
299              ;; NAME is the proper name of CLASS, so redefine it
300              class))
301          name
302          args))
303
304 (defmethod ensure-class-using-class ((class null) name &rest args &key)
305   (multiple-value-bind (meta initargs)
306       (ensure-class-values class args)
307     (set-class-type-translation (class-prototype meta) name)
308     (setf class (apply #'make-instance meta :name name initargs)
309           (find-class name) class)
310     (set-class-type-translation class name)
311     class))
312
313 (defmethod ensure-class-using-class ((class pcl-class) name &rest args &key)
314   (multiple-value-bind (meta initargs)
315       (ensure-class-values class args)
316     (unless (eq (class-of class) meta)
317       (apply #'change-class class meta initargs))
318     (apply #'reinitialize-instance class initargs)
319     (setf (find-class name) class)
320     (set-class-type-translation class name)
321     class))
322
323 (defmethod class-predicate-name ((class t))
324   'constantly-nil)
325
326 (defun fix-super (s)
327   (cond ((classp s) s)
328         ((not (legal-class-name-p s))
329          (error "~S is not a class or a legal class name." s))
330         (t
331          (or (find-class s nil)
332              (make-instance 'forward-referenced-class
333                             :name s)))))
334
335 (defun ensure-class-values (class args)
336   (let* ((initargs (copy-list args))
337          (unsupplied (list 1))
338          (supplied-meta   (getf initargs :metaclass unsupplied))
339          (supplied-supers (getf initargs :direct-superclasses unsupplied))
340          (supplied-slots  (getf initargs :direct-slots unsupplied))
341          (meta
342            (cond ((neq supplied-meta unsupplied)
343                   (find-class supplied-meta))
344                  ((or (null class)
345                       (forward-referenced-class-p class))
346                   *the-class-standard-class*)
347                  (t
348                   (class-of class)))))
349     ;; KLUDGE: It seemed to me initially that there ought to be a way
350     ;; of collecting all the erroneous problems in one go, rather than
351     ;; this way of solving the problem of signalling the errors that
352     ;; we are required to, which stops at the first bogus input.
353     ;; However, after playing around a little, I couldn't find that
354     ;; way, so I've left it as is, but if someone does come up with a
355     ;; better way... -- CSR, 2002-09-08
356     (do ((direct-slots (getf initargs :direct-slots) (cdr direct-slots)))
357         ((endp direct-slots) nil)
358       (destructuring-bind (slot &rest more) direct-slots
359         (let ((slot-name (getf slot :name)))
360           (when (some (lambda (s) (eq slot-name (getf s :name))) more)
361             ;; FIXME: It's quite possible that we ought to define an
362             ;; SB-INT:PROGRAM-ERROR function to signal these and other
363             ;; errors throughout the codebase that are required to be
364             ;; of type PROGRAM-ERROR.
365             (error 'simple-program-error
366                    :format-control "~@<There is more than one direct slot ~
367                                    with name ~S.~:>"
368                    :format-arguments (list slot-name)))
369           (do ((stuff slot (cddr stuff)))
370               ((endp stuff) nil)
371             (destructuring-bind (option value &rest more) stuff
372               (cond
373                 ((and (member option '(:allocation :type
374                                        :initform :documentation))
375                       (not (eq unsupplied
376                                (getf more option unsupplied))))
377                  (error 'simple-program-error
378                         :format-control "~@<Duplicate slot option ~S for ~
379                                         slot named ~S.~:>"
380                         :format-arguments (list option slot-name)))
381                 ((and (eq option :readers)
382                       (notevery #'symbolp value))
383                  (error 'simple-program-error
384                         :format-control "~@<Slot reader names for slot ~
385                                         named ~S must be symbols.~:>"
386                         :format-arguments (list slot-name)))
387                 ((and (eq option :initargs)
388                       (notevery #'symbolp value))
389                  (error 'simple-program-error
390                         :format-control "~@<Slot initarg names for slot ~
391                                         named ~S must be symbols.~:>"
392                         :format-arguments (list slot-name)))))))))
393     (loop for (initarg . more) on (getf initargs :direct-default-initargs)
394           for name = (car initarg) 
395           when (some (lambda (a) (eq (car a) name)) more) 
396           do (error 'simple-program-error 
397                     :format-control "~@<Duplicate initialization argument ~
398                                     name ~S in :DEFAULT-INITARGS.~:>"
399                     :format-arguments (list name class)))
400     (let ((metaclass 0)
401           (default-initargs 0))
402       (do ((args initargs (cddr args)))
403           ((endp args) nil)
404         (case (car args)
405           (:metaclass
406            (when (> (incf metaclass) 1)
407              (error 'simple-program-error
408                     :format-control "~@<More than one :METACLASS ~
409                                     option specified.~:>")))
410           (:direct-default-initargs
411            (when (> (incf default-initargs) 1)
412              (error 'simple-program-error
413                     :format-control "~@<More than one :DEFAULT-INITARGS ~
414                                     option specified.~:>"))))))
415     (remf initargs :metaclass)
416     (loop (unless (remf initargs :direct-superclasses) (return)))
417     (loop (unless (remf initargs :direct-slots) (return)))
418     (values
419      meta
420      (nconc
421       (when (neq supplied-supers unsupplied)
422         (list :direct-superclasses (mapcar #'fix-super supplied-supers)))
423       (when (neq supplied-slots unsupplied)
424         (list :direct-slots supplied-slots))
425       initargs))))
426 \f
427 (defmethod shared-initialize :after
428            ((class std-class)
429             slot-names
430             &key (direct-superclasses nil direct-superclasses-p)
431                  (direct-slots nil direct-slots-p)
432                  (direct-default-initargs nil direct-default-initargs-p)
433                  (predicate-name nil predicate-name-p))
434   (declare (ignore slot-names))
435   (cond (direct-superclasses-p
436          (setq direct-superclasses
437                (or direct-superclasses
438                    (list (if (funcallable-standard-class-p class)
439                              *the-class-funcallable-standard-object*
440                              *the-class-standard-object*))))
441          (dolist (superclass direct-superclasses)
442            (unless (validate-superclass class superclass)
443              (error "The class ~S was specified as a~%
444                      super-class of the class ~S;~%~
445                      but the meta-classes ~S and~%~S are incompatible.~@
446                      Define a method for ~S to avoid this error."
447                      superclass class (class-of superclass) (class-of class)
448                      'validate-superclass)))
449          (setf (slot-value class 'direct-superclasses) direct-superclasses))
450         (t
451          (setq direct-superclasses (slot-value class 'direct-superclasses))))
452   (setq direct-slots
453         (if direct-slots-p
454             (setf (slot-value class 'direct-slots)
455                   (mapcar (lambda (pl) (make-direct-slotd class pl))
456                           direct-slots))
457             (slot-value class 'direct-slots)))
458   (if direct-default-initargs-p
459       (setf (plist-value class 'direct-default-initargs)
460             direct-default-initargs)
461       (setq direct-default-initargs
462             (plist-value class 'direct-default-initargs)))
463   (setf (plist-value class 'class-slot-cells)
464         ;; The below initializes shared slots from direct initforms,
465         ;; but one might inherit initforms from superclasses
466         ;; (cf. UPDATE-SHARED-SLOT-VALUES).
467         (let (collect)
468           (dolist (dslotd direct-slots)
469             (when (eq :class (slot-definition-allocation dslotd))
470               (let ((initfunction (slot-definition-initfunction dslotd)))
471                 (push (cons (slot-definition-name dslotd)
472                                (if initfunction
473                                    (funcall initfunction)
474                                    +slot-unbound+))
475                       collect))))
476           (nreverse collect)))
477   (setq predicate-name (if predicate-name-p
478                            (setf (slot-value class 'predicate-name)
479                                  (car predicate-name))
480                            (or (slot-value class 'predicate-name)
481                                (setf (slot-value class 'predicate-name)
482                                      (make-class-predicate-name (class-name
483                                                                  class))))))
484   (add-direct-subclasses class direct-superclasses)
485   (make-class-predicate class predicate-name)
486   (update-class class nil)
487   (do* ((slots (slot-value class 'slots) (cdr slots))
488         (dupes nil))
489        ((null slots) (when dupes
490                        (style-warn
491                         ;; FIXME: the indentation request ("~4I")
492                         ;; below appears not to do anything.  Finding
493                         ;; out why would be nice.  -- CSR, 2003-04-24
494                         "~@<slot names with the same SYMBOL-NAME but ~
495                          different SYMBOL-PACKAGE (possible package problem) ~
496                          for class ~S:~@:_~4I~<~@{~S~^~:@_~}~:>~@:>"
497                         class
498                         dupes)))
499     (let* ((slot (car slots))
500            (oslots (remove (slot-definition-name slot) (cdr slots)
501                            :test-not #'string= :key #'slot-definition-name)))
502       (when oslots
503         (pushnew (cons (slot-definition-name slot)
504                        (mapcar #'slot-definition-name oslots))
505                  dupes
506                  :test #'string= :key #'car))))
507   (add-slot-accessors class direct-slots)
508   (make-preliminary-layout class))
509
510 (defmethod shared-initialize :after ((class forward-referenced-class)
511                                      slot-names &key &allow-other-keys)
512   (declare (ignore slot-names))
513   (make-preliminary-layout class))
514
515 (defvar *allow-forward-referenced-classes-in-cpl-p* nil)
516
517 ;;; Give CLASS a preliminary layout if it doesn't have one already, to
518 ;;; make it known to the type system.
519 (defun make-preliminary-layout (class)
520   (flet ((compute-preliminary-cpl (root)
521            (let ((*allow-forward-referenced-classes-in-cpl-p* t))
522              (compute-class-precedence-list root))))
523     (unless (class-finalized-p class)
524       (let ((name (class-name class)))
525         (setf (find-class name) class)
526         ;; KLUDGE: This is fairly horrible.  We need to make a
527         ;; full-fledged CLASSOID here, not just tell the compiler that
528         ;; some class is forthcoming, because there are legitimate
529         ;; questions one can ask of the type system, implemented in
530         ;; terms of CLASSOIDs, involving forward-referenced classes. So.
531         (when (and (eq *boot-state* 'complete)
532                    (null (find-classoid name nil)))
533           (setf (find-classoid name)
534                 (make-standard-classoid :name name)))
535         (set-class-type-translation class name)
536         (let ((layout (make-wrapper 0 class))
537               (classoid (find-classoid name)))
538           (setf (layout-classoid layout) classoid)
539           (setf (classoid-pcl-class classoid) class)
540           (setf (slot-value class 'wrapper) layout)
541           (let ((cpl (compute-preliminary-cpl class)))
542             (setf (layout-inherits layout)
543                   (order-layout-inherits
544                    (map 'simple-vector #'class-wrapper
545                         (reverse (rest cpl))))))
546           (register-layout layout :invalidate t)
547           (setf (classoid-layout classoid) layout)
548           (mapc #'make-preliminary-layout (class-direct-subclasses class)))))))
549
550
551 (defmethod shared-initialize :before ((class class) slot-names &key name)
552   (declare (ignore slot-names name))
553   ;; FIXME: Could this just be CLASS instead of `(CLASS ,CLASS)? If not,
554   ;; why not? (See also similar expression in !BOOTSTRAP-INITIALIZE-CLASS.)
555   (setf (slot-value class 'type) `(class ,class))
556   (setf (slot-value class 'class-eq-specializer)
557         (make-instance 'class-eq-specializer :class class)))
558
559 (defmethod reinitialize-instance :before ((class slot-class) &key)
560   (remove-direct-subclasses class (class-direct-superclasses class))
561   (remove-slot-accessors    class (class-direct-slots class)))
562
563 (defmethod reinitialize-instance :after ((class slot-class)
564                                          &rest initargs
565                                          &key)
566   (map-dependents class
567                   (lambda (dependent)
568                     (apply #'update-dependent class dependent initargs))))
569
570 (defmethod shared-initialize :after ((class condition-class) slot-names
571                                      &key direct-slots direct-superclasses)
572   (declare (ignore slot-names))
573   (let ((classoid (find-classoid (class-name class))))
574     (with-slots (wrapper class-precedence-list prototype predicate-name
575                          (direct-supers direct-superclasses))
576         class
577       (setf (slot-value class 'direct-slots)
578             (mapcar (lambda (pl) (make-direct-slotd class pl))
579                     direct-slots))
580       (setf (slot-value class 'finalized-p) t)
581       (setf (classoid-pcl-class classoid) class)
582       (setq direct-supers direct-superclasses)
583       (setq wrapper (classoid-layout classoid))
584       (setq class-precedence-list (compute-class-precedence-list class))
585       (setq prototype (make-condition (class-name class)))
586       (add-direct-subclasses class direct-superclasses)
587       (setq predicate-name (make-class-predicate-name (class-name class)))
588       (make-class-predicate class predicate-name)
589       (setf (slot-value class 'slots) (compute-slots class))))
590   ;; Comment from Gerd's PCL, 2003-05-15:
591   ;;
592   ;; We don't ADD-SLOT-ACCESSORS here because we don't want to
593   ;; override condition accessors with generic functions.  We do this
594   ;; differently.
595   (update-pv-table-cache-info class))
596
597 (defmethod direct-slot-definition-class ((class condition-class)
598                                          &rest initargs)
599   (declare (ignore initargs))
600   (find-class 'condition-direct-slot-definition))
601
602 (defmethod effective-slot-definition-class ((class condition-class)
603                                             &rest initargs)
604   (declare (ignore initargs))
605   (find-class 'condition-effective-slot-definition))
606
607 (defmethod finalize-inheritance ((class condition-class))
608   (aver (slot-value class 'finalized-p))
609   nil)
610
611 (defmethod compute-effective-slot-definition
612     ((class condition-class) slot-name dslotds)
613   (let ((slotd (call-next-method)))
614     (setf (slot-definition-reader-function slotd)
615           (lambda (x)
616             (handler-case (condition-reader-function x slot-name)
617               ;; FIXME: FIND-SLOT-DEFAULT throws an error if the slot
618               ;; is unbound; maybe it should be a CELL-ERROR of some
619               ;; sort?
620               (error () (values (slot-unbound class x slot-name))))))
621     (setf (slot-definition-writer-function slotd)
622           (lambda (v x)
623             (condition-writer-function x v slot-name)))
624     (setf (slot-definition-boundp-function slotd)
625           (lambda (x)
626             (multiple-value-bind (v c)
627                 (ignore-errors (condition-reader-function x slot-name))
628               (declare (ignore v))
629               (null c))))
630     slotd))
631
632 (defmethod compute-slots ((class condition-class))
633   (mapcan (lambda (superclass)
634             (mapcar (lambda (dslotd)
635                       (compute-effective-slot-definition
636                        class (slot-definition-name dslotd) (list dslotd)))
637                     (class-direct-slots superclass)))
638           (reverse (slot-value class 'class-precedence-list))))
639
640 (defmethod compute-slots :around ((class condition-class))
641   (let ((eslotds (call-next-method)))
642     (mapc #'initialize-internal-slot-functions eslotds)
643     eslotds))
644
645 (defmethod shared-initialize :after
646     ((slotd structure-slot-definition) slot-names &key
647      (allocation :instance) allocation-class)
648   (declare (ignore slot-names allocation-class))
649   (unless (eq allocation :instance)
650     (error "Structure slots must have :INSTANCE allocation.")))
651
652 (defun make-structure-class-defstruct-form (name direct-slots include)
653   (let* ((conc-name (intern (format nil "~S structure class " name)))
654          (constructor (intern (format nil "~Aconstructor" conc-name)))
655          (defstruct `(defstruct (,name
656                                  ,@(when include
657                                          `((:include ,(class-name include))))
658                                  (:predicate nil)
659                                  (:conc-name ,conc-name)
660                                  (:constructor ,constructor ())
661                                  (:copier nil))
662                       ,@(mapcar (lambda (slot)
663                                   `(,(slot-definition-name slot)
664                                     +slot-unbound+))
665                                 direct-slots)))
666          (reader-names (mapcar (lambda (slotd)
667                                  (list 'slot-accessor name
668                                        (slot-definition-name slotd)
669                                        'reader))
670                                direct-slots))
671          (writer-names (mapcar (lambda (slotd)
672                                  (list 'slot-accessor name
673                                        (slot-definition-name slotd)
674                                        'writer))
675                                direct-slots))
676          (readers-init
677            (mapcar (lambda (slotd reader-name)
678                      (let ((accessor
679                              (slot-definition-defstruct-accessor-symbol
680                               slotd)))
681                        `(defun ,reader-name (obj)
682                          (declare (type ,name obj))
683                          (,accessor obj))))
684                    direct-slots reader-names))
685          (writers-init
686            (mapcar (lambda (slotd writer-name)
687                      (let ((accessor
688                              (slot-definition-defstruct-accessor-symbol
689                               slotd)))
690                        `(defun ,writer-name (nv obj)
691                          (declare (type ,name obj))
692                          (setf (,accessor obj) nv))))
693                    direct-slots writer-names))
694          (defstruct-form
695              `(progn
696                ,defstruct
697                ,@readers-init ,@writers-init
698                (cons nil nil))))
699     (values defstruct-form constructor reader-names writer-names)))
700
701 (defun make-defstruct-allocation-function (class)
702   (let ((dd (get-structure-dd (class-name class))))
703     (lambda ()
704       (let ((instance (%make-instance (dd-length dd)))
705             (raw-index (dd-raw-index dd)))
706         (setf (%instance-layout instance)
707               (sb-kernel::compiler-layout-or-lose (dd-name dd)))
708         (when raw-index
709           (setf (%instance-ref instance raw-index)
710                 (make-array (dd-raw-length dd)
711                             :element-type '(unsigned-byte 32))))
712         instance))))
713
714 (defmethod shared-initialize :after
715       ((class structure-class)
716        slot-names
717        &key (direct-superclasses nil direct-superclasses-p)
718             (direct-slots nil direct-slots-p)
719             direct-default-initargs
720             (predicate-name nil predicate-name-p))
721   (declare (ignore slot-names direct-default-initargs))
722   (if direct-superclasses-p
723       (setf (slot-value class 'direct-superclasses)
724             (or direct-superclasses
725                 (setq direct-superclasses
726                       (and (not (eq (class-name class) 'structure-object))
727                            (list *the-class-structure-object*)))))
728       (setq direct-superclasses (slot-value class 'direct-superclasses)))
729   (let* ((name (class-name class))
730          (from-defclass-p (slot-value class 'from-defclass-p))
731          (defstruct-p (or from-defclass-p (not (structure-type-p name)))))
732     (if direct-slots-p
733         (setf (slot-value class 'direct-slots)
734               (setq direct-slots
735                     (mapcar (lambda (pl)
736                               (when defstruct-p
737                                 (let* ((slot-name (getf pl :name))
738                                        (acc-name
739                                         (format nil
740                                                 "~S structure class ~A"
741                                                 name slot-name))
742                                        (accessor (intern acc-name)))
743                                   (setq pl (list* :defstruct-accessor-symbol
744                                                   accessor pl))))
745                               (make-direct-slotd class pl))
746                             direct-slots)))
747         (setq direct-slots (slot-value class 'direct-slots)))
748     (if defstruct-p
749         (let ((include (car (slot-value class 'direct-superclasses))))
750           (multiple-value-bind (defstruct-form constructor reader-names writer-names)
751               (make-structure-class-defstruct-form name direct-slots include)
752             (unless (structure-type-p name) (eval defstruct-form))
753             (mapc (lambda (dslotd reader-name writer-name)
754                     (let* ((reader (gdefinition reader-name))
755                            (writer (when (gboundp writer-name)
756                                      (gdefinition writer-name))))
757                       (setf (slot-value dslotd 'internal-reader-function)
758                             reader)
759                       (setf (slot-value dslotd 'internal-writer-function)
760                             writer)))
761                   direct-slots reader-names writer-names)
762             (setf (slot-value class 'defstruct-form) defstruct-form)
763             (setf (slot-value class 'defstruct-constructor) constructor)))
764         (setf (slot-value class 'defstruct-constructor)
765               (make-defstruct-allocation-function class)))
766     (add-direct-subclasses class direct-superclasses)
767     (setf (slot-value class 'class-precedence-list)
768             (compute-class-precedence-list class))
769     (setf (slot-value class 'slots) (compute-slots class))
770     (let ((lclass (find-classoid (class-name class))))
771       (setf (classoid-pcl-class lclass) class)
772       (setf (slot-value class 'wrapper) (classoid-layout lclass)))
773     (setf (slot-value class 'finalized-p) t)
774     (update-pv-table-cache-info class)
775     (setq predicate-name (if predicate-name-p
776                            (setf (slot-value class 'predicate-name)
777                                    (car predicate-name))
778                            (or (slot-value class 'predicate-name)
779                                (setf (slot-value class 'predicate-name)
780                                        (make-class-predicate-name
781                                         (class-name class))))))
782     (make-class-predicate class predicate-name)
783     (add-slot-accessors class direct-slots)))
784
785 (defmethod direct-slot-definition-class ((class structure-class) &rest initargs)
786   (declare (ignore initargs))
787   (find-class 'structure-direct-slot-definition))
788
789 (defmethod finalize-inheritance ((class structure-class))
790   nil) ; always finalized
791 \f
792 (defun add-slot-accessors (class dslotds)
793   (fix-slot-accessors class dslotds 'add))
794
795 (defun remove-slot-accessors (class dslotds)
796   (fix-slot-accessors class dslotds 'remove))
797
798 (defun fix-slot-accessors (class dslotds add/remove)
799   (flet ((fix (gfspec name r/w)
800            (let* ((ll (case r/w (r '(object)) (w '(new-value object))))
801                   (gf (if (fboundp gfspec)
802                           (ensure-generic-function gfspec)
803                           (ensure-generic-function gfspec :lambda-list ll))))
804              (case r/w
805                (r (if (eq add/remove 'add)
806                       (add-reader-method class gf name)
807                       (remove-reader-method class gf)))
808                (w (if (eq add/remove 'add)
809                       (add-writer-method class gf name)
810                       (remove-writer-method class gf)))))))
811     (dolist (dslotd dslotds)
812       (let ((slot-name (slot-definition-name dslotd)))
813         (dolist (r (slot-definition-readers dslotd)) (fix r slot-name 'r))
814         (dolist (w (slot-definition-writers dslotd)) (fix w slot-name 'w))))))
815 \f
816 (defun add-direct-subclasses (class supers)
817   (dolist (super supers)
818     (unless (memq class (class-direct-subclasses class))
819       (add-direct-subclass super class))))
820
821 (defun remove-direct-subclasses (class supers)
822   (let ((old (class-direct-superclasses class)))
823     (dolist (o (set-difference old supers))
824       (remove-direct-subclass o class))))
825 \f
826 (defmethod finalize-inheritance ((class std-class))
827   (update-class class t))
828
829 (defmethod finalize-inheritance ((class forward-referenced-class))
830   ;; FIXME: should we not be thinking a bit about what kinds of error
831   ;; we're throwing?  Maybe we need a clos-error type to mix in?  Or
832   ;; possibly a forward-referenced-class-error, though that's
833   ;; difficult given e.g. class precedence list calculations...
834   (error
835    "~@<FINALIZE-INHERITANCE was called on a forward referenced class:~
836        ~2I~_~S~:>"
837    class))
838
839 \f
840 (defun class-has-a-forward-referenced-superclass-p (class)
841   (or (forward-referenced-class-p class)
842       (some #'class-has-a-forward-referenced-superclass-p
843             (class-direct-superclasses class))))
844
845 ;;; This is called by :after shared-initialize whenever a class is initialized
846 ;;; or reinitialized. The class may or may not be finalized.
847 (defun update-class (class finalizep)
848   ;; Comment from Gerd Moellmann:
849   ;;
850   ;; Note that we can't simply delay the finalization when CLASS has
851   ;; no forward referenced superclasses because that causes bootstrap
852   ;; problems.
853   (when (and (not finalizep)
854              (not (class-finalized-p class))
855              (not (class-has-a-forward-referenced-superclass-p class)))
856     (finalize-inheritance class)
857     (return-from update-class))
858   (when (or finalizep (class-finalized-p class)
859             (not (class-has-a-forward-referenced-superclass-p class)))
860     (setf (find-class (class-name class)) class)
861     (update-cpl class (compute-class-precedence-list class))
862     ;; This invocation of UPDATE-SLOTS, in practice, finalizes the
863     ;; class.  The hoops above are to ensure that FINALIZE-INHERITANCE
864     ;; is called at finalization, so that MOP programmers can hook
865     ;; into the system as described in "Class Finalization Protocol"
866     ;; (section 5.5.2 of AMOP).
867     (update-slots class (compute-slots class))
868     (update-gfs-of-class class)
869     (update-inits class (compute-default-initargs class))
870     (update-shared-slot-values class)
871     (update-ctors 'finalize-inheritance :class class))
872   (unless finalizep
873     (dolist (sub (class-direct-subclasses class)) (update-class sub nil))))
874
875 (defun update-shared-slot-values (class)
876   (dolist (slot (class-slots class))
877     (when (eq (slot-definition-allocation slot) :class)
878       (let ((cell (assq (slot-definition-name slot) (class-slot-cells class))))
879         (when cell
880           (let ((initfn (slot-definition-initfunction slot)))
881             (when initfn
882               (setf (cdr cell) (funcall initfn)))))))))
883
884 (defun update-cpl (class cpl)
885   (if (class-finalized-p class)
886       (unless (and (equal (class-precedence-list class) cpl)
887                    (dolist (c cpl t)
888                      (when (position :class (class-direct-slots c)
889                                      :key #'slot-definition-allocation)
890                        (return nil))))
891         ;; comment from the old CMU CL sources:
892         ;;   Need to have the cpl setup before update-lisp-class-layout
893         ;;   is called on CMU CL.
894         (setf (slot-value class 'class-precedence-list) cpl)
895         (force-cache-flushes class))
896       (setf (slot-value class 'class-precedence-list) cpl))
897   (update-class-can-precede-p cpl))
898
899 (defun update-class-can-precede-p (cpl)
900   (when cpl
901     (let ((first (car cpl)))
902       (dolist (c (cdr cpl))
903         (pushnew c (slot-value first 'can-precede-list))))
904     (update-class-can-precede-p (cdr cpl))))
905
906 (defun class-can-precede-p (class1 class2)
907   (member class2 (class-can-precede-list class1)))
908
909 (defun update-slots (class eslotds)
910   (let ((instance-slots ())
911         (class-slots    ()))
912     (dolist (eslotd eslotds)
913       (let ((alloc (slot-definition-allocation eslotd)))
914         (case alloc
915           (:instance (push eslotd instance-slots))
916           (:class (push eslotd class-slots)))))
917
918     ;; If there is a change in the shape of the instances then the
919     ;; old class is now obsolete.
920     (let* ((nlayout (mapcar #'slot-definition-name
921                             (sort instance-slots #'<
922                                   :key #'slot-definition-location)))
923            (nslots (length nlayout))
924            (nwrapper-class-slots (compute-class-slots class-slots))
925            (owrapper (when (class-finalized-p class)
926                        (class-wrapper class)))
927            (olayout (when owrapper
928                       (wrapper-instance-slots-layout owrapper)))
929            (owrapper-class-slots (and owrapper (wrapper-class-slots owrapper)))
930            (nwrapper
931             (cond ((null owrapper)
932                    (make-wrapper nslots class))
933                   ((and (equal nlayout olayout)
934                         (not
935                          (loop for o in owrapper-class-slots
936                                for n in nwrapper-class-slots
937                                do (unless (eq (car o) (car n)) (return t)))))
938                    owrapper)
939                   (t
940                    ;; This will initialize the new wrapper to have the
941                    ;; same state as the old wrapper. We will then have
942                    ;; to change that. This may seem like wasted work
943                    ;; (and it is), but the spec requires that we call
944                    ;; MAKE-INSTANCES-OBSOLETE.
945                    (make-instances-obsolete class)
946                    (class-wrapper class)))))
947
948       (with-slots (wrapper slots) class
949         (update-lisp-class-layout class nwrapper)
950         (setf slots eslotds
951               (wrapper-instance-slots-layout nwrapper) nlayout
952               (wrapper-class-slots nwrapper) nwrapper-class-slots
953               (wrapper-no-of-instance-slots nwrapper) nslots
954               wrapper nwrapper))
955       (setf (slot-value class 'finalized-p) t)
956       (unless (eq owrapper nwrapper)
957         (update-pv-table-cache-info class)
958         (maybe-update-standard-class-locations class)))))
959
960 (defun compute-class-slots (eslotds)
961   (let (collect)
962     (dolist (eslotd eslotds)
963       (push (assoc (slot-definition-name eslotd)
964                    (class-slot-cells (slot-definition-class eslotd)))
965             collect))
966     (nreverse collect)))
967
968 (defun update-gfs-of-class (class)
969   (when (and (class-finalized-p class)
970              (let ((cpl (class-precedence-list class)))
971                (or (member *the-class-slot-class* cpl)
972                    (member *the-class-standard-effective-slot-definition*
973                            cpl))))
974     (let ((gf-table (make-hash-table :test 'eq)))
975       (labels ((collect-gfs (class)
976                  (dolist (gf (specializer-direct-generic-functions class))
977                    (setf (gethash gf gf-table) t))
978                  (mapc #'collect-gfs (class-direct-superclasses class))))
979         (collect-gfs class)
980         (maphash (lambda (gf ignore)
981                    (declare (ignore ignore))
982                    (update-gf-dfun class gf))
983                  gf-table)))))
984
985 (defun update-inits (class inits)
986   (setf (plist-value class 'default-initargs) inits))
987 \f
988 (defmethod compute-default-initargs ((class slot-class))
989   (let ((initargs (loop for c in (class-precedence-list class)
990                         append (class-direct-default-initargs c))))
991     (delete-duplicates initargs :test #'eq :key #'car :from-end t)))
992 \f
993 ;;;; protocols for constructing direct and effective slot definitions
994
995 (defmethod direct-slot-definition-class ((class std-class) &rest initargs)
996   (declare (ignore initargs))
997   (find-class 'standard-direct-slot-definition))
998
999 (defun make-direct-slotd (class initargs)
1000   (let ((initargs (list* :class class initargs)))
1001     (apply #'make-instance
1002            (apply #'direct-slot-definition-class class initargs)
1003            initargs)))
1004
1005 (defmethod compute-slots ((class std-class))
1006   ;; As specified, we must call COMPUTE-EFFECTIVE-SLOT-DEFINITION once
1007   ;; for each different slot name we find in our superclasses. Each
1008   ;; call receives the class and a list of the dslotds with that name.
1009   ;; The list is in most-specific-first order.
1010   (let ((name-dslotds-alist ()))
1011     (dolist (c (class-precedence-list class))
1012       (dolist (slot (class-direct-slots c))
1013         (let* ((name (slot-definition-name slot))
1014                (entry (assq name name-dslotds-alist)))
1015           (if entry
1016               (push slot (cdr entry))
1017               (push (list name slot) name-dslotds-alist)))))
1018     (mapcar (lambda (direct)
1019               (compute-effective-slot-definition class
1020                                                  (car direct)
1021                                                  (nreverse (cdr direct))))
1022             name-dslotds-alist)))
1023
1024 (defmethod compute-slots ((class standard-class))
1025   (call-next-method))
1026
1027 (defmethod compute-slots :around ((class standard-class))
1028   (let ((eslotds (call-next-method))
1029         (location -1))
1030     (dolist (eslotd eslotds eslotds)
1031       (setf (slot-definition-location eslotd)
1032             (ecase (slot-definition-allocation eslotd)
1033               (:instance
1034                (incf location))
1035               (:class
1036                (let* ((name (slot-definition-name eslotd))
1037                       (from-class (slot-definition-allocation-class eslotd))
1038                       (cell (assq name (class-slot-cells from-class))))
1039                  (aver (consp cell))
1040                  cell))))
1041       (initialize-internal-slot-functions eslotd))))
1042
1043 (defmethod compute-slots ((class funcallable-standard-class))
1044   (call-next-method))
1045
1046 (defmethod compute-slots :around ((class funcallable-standard-class))
1047   (labels ((instance-slot-names (slotds)
1048              (let (collect)
1049                (dolist (slotd slotds (nreverse collect))
1050                  (when (eq (slot-definition-allocation slotd) :instance)
1051                    (push (slot-definition-name slotd) collect)))))
1052            ;; This sorts slots so that slots of classes later in the CPL
1053            ;; come before slots of other classes.  This is crucial for
1054            ;; funcallable instances because it ensures that the slots of
1055            ;; FUNCALLABLE-STANDARD-OBJECT, which includes the slots of
1056            ;; KERNEL:FUNCALLABLE-INSTANCE, come first, which in turn
1057            ;; makes it possible to treat FUNCALLABLE-STANDARD-OBJECT as
1058            ;; a funcallable instance.
1059            (compute-layout (eslotds)
1060              (let ((first ())
1061                    (names (instance-slot-names eslotds)))
1062                (dolist (class
1063                         (reverse (class-precedence-list class))
1064                         (nreverse (nconc names first)))
1065                  (dolist (ss (class-slots class))
1066                    (let ((name (slot-definition-name ss)))
1067                      (when (member name names)
1068                        (push name first)
1069                        (setq names (delete name names)))))))))
1070     (let ((all-slotds (call-next-method))
1071           (instance-slots ())
1072           (class-slots ()))
1073       (dolist (slotd all-slotds)
1074         (ecase (slot-definition-allocation slotd)
1075           (:instance (push slotd instance-slots))
1076           (:class (push slotd class-slots))))
1077       (let ((layout (compute-layout instance-slots)))
1078         (dolist (slotd instance-slots)
1079           (setf (slot-definition-location slotd)
1080                 (position (slot-definition-name slotd) layout))
1081           (initialize-internal-slot-functions slotd)))
1082       (dolist (slotd class-slots)
1083         (let ((name (slot-definition-name slotd))
1084               (from-class (slot-definition-allocation-class slotd)))
1085           (setf (slot-definition-location slotd)
1086                 (assoc name (class-slot-cells from-class)))
1087           (aver (consp (slot-definition-location slotd)))
1088           (initialize-internal-slot-functions slotd)))
1089       all-slotds)))
1090
1091 (defmethod compute-slots ((class structure-class))
1092   (mapcan (lambda (superclass)
1093             (mapcar (lambda (dslotd)
1094                       (compute-effective-slot-definition
1095                        class
1096                        (slot-definition-name dslotd)
1097                        (list dslotd)))
1098                     (class-direct-slots superclass)))
1099           (reverse (slot-value class 'class-precedence-list))))
1100
1101 (defmethod compute-slots :around ((class structure-class))
1102   (let ((eslotds (call-next-method)))
1103     (mapc #'initialize-internal-slot-functions eslotds)
1104     eslotds))
1105
1106 (defmethod compute-effective-slot-definition ((class slot-class) name dslotds)
1107   (declare (ignore name))
1108   (let* ((initargs (compute-effective-slot-definition-initargs class dslotds))
1109          (class (apply #'effective-slot-definition-class class initargs)))
1110     (apply #'make-instance class initargs)))
1111
1112 (defmethod effective-slot-definition-class ((class std-class) &rest initargs)
1113   (declare (ignore initargs))
1114   (find-class 'standard-effective-slot-definition))
1115
1116 (defmethod effective-slot-definition-class ((class structure-class) &rest initargs)
1117   (declare (ignore initargs))
1118   (find-class 'structure-effective-slot-definition))
1119
1120 (defmethod compute-effective-slot-definition-initargs
1121     ((class slot-class) direct-slotds)
1122   (let* ((name nil)
1123          (initfunction nil)
1124          (initform nil)
1125          (initargs nil)
1126          (allocation nil)
1127          (allocation-class nil)
1128          (type t)
1129          (namep  nil)
1130          (initp  nil)
1131          (allocp nil))
1132
1133     (dolist (slotd direct-slotds)
1134       (when slotd
1135         (unless namep
1136           (setq name (slot-definition-name slotd)
1137                 namep t))
1138         (unless initp
1139           (when (slot-definition-initfunction slotd)
1140             (setq initform (slot-definition-initform slotd)
1141                   initfunction (slot-definition-initfunction slotd)
1142                   initp t)))
1143         (unless allocp
1144           (setq allocation (slot-definition-allocation slotd)
1145                 allocation-class (slot-definition-class slotd)
1146                 allocp t))
1147         (setq initargs (append (slot-definition-initargs slotd) initargs))
1148         (let ((slotd-type (slot-definition-type slotd)))
1149           (setq type (cond ((eq type t) slotd-type)
1150                            ((*subtypep type slotd-type) type)
1151                            (t `(and ,type ,slotd-type)))))))
1152     (list :name name
1153           :initform initform
1154           :initfunction initfunction
1155           :initargs initargs
1156           :allocation allocation
1157           :allocation-class allocation-class
1158           :type type
1159           :class class)))
1160
1161 (defmethod compute-effective-slot-definition-initargs :around
1162     ((class structure-class) direct-slotds)
1163   (let ((slotd (car direct-slotds)))
1164     (list* :defstruct-accessor-symbol
1165            (slot-definition-defstruct-accessor-symbol slotd)
1166            :internal-reader-function
1167            (slot-definition-internal-reader-function slotd)
1168            :internal-writer-function
1169            (slot-definition-internal-writer-function slotd)
1170            (call-next-method))))
1171 \f
1172 ;;; NOTE: For bootstrapping considerations, these can't use MAKE-INSTANCE
1173 ;;;       to make the method object. They have to use make-a-method which
1174 ;;;       is a specially bootstrapped mechanism for making standard methods.
1175 (defmethod reader-method-class ((class slot-class) direct-slot &rest initargs)
1176   (declare (ignore direct-slot initargs))
1177   (find-class 'standard-reader-method))
1178
1179 (defmethod add-reader-method ((class slot-class) generic-function slot-name)
1180   (add-method generic-function
1181               (make-a-method 'standard-reader-method
1182                              ()
1183                              (list (or (class-name class) 'object))
1184                              (list class)
1185                              (make-reader-method-function class slot-name)
1186                              "automatically generated reader method"
1187                              slot-name)))
1188
1189 (defmethod writer-method-class ((class slot-class) direct-slot &rest initargs)
1190   (declare (ignore direct-slot initargs))
1191   (find-class 'standard-writer-method))
1192
1193 (defmethod add-writer-method ((class slot-class) generic-function slot-name)
1194   (add-method generic-function
1195               (make-a-method 'standard-writer-method
1196                              ()
1197                              (list 'new-value (or (class-name class) 'object))
1198                              (list *the-class-t* class)
1199                              (make-writer-method-function class slot-name)
1200                              "automatically generated writer method"
1201                              slot-name)))
1202
1203 (defmethod add-boundp-method ((class slot-class) generic-function slot-name)
1204   (add-method generic-function
1205               (make-a-method 'standard-boundp-method
1206                              ()
1207                              (list (or (class-name class) 'object))
1208                              (list class)
1209                              (make-boundp-method-function class slot-name)
1210                              "automatically generated boundp method"
1211                              slot-name)))
1212
1213 (defmethod remove-reader-method ((class slot-class) generic-function)
1214   (let ((method (get-method generic-function () (list class) nil)))
1215     (when method (remove-method generic-function method))))
1216
1217 (defmethod remove-writer-method ((class slot-class) generic-function)
1218   (let ((method
1219           (get-method generic-function () (list *the-class-t* class) nil)))
1220     (when method (remove-method generic-function method))))
1221
1222 (defmethod remove-boundp-method ((class slot-class) generic-function)
1223   (let ((method (get-method generic-function () (list class) nil)))
1224     (when method (remove-method generic-function method))))
1225 \f
1226 ;;; MAKE-READER-METHOD-FUNCTION and MAKE-WRITE-METHOD function are NOT
1227 ;;; part of the standard protocol. They are however useful, PCL makes
1228 ;;; use of them internally and documents them for PCL users.
1229 ;;;
1230 ;;; *** This needs work to make type testing by the writer functions which
1231 ;;; *** do type testing faster. The idea would be to have one constructor
1232 ;;; *** for each possible type test.
1233 ;;;
1234 ;;; *** There is a subtle bug here which is going to have to be fixed.
1235 ;;; *** Namely, the simplistic use of the template has to be fixed. We
1236 ;;; *** have to give the OPTIMIZE-SLOT-VALUE method the user might have
1237 ;;; *** defined for this metaclass a chance to run.
1238
1239 (defmethod make-reader-method-function ((class slot-class) slot-name)
1240   (make-std-reader-method-function (class-name class) slot-name))
1241
1242 (defmethod make-writer-method-function ((class slot-class) slot-name)
1243   (make-std-writer-method-function (class-name class) slot-name))
1244
1245 (defmethod make-boundp-method-function ((class slot-class) slot-name)
1246   (make-std-boundp-method-function (class-name class) slot-name))
1247 \f
1248 (defmethod compatible-meta-class-change-p (class proto-new-class)
1249   (eq (class-of class) (class-of proto-new-class)))
1250
1251 (defmethod validate-superclass ((class class) (new-super class))
1252   (or (eq new-super *the-class-t*)
1253       (eq (class-of class) (class-of new-super))))
1254
1255 (defmethod validate-superclass ((class standard-class) (new-super std-class))
1256   (let ((new-super-meta-class (class-of new-super)))
1257     (or (eq new-super-meta-class *the-class-std-class*)
1258         (eq (class-of class) new-super-meta-class))))
1259 \f
1260 ;;; What this does depends on which of the four possible values of
1261 ;;; LAYOUT-INVALID the PCL wrapper has; the simplest case is when it
1262 ;;; is (:FLUSH <wrapper>) or (:OBSOLETE <wrapper>), when there is
1263 ;;; nothing to do, as the new wrapper has already been created.  If
1264 ;;; LAYOUT-INVALID returns NIL, then we invalidate it (setting it to
1265 ;;; (:FLUSH <wrapper>); UPDATE-SLOTS later gets to choose whether or
1266 ;;; not to "upgrade" this to (:OBSOLETE <wrapper>).
1267 ;;;
1268 ;;; This leaves the case where LAYOUT-INVALID returns T, which happens
1269 ;;; when REGISTER-LAYOUT has invalidated a superclass of CLASS (which
1270 ;;; invalidated all the subclasses in SB-KERNEL land).  Again, here we
1271 ;;; must flush the caches and allow UPDATE-SLOTS to decide whether to
1272 ;;; obsolete the wrapper.
1273 ;;;
1274 ;;; FIXME: either here or in INVALID-WRAPPER-P looks like a good place
1275 ;;; for (AVER (NOT (EQ (LAYOUT-INVALID OWRAPPER)
1276 ;;;                    :UNINITIALIZED)))
1277 ;;;
1278 ;;; Thanks to Gerd Moellmann for the explanation.  -- CSR, 2002-10-29
1279 (defun force-cache-flushes (class)
1280   (let* ((owrapper (class-wrapper class)))
1281     ;; We only need to do something if the wrapper is still valid. If
1282     ;; the wrapper isn't valid, state will be FLUSH or OBSOLETE, and
1283     ;; both of those will already be doing what we want. In
1284     ;; particular, we must be sure we never change an OBSOLETE into a
1285     ;; FLUSH since OBSOLETE means do what FLUSH does and then some.
1286     (when (or (not (invalid-wrapper-p owrapper))
1287               ;; KLUDGE: despite the observations above, this remains
1288               ;; a violation of locality or what might be considered
1289               ;; good style.  There has to be a better way!  -- CSR,
1290               ;; 2002-10-29
1291               (eq (layout-invalid owrapper) t))
1292       (let ((nwrapper (make-wrapper (wrapper-no-of-instance-slots owrapper)
1293                                     class)))
1294         (setf (wrapper-instance-slots-layout nwrapper)
1295               (wrapper-instance-slots-layout owrapper))
1296         (setf (wrapper-class-slots nwrapper)
1297               (wrapper-class-slots owrapper))
1298         (with-pcl-lock
1299           (update-lisp-class-layout class nwrapper)
1300           (setf (slot-value class 'wrapper) nwrapper)
1301           (invalidate-wrapper owrapper :flush nwrapper))))))
1302
1303 (defun flush-cache-trap (owrapper nwrapper instance)
1304   (declare (ignore owrapper))
1305   (set-wrapper instance nwrapper))
1306 \f
1307 ;;; MAKE-INSTANCES-OBSOLETE can be called by user code. It will cause
1308 ;;; the next access to the instance (as defined in 88-002R) to trap
1309 ;;; through the UPDATE-INSTANCE-FOR-REDEFINED-CLASS mechanism.
1310 (defmethod make-instances-obsolete ((class std-class))
1311   (let* ((owrapper (class-wrapper class))
1312          (nwrapper (make-wrapper (wrapper-no-of-instance-slots owrapper)
1313                                  class)))
1314       (setf (wrapper-instance-slots-layout nwrapper)
1315             (wrapper-instance-slots-layout owrapper))
1316       (setf (wrapper-class-slots nwrapper)
1317             (wrapper-class-slots owrapper))
1318       (with-pcl-lock
1319         (update-lisp-class-layout class nwrapper)
1320         (setf (slot-value class 'wrapper) nwrapper)
1321         (invalidate-wrapper owrapper :obsolete nwrapper)
1322         class)))
1323
1324 (defmethod make-instances-obsolete ((class symbol))
1325   (make-instances-obsolete (find-class class)))
1326
1327 ;;; OBSOLETE-INSTANCE-TRAP is the internal trap that is called when we
1328 ;;; see an obsolete instance. The times when it is called are:
1329 ;;;   - when the instance is involved in method lookup
1330 ;;;   - when attempting to access a slot of an instance
1331 ;;;
1332 ;;; It is not called by class-of, wrapper-of, or any of the low-level
1333 ;;; instance access macros.
1334 ;;;
1335 ;;; Of course these times when it is called are an internal
1336 ;;; implementation detail of PCL and are not part of the documented
1337 ;;; description of when the obsolete instance update happens. The
1338 ;;; documented description is as it appears in 88-002R.
1339 ;;;
1340 ;;; This has to return the new wrapper, so it counts on all the
1341 ;;; methods on obsolete-instance-trap-internal to return the new
1342 ;;; wrapper. It also does a little internal error checking to make
1343 ;;; sure that the traps are only happening when they should, and that
1344 ;;; the trap methods are computing appropriate new wrappers.
1345
1346 ;;; OBSOLETE-INSTANCE-TRAP might be called on structure instances
1347 ;;; after a structure is redefined. In most cases,
1348 ;;; OBSOLETE-INSTANCE-TRAP will not be able to fix the old instance,
1349 ;;; so it must signal an error. The hard part of this is that the
1350 ;;; error system and debugger might cause OBSOLETE-INSTANCE-TRAP to be
1351 ;;; called again, so in that case, we have to return some reasonable
1352 ;;; wrapper, instead.
1353
1354 (defvar *in-obsolete-instance-trap* nil)
1355 (defvar *the-wrapper-of-structure-object*
1356   (class-wrapper (find-class 'structure-object)))
1357
1358 (define-condition obsolete-structure (error)
1359   ((datum :reader obsolete-structure-datum :initarg :datum))
1360   (:report
1361    (lambda (condition stream)
1362      ;; Don't try to print the structure, since it probably won't work.
1363      (format stream
1364              "~@<obsolete structure error for a structure of type ~2I~_~S~:>"
1365              (type-of (obsolete-structure-datum condition))))))
1366
1367 (defun obsolete-instance-trap (owrapper nwrapper instance)
1368   (if (not (pcl-instance-p instance))
1369       (if *in-obsolete-instance-trap*
1370           *the-wrapper-of-structure-object*
1371            (let ((*in-obsolete-instance-trap* t))
1372              (error 'obsolete-structure :datum instance)))
1373       (let* ((class (wrapper-class* nwrapper))
1374              (copy (allocate-instance class)) ;??? allocate-instance ???
1375              (olayout (wrapper-instance-slots-layout owrapper))
1376              (nlayout (wrapper-instance-slots-layout nwrapper))
1377              (oslots (get-slots instance))
1378              (nslots (get-slots copy))
1379              (oclass-slots (wrapper-class-slots owrapper))
1380              (added ())
1381              (discarded ())
1382              (plist ()))
1383         ;; local  --> local     transfer
1384         ;; local  --> shared       discard
1385         ;; local  -->  --         discard
1386         ;; shared --> local     transfer
1387         ;; shared --> shared       discard
1388         ;; shared -->  --         discard
1389         ;;  --    --> local     add
1390         ;;  --    --> shared    --
1391
1392         ;; Go through all the old local slots.
1393         (let ((opos 0))
1394           (dolist (name olayout)
1395             (let ((npos (posq name nlayout)))
1396               (if npos
1397                   (setf (clos-slots-ref nslots npos)
1398                         (clos-slots-ref oslots opos))
1399                   (progn
1400                     (push name discarded)
1401                     (unless (eq (clos-slots-ref oslots opos) +slot-unbound+)
1402                       (setf (getf plist name) (clos-slots-ref oslots opos))))))
1403             (incf opos)))
1404
1405         ;; Go through all the old shared slots.
1406         (dolist (oclass-slot-and-val oclass-slots)
1407           (let ((name (car oclass-slot-and-val))
1408                 (val (cdr oclass-slot-and-val)))
1409             (let ((npos (posq name nlayout)))
1410               (if npos
1411                   (setf (clos-slots-ref nslots npos) (cdr oclass-slot-and-val))
1412                   (progn (push name discarded)
1413                          (unless (eq val +slot-unbound+)
1414                            (setf (getf plist name) val)))))))
1415
1416         ;; Go through all the new local slots to compute the added slots.
1417         (dolist (nlocal nlayout)
1418           (unless (or (memq nlocal olayout)
1419                       (assq nlocal oclass-slots))
1420             (push nlocal added)))
1421
1422         (swap-wrappers-and-slots instance copy)
1423
1424         (update-instance-for-redefined-class instance
1425                                              added
1426                                              discarded
1427                                              plist)
1428         nwrapper)))
1429 \f
1430 (defun change-class-internal (instance new-class initargs)
1431   (let* ((old-class (class-of instance))
1432          (copy (allocate-instance new-class))
1433          (new-wrapper (get-wrapper copy))
1434          (old-wrapper (class-wrapper old-class))
1435          (old-layout (wrapper-instance-slots-layout old-wrapper))
1436          (new-layout (wrapper-instance-slots-layout new-wrapper))
1437          (old-slots (get-slots instance))
1438          (new-slots (get-slots copy))
1439          (old-class-slots (wrapper-class-slots old-wrapper)))
1440
1441     ;; "The values of local slots specified by both the class CTO and
1442     ;; CFROM are retained. If such a local slot was unbound, it
1443     ;; remains unbound."
1444     (let ((new-position 0))
1445       (dolist (new-slot new-layout)
1446         (let ((old-position (posq new-slot old-layout)))
1447           (when old-position
1448             (setf (clos-slots-ref new-slots new-position)
1449                   (clos-slots-ref old-slots old-position))))
1450         (incf new-position)))
1451
1452     ;; "The values of slots specified as shared in the class CFROM and
1453     ;; as local in the class CTO are retained."
1454     (dolist (slot-and-val old-class-slots)
1455       (let ((position (posq (car slot-and-val) new-layout)))
1456         (when position
1457           (setf (clos-slots-ref new-slots position) (cdr slot-and-val)))))
1458
1459     ;; Make the copy point to the old instance's storage, and make the
1460     ;; old instance point to the new storage.
1461     (swap-wrappers-and-slots instance copy)
1462
1463     (apply #'update-instance-for-different-class copy instance initargs)
1464     instance))
1465
1466 (defmethod change-class ((instance standard-object)
1467                          (new-class standard-class)
1468                          &rest initargs)
1469   (change-class-internal instance new-class initargs))
1470
1471 (defmethod change-class ((instance funcallable-standard-object)
1472                          (new-class funcallable-standard-class)
1473                          &rest initargs)
1474   (change-class-internal instance new-class initargs))
1475
1476 (defmethod change-class ((instance standard-object)
1477                          (new-class funcallable-standard-class)
1478                          &rest initargs)
1479   (declare (ignore initargs))
1480   (error "You can't change the class of ~S to ~S~@
1481           because it isn't already an instance with metaclass ~S."
1482          instance new-class 'standard-class))
1483
1484 (defmethod change-class ((instance funcallable-standard-object)
1485                          (new-class standard-class)
1486                          &rest initargs)
1487   (declare (ignore initargs))
1488   (error "You can't change the class of ~S to ~S~@
1489           because it isn't already an instance with metaclass ~S."
1490          instance new-class 'funcallable-standard-class))
1491
1492 (defmethod change-class ((instance t) (new-class-name symbol) &rest initargs)
1493   (apply #'change-class instance (find-class new-class-name) initargs))
1494 \f
1495 ;;;; The metaclass BUILT-IN-CLASS
1496 ;;;;
1497 ;;;; This metaclass is something of a weird creature. By this point, all
1498 ;;;; instances of it which will exist have been created, and no instance
1499 ;;;; is ever created by calling MAKE-INSTANCE.
1500 ;;;;
1501 ;;;; But, there are other parts of the protocol we must follow and those
1502 ;;;; definitions appear here.
1503
1504 (defmethod shared-initialize :before
1505            ((class built-in-class) slot-names &rest initargs)
1506   (declare (ignore slot-names initargs))
1507   (error "attempt to initialize or reinitialize a built in class"))
1508
1509 (defmethod class-direct-slots       ((class built-in-class)) ())
1510 (defmethod class-slots             ((class built-in-class)) ())
1511 (defmethod class-direct-default-initargs ((class built-in-class)) ())
1512 (defmethod class-default-initargs       ((class built-in-class)) ())
1513
1514 (defmethod validate-superclass ((c class) (s built-in-class))
1515   (or (eq s *the-class-t*)
1516       (eq s *the-class-stream*)))
1517 \f
1518 ;;; Some necessary methods for FORWARD-REFERENCED-CLASS
1519 (defmethod class-direct-slots ((class forward-referenced-class)) ())
1520 (defmethod class-direct-default-initargs ((class forward-referenced-class)) ())
1521 (macrolet ((def (method)
1522              `(defmethod ,method ((class forward-referenced-class))
1523                 (error "~@<~I~S was called on a forward referenced class:~2I~_~S~:>"
1524                        ',method class))))
1525   (def class-default-initargs)
1526   (def class-precedence-list)
1527   (def class-slots))
1528
1529 (defmethod validate-superclass ((c slot-class)
1530                                 (f forward-referenced-class))
1531   t)
1532 \f
1533 (defmethod add-dependent ((metaobject dependent-update-mixin) dependent)
1534   (pushnew dependent (plist-value metaobject 'dependents)))
1535
1536 (defmethod remove-dependent ((metaobject dependent-update-mixin) dependent)
1537   (setf (plist-value metaobject 'dependents)
1538         (delete dependent (plist-value metaobject 'dependents))))
1539
1540 (defmethod map-dependents ((metaobject dependent-update-mixin) function)
1541   (dolist (dependent (plist-value metaobject 'dependents))
1542     (funcall function dependent)))
1543