0.9.2.45:
[sbcl/lichteblau.git] / src / pcl / fsc.lisp
blob3fb228fddcb71e2215f9beb6f51687cc8937db99
1 ;;;; This file contains the definition of the FUNCALLABLE-STANDARD-CLASS
2 ;;;; metaclass. Much of the implementation of this metaclass is actually
3 ;;;; defined on the class STD-CLASS. What appears in this file is a modest
4 ;;;; number of simple methods related to the low-level differences in the
5 ;;;; implementation of standard and funcallable-standard instances.
6 ;;;;
7 ;;;; As it happens, none of these differences are the ones reflected in
8 ;;;; the MOP specification; STANDARD-CLASS and FUNCALLABLE-STANDARD-CLASS
9 ;;;; share all their specified methods at STD-CLASS.
11 ;;;; This software is part of the SBCL system. See the README file for
12 ;;;; more information.
14 ;;;; This software is derived from software originally released by Xerox
15 ;;;; Corporation. Copyright and release statements follow. Later modifications
16 ;;;; to the software are in the public domain and are provided with
17 ;;;; absolutely no warranty. See the COPYING and CREDITS files for more
18 ;;;; information.
20 ;;;; copyright information from original PCL sources:
21 ;;;;
22 ;;;; Copyright (c) 1985, 1986, 1987, 1988, 1989, 1990 Xerox Corporation.
23 ;;;; All rights reserved.
24 ;;;;
25 ;;;; Use and copying of this software and preparation of derivative works based
26 ;;;; upon this software are permitted. Any distribution of this software or
27 ;;;; derivative works must comply with all applicable United States export
28 ;;;; control laws.
29 ;;;;
30 ;;;; This software is made available AS IS, and Xerox Corporation makes no
31 ;;;; warranty about the software, its performance or its conformity to any
32 ;;;; specification.
34 (in-package "SB-PCL")
36 (defmethod wrapper-fetcher ((class funcallable-standard-class))
37 'fsc-instance-wrapper)
39 (defmethod slots-fetcher ((class funcallable-standard-class))
40 'fsc-instance-slots)
42 (defmethod raw-instance-allocator ((class funcallable-standard-class))
43 'allocate-funcallable-instance)
45 (defmethod validate-superclass ((fsc funcallable-standard-class)
46 (new-super std-class))
47 (let ((new-super-meta-class (class-of new-super)))
48 (or (eq new-super-meta-class *the-class-std-class*)
49 (eq (class-of fsc) new-super-meta-class))))
51 (defmethod allocate-instance
52 ((class funcallable-standard-class) &rest initargs)
53 (declare (ignore initargs))
54 (unless (class-finalized-p class) (finalize-inheritance class))
55 (allocate-funcallable-instance (class-wrapper class)))
57 (defmethod make-reader-method-function ((class funcallable-standard-class)
58 slot-name)
59 (make-std-reader-method-function (class-name class) slot-name))
61 (defmethod make-writer-method-function ((class funcallable-standard-class)
62 slot-name)
63 (make-std-writer-method-function (class-name class) slot-name))
65 ;;;; See the comment about reader-function--std and writer-function--sdt.
66 ;;;;
67 ;(define-function-template reader-function--fsc () '(slot-name)
68 ; `(function
69 ; (lambda (instance)
70 ; (slot-value-using-class (wrapper-class (get-wrapper instance))
71 ; instance
72 ; slot-name))))
74 ;(define-function-template writer-function--fsc () '(slot-name)
75 ; `(function
76 ; (lambda (nv instance)
77 ; (setf
78 ; (slot-value-using-class (wrapper-class (get-wrapper instance))
79 ; instance
80 ; slot-name)
81 ; nv))))
83 ;(eval-when (:load-toplevel)
84 ; (pre-make-templated-function-constructor reader-function--fsc)
85 ; (pre-make-templated-function-constructor writer-function--fsc))