X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fpcl%2Fdefclass.lisp;h=33bfd0b1a3024063326c7942436f413e21d406b9;hb=4ba392170e98744f0ef0b8e08a5d42b988f1d0c9;hp=ddd3f0a0fadae6bd303a909d1718e6511bffed0d;hpb=25422d88edd9bf712206aee5143a4f952981b4d5;p=sbcl.git diff --git a/src/pcl/defclass.lisp b/src/pcl/defclass.lisp index ddd3f0a..33bfd0b 100644 --- a/src/pcl/defclass.lisp +++ b/src/pcl/defclass.lisp @@ -25,25 +25,6 @@ ;;;; DEFCLASS macro and close personal friends -;;; ANSI says (Macro DEFCLASS, section 7.7) that DEFCLASS, if it -;;; "appears as a top level form, the compiler must make the class -;;; name be recognized as a valid type name in subsequent declarations -;;; (as for deftype) and be recognized as a valid class name for -;;; defmethod parameter specializers and for use as the :metaclass -;;; option of a subsequent defclass." -(defun preinform-compiler-about-class-type (name) - ;; Unless the type system already has an actual type attached to - ;; NAME (in which case (1) writing a placeholder value over that - ;; actual type as a compile-time side-effect would probably be a bad - ;; idea and (2) anyway we don't need to modify it in order to make - ;; NAME be recognized as a valid type name) - (unless (info :type :kind name) - ;; Tell the compiler to expect a class with the given NAME, by - ;; writing a kind of minimal placeholder type information. This - ;; placeholder will be overwritten later when the class is defined. - (setf (info :type :kind name) :forthcoming-defclass-type)) - (values)) - ;;; state for the current DEFCLASS expansion (defvar *initfunctions-for-this-defclass*) (defvar *readers-for-this-defclass*) @@ -59,214 +40,293 @@ ;;; After the metabraid has been setup, and the protocol for defining ;;; classes has been defined, the real definition of LOAD-DEFCLASS is ;;; installed by the file std-class.lisp -(defmacro defclass (&environment env name %direct-superclasses %direct-slots &rest %options) - (let ((supers (copy-tree %direct-superclasses)) - (slots (copy-tree %direct-slots)) - (options (copy-tree %options))) - (let ((metaclass 'standard-class)) +(defmacro defclass (&environment env name direct-superclasses direct-slots &rest options) + (let (*initfunctions-for-this-defclass* + *readers-for-this-defclass* ;Truly a crock, but we got + *writers-for-this-defclass* ;to have it to live nicely. + *slot-names-for-this-defclass*) + ;; FIXME: It would be nice to collect all errors from the + ;; expansion of a defclass and signal them in a single go. + (multiple-value-bind (metaclass canonical-options) + (canonize-defclass-options name options) + (let ((canonical-slots (canonize-defclass-slots name direct-slots env)) + ;; DEFSTRUCT-P should be true if the class is defined + ;; with a metaclass STRUCTURE-CLASS, so that a DEFSTRUCT + ;; is compiled for the class. + (defstruct-p (and (eq **boot-state** 'complete) + (let ((mclass (find-class metaclass nil))) + (and mclass + (*subtypep + mclass + *the-class-structure-class*)))))) + (let* ((defclass-form + `(let ,(mapcar #'cdr *initfunctions-for-this-defclass*) + (load-defclass ',name + ',metaclass + ',direct-superclasses + (list ,@canonical-slots) + (list ,@(apply #'append + (when defstruct-p + '(:from-defclass-p t)) + canonical-options)) + ',*readers-for-this-defclass* + ',*writers-for-this-defclass* + ',*slot-names-for-this-defclass* + (sb-c:source-location) + ',(safe-code-p env))))) + (if defstruct-p + (progn + ;; FIXME: (YUK!) Why do we do this? Because in order + ;; to make the defstruct form, we need to know what + ;; the accessors for the slots are, so we need already + ;; to have hooked into the CLOS machinery. + ;; + ;; There may be a better way to do this: it would + ;; involve knowing enough about PCL to ask "what will + ;; my slot names and accessors be"; failing this, we + ;; currently just evaluate the whole kaboodle, and + ;; then use CLASS-DIRECT-SLOTS. -- CSR, 2002-06-07 + (eval defclass-form) + (let* ((include (or (and direct-superclasses + (find-class (car direct-superclasses) nil)) + (and (not (eq name 'structure-object)) + *the-class-structure-object*))) + (defstruct-form (make-structure-class-defstruct-form + name (class-direct-slots (find-class name)) + include))) + `(progn + (eval-when (:compile-toplevel :load-toplevel :execute) + ,defstruct-form) ; really compile the defstruct-form + (eval-when (:compile-toplevel :load-toplevel :execute) + ,defclass-form)))) + `(progn + ;; By telling the type system at compile time about + ;; the existence of a class named NAME, we can avoid + ;; various bogus warnings about "type isn't defined yet" + ;; for code elsewhere in the same file which uses + ;; the name of the type. + ;; + ;; We only need to do this at compile time, because + ;; at load and execute time we write the actual + ;; full-blown class, so the "a class of this name is + ;; coming" note we write here would be irrelevant. + (eval-when (:compile-toplevel) + (%compiler-defclass ',name + ',*readers-for-this-defclass* + ',*writers-for-this-defclass* + ',*slot-names-for-this-defclass*)) + (eval-when (:load-toplevel :execute) + ,defclass-form)))))))) + +(defun canonize-defclass-options (class-name options) + (maplist (lambda (sublist) + (let ((option-name (first (pop sublist)))) + (when (member option-name sublist :key #'first :test #'eq) + (error 'simple-program-error + :format-control "Multiple ~S options in DEFCLASS ~S." + :format-arguments (list option-name class-name))))) + options) + (let (metaclass + default-initargs + documentation + canonized-options) (dolist (option options) - (if (not (listp option)) - (error "~S is not a legal defclass option." option) - (when (eq (car option) :metaclass) - (unless (legal-class-name-p (cadr option)) - (error "The value of the :metaclass option (~S) is not a~%~ - legal class name." - (cadr option))) - (setq metaclass (cadr option)) - (setf options (remove option options)) - (return t)))) - - (let ((*initfunctions-for-this-defclass* ()) - (*readers-for-this-defclass* ()) ;Truly a crock, but we got - (*writers-for-this-defclass* ()) ;to have it to live nicely. - (*slot-names-for-this-defclass* ())) - (let ((canonical-slots - (mapcar (lambda (spec) - (canonicalize-slot-specification name spec env)) - slots)) - (other-initargs - (mapcar (lambda (option) - (canonicalize-defclass-option name option)) - options)) - ;; DEFSTRUCT-P should be true if the class is defined - ;; with a metaclass STRUCTURE-CLASS, so that a DEFSTRUCT - ;; is compiled for the class. - (defstruct-p (and (eq *boot-state* 'complete) - (let ((mclass (find-class metaclass nil))) - (and mclass - (*subtypep - mclass - *the-class-structure-class*)))))) - (let ((defclass-form - `(progn - (let ,(mapcar #'cdr *initfunctions-for-this-defclass*) - (%compiler-defclass ',name - ',*readers-for-this-defclass* - ',*writers-for-this-defclass* - ',*slot-names-for-this-defclass*) - (load-defclass ',name - ',metaclass - ',supers - (list ,@canonical-slots) - (list ,@(apply #'append - (when defstruct-p - '(:from-defclass-p t)) - other-initargs))))))) - (if defstruct-p - (progn - ;; FIXME: (YUK!) Why do we do this? Because in order - ;; to make the defstruct form, we need to know what - ;; the accessors for the slots are, so we need - ;; already to have hooked into the CLOS machinery. - ;; - ;; There may be a better way to do this: it would - ;; involve knowing enough about PCL to ask "what - ;; will my slot names and accessors be"; failing - ;; this, we currently just evaluate the whole - ;; kaboodle, and then use CLASS-DIRECT-SLOTS. -- - ;; CSR, 2002-06-07 - (eval defclass-form) - (let* ((include (or (and supers - (fix-super (car supers))) - (and (not (eq name 'structure-object)) - *the-class-structure-object*))) - (defstruct-form (make-structure-class-defstruct-form - name (class-direct-slots (find-class name)) include))) - `(progn - (eval-when (:compile-toplevel :load-toplevel :execute) - ,defstruct-form) ; really compile the defstruct-form - (eval-when (:compile-toplevel :load-toplevel :execute) - ,defclass-form)))) - `(progn - ;; By telling the type system at compile time about - ;; the existence of a class named NAME, we can avoid - ;; various bogus warnings about "type isn't defined yet" - ;; for code elsewhere in the same file which uses - ;; the name of the type. - ;; - ;; We only need to do this at compile time, because - ;; at load and execute time we write the actual - ;; full-blown class, so the "a class of this name is - ;; coming" note we write here would be irrelevant. - (eval-when (:compile-toplevel) - (%compiler-defclass ',name - ',*readers-for-this-defclass* - ',*writers-for-this-defclass* - ',*slot-names-for-this-defclass*)) - (eval-when (:load-toplevel :execute) - ,defclass-form))))))))) - -(defun %compiler-defclass (name readers writers slot-names) - (preinform-compiler-about-class-type name) - (proclaim `(ftype (function (t) t) - ,@readers - ,@(mapcar #'slot-reader-name slot-names) - ,@(mapcar #'slot-boundp-name slot-names))) - (proclaim `(ftype (function (t t) t) - ,@writers ,@(mapcar #'slot-writer-name slot-names)))) + (unless (listp option) + (error "~S is not a legal defclass option." option)) + (case (first option) + (:metaclass + (let ((maybe-metaclass (second option))) + (unless (and maybe-metaclass (legal-class-name-p maybe-metaclass)) + (error 'simple-program-error + :format-control "~@" + :format-arguments (list maybe-metaclass))) + (setf metaclass maybe-metaclass))) + (:default-initargs + (let (initargs arg-names) + (doplist (key val) (cdr option) + (when (member key arg-names :test #'eq) + (error 'simple-program-error + :format-control "~@" + :format-arguments (list key class-name))) + (push key arg-names) + (push ``(,',key ,',val ,,(make-initfunction val)) initargs)) + (setf default-initargs t) + (push `(:direct-default-initargs (list ,@(nreverse initargs))) + canonized-options))) + (:documentation + (unless (stringp (second option)) + (error "~S is not a legal :documentation value" (second option))) + (setf documentation t) + (push `(:documentation ,(second option)) canonized-options)) + (otherwise + (push `(',(car option) ',(cdr option)) canonized-options)))) + (unless default-initargs + (push '(:direct-default-initargs nil) canonized-options)) + (values (or metaclass 'standard-class) (nreverse canonized-options)))) + +(defun canonize-defclass-slots (class-name slots env) + (let (canonized-specs) + (dolist (spec slots) + (when (atom spec) + (setf spec (list spec))) + (when (and (cdr spec) (null (cddr spec))) + (error 'simple-program-error + :format-control "~@" + :format-arguments (list class-name spec + `(,(car spec) :initform ,(cadr spec))))) + (let* ((name (car spec)) + (plist (cdr spec)) + (readers ()) + (writers ()) + (initargs ()) + (others ()) + (unsupplied (list nil)) + (type t) + (initform unsupplied)) + (check-slot-name-for-defclass name class-name env) + (push name *slot-names-for-this-defclass*) + (flet ((note-reader (x) + (unless (symbolp x) + (error 'simple-program-error + :format-control "Slot reader name ~S for slot ~S in ~ + DEFCLASS ~S is not a symbol." + :format-arguments (list x name class-name))) + (push x readers) + (push x *readers-for-this-defclass*)) + (note-writer (x) + (push x writers) + (push x *writers-for-this-defclass*))) + (doplist (key val) plist + (case key + (:accessor (note-reader val) (note-writer `(setf ,val))) + (:reader (note-reader val)) + (:writer (note-writer val)) + (:initarg + (unless (symbolp val) + (error 'simple-program-error + :format-control "Slot initarg name ~S for slot ~S in ~ + DEFCLASS ~S is not a symbol." + :format-arguments (list val name class-name))) + (push val initargs)) + (otherwise + (when (member key '(:initform :allocation :type :documentation)) + (when (eq key :initform) + (setf initform val)) + (when (eq key :type) + (setf type val)) + (when (get-properties others (list key)) + (error 'simple-program-error + :format-control "Duplicate slot option ~S for slot ~ + ~S in DEFCLASS ~S." + :format-arguments (list key name class-name)))) + ;; For non-standard options multiple entries go in a list + (push val (getf others key)))))) + ;; Unwrap singleton lists (AMOP 5.4.2) + (do ((head others (cddr head))) + ((null head)) + (unless (cdr (second head)) + (setf (second head) (car (second head))))) + (let ((canon `(:name ',name :readers ',readers :writers ',writers + :initargs ',initargs ',others))) + (push (if (eq initform unsupplied) + `(list* ,@canon) + `(list* :initfunction ,(make-initfunction initform) + ,@canon)) + canonized-specs)))) + (nreverse canonized-specs))) + + +(defun check-slot-name-for-defclass (name class-name env) + (flet ((slot-name-illegal (reason) + (error 'simple-program-error + :format-control + (format nil "~~@" reason) + :format-arguments (list class-name name)))) + (cond ((not (symbolp name)) + (slot-name-illegal "not a symbol")) + ((keywordp name) + (slot-name-illegal "a keyword")) + ((constantp name env) + (slot-name-illegal "a constant")) + ((member name *slot-names-for-this-defclass* :test #'eq) + (error 'simple-program-error + :format-control "Multiple slots named ~S in DEFCLASS ~S." + :format-arguments (list name class-name)))))) (defun make-initfunction (initform) (cond ((or (eq initform t) - (equal initform ''t)) - '(function constantly-t)) - ((or (eq initform nil) - (equal initform ''nil)) - '(function constantly-nil)) - ((or (eql initform 0) - (equal initform ''0)) - '(function constantly-0)) - (t - (let ((entry (assoc initform *initfunctions-for-this-defclass* - :test #'equal))) - (unless entry - (setq entry (list initform - (gensym) - `(function (lambda () ,initform)))) - (push entry *initfunctions-for-this-defclass*)) - (cadr entry))))) - -(defun canonicalize-slot-specification (class-name spec env) - (labels ((slot-name-illegal (reason) - (error 'simple-program-error - :format-control - (format nil "~~@" reason) - :format-arguments (list class-name spec))) - (check-slot-name-legality (name) - (cond - ((not (symbolp name)) - (slot-name-illegal "not a symbol")) - ((keywordp name) - (slot-name-illegal "a keyword")) - ((constantp name env) - (slot-name-illegal "a constant"))))) - (cond ((atom spec) - (check-slot-name-legality spec) - (push spec *slot-names-for-this-defclass*) - `'(:name ,spec)) - ((null (cdr spec)) - (check-slot-name-legality (car spec)) - (push (car spec) *slot-names-for-this-defclass*) - `'(:name ,(car spec))) - ((null (cddr spec)) - (error 'simple-program-error - :format-control - "~@" - initarg))) - (setq default-initargs - (nconc default-initargs (reverse (pop others))))))) + (others (ecd-other-initargs definition))) + (loop (when (null others) (return nil)) + (let ((initarg (pop others))) + (unless (eq initarg :direct-default-initargs) + (error "~@" + initarg))) + (setq default-initargs + (nconc default-initargs (reverse (pop others))))))) (reverse default-initargs))) (defun !bootstrap-slot-index (class-name slot-name) @@ -380,7 +440,7 @@ ;;; by the full object system later. (defmacro !bootstrap-get-slot (type object slot-name) `(clos-slots-ref (get-slots ,object) - (!bootstrap-slot-index ,type ,slot-name))) + (!bootstrap-slot-index ,type ,slot-name))) (defun !bootstrap-set-slot (type object slot-name new-value) (setf (!bootstrap-get-slot type object slot-name) new-value)) @@ -388,7 +448,7 @@ (!bootstrap-get-slot 'class class 'name)) (defun early-class-precedence-list (class) - (!bootstrap-get-slot 'pcl-class class 'class-precedence-list)) + (!bootstrap-get-slot 'pcl-class class '%class-precedence-list)) (defun early-class-name-of (instance) (early-class-name (class-of instance))) @@ -402,32 +462,39 @@ (defun early-slot-definition-location (slotd) (!bootstrap-get-slot 'standard-effective-slot-definition slotd 'location)) +(defun early-slot-definition-info (slotd) + (!bootstrap-get-slot 'standard-effective-slot-definition slotd 'info)) + (defun early-accessor-method-slot-name (method) (!bootstrap-get-slot 'standard-accessor-method method 'slot-name)) (unless (fboundp 'class-name-of) (setf (symbol-function 'class-name-of) - (symbol-function 'early-class-name-of))) + (symbol-function 'early-class-name-of))) (unintern 'early-class-name-of) (defun early-class-direct-subclasses (class) (!bootstrap-get-slot 'class class 'direct-subclasses)) (declaim (notinline load-defclass)) -(defun load-defclass (name metaclass supers canonical-slots canonical-options) +(defun load-defclass (name metaclass supers canonical-slots canonical-options + readers writers slot-names source-location safe-p) + ;; SAFE-P is used by REAL-LOAD-DEFCLASS, but can be ignored here, since + ;; during the bootstrap we won't have (SAFETY 3). + (declare (ignore safe-p)) + (%compiler-defclass name readers writers slot-names) (setq supers (copy-tree supers) - canonical-slots (copy-tree canonical-slots) - canonical-options (copy-tree canonical-options)) + canonical-slots (copy-tree canonical-slots) + canonical-options (copy-tree canonical-options)) (let ((ecd - (make-early-class-definition name - *load-pathname* - metaclass - supers - canonical-slots - canonical-options)) - (existing - (find name *early-class-definitions* :key #'ecd-class-name))) + (make-early-class-definition name + source-location + metaclass + supers + canonical-slots + canonical-options)) + (existing + (find name *early-class-definitions* :key #'ecd-class-name))) (setq *early-class-definitions* - (cons ecd (remove existing *early-class-definitions*))) + (cons ecd (remove existing *early-class-definitions*))) ecd)) -