1 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; This software is derived from software originally released by Xerox
5 ;;;; Corporation. Copyright and release statements follow. Later modifications
6 ;;;; to the software are in the public domain and are provided with
7 ;;;; absolutely no warranty. See the COPYING and CREDITS files for more
10 ;;;; copyright information from original PCL sources:
12 ;;;; Copyright (c) 1985, 1986, 1987, 1988, 1989, 1990 Xerox Corporation.
13 ;;;; All rights reserved.
15 ;;;; Use and copying of this software and preparation of derivative works based
16 ;;;; upon this software are permitted. Any distribution of this software or
17 ;;;; derivative works must comply with all applicable United States export
20 ;;;; This software is made available AS IS, and Xerox Corporation makes no
21 ;;;; warranty about the software, its performance or its conformity to any
26 ;;; (These are left over from the days when PCL was an add-on package
27 ;;; for a pre-CLOS Common Lisp. They shouldn't happen in a normal
28 ;;; build, of course, but they might happen if someone is experimenting
29 ;;; and debugging, and it's probably worth complaining if they do,
30 ;;; so we've left 'em in.)
31 (when (eq *boot-state* 'complete)
32 (error "Trying to load (or compile) PCL in an environment in which it~%~
33 has already been loaded. This doesn't work, you will have to~%~
34 get a fresh lisp (reboot) and then load PCL."))
36 (cerror "Try loading (or compiling) PCL anyways."
37 "Trying to load (or compile) PCL in an environment in which it~%~
38 has already been partially loaded. This may not work, you may~%~
39 need to get a fresh lisp (reboot) and then load PCL."))
41 #-sb-fluid (declaim (inline gdefinition))
42 (defun gdefinition (spec)
43 ;; This is null layer right now, but once FDEFINITION stops bypasssing
44 ;; fwrappers/encapsulations we can do that here.
47 (defun (setf gdefinition) (new-value spec)
48 ;; This is almost a null layer right now, but once (SETF
49 ;; FDEFINITION) stops bypasssing fwrappers/encapsulations we can do
51 (sb-c::note-name-defined spec :function) ; FIXME: do we need this? Why?
52 (setf (fdefinition spec) new-value))
54 ;;;; type specifier hackery
56 ;;; internal to this file
57 (defun coerce-to-class (class &optional make-forward-referenced-class-p)
59 (or (find-class class (not make-forward-referenced-class-p))
64 (defun specializer-from-type (type &aux args)
66 (setq args (cdr type) type (car type)))
68 (or (and (null args) (find-class type))
70 (class (coerce-to-class (car args)))
71 (prototype (make-instance 'class-prototype-specializer
72 :object (coerce-to-class (car args))))
73 (class-eq (class-eq-specializer (coerce-to-class (car args))))
74 (eql (intern-eql-specializer (car args))))))
75 ;; FIXME: do we still need this?
76 ((and (null args) (typep type 'classoid))
77 (or (classoid-pcl-class type)
78 (ensure-non-standard-class (classoid-name type))))
79 ((specializerp type) type)))
82 (defun type-from-specializer (specl)
86 (unless (member (car specl) '(class prototype class-eq eql))
87 (error "~S is not a legal specializer type." specl))
91 ;;maybe (or (find-class specl nil) (ensure-class specl)) instead?
92 (setq specl (find-class specl)))
93 (or (not (eq *boot-state* 'complete))
94 (specializerp specl)))
95 (specializer-type specl))
97 (error "~S is neither a type nor a specializer." specl))))
99 (defun type-class (type)
100 (declare (special *the-class-t*))
101 (setq type (type-from-specializer type))
105 (error "bad argument to TYPE-CLASS"))
107 (eql (class-of (cadr type)))
108 (prototype (class-of (cadr type))) ;?
109 (class-eq (cadr type))
110 (class (cadr type)))))
112 (defun class-eq-type (class)
113 (specializer-type (class-eq-specializer class)))
115 ;;; internal to this file..
117 ;;; These functions are a pale imitation of their namesake. They accept
118 ;;; class objects or types where they should.
119 (defun *normalize-type (type)
121 (if (member (car type) '(not and or))
122 `(,(car type) ,@(mapcar #'*normalize-type (cdr type)))
123 (if (null (cdr type))
124 (*normalize-type (car type))
127 (let ((class (find-class type nil)))
129 (let ((type (specializer-type class)))
130 (if (listp type) type `(,type)))
132 ((or (not (eq *boot-state* 'complete))
134 (specializer-type type))
136 (error "~S is not a type." type))))
138 ;;; internal to this file...
139 (defun convert-to-system-type (type)
141 ((not and or) `(,(car type) ,@(mapcar #'convert-to-system-type
143 ((class class-eq) ; class-eq is impossible to do right
144 (layout-classoid (class-wrapper (cadr type))))
146 (t (if (null (cdr type))
150 ;;; Writing the missing NOT and AND clauses will improve the quality
151 ;;; of code generated by GENERATE-DISCRIMINATION-NET, but calling
152 ;;; SUBTYPEP in place of just returning (VALUES NIL NIL) can be very
153 ;;; slow. *SUBTYPEP is used by PCL itself, and must be fast.
155 ;;; FIXME: SB-KERNEL has fast-and-not-quite-precise type code for use
156 ;;; in the compiler. Could we share some of it here?
157 (defun *subtypep (type1 type2)
158 (if (equal type1 type2)
160 (if (eq *boot-state* 'early)
161 (values (eq type1 type2) t)
162 (let ((*in-precompute-effective-methods-p* t))
163 (declare (special *in-precompute-effective-methods-p*))
164 ;; FIXME: *IN-PRECOMPUTE-EFFECTIVE-METHODS-P* is not a
165 ;; good name. It changes the way
166 ;; CLASS-APPLICABLE-USING-CLASS-P works.
167 (setq type1 (*normalize-type type1))
168 (setq type2 (*normalize-type type2))
171 (values nil nil)) ; XXX We should improve this.
173 (values nil nil)) ; XXX We should improve this.
174 ((eql wrapper-eq class-eq class)
175 (multiple-value-bind (app-p maybe-app-p)
176 (specializer-applicable-using-type-p type2 type1)
177 (values app-p (or app-p (not maybe-app-p)))))
179 (subtypep (convert-to-system-type type1)
180 (convert-to-system-type type2))))))))
182 (defvar *built-in-class-symbols* ())
183 (defvar *built-in-wrapper-symbols* ())
185 (defun get-built-in-class-symbol (class-name)
186 (or (cadr (assq class-name *built-in-class-symbols*))
187 (let ((symbol (make-class-symbol class-name)))
188 (push (list class-name symbol) *built-in-class-symbols*)
191 (defun get-built-in-wrapper-symbol (class-name)
192 (or (cadr (assq class-name *built-in-wrapper-symbols*))
193 (let ((symbol (make-wrapper-symbol class-name)))
194 (push (list class-name symbol) *built-in-wrapper-symbols*)
197 (pushnew '%class *var-declarations*)
198 (pushnew '%variable-rebinding *var-declarations*)
200 (defun variable-class (var env)
201 (caddr (var-declaration 'class var env)))
203 (defvar *standard-method-combination*)
205 (defun plist-value (object name)
206 (getf (object-plist object) name))
208 (defun (setf plist-value) (new-value object name)
210 (setf (getf (object-plist object) name) new-value)
212 (remf (object-plist object) name)
215 ;;;; built-in classes
217 ;;; Grovel over SB-KERNEL::*BUILT-IN-CLASSES* in order to set
218 ;;; SB-PCL:*BUILT-IN-CLASSES*.
219 (/show "about to set up SB-PCL::*BUILT-IN-CLASSES*")
220 (defvar *built-in-classes*
221 (labels ((direct-supers (class)
222 (/noshow "entering DIRECT-SUPERS" (classoid-name class))
223 (if (typep class 'built-in-classoid)
224 (built-in-classoid-direct-superclasses class)
225 (let ((inherits (layout-inherits
226 (classoid-layout class))))
228 (list (svref inherits (1- (length inherits)))))))
230 (/noshow "entering DIRECT-SUBS" (classoid-name class))
232 (let ((subs (classoid-subclasses class)))
238 (when (member class (direct-supers sub))
241 (mapcar (lambda (kernel-bic-entry)
242 (/noshow "setting up" kernel-bic-entry)
243 (let* ((name (car kernel-bic-entry))
244 (class (find-classoid name))
246 (getf (cdr kernel-bic-entry) :prototype-form)))
249 ,(mapcar #'classoid-name (direct-supers class))
250 ,(mapcar #'classoid-name (direct-subs class))
254 (layout-classoid x)))
257 (classoid-layout class))))
259 (eval prototype-form)
260 ;; This is the default prototype value which
261 ;; was used, without explanation, by the CMU CL
262 ;; code we're derived from. Evidently it's safe
263 ;; in all relevant cases.
265 (remove-if (lambda (kernel-bic-entry)
266 (member (first kernel-bic-entry)
267 ;; I'm not sure why these are removed from
268 ;; the list, but that's what the original
269 ;; CMU CL code did. -- WHN 20000715
271 file-stream string-stream)))
272 sb-kernel::*built-in-classes*))))
273 (/noshow "done setting up SB-PCL::*BUILT-IN-CLASSES*")
275 ;;;; the classes that define the kernel of the metabraid
278 (:metaclass built-in-class))
280 (defclass function (t) ()
281 (:metaclass built-in-class))
283 (defclass stream (t) ()
284 (:metaclass built-in-class))
286 (defclass file-stream (stream) ()
287 (:metaclass built-in-class))
289 (defclass string-stream (stream) ()
290 (:metaclass built-in-class))
292 (defclass slot-object (t) ()
293 (:metaclass slot-class))
295 (defclass condition (slot-object) ()
296 (:metaclass condition-class))
298 (defclass structure-object (slot-object) ()
299 (:metaclass structure-class))
301 (defstruct (dead-beef-structure-object
302 (:constructor |STRUCTURE-OBJECT class constructor|)
305 (defclass standard-object (slot-object) ())
307 (defclass funcallable-standard-object (function standard-object)
309 (:metaclass funcallable-standard-class))
311 (defclass metaobject (standard-object) ())
313 (defclass generic-function (dependent-update-mixin
314 definition-source-mixin
316 funcallable-standard-object)
317 ((%documentation :initform nil :initarg :documentation)
318 ;; We need to make a distinction between the methods initially set
319 ;; up by :METHOD options to DEFGENERIC and the ones set up later by
320 ;; DEFMETHOD, because ANSI specifies that executing DEFGENERIC on
321 ;; an already-DEFGENERICed function clears the methods set by the
322 ;; previous DEFGENERIC, but not methods set by DEFMETHOD. (Making
323 ;; this distinction seems a little kludgy, but it has the positive
324 ;; effect of making it so that loading a file a.lisp containing
325 ;; DEFGENERIC, then loading a second file b.lisp containing
326 ;; DEFMETHOD, then modifying and reloading a.lisp and/or b.lisp
327 ;; tends to leave the generic function in a state consistent with
328 ;; the most-recently-loaded state of a.lisp and b.lisp.)
329 (initial-methods :initform ()
330 :accessor generic-function-initial-methods))
331 (:metaclass funcallable-standard-class))
333 (defclass standard-generic-function (generic-function)
337 :reader generic-function-name)
340 :accessor generic-function-methods
343 :initarg :method-class
344 :accessor generic-function-method-class)
346 :initarg :method-combination
347 :accessor generic-function-method-combination)
349 ;; KLUDGE: AMOP specifies :DECLARATIONS, while ANSI specifies
350 ;; :DECLARE. Allow either (but FIXME: maybe a note or a warning
351 ;; might be appropriate).
352 :initarg :declarations
355 :accessor generic-function-declarations)
357 :initform (make-arg-info)
361 :accessor gf-dfun-state))
362 (:metaclass funcallable-standard-class)
363 (:default-initargs :method-class *the-class-standard-method*
364 :method-combination *standard-method-combination*))
366 (defclass method (metaobject) ())
368 (defclass standard-method (plist-mixin definition-source-mixin method)
371 :accessor method-generic-function)
375 :reader method-qualifiers)
378 :initarg :specializers
379 :reader method-specializers)
382 :initarg :lambda-list
383 :reader method-lambda-list)
384 (%function :initform nil :initarg :function :reader method-function)
385 (%documentation :initform nil :initarg :documentation)))
387 (defclass accessor-method (standard-method)
388 ((slot-name :initform nil :initarg :slot-name
389 :reader accessor-method-slot-name)))
391 (defclass standard-accessor-method (accessor-method)
392 ((%slot-definition :initform nil :initarg :slot-definition
393 :reader accessor-method-slot-definition)))
395 (defclass standard-reader-method (standard-accessor-method) ())
396 (defclass standard-writer-method (standard-accessor-method) ())
397 ;;; an extension, apparently.
398 (defclass standard-boundp-method (standard-accessor-method) ())
400 ;;; for (SLOT-VALUE X 'FOO) / ACCESSOR-SLOT-VALUE optimization, which
401 ;;; can't be STANDARD-READER-METHOD because there is no associated
403 (defclass global-reader-method (accessor-method) ())
404 (defclass global-writer-method (accessor-method) ())
405 (defclass global-boundp-method (accessor-method) ())
407 (defclass method-combination (metaobject)
408 ((%documentation :initform nil :initarg :documentation)))
410 (defclass standard-method-combination (definition-source-mixin
413 :reader method-combination-type-name
416 :reader method-combination-options
419 (defclass long-method-combination (standard-method-combination)
422 :reader long-method-combination-function)
424 :initarg :args-lambda-list
425 :reader long-method-combination-args-lambda-list)))
427 (defclass short-method-combination (standard-method-combination)
429 :reader short-combination-operator
431 (identity-with-one-argument
432 :reader short-combination-identity-with-one-argument
433 :initarg :identity-with-one-argument)))
435 (defclass slot-definition (metaobject)
439 :accessor slot-definition-name)
443 :accessor slot-definition-initform)
446 :initarg :initfunction
447 :accessor slot-definition-initfunction)
451 :accessor slot-definition-readers)
455 :accessor slot-definition-writers)
459 :accessor slot-definition-initargs)
460 (%type :initform t :initarg :type :accessor slot-definition-type)
461 (%type-check-function :initform nil
462 :initarg type-check-function
463 :accessor slot-definition-type-check-function)
465 :initform nil :initarg :documentation
466 ;; KLUDGE: we need a reader for bootstrapping purposes, in
467 ;; COMPUTE-EFFECTIVE-SLOT-DEFINITION-INITARGS.
468 :reader %slot-definition-documentation)
469 (%class :initform nil :initarg :class :accessor slot-definition-class)))
471 (defclass standard-slot-definition (slot-definition)
475 :accessor slot-definition-allocation)
478 :initarg :allocation-class
479 :accessor slot-definition-allocation-class)))
481 (defclass condition-slot-definition (slot-definition)
485 :accessor slot-definition-allocation)
488 :initarg :allocation-class
489 :accessor slot-definition-allocation-class)))
491 (defclass structure-slot-definition (slot-definition)
492 ((defstruct-accessor-symbol
494 :initarg :defstruct-accessor-symbol
495 :accessor slot-definition-defstruct-accessor-symbol)
496 (internal-reader-function
498 :initarg :internal-reader-function
499 :accessor slot-definition-internal-reader-function)
500 (internal-writer-function
502 :initarg :internal-writer-function
503 :accessor slot-definition-internal-writer-function)))
505 (defclass direct-slot-definition (slot-definition)
508 (defclass effective-slot-definition (slot-definition)
509 ((reader-function ; (lambda (object) ...)
510 :accessor slot-definition-reader-function)
511 (writer-function ; (lambda (new-value object) ...)
512 :accessor slot-definition-writer-function)
513 (boundp-function ; (lambda (object) ...)
514 :accessor slot-definition-boundp-function)
518 (defclass standard-direct-slot-definition (standard-slot-definition
519 direct-slot-definition)
522 (defclass standard-effective-slot-definition (standard-slot-definition
523 effective-slot-definition)
524 ((location ; nil, a fixnum, a cons: (slot-name . value)
526 :accessor slot-definition-location)))
528 (defclass condition-direct-slot-definition (condition-slot-definition
529 direct-slot-definition)
532 (defclass condition-effective-slot-definition (condition-slot-definition
533 effective-slot-definition)
536 (defclass structure-direct-slot-definition (structure-slot-definition
537 direct-slot-definition)
540 (defclass structure-effective-slot-definition (structure-slot-definition
541 effective-slot-definition)
544 (defclass specializer (metaobject)
545 ;; KLUDGE: in sbcl-0.9.10.2 this was renamed from TYPE, which was an
546 ;; external symbol of the CL package and hence potentially collides
547 ;; with user code. Renaming this to %TYPE, however, is the coward's
548 ;; way out, because the objects that PCL puts in this slot aren't
549 ;; (quite) types: they are closer to kinds of specializer. However,
550 ;; the wholesale renaming and disentangling of specializers didn't
551 ;; appeal. (See also message <sqd5hrclb2.fsf@cam.ac.uk> and
552 ;; responses in comp.lang.lisp). -- CSR, 2006-02-27
553 ((%type :initform nil :reader specializer-type)))
555 (defclass specializer-with-object (specializer) ())
557 (defclass exact-class-specializer (specializer) ())
559 (defclass class-eq-specializer (exact-class-specializer
560 specializer-with-object)
561 ((object :initarg :class
562 :reader specializer-class
563 :reader specializer-object)))
565 (defclass class-prototype-specializer (specializer-with-object)
566 ((object :initarg :class
567 :reader specializer-class
568 :reader specializer-object)))
570 (defclass eql-specializer (exact-class-specializer specializer-with-object)
571 ((object :initarg :object :reader specializer-object
572 :reader eql-specializer-object)))
574 (defvar *eql-specializer-table* (make-hash-table :test 'eql))
576 (defun intern-eql-specializer (object)
577 (or (gethash object *eql-specializer-table*)
578 (setf (gethash object *eql-specializer-table*)
579 (make-instance 'eql-specializer :object object))))
581 (defclass class (dependent-update-mixin
582 definition-source-mixin
588 (class-eq-specializer
590 :reader class-eq-specializer)
593 :reader class-direct-superclasses)
594 ;; Note: The (CLASS-)DIRECT-SUBCLASSES for STRUCTURE-CLASSes and
595 ;; CONDITION-CLASSes are lazily computed whenever the subclass info
596 ;; becomes available, i.e. when the PCL class is created.
599 :reader class-direct-subclasses)
601 :initform (cons nil nil))
604 :initarg :documentation)
605 ;; True if the class definition was compiled with a (SAFETY 3)
606 ;; optimization policy.
613 :reader class-finalized-p)))
615 (def!method make-load-form ((class class) &optional env)
616 ;; FIXME: should we not instead pass ENV to FIND-CLASS? Probably
617 ;; doesn't matter while all our environments are the same...
618 (declare (ignore env))
619 (let ((name (class-name class)))
620 (unless (and name (eq (find-class name nil) class))
621 (error "~@<Can't use anonymous or undefined class as constant: ~S~:@>"
623 `(find-class ',name)))
625 ;;; The class PCL-CLASS is an implementation-specific common
626 ;;; superclass of all specified subclasses of the class CLASS.
627 (defclass pcl-class (class)
628 ((%class-precedence-list
629 :reader class-precedence-list)
630 ;; KLUDGE: see note in CPL-OR-NIL
632 :reader cpl-available-p
636 :reader class-can-precede-list)
637 (incompatible-superclass-list
639 :accessor class-incompatible-superclass-list)
642 :reader class-wrapper)
645 :reader class-prototype)))
647 (defclass slot-class (pcl-class)
650 :accessor class-direct-slots)
653 :accessor class-slots)))
655 ;;; The class STD-CLASS is an implementation-specific common
656 ;;; superclass of the classes STANDARD-CLASS and
657 ;;; FUNCALLABLE-STANDARD-CLASS.
658 (defclass std-class (slot-class)
661 (defclass standard-class (std-class)
664 (defclass funcallable-standard-class (std-class)
667 (defclass forward-referenced-class (pcl-class) ())
669 (defclass built-in-class (pcl-class) ())
671 (defclass condition-class (slot-class) ())
673 (defclass structure-class (slot-class)
676 :accessor class-defstruct-form)
677 (defstruct-constructor
679 :accessor class-defstruct-constructor)
682 :initarg :from-defclass-p)))
684 (defclass definition-source-mixin (standard-object)
687 :reader definition-source
688 :initarg :definition-source)))
690 (defclass plist-mixin (standard-object)
691 ((plist :initform () :accessor object-plist :initarg plist)))
693 (defclass dependent-update-mixin (plist-mixin) ())
695 (defparameter *early-class-predicates*
696 '((specializer specializerp)
697 (exact-class-specializer exact-class-specializer-p)
698 (class-eq-specializer class-eq-specializer-p)
699 (eql-specializer eql-specializer-p)
701 (slot-class slot-class-p)
702 (std-class std-class-p)
703 (standard-class standard-class-p)
704 (funcallable-standard-class funcallable-standard-class-p)
705 (condition-class condition-class-p)
706 (structure-class structure-class-p)
707 (forward-referenced-class forward-referenced-class-p)
709 (standard-method standard-method-p)
710 (accessor-method accessor-method-p)
711 (standard-accessor-method standard-accessor-method-p)
712 (standard-reader-method standard-reader-method-p)
713 (standard-writer-method standard-writer-method-p)
714 (standard-boundp-method standard-boundp-method-p)
715 (global-reader-method global-reader-method-p)
716 (global-writer-method global-writer-method-p)
717 (global-boundp-method global-boundp-method-p)
718 (generic-function generic-function-p)
719 (standard-generic-function standard-generic-function-p)
720 (method-combination method-combination-p)
721 (long-method-combination long-method-combination-p)
722 (short-method-combination short-method-combination-p)))