f8bd0bddc7018f831bb5c608843c406c3b06ae77
[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 (defmethod compute-slot-accessor-info ((slotd effective-slot-definition)
90                                        type gf)
91   (let* ((name (slot-value slotd 'name))
92          (class (slot-value slotd 'class))
93          (old-slotd (find-slot-definition class name))
94          (old-std-p (and old-slotd (slot-accessor-std-p old-slotd 'all))))
95     (multiple-value-bind (function std-p)
96         (if (eq *boot-state* 'complete)
97             (get-accessor-method-function gf type class slotd)
98             (get-optimized-std-accessor-method-function class slotd type))
99       (setf (slot-accessor-std-p slotd type) std-p)
100       (setf (slot-accessor-function slotd type) function))
101     (when (and old-slotd (not (eq old-std-p (slot-accessor-std-p slotd 'all))))
102       (push (cons class name) *pv-table-cache-update-info*))))
103
104 (defmethod slot-definition-allocation ((slotd structure-slot-definition))
105   :instance)
106 \f
107 (defmethod shared-initialize :after ((object documentation-mixin)
108                                      slot-names
109                                      &key (documentation nil documentation-p))
110   (declare (ignore slot-names))
111   (when documentation-p
112     (setf (plist-value object 'documentation) documentation)))
113
114 ;;; default if DOC-TYPE doesn't match one of the specified types
115 (defmethod documentation (object doc-type)
116   (warn "unsupported DOCUMENTATION: type ~S for object ~S"
117         doc-type
118         (type-of object))
119   nil)
120
121 ;;; default if DOC-TYPE doesn't match one of the specified types
122 (defmethod (setf documentation) (new-value object doc-type)
123   ;; CMU CL made this an error, but since ANSI says that even for supported
124   ;; doc types an implementation is permitted to discard docs at any time
125   ;; for any reason, this feels to me more like a warning. -- WHN 19991214
126   (warn "discarding unsupported DOCUMENTATION of type ~S for object ~S"
127         doc-type
128         (type-of object))
129   new-value)
130
131 (defmethod documentation ((object documentation-mixin) doc-type)
132   (declare (ignore doc-type))
133   (plist-value object 'documentation))
134
135 (defmethod (setf documentation) (new-value
136                                  (object documentation-mixin)
137                                  doc-type)
138   (declare (ignore doc-type))
139   (setf (plist-value object 'documentation) new-value))
140
141 (defmethod documentation ((slotd standard-slot-definition) doc-type)
142   (declare (ignore doc-type))
143   (slot-value slotd 'documentation))
144
145 (defmethod (setf documentation) (new-value
146                                  (slotd standard-slot-definition)
147                                  doc-type)
148   (declare (ignore doc-type))
149   (setf (slot-value slotd 'documentation) new-value))
150 \f
151 ;;;; various class accessors that are a little more complicated than can be
152 ;;;; done with automatically generated reader methods
153
154 (defmethod class-finalized-p ((class pcl-class))
155   (with-slots (wrapper) class
156     (not (null wrapper))))
157
158 (defmethod class-prototype ((class std-class))
159   (with-slots (prototype) class
160     (or prototype (setq prototype (allocate-instance class)))))
161
162 (defmethod class-prototype ((class structure-class))
163   (with-slots (prototype wrapper defstruct-constructor) class
164     (or prototype
165         (setq prototype
166               (if defstruct-constructor
167                   (allocate-instance class)
168                   (allocate-standard-instance wrapper))))))
169
170 (defmethod class-direct-default-initargs ((class slot-class))
171   (plist-value class 'direct-default-initargs))
172
173 (defmethod class-default-initargs ((class slot-class))
174   (plist-value class 'default-initargs))
175
176 (defmethod class-constructors ((class slot-class))
177   (plist-value class 'constructors))
178
179 (defmethod class-slot-cells ((class std-class))
180   (plist-value class 'class-slot-cells))
181 \f
182 ;;;; class accessors that are even a little bit more complicated than those
183 ;;;; above. These have a protocol for updating them, we must implement that
184 ;;;; protocol.
185
186 ;;; Maintaining the direct subclasses backpointers. The update methods are
187 ;;; here, the values are read by an automatically generated reader method.
188 (defmethod add-direct-subclass ((class class) (subclass class))
189   (with-slots (direct-subclasses) class
190     (pushnew subclass direct-subclasses)
191     subclass))
192 (defmethod remove-direct-subclass ((class class) (subclass class))
193   (with-slots (direct-subclasses) class
194     (setq direct-subclasses (remove subclass direct-subclasses))
195     subclass))
196
197 ;;; Maintaining the direct-methods and direct-generic-functions backpointers.
198 ;;;
199 ;;; There are four generic functions involved, each has one method for the
200 ;;; class case and another method for the damned EQL specializers. All of
201 ;;; these are specified methods and appear in their specified place in the
202 ;;; class graph.
203 ;;;
204 ;;;   ADD-DIRECT-METHOD
205 ;;;   REMOVE-DIRECT-METHOD
206 ;;;   SPECIALIZER-DIRECT-METHODS
207 ;;;   SPECIALIZER-DIRECT-GENERIC-FUNCTIONS
208 ;;;
209 ;;; In each case, we maintain one value which is a cons. The car is the list
210 ;;; methods. The cdr is a list of the generic functions. The cdr is always
211 ;;; computed lazily.
212 (defmethod add-direct-method ((specializer class) (method method))
213   (with-slots (direct-methods) specializer
214     (setf (car direct-methods) (adjoin method (car direct-methods))     ;PUSH
215           (cdr direct-methods) ()))
216   method)
217 (defmethod remove-direct-method ((specializer class) (method method))
218   (with-slots (direct-methods) specializer
219     (setf (car direct-methods) (remove method (car direct-methods))
220           (cdr direct-methods) ()))
221   method)
222
223 (defmethod specializer-direct-methods ((specializer class))
224   (with-slots (direct-methods) specializer
225     (car direct-methods)))
226
227 (defmethod specializer-direct-generic-functions ((specializer class))
228   (with-slots (direct-methods) specializer
229     (or (cdr direct-methods)
230         (setf (cdr direct-methods)
231               (gathering1 (collecting-once)
232                 (dolist (m (car direct-methods))
233                   (gather1 (method-generic-function m))))))))
234 \f
235 ;;; This hash table is used to store the direct methods and direct generic
236 ;;; functions of EQL specializers. Each value in the table is the cons.
237 (defvar *eql-specializer-methods* (make-hash-table :test 'eql))
238 (defvar *class-eq-specializer-methods* (make-hash-table :test 'eq))
239
240 (defmethod specializer-method-table ((specializer eql-specializer))
241   *eql-specializer-methods*)
242
243 (defmethod specializer-method-table ((specializer class-eq-specializer))
244   *class-eq-specializer-methods*)
245
246 (defmethod add-direct-method ((specializer specializer-with-object) (method method))
247   (let* ((object (specializer-object specializer))
248          (table (specializer-method-table specializer))
249          (entry (gethash object table)))
250     (unless entry
251       (setq entry
252             (setf (gethash object table)
253                   (cons nil nil))))
254     (setf (car entry) (adjoin method (car entry))
255           (cdr entry) ())
256     method))
257
258 (defmethod remove-direct-method ((specializer specializer-with-object) (method method))
259   (let* ((object (specializer-object specializer))
260          (entry (gethash object (specializer-method-table specializer))))
261     (when entry
262       (setf (car entry) (remove method (car entry))
263             (cdr entry) ()))
264     method))
265
266 (defmethod specializer-direct-methods ((specializer specializer-with-object))
267   (car (gethash (specializer-object specializer)
268                 (specializer-method-table specializer))))
269
270 (defmethod specializer-direct-generic-functions ((specializer specializer-with-object))
271   (let* ((object (specializer-object specializer))
272          (entry (gethash object (specializer-method-table specializer))))
273     (when entry
274       (or (cdr entry)
275           (setf (cdr entry)
276                 (gathering1 (collecting-once)
277                   (dolist (m (car entry))
278                     (gather1 (method-generic-function m)))))))))
279
280 (defun map-specializers (function)
281   (map-all-classes #'(lambda (class)
282                        (funcall function (class-eq-specializer class))
283                        (funcall function class)))
284   (maphash #'(lambda (object methods)
285                (declare (ignore methods))
286                (intern-eql-specializer object))
287            *eql-specializer-methods*)
288   (maphash #'(lambda (object specl)
289                (declare (ignore object))
290                (funcall function specl))
291            *eql-specializer-table*)
292   nil)
293
294 (defun map-all-generic-functions (function)
295   (let ((all-generic-functions (make-hash-table :test 'eq)))
296     (map-specializers #'(lambda (specl)
297                           (dolist (gf (specializer-direct-generic-functions specl))
298                             (unless (gethash gf all-generic-functions)
299                               (setf (gethash gf all-generic-functions) t)
300                               (funcall function gf))))))
301   nil)
302
303 (defmethod shared-initialize :after ((specl class-eq-specializer) slot-names &key)
304   (declare (ignore slot-names))
305   (setf (slot-value specl 'type) `(class-eq ,(specializer-class specl))))
306
307 (defmethod shared-initialize :after ((specl eql-specializer) slot-names &key)
308   (declare (ignore slot-names))
309   (setf (slot-value specl 'type) `(eql ,(specializer-object specl))))
310 \f
311 (defun real-load-defclass (name metaclass-name supers slots other accessors)
312   (do-standard-defsetfs-for-defclass accessors)                 ;***
313   (let ((res (apply #'ensure-class name :metaclass metaclass-name
314                     :direct-superclasses supers
315                     :direct-slots slots
316                     :definition-source `((defclass ,name)
317                                          ,*load-truename*)
318                     other)))
319     ;; Defclass of a class with a forward-referenced superclass does not
320     ;; have a wrapper. RES is the incomplete PCL class. The Lisp class
321     ;; does not yet exist. Maybe should return NIL in that case as RES
322     ;; is not useful to the user?
323     (and (class-wrapper res) (sb-kernel:layout-class (class-wrapper res)))))
324
325 (setf (gdefinition 'load-defclass) #'real-load-defclass)
326
327 (defun ensure-class (name &rest all)
328   (apply #'ensure-class-using-class name (find-class name nil) all))
329
330 (defmethod ensure-class-using-class (name (class null) &rest args &key)
331   (multiple-value-bind (meta initargs)
332       (ensure-class-values class args)
333     (inform-type-system-about-class (class-prototype meta) name);***
334     (setf class (apply #'make-instance meta :name name initargs)
335           (find-class name) class)
336     (inform-type-system-about-class class name)                 ;***
337     class))
338
339 (defmethod ensure-class-using-class (name (class pcl-class) &rest args &key)
340   (multiple-value-bind (meta initargs)
341       (ensure-class-values class args)
342     (unless (eq (class-of class) meta) (change-class class meta))
343     (apply #'reinitialize-instance class initargs)
344     (setf (find-class name) class)
345     (inform-type-system-about-class class name)                 ;***
346     class))
347
348 (defmethod class-predicate-name ((class t))
349   'function-returning-nil)
350
351 (defun ensure-class-values (class args)
352   (let* ((initargs (copy-list args))
353          (unsupplied (list 1))
354          (supplied-meta   (getf initargs :metaclass unsupplied))
355          (supplied-supers (getf initargs :direct-superclasses unsupplied))
356          (supplied-slots  (getf initargs :direct-slots unsupplied))
357          (meta
358            (cond ((neq supplied-meta unsupplied)
359                   (find-class supplied-meta))
360                  ((or (null class)
361                       (forward-referenced-class-p class))
362                   *the-class-standard-class*)
363                  (t
364                   (class-of class)))))
365     (flet ((fix-super (s)
366              (cond ((classp s) s)
367                    ((not (legal-class-name-p s))
368                     (error "~S is not a class or a legal class name." s))
369                    (t
370                     (or (find-class s nil)
371                         (setf (find-class s)
372                               (make-instance 'forward-referenced-class
373                                              :name s)))))))
374       (loop (unless (remf initargs :metaclass) (return)))
375       (loop (unless (remf initargs :direct-superclasses) (return)))
376       (loop (unless (remf initargs :direct-slots) (return)))
377       (values meta
378               (list* :direct-superclasses
379                      (and (neq supplied-supers unsupplied)
380                           (mapcar #'fix-super supplied-supers))
381                      :direct-slots
382                      (and (neq supplied-slots unsupplied) supplied-slots)
383                      initargs)))))
384 \f
385 #|| ; since it doesn't do anything
386 (defmethod shared-initialize :before ((class std-class)
387                                       slot-names
388                                       &key direct-superclasses)
389   (declare (ignore slot-names))
390   ;; *** error checking
391   )
392 ||#
393
394 (defmethod shared-initialize :after
395            ((class std-class)
396             slot-names
397             &key (direct-superclasses nil direct-superclasses-p)
398                  (direct-slots nil direct-slots-p)
399                  (direct-default-initargs nil direct-default-initargs-p)
400                  (predicate-name nil predicate-name-p))
401   (declare (ignore slot-names))
402   (cond (direct-superclasses-p
403          (setq direct-superclasses
404                (or direct-superclasses
405                    (list (if (funcallable-standard-class-p class)
406                              *the-class-funcallable-standard-object*
407                              *the-class-standard-object*))))
408          (dolist (superclass direct-superclasses)
409            (unless (validate-superclass class superclass)
410              (error "The class ~S was specified as a~%
411                      super-class of the class ~S;~%~
412                      but the meta-classes ~S and~%~S are incompatible.~@
413                      Define a method for ~S to avoid this error."
414                      superclass class (class-of superclass) (class-of class)
415                      'validate-superclass)))
416          (setf (slot-value class 'direct-superclasses) direct-superclasses))
417         (t
418          (setq direct-superclasses (slot-value class 'direct-superclasses))))
419   (setq direct-slots
420         (if direct-slots-p
421             (setf (slot-value class 'direct-slots)
422                   (mapcar #'(lambda (pl) (make-direct-slotd class pl)) direct-slots))
423             (slot-value class 'direct-slots)))
424   (if direct-default-initargs-p
425       (setf (plist-value class 'direct-default-initargs) direct-default-initargs)
426       (setq direct-default-initargs (plist-value class 'direct-default-initargs)))
427   (setf (plist-value class 'class-slot-cells)
428         (gathering1 (collecting)
429           (dolist (dslotd direct-slots)
430             (when (eq (slot-definition-allocation dslotd) class)
431               (let ((initfunction (slot-definition-initfunction dslotd)))
432                 (gather1 (cons (slot-definition-name dslotd)
433                                (if initfunction
434                                    (funcall initfunction)
435                                    +slot-unbound+))))))))
436   (setq predicate-name (if predicate-name-p
437                            (setf (slot-value class 'predicate-name)
438                                  (car predicate-name))
439                            (or (slot-value class 'predicate-name)
440                                (setf (slot-value class 'predicate-name)
441                                      (make-class-predicate-name (class-name class))))))
442   (add-direct-subclasses class direct-superclasses)
443   (update-class class nil)
444   (make-class-predicate class predicate-name)
445   (add-slot-accessors class direct-slots))
446
447 (defmethod shared-initialize :before ((class class) slot-names &key name)
448   (declare (ignore slot-names name))
449   (setf (slot-value class 'type) `(class ,class))
450   (setf (slot-value class 'class-eq-specializer)
451         (make-instance 'class-eq-specializer :class class)))
452
453 (defmethod reinitialize-instance :before ((class slot-class) &key)
454   (remove-direct-subclasses class (class-direct-superclasses class))
455   (remove-slot-accessors    class (class-direct-slots class)))
456
457 (defmethod reinitialize-instance :after ((class slot-class)
458                                          &rest initargs
459                                          &key)
460   (map-dependents class
461                   #'(lambda (dependent)
462                       (apply #'update-dependent class dependent initargs))))
463
464 (defmethod shared-initialize :after
465       ((class structure-class)
466        slot-names
467        &key (direct-superclasses nil direct-superclasses-p)
468             (direct-slots nil direct-slots-p)
469             direct-default-initargs
470             (predicate-name nil predicate-name-p))
471   (declare (ignore slot-names direct-default-initargs))
472   (if direct-superclasses-p
473       (setf (slot-value class 'direct-superclasses)
474             (or direct-superclasses
475                 (setq direct-superclasses
476                       (and (not (eq (class-name class) 'structure-object))
477                            (list *the-class-structure-object*)))))
478       (setq direct-superclasses (slot-value class 'direct-superclasses)))
479   (let* ((name (class-name class))
480          (from-defclass-p (slot-value class 'from-defclass-p))
481          (defstruct-p (or from-defclass-p (not (structure-type-p name)))))
482     (if direct-slots-p
483         (setf (slot-value class 'direct-slots)
484               (setq direct-slots
485                     (mapcar #'(lambda (pl)
486                                 (when defstruct-p
487                                   (let* ((slot-name (getf pl :name))
488                                          (acc-name (format nil "~S structure class ~A"
489                                                            name slot-name))
490                                          (accessor (intern acc-name)))
491                                     (setq pl (list* :defstruct-accessor-symbol accessor
492                                                     pl))))
493                                 (make-direct-slotd class pl))
494                             direct-slots)))
495         (setq direct-slots (slot-value class 'direct-slots)))
496     (when defstruct-p
497       (let* ((include (car (slot-value class 'direct-superclasses)))
498              (conc-name (intern (format nil "~S structure class " name)))
499              (constructor (intern (format nil "~A constructor" conc-name)))
500              (defstruct `(defstruct (,name
501                                       ,@(when include
502                                           `((:include ,(class-name include))))
503                                       (:print-function print-std-instance)
504                                       (:predicate nil)
505                                       (:conc-name ,conc-name)
506                                       (:constructor ,constructor ()))
507                            ,@(mapcar #'(lambda (slot)
508                                          `(,(slot-definition-name slot)
509                                            +slot-unbound+))
510                                      direct-slots)))
511              (reader-names (mapcar (lambda (slotd)
512                                      (intern (format nil
513                                                      "~A~A reader"
514                                                      conc-name
515                                                      (slot-definition-name
516                                                       slotd))))
517                                    direct-slots))
518              (writer-names (mapcar (lambda (slotd)
519                                      (intern (format nil
520                                                      "~A~A writer"
521                                                      conc-name
522                                                      (slot-definition-name
523                                                       slotd))))
524                                    direct-slots))
525              (readers-init
526               (mapcar (lambda (slotd reader-name)
527                         (let ((accessor
528                                (slot-definition-defstruct-accessor-symbol
529                                 slotd)))
530                           `(defun ,reader-name (obj)
531                              (declare (type ,name obj))
532                              (,accessor obj))))
533                       direct-slots reader-names))
534              (writers-init
535               (mapcar (lambda (slotd writer-name)
536                         (let ((accessor
537                                (slot-definition-defstruct-accessor-symbol
538                                 slotd)))
539                           `(defun ,writer-name (nv obj)
540                              (declare (type ,name obj))
541                              (setf (,accessor obj) nv))))
542                       direct-slots writer-names))
543              (defstruct-form
544                `(progn
545                   ,defstruct
546                   ,@readers-init ,@writers-init
547                   (declare-structure ',name nil nil))))
548         (unless (structure-type-p name) (eval defstruct-form))
549         (mapc #'(lambda (dslotd reader-name writer-name)
550                   (let* ((reader (gdefinition reader-name))
551                          (writer (when (gboundp writer-name)
552                                    (gdefinition writer-name))))
553                     (setf (slot-value dslotd 'internal-reader-function)
554                           reader)
555                     (setf (slot-value dslotd 'internal-writer-function)
556                           writer)))
557               direct-slots reader-names writer-names)
558         (setf (slot-value class 'defstruct-form) defstruct-form)
559         (setf (slot-value class 'defstruct-constructor) constructor))))
560   (add-direct-subclasses class direct-superclasses)
561   (setf (slot-value class 'class-precedence-list)
562         (compute-class-precedence-list class))
563   (setf (slot-value class 'slots) (compute-slots class))
564   (let ((lclass (cl:find-class (class-name class))))
565     (setf (sb-kernel:class-pcl-class lclass) class)
566     (setf (slot-value class 'wrapper) (sb-kernel:class-layout lclass)))
567   (update-pv-table-cache-info class)
568   (setq predicate-name (if predicate-name-p
569                            (setf (slot-value class 'predicate-name)
570                                  (car predicate-name))
571                            (or (slot-value class 'predicate-name)
572                                (setf (slot-value class 'predicate-name)
573                                      (make-class-predicate-name (class-name class))))))
574   (make-class-predicate class predicate-name)
575   (add-slot-accessors class direct-slots))
576
577 (defmethod direct-slot-definition-class ((class structure-class) initargs)
578   (declare (ignore initargs))
579   (find-class 'structure-direct-slot-definition))
580
581 (defmethod finalize-inheritance ((class structure-class))
582   nil) ; always finalized
583 \f
584 (defun add-slot-accessors (class dslotds)
585   (fix-slot-accessors class dslotds 'add))
586
587 (defun remove-slot-accessors (class dslotds)
588   (fix-slot-accessors class dslotds 'remove))
589
590 (defun fix-slot-accessors (class dslotds add/remove)
591   (flet ((fix (gfspec name r/w)
592            (let ((gf (ensure-generic-function gfspec)))
593              (case r/w
594                (r (if (eq add/remove 'add)
595                       (add-reader-method class gf name)
596                       (remove-reader-method class gf)))
597                (w (if (eq add/remove 'add)
598                       (add-writer-method class gf name)
599                       (remove-writer-method class gf)))))))
600     (dolist (dslotd dslotds)
601       (let ((slot-name (slot-definition-name dslotd)))
602         (dolist (r (slot-definition-readers dslotd)) (fix r slot-name 'r))
603         (dolist (w (slot-definition-writers dslotd)) (fix w slot-name 'w))))))
604 \f
605 (defun add-direct-subclasses (class new)
606   (dolist (n new)
607     (unless (memq class (class-direct-subclasses class))
608       (add-direct-subclass n class))))
609
610 (defun remove-direct-subclasses (class new)
611   (let ((old (class-direct-superclasses class)))
612     (dolist (o (set-difference old new))
613       (remove-direct-subclass o class))))
614 \f
615 (defmethod finalize-inheritance ((class std-class))
616   (update-class class t))
617 \f
618 (defun class-has-a-forward-referenced-superclass-p (class)
619   (or (forward-referenced-class-p class)
620       (some #'class-has-a-forward-referenced-superclass-p
621             (class-direct-superclasses class))))
622
623 ;;; This is called by :after shared-initialize whenever a class is initialized
624 ;;; or reinitialized. The class may or may not be finalized.
625 (defun update-class (class finalizep)
626   (when (or finalizep (class-finalized-p class)
627             (not (class-has-a-forward-referenced-superclass-p class)))
628     (update-cpl class (compute-class-precedence-list class))
629     (update-slots class (compute-slots class))
630     (update-gfs-of-class class)
631     (update-inits class (compute-default-initargs class))
632     (update-make-instance-function-table class))
633   (unless finalizep
634     (dolist (sub (class-direct-subclasses class)) (update-class sub nil))))
635
636 (defun update-cpl (class cpl)
637   (if (class-finalized-p class)
638       (unless (equal (class-precedence-list class) cpl)
639         ;; comment from the old CMU CL sources:
640         ;;   Need to have the cpl setup before update-lisp-class-layout
641         ;;   is called on CMU CL.
642         (setf (slot-value class 'class-precedence-list) cpl)
643         (force-cache-flushes class))
644       (setf (slot-value class 'class-precedence-list) cpl))
645   (update-class-can-precede-p cpl))
646
647 (defun update-class-can-precede-p (cpl)
648   (when cpl
649     (let ((first (car cpl)))
650       (dolist (c (cdr cpl))
651         (pushnew c (slot-value first 'can-precede-list))))
652     (update-class-can-precede-p (cdr cpl))))
653
654 (defun class-can-precede-p (class1 class2)
655   (member class2 (class-can-precede-list class1)))
656
657 (defun update-slots (class eslotds)
658   (let ((instance-slots ())
659         (class-slots    ()))
660     (dolist (eslotd eslotds)
661       (let ((alloc (slot-definition-allocation eslotd)))
662         (cond ((eq alloc :instance) (push eslotd instance-slots))
663               ((classp alloc)       (push eslotd class-slots)))))
664
665     ;; If there is a change in the shape of the instances then the
666     ;; old class is now obsolete.
667     (let* ((nlayout (mapcar #'slot-definition-name
668                             (sort instance-slots #'< :key #'slot-definition-location)))
669            (nslots (length nlayout))
670            (nwrapper-class-slots (compute-class-slots class-slots))
671            (owrapper (class-wrapper class))
672            (olayout (and owrapper (wrapper-instance-slots-layout owrapper)))
673            (owrapper-class-slots (and owrapper (wrapper-class-slots owrapper)))
674            (nwrapper
675             (cond ((null owrapper)
676                    (make-wrapper nslots class))
677                   ((and (equal nlayout olayout)
678                         (not
679                          (iterate ((o (list-elements owrapper-class-slots))
680                                    (n (list-elements nwrapper-class-slots)))
681                                   (unless (eq (car o) (car n)) (return t)))))
682                    owrapper)
683                   (t
684                    ;; This will initialize the new wrapper to have the same
685                    ;; state as the old wrapper. We will then have to change
686                    ;; that. This may seem like wasted work (it is), but the
687                    ;; spec requires that we call make-instances-obsolete.
688                    (make-instances-obsolete class)
689                    (class-wrapper class)))))
690
691       (with-slots (wrapper slots) class
692         (update-lisp-class-layout class nwrapper)
693         (setf slots eslotds
694               (wrapper-instance-slots-layout nwrapper) nlayout
695               (wrapper-class-slots nwrapper) nwrapper-class-slots
696               (wrapper-no-of-instance-slots nwrapper) nslots
697               wrapper nwrapper))
698
699       (unless (eq owrapper nwrapper)
700         (update-pv-table-cache-info class)))))
701
702 (defun compute-class-slots (eslotds)
703   (gathering1 (collecting)
704     (dolist (eslotd eslotds)
705       (gather1
706         (assoc (slot-definition-name eslotd)
707                (class-slot-cells (slot-definition-allocation eslotd)))))))
708
709 (defun compute-layout (cpl instance-eslotds)
710   (let* ((names
711            (gathering1 (collecting)
712              (dolist (eslotd instance-eslotds)
713                (when (eq (slot-definition-allocation eslotd) :instance)
714                  (gather1 (slot-definition-name eslotd))))))
715          (order ()))
716     (labels ((rwalk (tail)
717                (when tail
718                  (rwalk (cdr tail))
719                  (dolist (ss (class-slots (car tail)))
720                    (let ((n (slot-definition-name ss)))
721                      (when (member n names)
722                        (setq order (cons n order)
723                              names (remove n names))))))))
724       (rwalk (if (slot-boundp (car cpl) 'slots)
725                  cpl
726                  (cdr cpl)))
727       (reverse (append names order)))))
728
729 (defun update-gfs-of-class (class)
730   (when (and (class-finalized-p class)
731              (let ((cpl (class-precedence-list class)))
732                (or (member *the-class-slot-class* cpl)
733                    (member *the-class-standard-effective-slot-definition* cpl))))
734     (let ((gf-table (make-hash-table :test 'eq)))
735       (labels ((collect-gfs (class)
736                  (dolist (gf (specializer-direct-generic-functions class))
737                    (setf (gethash gf gf-table) t))
738                  (mapc #'collect-gfs (class-direct-superclasses class))))
739         (collect-gfs class)
740         (maphash #'(lambda (gf ignore)
741                      (declare (ignore ignore))
742                      (update-gf-dfun class gf))
743                  gf-table)))))
744
745 (defun update-inits (class inits)
746   (setf (plist-value class 'default-initargs) inits))
747 \f
748 (defmethod compute-default-initargs ((class slot-class))
749   (let ((cpl (class-precedence-list class))
750         (direct (class-direct-default-initargs class)))
751     (labels ((walk (tail)
752                (if (null tail)
753                    nil
754                    (let ((c (pop tail)))
755                      (append (if (eq c class)
756                                  direct
757                                  (class-direct-default-initargs c))
758                              (walk tail))))))
759       (let ((initargs (walk cpl)))
760         (delete-duplicates initargs :test #'eq :key #'car :from-end t)))))
761 \f
762 ;;;; protocols for constructing direct and effective slot definitions
763
764 (defmethod direct-slot-definition-class ((class std-class) initargs)
765   (declare (ignore initargs))
766   (find-class 'standard-direct-slot-definition))
767
768 (defun make-direct-slotd (class initargs)
769   (let ((initargs (list* :class class initargs)))
770     (apply #'make-instance
771            (direct-slot-definition-class class initargs)
772            initargs)))
773
774 (defmethod compute-slots ((class std-class))
775   ;; As specified, we must call COMPUTE-EFFECTIVE-SLOT-DEFINITION once
776   ;; for each different slot name we find in our superclasses. Each
777   ;; call receives the class and a list of the dslotds with that name.
778   ;; The list is in most-specific-first order.
779   (let ((name-dslotds-alist ()))
780     (dolist (c (class-precedence-list class))
781       (let ((dslotds (class-direct-slots c)))
782         (dolist (d dslotds)
783           (let* ((name (slot-definition-name d))
784                  (entry (assq name name-dslotds-alist)))
785             (if entry
786                 (push d (cdr entry))
787                 (push (list name d) name-dslotds-alist))))))
788     (mapcar #'(lambda (direct)
789                 (compute-effective-slot-definition class
790                                                    (nreverse (cdr direct))))
791             name-dslotds-alist)))
792
793 (defmethod compute-slots :around ((class std-class))
794   (let ((eslotds (call-next-method))
795         (cpl (class-precedence-list class))
796         (instance-slots ())
797         (class-slots    ()))
798     (dolist (eslotd eslotds)
799       (let ((alloc (slot-definition-allocation eslotd)))
800         (cond ((eq alloc :instance) (push eslotd instance-slots))
801               ((classp alloc)       (push eslotd class-slots)))))
802     (let ((nlayout (compute-layout cpl instance-slots)))
803       (dolist (eslotd instance-slots)
804         (setf (slot-definition-location eslotd)
805               (position (slot-definition-name eslotd) nlayout))))
806     (dolist (eslotd class-slots)
807       (setf (slot-definition-location eslotd)
808             (assoc (slot-definition-name eslotd)
809                    (class-slot-cells (slot-definition-allocation eslotd)))))
810     (mapc #'initialize-internal-slot-functions eslotds)
811     eslotds))
812
813 (defmethod compute-slots ((class structure-class))
814   (mapcan #'(lambda (superclass)
815               (mapcar #'(lambda (dslotd)
816                           (compute-effective-slot-definition class
817                                                              (list dslotd)))
818                       (class-direct-slots superclass)))
819           (reverse (slot-value class 'class-precedence-list))))
820
821 (defmethod compute-slots :around ((class structure-class))
822   (let ((eslotds (call-next-method)))
823     (mapc #'initialize-internal-slot-functions eslotds)
824     eslotds))
825
826 (defmethod compute-effective-slot-definition ((class slot-class) dslotds)
827   (let* ((initargs (compute-effective-slot-definition-initargs class dslotds))
828          (class (effective-slot-definition-class class initargs)))
829     (apply #'make-instance class initargs)))
830
831 (defmethod effective-slot-definition-class ((class std-class) initargs)
832   (declare (ignore initargs))
833   (find-class 'standard-effective-slot-definition))
834
835 (defmethod effective-slot-definition-class ((class structure-class) initargs)
836   (declare (ignore initargs))
837   (find-class 'structure-effective-slot-definition))
838
839 (defmethod compute-effective-slot-definition-initargs
840     ((class slot-class) direct-slotds)
841   (let* ((name nil)
842          (initfunction nil)
843          (initform nil)
844          (initargs nil)
845          (allocation nil)
846          (type t)
847          (namep  nil)
848          (initp  nil)
849          (allocp nil))
850
851     (dolist (slotd direct-slotds)
852       (when slotd
853         (unless namep
854           (setq name (slot-definition-name slotd)
855                 namep t))
856         (unless initp
857           (when (slot-definition-initfunction slotd)
858             (setq initform (slot-definition-initform slotd)
859                   initfunction (slot-definition-initfunction slotd)
860                   initp t)))
861         (unless allocp
862           (setq allocation (slot-definition-allocation slotd)
863                 allocp t))
864         (setq initargs (append (slot-definition-initargs slotd) initargs))
865         (let ((slotd-type (slot-definition-type slotd)))
866           (setq type (cond ((eq type 't) slotd-type)
867                            ((*subtypep type slotd-type) type)
868                            (t `(and ,type ,slotd-type)))))))
869     (list :name name
870           :initform initform
871           :initfunction initfunction
872           :initargs initargs
873           :allocation allocation
874           :type type
875           :class class)))
876
877 (defmethod compute-effective-slot-definition-initargs :around
878     ((class structure-class) direct-slotds)
879   (let ((slotd (car direct-slotds)))
880     (list* :defstruct-accessor-symbol (slot-definition-defstruct-accessor-symbol slotd)
881            :internal-reader-function (slot-definition-internal-reader-function slotd)
882            :internal-writer-function (slot-definition-internal-writer-function slotd)
883            (call-next-method))))
884 \f
885 ;;; NOTE: For bootstrapping considerations, these can't use make-instance
886 ;;;       to make the method object. They have to use make-a-method which
887 ;;;       is a specially bootstrapped mechanism for making standard methods.
888 (defmethod reader-method-class ((class slot-class) direct-slot &rest initargs)
889   (declare (ignore direct-slot initargs))
890   (find-class 'standard-reader-method))
891
892 (defmethod add-reader-method ((class slot-class) generic-function slot-name)
893   (add-method generic-function
894               (make-a-method 'standard-reader-method
895                              ()
896                              (list (or (class-name class) 'object))
897                              (list class)
898                              (make-reader-method-function class slot-name)
899                              "automatically generated reader method"
900                              slot-name)))
901
902 (defmethod writer-method-class ((class slot-class) direct-slot &rest initargs)
903   (declare (ignore direct-slot initargs))
904   (find-class 'standard-writer-method))
905
906 (defmethod add-writer-method ((class slot-class) generic-function slot-name)
907   (add-method generic-function
908               (make-a-method 'standard-writer-method
909                              ()
910                              (list 'new-value (or (class-name class) 'object))
911                              (list *the-class-t* class)
912                              (make-writer-method-function class slot-name)
913                              "automatically generated writer method"
914                              slot-name)))
915
916 (defmethod add-boundp-method ((class slot-class) generic-function slot-name)
917   (add-method generic-function
918               (make-a-method 'standard-boundp-method
919                              ()
920                              (list (or (class-name class) 'object))
921                              (list class)
922                              (make-boundp-method-function class slot-name)
923                              "automatically generated boundp method"
924                              slot-name)))
925
926 (defmethod remove-reader-method ((class slot-class) generic-function)
927   (let ((method (get-method generic-function () (list class) nil)))
928     (when method (remove-method generic-function method))))
929
930 (defmethod remove-writer-method ((class slot-class) generic-function)
931   (let ((method
932           (get-method generic-function () (list *the-class-t* class) nil)))
933     (when method (remove-method generic-function method))))
934
935 (defmethod remove-boundp-method ((class slot-class) generic-function)
936   (let ((method (get-method generic-function () (list class) nil)))
937     (when method (remove-method generic-function method))))
938 \f
939 ;;; make-reader-method-function and make-write-method function are NOT part of
940 ;;; the standard protocol. They are however useful, PCL makes uses makes use
941 ;;; of them internally and documents them for PCL users.
942 ;;;
943 ;;; *** This needs work to make type testing by the writer functions which
944 ;;; *** do type testing faster. The idea would be to have one constructor
945 ;;; *** for each possible type test. In order to do this it would be nice
946 ;;; *** to have help from inform-type-system-about-class and friends.
947 ;;;
948 ;;; *** There is a subtle bug here which is going to have to be fixed.
949 ;;; *** Namely, the simplistic use of the template has to be fixed. We
950 ;;; *** have to give the optimize-slot-value method the user might have
951 ;;; *** defined for this metclass a chance to run.
952
953 (defmethod make-reader-method-function ((class slot-class) slot-name)
954   (make-std-reader-method-function (class-name class) slot-name))
955
956 (defmethod make-writer-method-function ((class slot-class) slot-name)
957   (make-std-writer-method-function (class-name class) slot-name))
958
959 (defmethod make-boundp-method-function ((class slot-class) slot-name)
960   (make-std-boundp-method-function (class-name class) slot-name))
961 \f
962 ;;;; inform-type-system-about-class
963 ;;;; make-type-predicate
964 ;;;
965 ;;; These are NOT part of the standard protocol. They are internal mechanism
966 ;;; which PCL uses to *try* and tell the type system about class definitions.
967 ;;; In a more fully integrated implementation of CLOS, the type system would
968 ;;; know about class objects and class names in a more fundamental way and
969 ;;; the mechanism used to inform the type system about new classes would be
970 ;;; different.
971 (defmethod inform-type-system-about-class ((class std-class) name)
972   (inform-type-system-about-std-class name))
973 \f
974 (defmethod compatible-meta-class-change-p (class proto-new-class)
975   (eq (class-of class) (class-of proto-new-class)))
976
977 (defmethod validate-superclass ((class class) (new-super class))
978   (or (eq new-super *the-class-t*)
979       (eq (class-of class) (class-of new-super))))
980
981 (defmethod validate-superclass ((class standard-class) (new-super std-class))
982   (let ((new-super-meta-class (class-of new-super)))
983     (or (eq new-super-meta-class *the-class-std-class*)
984         (eq (class-of class) new-super-meta-class))))
985 \f
986 (defun force-cache-flushes (class)
987   (let* ((owrapper (class-wrapper class))
988          (state (wrapper-state owrapper)))
989     ;; We only need to do something if the state is still T. If the
990     ;; state isn't T, it will be FLUSH or OBSOLETE, and both of those
991     ;; will already be doing what we want. In particular, we must be
992     ;; sure we never change an OBSOLETE into a FLUSH since OBSOLETE
993     ;; means do what FLUSH does and then some.
994     (when (eq state 't) ; FIXME: should be done through INVALID-WRAPPER-P
995       (let ((nwrapper (make-wrapper (wrapper-no-of-instance-slots owrapper)
996                                     class)))
997         (setf (wrapper-instance-slots-layout nwrapper)
998               (wrapper-instance-slots-layout owrapper))
999         (setf (wrapper-class-slots nwrapper)
1000               (wrapper-class-slots owrapper))
1001         (without-interrupts
1002           (update-lisp-class-layout class nwrapper)
1003           (setf (slot-value class 'wrapper) nwrapper)
1004           (invalidate-wrapper owrapper ':flush nwrapper))))))
1005
1006 (defun flush-cache-trap (owrapper nwrapper instance)
1007   (declare (ignore owrapper))
1008   (set-wrapper instance nwrapper))
1009 \f
1010 ;;; make-instances-obsolete can be called by user code. It will cause the
1011 ;;; next access to the instance (as defined in 88-002R) to trap through the
1012 ;;; update-instance-for-redefined-class mechanism.
1013 (defmethod make-instances-obsolete ((class std-class))
1014   (let* ((owrapper (class-wrapper class))
1015          (nwrapper (make-wrapper (wrapper-no-of-instance-slots owrapper)
1016                                  class)))
1017       (setf (wrapper-instance-slots-layout nwrapper)
1018             (wrapper-instance-slots-layout owrapper))
1019       (setf (wrapper-class-slots nwrapper)
1020             (wrapper-class-slots owrapper))
1021       (without-interrupts
1022         (update-lisp-class-layout class nwrapper)
1023         (setf (slot-value class 'wrapper) nwrapper)
1024         (invalidate-wrapper owrapper ':obsolete nwrapper)
1025         class)))
1026
1027 (defmethod make-instances-obsolete ((class symbol))
1028   (make-instances-obsolete (find-class class)))
1029
1030 ;;; obsolete-instance-trap is the internal trap that is called when we see
1031 ;;; an obsolete instance. The times when it is called are:
1032 ;;;   - when the instance is involved in method lookup
1033 ;;;   - when attempting to access a slot of an instance
1034 ;;;
1035 ;;; It is not called by class-of, wrapper-of, or any of the low-level instance
1036 ;;; access macros.
1037 ;;;
1038 ;;; Of course these times when it is called are an internal implementation
1039 ;;; detail of PCL and are not part of the documented description of when the
1040 ;;; obsolete instance update happens. The documented description is as it
1041 ;;; appears in 88-002R.
1042 ;;;
1043 ;;; This has to return the new wrapper, so it counts on all the methods on
1044 ;;; obsolete-instance-trap-internal to return the new wrapper. It also does
1045 ;;; a little internal error checking to make sure that the traps are only
1046 ;;; happening when they should, and that the trap methods are computing
1047 ;;; appropriate new wrappers.
1048
1049 ;;; obsolete-instance-trap might be called on structure instances
1050 ;;; after a structure is redefined. In most cases, obsolete-instance-trap
1051 ;;; will not be able to fix the old instance, so it must signal an
1052 ;;; error. The hard part of this is that the error system and debugger
1053 ;;; might cause obsolete-instance-trap to be called again, so in that
1054 ;;; case, we have to return some reasonable wrapper, instead.
1055
1056 (defvar *in-obsolete-instance-trap* nil)
1057 (defvar *the-wrapper-of-structure-object*
1058   (class-wrapper (find-class 'structure-object)))
1059
1060 (define-condition obsolete-structure (error)
1061   ((datum :reader obsolete-structure-datum :initarg :datum))
1062   (:report
1063    (lambda (condition stream)
1064      ;; Don't try to print the structure, since it probably won't work.
1065      (format stream
1066              "obsolete structure error in ~S:~@
1067               for a structure of type: ~S"
1068              (sb-conditions::condition-function-name condition)
1069              (type-of (obsolete-structure-datum condition))))))
1070
1071 (defun obsolete-instance-trap (owrapper nwrapper instance)
1072   (if (not (pcl-instance-p instance))
1073       (if *in-obsolete-instance-trap*
1074           *the-wrapper-of-structure-object*
1075            (let ((*in-obsolete-instance-trap* t))
1076              (error 'obsolete-structure :datum instance)))
1077       (let* ((class (wrapper-class* nwrapper))
1078              (copy (allocate-instance class)) ;??? allocate-instance ???
1079              (olayout (wrapper-instance-slots-layout owrapper))
1080              (nlayout (wrapper-instance-slots-layout nwrapper))
1081              (oslots (get-slots instance))
1082              (nslots (get-slots copy))
1083              (oclass-slots (wrapper-class-slots owrapper))
1084              (added ())
1085              (discarded ())
1086              (plist ()))
1087         ;; local  --> local     transfer
1088         ;; local  --> shared       discard
1089         ;; local  -->  --         discard
1090         ;; shared --> local     transfer
1091         ;; shared --> shared       discard
1092         ;; shared -->  --         discard
1093         ;;  --    --> local     add
1094         ;;  --    --> shared    --
1095
1096         ;; Go through all the old local slots.
1097         (iterate ((name (list-elements olayout))
1098                   (opos (interval :from 0)))
1099           (let ((npos (posq name nlayout)))
1100             (if npos
1101                 (setf (instance-ref nslots npos) (instance-ref oslots opos))
1102                 (progn
1103                   (push name discarded)
1104                   (unless (eq (instance-ref oslots opos) +slot-unbound+)
1105                     (setf (getf plist name) (instance-ref oslots opos)))))))
1106
1107         ;; Go through all the old shared slots.
1108         (iterate ((oclass-slot-and-val (list-elements oclass-slots)))
1109           (let ((name (car oclass-slot-and-val))
1110                 (val (cdr oclass-slot-and-val)))
1111             (let ((npos (posq name nlayout)))
1112               (if npos
1113                   (setf (instance-ref nslots npos) (cdr oclass-slot-and-val))
1114                   (progn (push name discarded)
1115                          (unless (eq val +slot-unbound+)
1116                            (setf (getf plist name) val)))))))
1117
1118         ;; Go through all the new local slots to compute the added slots.
1119         (dolist (nlocal nlayout)
1120           (unless (or (memq nlocal olayout)
1121                       (assq nlocal oclass-slots))
1122             (push nlocal added)))
1123
1124         (swap-wrappers-and-slots instance copy)
1125
1126         (update-instance-for-redefined-class instance
1127                                              added
1128                                              discarded
1129                                              plist)
1130         nwrapper)))
1131 \f
1132 (defmacro copy-instance-internal (instance)
1133   `(progn
1134      (let* ((class (class-of instance))
1135             (copy (allocate-instance class)))
1136        (if (std-instance-p ,instance)
1137            (setf (std-instance-slots ,instance)
1138                  (std-instance-slots ,instance))
1139          (setf (fsc-instance-slots ,instance)
1140                (fsc-instance-slots ,instance)))
1141        copy)))
1142
1143 (defun change-class-internal (instance new-class)
1144   (let* ((old-class (class-of instance))
1145          (copy (allocate-instance new-class))
1146          (new-wrapper (get-wrapper copy))
1147          (old-wrapper (class-wrapper old-class))
1148          (old-layout (wrapper-instance-slots-layout old-wrapper))
1149          (new-layout (wrapper-instance-slots-layout new-wrapper))
1150          (old-slots (get-slots instance))
1151          (new-slots (get-slots copy))
1152          (old-class-slots (wrapper-class-slots old-wrapper)))
1153
1154     ;; "The values of local slots specified by both the class CTO and
1155     ;; CFROM are retained. If such a local slot was unbound, it remains
1156     ;; unbound."
1157     (iterate ((new-slot (list-elements new-layout))
1158               (new-position (interval :from 0)))
1159       (let ((old-position (posq new-slot old-layout)))
1160         (when old-position
1161           (setf (instance-ref new-slots new-position)
1162                 (instance-ref old-slots old-position)))))
1163
1164     ;; "The values of slots specified as shared in the class CFROM and
1165     ;; as local in the class CTO are retained."
1166     (iterate ((slot-and-val (list-elements old-class-slots)))
1167       (let ((position (posq (car slot-and-val) new-layout)))
1168         (when position
1169           (setf (instance-ref new-slots position) (cdr slot-and-val)))))
1170
1171     ;; Make the copy point to the old instance's storage, and make the
1172     ;; old instance point to the new storage.
1173     (swap-wrappers-and-slots instance copy)
1174
1175     (update-instance-for-different-class copy instance)
1176     instance))
1177
1178 (defmethod change-class ((instance standard-object)
1179                          (new-class standard-class))
1180   (change-class-internal instance new-class))
1181
1182 (defmethod change-class ((instance funcallable-standard-object)
1183                          (new-class funcallable-standard-class))
1184   (change-class-internal instance new-class))
1185
1186 (defmethod change-class ((instance standard-object)
1187                          (new-class funcallable-standard-class))
1188   (error "You can't change the class of ~S to ~S~@
1189           because it isn't already an instance with metaclass ~S."
1190          instance new-class 'standard-class))
1191
1192 (defmethod change-class ((instance funcallable-standard-object)
1193                          (new-class standard-class))
1194   (error "You can't change the class of ~S to ~S~@
1195           because it isn't already an instance with metaclass ~S."
1196          instance new-class 'funcallable-standard-class))
1197
1198 (defmethod change-class ((instance t) (new-class-name symbol))
1199   (change-class instance (find-class new-class-name)))
1200 \f
1201 ;;;; The metaclass BUILT-IN-CLASS
1202 ;;;;
1203 ;;;; This metaclass is something of a weird creature. By this point, all
1204 ;;;; instances of it which will exist have been created, and no instance
1205 ;;;; is ever created by calling MAKE-INSTANCE.
1206 ;;;;
1207 ;;;; But, there are other parts of the protocol we must follow and those
1208 ;;;; definitions appear here.
1209
1210 (defmethod shared-initialize :before
1211            ((class built-in-class) slot-names &rest initargs)
1212   (declare (ignore slot-names initargs))
1213   (error "attempt to initialize or reinitialize a built in class"))
1214
1215 (defmethod class-direct-slots       ((class built-in-class)) ())
1216 (defmethod class-slots             ((class built-in-class)) ())
1217 (defmethod class-direct-default-initargs ((class built-in-class)) ())
1218 (defmethod class-default-initargs       ((class built-in-class)) ())
1219
1220 (defmethod validate-superclass ((c class) (s built-in-class))
1221   (or (eq s *the-class-t*)
1222       (eq s *the-class-stream*)))
1223 \f
1224 (defmethod validate-superclass ((c slot-class)
1225                                 (f forward-referenced-class))
1226   't)
1227 \f
1228 (defmethod add-dependent ((metaobject dependent-update-mixin) dependent)
1229   (pushnew dependent (plist-value metaobject 'dependents)))
1230
1231 (defmethod remove-dependent ((metaobject dependent-update-mixin) dependent)
1232   (setf (plist-value metaobject 'dependents)
1233         (delete dependent (plist-value metaobject 'dependents))))
1234
1235 (defmethod map-dependents ((metaobject dependent-update-mixin) function)
1236   (dolist (dependent (plist-value metaobject 'dependents))
1237     (funcall function dependent)))
1238