1 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; This software is derived from software originally released by Xerox
5 ;;;; Corporation. Copyright and release statements follow. Later modifications
6 ;;;; to the software are in the public domain and are provided with
7 ;;;; absolutely no warranty. See the COPYING and CREDITS files for more
10 ;;;; copyright information from original PCL sources:
12 ;;;; Copyright (c) 1985, 1986, 1987, 1988, 1989, 1990 Xerox Corporation.
13 ;;;; All rights reserved.
15 ;;;; Use and copying of this software and preparation of derivative works based
16 ;;;; upon this software are permitted. Any distribution of this software or
17 ;;;; derivative works must comply with all applicable United States export
20 ;;;; This software is made available AS IS, and Xerox Corporation makes no
21 ;;;; warranty about the software, its performance or its conformity to any
27 (defun make-progn (&rest forms)
28 (let ((progn-form nil))
29 (labels ((collect-forms (forms)
31 (collect-forms (cdr forms))
32 (if (and (listp (car forms))
33 (eq (caar forms) 'progn))
34 (collect-forms (cdar forms))
35 (push (car forms) progn-form)))))
37 (cons 'progn progn-form))))
39 ;;; Like the DEFMETHOD macro, the expansion of the DEFCLASS macro is
40 ;;; fixed. DEFCLASS always expands into a call to LOAD-DEFCLASS. Until
41 ;;; the meta-braid is set up, LOAD-DEFCLASS has a special definition
42 ;;; which simply collects all class definitions up, when the metabraid
43 ;;; is initialized it is done from those class definitions.
45 ;;; After the metabraid has been setup, and the protocol for defining
46 ;;; classes has been defined, the real definition of LOAD-DEFCLASS is
47 ;;; installed by the file defclass.lisp
48 (defmacro defclass (name direct-superclasses direct-slots &rest options)
49 (expand-defclass name direct-superclasses direct-slots options))
51 (defun expand-defclass (name supers slots options)
52 ;; FIXME: We should probably just ensure that the relevant
53 ;; DEFVAR/DEFPARAMETERs occur before this definition, rather
54 ;; than locally declaring them SPECIAL.
55 (declare (special *boot-state* *the-class-structure-class*))
56 (setq supers (copy-tree supers)
57 slots (copy-tree slots)
58 options (copy-tree options))
59 (let ((metaclass 'standard-class))
60 (dolist (option options)
61 (if (not (listp option))
62 (error "~S is not a legal defclass option." option)
63 (when (eq (car option) ':metaclass)
64 (unless (legal-class-name-p (cadr option))
65 (error "The value of the :metaclass option (~S) is not a~%~
70 (cl:standard-class 'standard-class)
71 (cl:structure-class 'structure-class)
73 (setf options (remove option options))
76 (let ((*initfunctions* ())
77 (*readers* ()) ;Truly a crock, but we got
78 (*writers* ())) ;to have it to live nicely.
79 (declare (special *initfunctions* *readers* *writers*))
80 (let ((canonical-slots
81 (mapcar #'(lambda (spec)
82 (canonicalize-slot-specification name spec))
85 (mapcar #'(lambda (option)
86 (canonicalize-defclass-option name option))
88 (defstruct-p (and (eq *boot-state* 'complete)
89 (let ((mclass (find-class metaclass nil)))
93 *the-class-structure-class*))))))
97 `(declaim (ftype (function (t) t) ,x)))
100 `(declaim (ftype (function (t t) t) ,x)))
102 (let ,(mapcar #'cdr *initfunctions*)
103 (load-defclass ',name
106 (list ,@canonical-slots)
107 (list ,@(apply #'append
109 '(:from-defclass-p t))
110 other-initargs)))))))
113 (eval defclass-form) ; Define the class now, so that..
114 `(progn ; ..the defstruct can be compiled.
115 ,(class-defstruct-form (find-class name))
118 (when (eq *boot-state* 'complete)
119 (inform-type-system-about-std-class name))
122 (defun make-initfunction (initform)
123 (declare (special *initfunctions*))
124 (cond ((or (eq initform t)
125 (equal initform ''t))
126 '(function constantly-t))
127 ((or (eq initform nil)
128 (equal initform ''nil))
129 '(function constantly-nil))
130 ((or (eql initform 0)
131 (equal initform ''0))
132 '(function constantly-0))
134 (let ((entry (assoc initform *initfunctions* :test #'equal)))
136 (setq entry (list initform
138 `(function (lambda () ,initform))))
139 (push entry *initfunctions*))
142 (defun canonicalize-slot-specification (class-name spec)
143 (declare (special *readers* *writers*))
144 (cond ((and (symbolp spec)
145 (not (keywordp spec))
146 (not (memq spec '(t nil))))
149 (error "~S is not a legal slot specification." spec))
151 `'(:name ,(car spec)))
153 (error "In DEFCLASS ~S, the slot specification ~S is obsolete.~%~
155 class-name spec (list (car spec) :initform (cadr spec))))
157 (let* ((name (pop spec))
161 (unsupplied (list nil))
162 (initform (getf spec :initform unsupplied)))
163 (doplist (key val) spec
165 (:accessor (push val readers)
166 (push `(setf ,val) writers))
167 (:reader (push val readers))
168 (:writer (push val writers))
169 (:initarg (push val initargs))))
170 (loop (unless (remf spec :accessor) (return)))
171 (loop (unless (remf spec :reader) (return)))
172 (loop (unless (remf spec :writer) (return)))
173 (loop (unless (remf spec :initarg) (return)))
174 (setq *writers* (append writers *writers*))
175 (setq *readers* (append readers *readers*))
176 (setq spec `(:name ',name
181 (if (eq initform unsupplied)
183 `(list* :initfunction ,(make-initfunction initform) ,@spec))))))
185 (defun canonicalize-defclass-option (class-name option)
186 (declare (ignore class-name))
189 (let ((canonical ()))
190 (let (key val (tail (cdr option)))
191 (loop (when (null tail) (return nil))
194 (push ``(,',key ,,(make-initfunction val) ,',val) canonical))
195 `(':direct-default-initargs (list ,@(nreverse canonical))))))
197 `(',(car option) ',(cadr option)))
199 `(',(car option) ',(cdr option)))))
201 ;;; This is the early definition of load-defclass. It just collects up
202 ;;; all the class definitions in a list. Later, in the file
203 ;;; braid1.lisp, these are actually defined.
205 ;;; Each entry in *EARLY-CLASS-DEFINITIONS* is an EARLY-CLASS-DEFINITION.
206 (defparameter *early-class-definitions* ())
208 (defun early-class-definition (class-name)
209 (or (find class-name *early-class-definitions* :key #'ecd-class-name)
210 (error "~S is not a class in *early-class-definitions*." class-name)))
212 (defun make-early-class-definition
213 (name source metaclass
214 superclass-names canonical-slots other-initargs)
215 (list 'early-class-definition
216 name source metaclass
217 superclass-names canonical-slots other-initargs))
219 (defun ecd-class-name (ecd) (nth 1 ecd))
220 (defun ecd-source (ecd) (nth 2 ecd))
221 (defun ecd-metaclass (ecd) (nth 3 ecd))
222 (defun ecd-superclass-names (ecd) (nth 4 ecd))
223 (defun ecd-canonical-slots (ecd) (nth 5 ecd))
224 (defun ecd-other-initargs (ecd) (nth 6 ecd))
226 (defvar *early-class-slots* nil)
228 (defun canonical-slot-name (canonical-slot)
229 (getf canonical-slot :name))
231 (defun early-class-slots (class-name)
232 (cdr (or (assoc class-name *early-class-slots*)
233 (let ((a (cons class-name
234 (mapcar #'canonical-slot-name
235 (early-collect-inheritance class-name)))))
236 (push a *early-class-slots*)
239 (defun early-class-size (class-name)
240 (length (early-class-slots class-name)))
242 (defun early-collect-inheritance (class-name)
243 ;;(declare (values slots cpl default-initargs direct-subclasses))
244 (let ((cpl (early-collect-cpl class-name)))
245 (values (early-collect-slots cpl)
247 (early-collect-default-initargs cpl)
248 (gathering1 (collecting)
249 (dolist (definition *early-class-definitions*)
250 (when (memq class-name (ecd-superclass-names definition))
251 (gather1 (ecd-class-name definition))))))))
253 (defun early-collect-slots (cpl)
254 (let* ((definitions (mapcar #'early-class-definition cpl))
255 (super-slots (mapcar #'ecd-canonical-slots definitions))
256 (slots (apply #'append (reverse super-slots))))
258 (let ((name1 (canonical-slot-name s1)))
259 (dolist (s2 (cdr (memq s1 slots)))
260 (when (eq name1 (canonical-slot-name s2))
261 (error "More than one early class defines a slot with the~%~
262 name ~S. This can't work because the bootstrap~%~
263 object system doesn't know how to compute effective~%~
268 (defun early-collect-cpl (class-name)
270 (let* ((definition (early-class-definition c))
271 (supers (ecd-superclass-names definition)))
273 (apply #'append (mapcar #'early-collect-cpl supers))))))
274 (remove-duplicates (walk class-name) :from-end nil :test #'eq)))
276 (defun early-collect-default-initargs (cpl)
277 (let ((default-initargs ()))
278 (dolist (class-name cpl)
279 (let* ((definition (early-class-definition class-name))
280 (others (ecd-other-initargs definition)))
281 (loop (when (null others) (return nil))
282 (let ((initarg (pop others)))
283 (unless (eq initarg :direct-default-initargs)
284 (error "~@<The defclass option ~S is not supported by ~
285 the bootstrap object system.~:@>"
287 (setq default-initargs
288 (nconc default-initargs (reverse (pop others)))))))
289 (reverse default-initargs)))
291 (defun !bootstrap-slot-index (class-name slot-name)
292 (or (position slot-name (early-class-slots class-name))
293 (error "~S not found" slot-name)))
295 ;;; !BOOTSTRAP-GET-SLOT and !BOOTSTRAP-SET-SLOT are used to access and
296 ;;; change the values of slots during bootstrapping. During
297 ;;; bootstrapping, there are only two kinds of objects whose slots we
298 ;;; need to access, CLASSes and SLOT-DEFINITIONs. The first argument
299 ;;; to these functions tells whether the object is a CLASS or a
302 ;;; Note that the way this works it stores the slot in the same place
303 ;;; in memory that the full object system will expect to find it
304 ;;; later. This is critical to the bootstrapping process, the whole
305 ;;; changeover to the full object system is predicated on this.
307 ;;; One important point is that the layout of standard classes and
308 ;;; standard slots must be computed the same way in this file as it is
309 ;;; by the full object system later.
310 (defmacro !bootstrap-get-slot (type object slot-name)
311 `(clos-slots-ref (get-slots ,object)
312 (!bootstrap-slot-index ,type ,slot-name)))
313 (defun !bootstrap-set-slot (type object slot-name new-value)
314 (setf (!bootstrap-get-slot type object slot-name) new-value))
316 (defun early-class-name (class)
317 (!bootstrap-get-slot 'class class 'name))
319 (defun early-class-precedence-list (class)
320 (!bootstrap-get-slot 'pcl-class class 'class-precedence-list))
322 (defun early-class-name-of (instance)
323 (early-class-name (class-of instance)))
325 (defun early-class-slotds (class)
326 (!bootstrap-get-slot 'slot-class class 'slots))
328 (defun early-slot-definition-name (slotd)
329 (!bootstrap-get-slot 'standard-effective-slot-definition slotd 'name))
331 (defun early-slot-definition-location (slotd)
332 (!bootstrap-get-slot 'standard-effective-slot-definition slotd 'location))
334 (defun early-accessor-method-slot-name (method)
335 (!bootstrap-get-slot 'standard-accessor-method method 'slot-name))
337 (unless (fboundp 'class-name-of)
338 (setf (symbol-function 'class-name-of)
339 (symbol-function 'early-class-name-of)))
340 (unintern 'early-class-name-of)
342 (defun early-class-direct-subclasses (class)
343 (!bootstrap-get-slot 'class class 'direct-subclasses))
345 (declaim (notinline load-defclass))
346 (defun load-defclass (name metaclass supers canonical-slots canonical-options)
347 (setq supers (copy-tree supers)
348 canonical-slots (copy-tree canonical-slots)
349 canonical-options (copy-tree canonical-options))
350 (when (eq metaclass 'standard-class)
351 (inform-type-system-about-std-class name))
353 (make-early-class-definition name
360 (find name *early-class-definitions* :key #'ecd-class-name)))
361 (setq *early-class-definitions*
362 (cons ecd (remove existing *early-class-definitions*)))