File: mop-25.impure.lisp

package info (click to toggle)
sbcl 1%3A0.9.16.0-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 19,960 kB
  • ctags: 16,537
  • sloc: lisp: 231,164; ansic: 19,558; asm: 2,539; sh: 1,925; makefile: 308
file content (63 lines) | stat: -rw-r--r-- 2,561 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
;;;; miscellaneous side-effectful tests of the MOP

;;;; This software is part of the SBCL system. See the README file for
;;;; more information.
;;;;
;;;; While most of SBCL is derived from the CMU CL system, the test
;;;; files (like this one) were written from scratch after the fork
;;;; from CMU CL.
;;;;
;;;; This software is in the public domain and is provided with
;;;; absolutely no warranty. See the COPYING and CREDITS files for
;;;; more information.

;;; be sure that the :FUNCTION initarg to initialize methods overrides
;;; any system-provided function.

(defpackage "MOP-25"
  (:use "CL" "SB-MOP"))

(in-package "MOP-25")

(defclass typechecking-reader-method (standard-reader-method)
  ())

(defmethod initialize-instance
    ((method typechecking-reader-method) &rest initargs &key slot-definition)
  (let ((name (slot-definition-name slot-definition))
        (type (slot-definition-type slot-definition)))
    (apply #'call-next-method method
           :function #'(lambda (args next-methods)
                         (declare (ignore next-methods))
                         (apply #'(lambda (instance)
                                    (let ((value (slot-value instance name)))
                                      (unless (typep value type)
                                        (error "Slot ~S of ~S is not of type ~S: ~S"
                                               name instance type value))
                                      value))
                                args))
           initargs)))
(defclass typechecking-reader-class (standard-class)
  ())

(defmethod validate-superclass ((c1 typechecking-reader-class) (c2 standard-class))
  t)

(defmethod reader-method-class
    ((class typechecking-reader-class) direct-slot &rest args)
  (find-class 'typechecking-reader-method))

(defclass testclass25 ()
  ((pair :type (cons symbol (cons symbol null)) :initarg :pair :accessor testclass25-pair))
  (:metaclass typechecking-reader-class))

(assert (equal '(t t t nil t)
               (macrolet ((succeeds (form)
                            `(not (nth-value 1 (ignore-errors ,form)))))
                 (let ((p (list 'abc 'def))
                       (x (make-instance 'testclass25)))
                   (list (succeeds (make-instance 'testclass25 :pair '(seventeen 17)))
                         (succeeds (setf (testclass25-pair x) p))
                         (succeeds (setf (second p) 456))
                         (succeeds (testclass25-pair x))
                         (succeeds (slot-value x 'pair)))))))