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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
|
;;;-*-Mode:LISP; Package:(PCL LISP 1000); Base:10; Syntax:Common-lisp -*-
;;;
;;; *************************************************************************
;;; Copyright (c) 1985, 1986, 1987, 1988, 1989, 1990 Xerox Corporation.
;;; Copyright (c) 2024 Camm Maguire
;;; All rights reserved.
;;;
;;; Use and copying of this software and preparation of derivative works
;;; based upon this software are permitted. Any distribution of this
;;; software or derivative works must comply with all applicable United
;;; States export control laws.
;;;
;;; This software is made available AS IS, and Xerox Corporation makes no
;;; warranty about the software, its performance or its conformity to any
;;; specification.
;;;
;;; Any person obtaining a copy of this software is requested to send their
;;; name and post office or electronic mail address to:
;;; CommonLoops Coordinator
;;; Xerox PARC
;;; 3333 Coyote Hill Rd.
;;; Palo Alto, CA 94304
;;; (or send Arpanet mail to CommonLoops-Coordinator.pa@Xerox.arpa)
;;;
;;; Suggestions, comments and requests for improvements are also welcome.
;;; *************************************************************************
;;;
(in-package :pcl)
(eval-when (compile load eval)
(defvar *defclass-times* '(load eval)) ;Probably have to change this
;if you use defconstructor.
(defvar *defmethod-times* '(load eval))
(defvar *defgeneric-times* '(load eval))
; defvar is now actually in macros
;(defvar *boot-state* ()) ;NIL
;EARLY
;BRAID
;COMPLETE
)
(eval-when (load eval)
(when (eq *boot-state* 'complete)
(error "Trying to load (or compile) PCL in an environment in which it~%~
has already been loaded. This doesn't work, you will have to~%~
get a fresh lisp (reboot) and then load PCL."))
(when *boot-state*
(cerror "Try loading (or compiling) PCL anyways."
"Trying to load (or compile) PCL in an environment in which it~%~
has already been partially loaded. This may not work, you may~%~
need to get a fresh lisp (reboot) and then load PCL."))
)
;;;
;;; This is like fdefinition on the Lispm. If Common Lisp had something like
;;; function specs I wouldn't need this. On the other hand, I don't like the
;;; way this really works so maybe function specs aren't really right either?
;;;
;;; I also don't understand the real implications of a Lisp-1 on this sort of
;;; thing. Certainly some of the lossage in all of this is because these
;;; SPECs name global definitions.
;;;
;;; Note that this implementation is set up so that an implementation which
;;; has a 'real' function spec mechanism can use that instead and in that way
;;; get rid of setf generic function names.
;;;
(defmacro parse-gspec (spec
(non-setf-var . non-setf-case)
(setf-var . setf-case))
; (declare (indentation 1 1))
#+setf (declare (ignore setf-var setf-case))
(once-only (spec)
`(cond (#-setf (symbolp ,spec) #+setf t
(let ((,non-setf-var ,spec)) ,@non-setf-case))
#-setf
((and (listp ,spec)
(eq (car ,spec) 'setf)
(symbolp (cadr ,spec)))
(let ((,setf-var (cadr ,spec))) ,@setf-case))
#-setf
(t
(error
"Can't understand ~S as a generic function specifier.~%~
It must be either a symbol which can name a function or~%~
a list like ~S, where the car is the symbol ~S and the cadr~%~
is a symbol which can name a generic function."
,spec '(setf <foo>) 'setf)))))
;;;
;;; If symbol names a function which is traced or advised, return the
;;; unadvised, traced etc. definition. This lets me get at the generic
;;; function object even when it is traced.
;;;
(defun unencapsulated-fdefinition (symbol)
#+Lispm (si:fdefinition (si:unencapsulate-function-spec symbol))
#+Lucid (lucid::get-unadvised-procedure (symbol-function symbol))
#+excl (or (excl::encapsulated-basic-definition symbol)
(symbol-function symbol))
#+xerox (il:virginfn symbol)
#+setf (fdefinition symbol)
; #+kcl (symbol-function
; (let ((sym (when (symbolp symbol) (get symbol 'si::traced))) first-form)
; (if (and sym
; (consp (symbol-function symbol))
; (consp (setq first-form (nth 3 (symbol-function symbol))))
; (eq (car first-form) 'si::trace-call))
; sym
; symbol)))
#-(or Lispm Lucid excl Xerox setf kcl) (symbol-function symbol))
;;;
;;; If symbol names a function which is traced or advised, redefine
;;; the `real' definition without affecting the advise.
;;;
(defun fdefine-carefully (name new-definition)
#+Lispm (si:fdefine name new-definition t t)
#+Lucid (let ((lucid::*redefinition-action* nil))
(setf (symbol-function name) new-definition))
#+excl (setf (symbol-function name) new-definition)
#+xerox (let ((advisedp (member name il:advisedfns :test #'eq))
(brokenp (member name il:brokenfns :test #'eq)))
;; In XeroxLisp (late of envos) tracing is implemented
;; as a special case of "breaking". Advising, however,
;; is treated specially.
(xcl:unadvise-function name :no-error t)
(xcl:unbreak-function name :no-error t)
(setf (symbol-function name) new-definition)
(when brokenp (xcl:rebreak-function name))
(when advisedp (xcl:readvise-function name)))
;; FIXME add setf expander for fdefinition -- right now we go through
;; the following code which expands to a call to si::fset
#+(and setf (not cmu) (not kcl)) (setf (fdefinition name) new-definition)
#+kcl (setf (symbol-function (or (si::traced-sym name) name)) new-definition)
#+cmu (progn
(c::%%defun name new-definition nil)
(c::note-name-defined name :function)
new-definition)
#-(or Lispm Lucid excl Xerox setf kcl cmu)
(setf (symbol-function name) new-definition))
(defun gboundp (spec)
(parse-gspec spec
(name (fboundp name))
(name (fboundp (get-setf-function-name name)))))
(defun gmakunbound (spec)
(parse-gspec spec
(name (fmakunbound name))
(name (fmakunbound (get-setf-function-name name)))))
(defun gdefinition (spec)
(parse-gspec spec
(name (or #-setf (macro-function name) ;??
(unencapsulated-fdefinition name)))
(name (unencapsulated-fdefinition (get-setf-function-name name)))))
(defun #-setf SETF\ PCL\ GDEFINITION #+setf (setf gdefinition) (new-value spec)
(parse-gspec spec
(name (fdefine-carefully name new-value))
(name (fdefine-carefully (get-setf-function-name name) new-value))))
(eval-when
(compile load eval)
(proclaim '(special *the-class-t*
*the-class-vector* *the-class-symbol*
*the-class-string* *the-class-sequence*
*the-class-rational* *the-class-ratio*
*the-class-number* *the-class-null* *the-class-list*
*the-class-integer* *the-class-float* *the-class-cons*
*the-class-complex* *the-class-character*
*the-class-bit-vector* *the-class-array*
*the-class-slot-object*
*the-class-standard-object*
*the-class-structure-object*
*the-class-class*
*the-class-generic-function*
*the-class-built-in-class*
*the-class-slot-class*
*the-class-structure-class*
*the-class-standard-class*
*the-class-funcallable-standard-class*
*the-class-method*
*the-class-standard-method*
*the-class-standard-reader-method*
*the-class-standard-writer-method*
*the-class-standard-boundp-method*
*the-class-standard-generic-function*
*the-class-standard-effective-slot-definition*
*the-eslotd-standard-class-slots*
*the-eslotd-funcallable-standard-class-slots*)))
(proclaim '(special *the-wrapper-of-t*
*the-wrapper-of-vector* *the-wrapper-of-symbol*
*the-wrapper-of-string* *the-wrapper-of-sequence*
*the-wrapper-of-rational* *the-wrapper-of-ratio*
*the-wrapper-of-number* *the-wrapper-of-null*
*the-wrapper-of-list* *the-wrapper-of-integer*
*the-wrapper-of-float* *the-wrapper-of-cons*
*the-wrapper-of-complex* *the-wrapper-of-character*
*the-wrapper-of-bit-vector* *the-wrapper-of-array*))
;;;; Type specifier hackery:
;;; internal to this file.
(defun coerce-to-class (class &optional make-forward-referenced-class-p)
(if (symbolp class)
(or (find-class class (not make-forward-referenced-class-p))
(ensure-class class))
class))
;;; Interface
(defun specializer-from-type (type &aux args)
(when (consp type)
(setq args (cdr type) type (car type)))
(cond ((symbolp type)
(or (and (null args) (find-class type))
(ecase type
(class (coerce-to-class (car args)))
(prototype (make-instance 'class-prototype-specializer
:object (coerce-to-class (car args))))
(class-eq (class-eq-specializer (coerce-to-class (car args))))
(eql (intern-eql-specializer (car args))))))
#+cmu17
((and (null args) (typep type 'lisp:class))
(or (kernel:class-pcl-class type)
(find-structure-class (lisp:class-name type))))
((specializerp type) type)))
;;; interface
(defun type-from-specializer (specl)
(cond ((eq specl 't)
't)
((consp specl)
(unless (member (car specl) '(class prototype class-eq eql))
(error "~S is not a legal specializer type" specl))
specl)
((progn
(when (symbolp specl)
;;maybe (or (find-class specl nil) (ensure-class specl)) instead?
(setq specl (find-class specl)))
(or (not (eq *boot-state* 'complete))
(specializerp specl)))
(specializer-type specl))
(t
(error "~s is neither a type nor a specializer" specl))))
(defun type-class (type)
(declare (special *the-class-t*))
(setq type (type-from-specializer type))
(if (atom type)
(if (eq type 't)
*the-class-t*
(error "bad argument to type-class"))
(case (car type)
(eql (class-of (cadr type)))
(prototype (class-of (cadr type))) ;?
(class-eq (cadr type))
(class (cadr type)))))
(defun class-eq-type (class)
(specializer-type (class-eq-specializer class)))
(defun inform-type-system-about-std-class (name)
(let ((predicate-name (make-type-predicate-name name)))
(setf (gdefinition predicate-name) (make-type-predicate name))
(do-satisfies-deftype name predicate-name)))
(defun make-type-predicate (name)
(let ((cell (find-class-cell name)))
#'(lambda (x)
(funcall (the function (find-class-cell-predicate cell)) x))))
;This stuff isn't right. Good thing it isn't used.
;The satisfies predicate has to be a symbol. There is no way to
;construct such a symbol from a class object if class names change.
(defun class-predicate (class)
(when (symbolp class) (setq class (find-class class)))
#'(lambda (object) (memq class (class-precedence-list (class-of object)))))
(defun make-class-eq-predicate (class)
(when (symbolp class) (setq class (find-class class)))
#'(lambda (object) (eq class (class-of object))))
(defun make-eql-predicate (eql-object)
#'(lambda (object) (eql eql-object object)))
#|| ; The argument to satisfies must be a symbol.
(deftype class (&optional class)
(if class
`(satisfies ,(class-predicate class))
`(satisfies ,(class-predicate 'class))))
(deftype class-eq (class)
`(satisfies ,(make-class-eq-predicate class)))
||#
#-(or excl cmu17 gcl)
(deftype eql (type-object)
`(member ,type-object))
;;; Internal to this file.
;;;
;;; These functions are a pale imitiation of their namesake. They accept
;;; class objects or types where they should.
;;;
(defun *normalize-type (type)
(cond ((consp type)
(if (member (car type) '(not and or))
`(,(car type) ,@(mapcar #'*normalize-type (cdr type)))
(if (null (cdr type))
(*normalize-type (car type))
type)))
((symbolp type)
(let ((class (find-class type nil)))
(if class
(let ((type (specializer-type class)))
(if (listp type) type `(,type)))
`(,type))))
((or (not (eq *boot-state* 'complete))
(specializerp type))
(specializer-type type))
(t
(error "~s is not a type" type))))
;;; Not used...
#+nil
(defun unparse-type-list (tlist)
(mapcar #'unparse-type tlist))
;;; Not used...
#+nil
(defun unparse-type (type)
(if (atom type)
(if (specializerp type)
(unparse-type (specializer-type type))
type)
(case (car type)
(eql type)
(class-eq `(class-eq ,(class-name (cadr type))))
(class (class-name (cadr type)))
(t `(,(car type) ,@(unparse-type-list (cdr type)))))))
;;; internal to this file...
(defun convert-to-system-type (type)
(case (car type)
((not and or) `(,(car type) ,@(mapcar #'convert-to-system-type
(cdr type))))
((class class-eq) ; class-eq is impossible to do right
#-cmu17 (class-name (cadr type))
#+cmu17 (kernel:layout-class (class-wrapper (cadr type))))
(eql type)
(t (if (null (cdr type))
(car type)
type))))
;;; not used...
;#+nil
(defun *typep (object type)
(setq type (*normalize-type type))
(cond ((member (car type) '(eql wrapper-eq class-eq class))
(specializer-applicable-using-type-p type `(eql ,object)))
((eq (car type) 'not)
(not (*typep object (cadr type))))
(t
(typep object (convert-to-system-type type)))))
;;; *SUBTYPEP -- Interface
;;;
;Writing the missing NOT and AND clauses will improve
;the quality of code generated by generate-discrimination-net, but
;calling subtypep in place of just returning (values nil nil) can be
;very slow. *subtypep is used by PCL itself, and must be fast.
(defun *subtypep (type1 type2)
(if (equal type1 type2)
(values t t)
(if (eq *boot-state* 'early)
(values (eq type1 type2) t)
(let ((*in-precompute-effective-methods-p* t))
(declare (special *in-precompute-effective-methods-p*))
;; *in-precompute-effective-methods-p* is not a good name.
;; It changes the way class-applicable-using-class-p works.
(setq type1 (*normalize-type type1))
(setq type2 (*normalize-type type2))
(case (car type2)
(not
(values nil nil)) ; Should improve this.
(and
(values nil nil)) ; Should improve this.
((eql wrapper-eq class-eq class)
(multiple-value-bind (app-p maybe-app-p)
(specializer-applicable-using-type-p type2 type1)
(values app-p (or app-p (not maybe-app-p)))))
(t
(subtypep (convert-to-system-type type1)
(convert-to-system-type type2))))))))
(defun do-satisfies-deftype (name predicate)
(declare (ignorable predicate))
(unless (get name 'si::deftype-definition)
; (print `(deftype ,name nil `(si::std-instance ,(si::coerce-to-standard-class ',name))))
; (print (si::coerce-to-standard-class name))
(eval `(deftype ,name nil t))
(unintern (get name 'si::simple-typep-fn))
(remprop name 'si::simple-typep-fn)))
;; #+cmu17 (declare (ignore name predicate))
;; #+(or :Genera (and :Lucid (not :Prime)) ExCL :coral)
;; (let* ((specifier `(satisfies ,predicate))
;; (expand-fn #'(lambda (&rest ignore)
;; (declare (ignore ignore))
;; specifier)))
;; ;; Specific ports can insert their own way of doing this. Many
;; ;; ports may find the expand-fn defined above useful.
;; ;;
;; (or #+:Genera
;; (setf (get name 'deftype) expand-fn)
;; #+(and :Lucid (not :Prime))
;; (system::define-macro `(deftype ,name) expand-fn nil)
;; #+ExCL
;; (setf (get name 'excl::deftype-expander) expand-fn)
;; #+:coral
;; (setf (get name 'ccl::deftype-expander) expand-fn)))
;; #-(or :Genera (and :Lucid (not :Prime)) ExCL :coral cmu17)
;; ;; This is the default for ports for which we don't know any
;; ;; better. Note that for most ports, providing this definition
;; ;; should just speed up class definition. It shouldn't have an
;; ;; effect on performance of most user code.
;; (unless (get name 'si::deftype-definition) (eval `(deftype ,name () '(satisfies ,predicate)))))
(defun make-type-predicate-name (name &optional kind)
(if (symbol-package name)
(intern (format nil
"~@[~A ~]TYPE-PREDICATE ~A ~A"
kind
(package-name (symbol-package name))
(symbol-name name))
*the-pcl-package*)
(make-symbol (format nil
"~@[~A ~]TYPE-PREDICATE ~A"
kind
(symbol-name name)))))
(defvar *built-in-class-symbols* ())
(defvar *built-in-wrapper-symbols* ())
(defun get-built-in-class-symbol (class-name)
(or (cadr (assq class-name *built-in-class-symbols*))
(let ((symbol (intern (format nil
"*THE-CLASS-~A*"
(symbol-name class-name))
*the-pcl-package*)))
(push (list class-name symbol) *built-in-class-symbols*)
symbol)))
(defun get-built-in-wrapper-symbol (class-name)
(or (cadr (assq class-name *built-in-wrapper-symbols*))
(let ((symbol (intern (format nil
"*THE-WRAPPER-OF-~A*"
(symbol-name class-name))
*the-pcl-package*)))
(push (list class-name symbol) *built-in-wrapper-symbols*)
symbol)))
(pushnew 'class *variable-declarations*)
(pushnew 'variable-rebinding *variable-declarations*)
(defun variable-class (var env)
(caddr (variable-declaration 'class var env)))
(defvar *name->class->slotd-table* (make-hash-table))
;;;
;;; This is used by combined methods to communicate the next methods to
;;; the methods they call. This variable is captured by a lexical variable
;;; of the methods to give it the proper lexical scope.
;;;
(defvar *next-methods* nil)
(defvar *not-an-eql-specializer* '(not-an-eql-specializer))
(defvar *umi-gfs*)
(defvar *umi-complete-classes*)
(defvar *umi-reorder*)
(defvar *invalidate-discriminating-function-force-p* ())
(defvar *invalid-dfuns-on-stack* ())
(defvar *standard-method-combination*)
(defvar *slotd-unsupplied* (list '*slotd-unsupplied*)) ;***
(defmacro define-gf-predicate (predicate-name &rest classes)
`(progn
(defmethod ,predicate-name ((x t)) nil)
,@(mapcar #'(lambda (c) `(defmethod ,predicate-name ((x ,c)) t))
classes)))
(defun make-class-predicate-name (name)
(intern (format nil "~A::~A class predicate"
(package-name (or (symbol-package name) *package*))
name)
*the-pcl-package*))
(defun plist-value (object name)
(getf (object-plist object) name))
(defun #-setf SETF\ PCL\ PLIST-VALUE #+setf (setf plist-value) (new-value object name)
(if new-value
(setf (getf (object-plist object) name) new-value)
(progn
(remf (object-plist object) name)
nil)))
(defvar *built-in-classes*
;;
;; name supers subs cdr of cpl
;; prototype
`(;(t () (number sequence array character symbol) ())
(number (t) (complex float rational) (t))
(complex (number) () (number t) #c(1 1))
(float (real) () (real number t) 1.0)
(real (number) (rational float) (number t))
(rational (real) (integer ratio) (real number t))
(integer (rational) () (rational real number t) 1)
(ratio (rational) () (rational real number t) 1/2)
(sequence (t) (list vector) (t))
(list (sequence) (cons null) (sequence t))
(cons (list) () (list sequence t) (nil))
(pathname (t) (logical-pathname) (t) #p"foo")
(logical-pathname
(pathname t) () (pathname t) )
(readtable (t) () (t) ,*readtable*)
(package (t) () (t) ,*package*)
(hash-table (t) () (t) )
(function (t) () (t) ,#'cons)
; (function (t) (interpreted-function
; compiled-function) (t) )
; (interpreted-function
; (function t)
; () (function t) ,(eval `(function (lambda nil nil))))
; (compiled-function
; (function t)
; () (function t) ,#'cons)
(synonym-stream
(stream t) () (stream t) ,*standard-output*)
(echo-stream
(stream t) () (stream t) )
(two-way-stream
(stream t) () (stream t) )
(string-stream
(stream t) () (stream t) )
(concatenated-stream
(stream t) () (stream t) )
(broadcast-stream
(stream t) () (stream t) )
(file-stream
(stream t) () (stream t) )
(stream (t) (synonym-stream
string-stream
two-way-stream
echo-stream
file-stream
concatenated-stream
broadcast-stream) (t))
(array (t) (vector) (t) #2A((NIL)))
(vector (array
sequence) (string bit-vector) (array sequence t) #())
(string (vector) () (vector array sequence t) "")
(bit-vector (vector) () (vector array sequence t) #*1)
(character (t) () (t) #\c)
(symbol (t) (null) (t) symbol)
(random-state (t) (null) (t) #$0)
(null (symbol
list) () (symbol list sequence t) nil)))
#+cmu17
(labels ((direct-supers (class)
(if (typep class 'lisp:built-in-class)
(kernel:built-in-class-direct-superclasses class)
(let ((inherits (kernel:layout-inherits
(kernel:class-layout class))))
(list (svref inherits (1- (length inherits)))))))
(direct-subs (class)
(ext:collect ((res))
(let ((subs (kernel:class-subclasses class)))
(when subs
(ext:do-hash (sub v subs)
(declare (ignore v))
(when (member class (direct-supers sub))
(res sub)))))
(res))))
(ext:collect ((res))
(dolist (bic kernel::built-in-classes)
(let* ((name (car bic))
(class (lisp:find-class name)))
(unless (member name '(t kernel:instance kernel:funcallable-instance
function))
(res `(,name
,(mapcar #'lisp:class-name (direct-supers class))
,(mapcar #'lisp:class-name (direct-subs class))
,(map 'list #'(lambda (x)
(lisp:class-name (kernel:layout-class x)))
(reverse
(kernel:layout-inherits
(kernel:class-layout class))))
,(let ((found (assoc name *built-in-classes*)))
(if found (fifth found) 42)))))))
(setq *built-in-classes* (res))))
;;;
;;; The classes that define the kernel of the metabraid.
;;;
(defclass t () ()
(:metaclass built-in-class))
#+cmu17
(progn
(defclass kernel:instance (t) ()
(:metaclass built-in-class))
(defclass function (t) ()
(:metaclass built-in-class))
(defclass kernel:funcallable-instance (function) ()
(:metaclass built-in-class)))
(push (make-early-class-definition 'function nil 'built-in-class '(t) nil nil) *early-class-definitions*)
(defclass slot-object (#-cmu17 t #+cmu17 kernel:instance) ()
(:metaclass slot-class))
(defclass structure-object (slot-object) ()
(:metaclass structure-class))
(defstruct (#-cmu17 structure-object #+cmu17 dead-beef-structure-object
(:constructor |STRUCTURE-OBJECT class constructor|)))
(defclass standard-object (slot-object) ())
(defclass metaobject (standard-object) ())
(defclass funcallable-standard-object (standard-object function)
()
(:metaclass funcallable-standard-class))
(defclass specializer (metaobject)
((type
:initform nil
:reader specializer-type)))
(defclass definition-source-mixin (standard-object)
((source
:initform (load-truename)
:reader definition-source
:initarg :definition-source)))
(defclass plist-mixin (standard-object)
((plist
:initform ()
:accessor object-plist)))
(defclass documentation-mixin (plist-mixin)
())
(defclass dependent-update-mixin (plist-mixin)
())
;;;
;;; The class CLASS is a specified basic class. It is the common superclass
;;; of any kind of class. That is any class that can be a metaclass must
;;; have the class CLASS in its class precedence list.
;;;
(defclass class (documentation-mixin dependent-update-mixin definition-source-mixin
specializer )
((name
:initform nil
:initarg :name
:accessor class-name)
(class-eq-specializer
:initform nil
:reader class-eq-specializer)
(direct-superclasses
:initform ()
:reader class-direct-superclasses)
(direct-subclasses
:initform ()
:reader class-direct-subclasses)
(direct-methods
:initform (cons nil nil))
(predicate-name
:initform nil
:reader class-predicate-name)))
;;;
;;; The class PCL-CLASS is an implementation-specific common superclass of
;;; all specified subclasses of the class CLASS.
;;;
(defclass pcl-class (class)
((class-precedence-list
:reader class-precedence-list)
(can-precede-list
:initform ()
:reader class-can-precede-list)
(incompatible-superclass-list
:initform ()
:accessor class-incompatible-superclass-list)
(wrapper
:initform nil
:reader class-wrapper)
(prototype
:initform nil
:reader class-prototype)))
(defclass slot-class (pcl-class)
((direct-slots
:initform ()
:accessor class-direct-slots)
(slots
:initform ()
:accessor class-slots)
(initialize-info
:initform nil
:accessor class-initialize-info)))
;;;
;;; The class STD-CLASS is an implementation-specific common superclass of
;;; the classes STANDARD-CLASS and FUNCALLABLE-STANDARD-CLASS.
;;;
(defclass std-class (slot-class)
())
(defclass standard-class (std-class)
())
(defclass funcallable-standard-class (std-class)
())
(defclass forward-referenced-class (pcl-class) ())
(defclass built-in-class (pcl-class) ())
(defclass structure-class (slot-class)
((defstruct-form
:initform ()
:accessor class-defstruct-form)
(defstruct-constructor
:initform nil
:accessor class-defstruct-constructor)
(from-defclass-p
:initform nil
:initarg :from-defclass-p)))
(defclass specializer-with-object (specializer) ())
(defclass exact-class-specializer (specializer) ())
(defclass class-eq-specializer (exact-class-specializer specializer-with-object)
((object :initarg :class :reader specializer-class :reader specializer-object)))
(defclass class-prototype-specializer (specializer-with-object)
((object :initarg :class :reader specializer-class :reader specializer-object)))
(defclass eql-specializer (exact-class-specializer specializer-with-object)
((object :initarg :object :reader specializer-object
:reader eql-specializer-object)))
(defvar *eql-specializer-table* (make-hash-table :test 'eql))
(defun intern-eql-specializer (object)
(or (gethash object *eql-specializer-table*)
(setf (gethash object *eql-specializer-table*)
(make-instance 'eql-specializer :object object))))
;;;
;;; Slot definitions.
;;;
(defclass slot-definition (metaobject )
((name
:initform nil
:initarg :name
:accessor slot-definition-name)
(initform
:initform nil
:initarg :initform
:accessor slot-definition-initform)
(initfunction
:initform nil
:initarg :initfunction
:accessor slot-definition-initfunction)
(readers
:initform nil
:initarg :readers
:accessor slot-definition-readers)
(writers
:initform nil
:initarg :writers
:accessor slot-definition-writers)
(initargs
:initform nil
:initarg :initargs
:accessor slot-definition-initargs)
(type
:initform t
:initarg :type
:accessor slot-definition-type)
(documentation
:initform ""
:initarg :documentation)
(class
:initform nil
:initarg :class
:accessor slot-definition-class)))
(defclass standard-slot-definition (slot-definition)
((allocation
:initform :instance
:initarg :allocation
:accessor slot-definition-allocation)))
(defclass structure-slot-definition (slot-definition)
((defstruct-accessor-symbol
:initform nil
:initarg :defstruct-accessor-symbol
:accessor slot-definition-defstruct-accessor-symbol)
(internal-reader-function
:initform nil
:initarg :internal-reader-function
:accessor slot-definition-internal-reader-function)
(internal-writer-function
:initform nil
:initarg :internal-writer-function
:accessor slot-definition-internal-writer-function)))
(defclass direct-slot-definition (slot-definition)
())
(defclass effective-slot-definition (slot-definition)
((reader-function ; #'(lambda (object) ...)
:accessor slot-definition-reader-function)
(writer-function ; #'(lambda (new-value object) ...)
:accessor slot-definition-writer-function)
(boundp-function ; #'(lambda (object) ...)
:accessor slot-definition-boundp-function)
(accessor-flags
:initform 0)))
(defclass standard-direct-slot-definition (standard-slot-definition
direct-slot-definition)
())
(defclass standard-effective-slot-definition (standard-slot-definition
effective-slot-definition)
((location ; nil, a fixnum, a cons: (slot-name . value)
:initform nil
:accessor slot-definition-location)))
(defclass structure-direct-slot-definition (structure-slot-definition
direct-slot-definition)
())
(defclass structure-effective-slot-definition (structure-slot-definition
effective-slot-definition)
())
(defclass method (metaobject )
())
(defclass standard-method (definition-source-mixin plist-mixin method)
((generic-function
:initform nil
:accessor method-generic-function)
; (qualifiers
; :initform ()
; :initarg :qualifiers
; :reader method-qualifiers)
(specializers
:initform ()
:initarg :specializers
:reader method-specializers)
(lambda-list
:initform ()
:initarg :lambda-list
:reader method-lambda-list)
(function
:initform nil
:initarg :function) ;no writer
(fast-function
:initform nil
:initarg :fast-function ;no writer
:reader method-fast-function)
; (documentation
; :initform nil
; :initarg :documentation
; :reader method-documentation)
))
(defclass standard-accessor-method (standard-method)
((slot-name :initform nil
:initarg :slot-name
:reader accessor-method-slot-name)
(slot-definition :initform nil
:initarg :slot-definition
:reader accessor-method-slot-definition)))
(defclass standard-reader-method (standard-accessor-method) ())
(defclass standard-writer-method (standard-accessor-method) ())
(defclass standard-boundp-method (standard-accessor-method) ())
(defclass generic-function (dependent-update-mixin
definition-source-mixin
documentation-mixin
metaobject
funcallable-standard-object)
((initial-methods :initform () :accessor generic-function-initial-methods))
(:metaclass funcallable-standard-class))
(defclass standard-generic-function (generic-function)
((name
:initform nil
:initarg :name
:accessor generic-function-name)
(methods
:initform ()
:accessor generic-function-methods)
(method-class
:initarg :method-class
:accessor generic-function-method-class)
(method-combination
:initarg :method-combination
:accessor generic-function-method-combination)
(arg-info
:initform (make-arg-info)
:reader gf-arg-info)
(dfun-state
:initform ()
:accessor gf-dfun-state)
(pretty-arglist
:initform ()
:accessor gf-pretty-arglist)
(declarations
:initform ()
:initarg :declare
:reader generic-function-declarations)
)
(:metaclass funcallable-standard-class)
(:default-initargs :method-class *the-class-standard-method*
:method-combination *standard-method-combination*))
(defclass method-combination (metaobject)
())
(defclass standard-method-combination
(definition-source-mixin method-combination)
((type :reader method-combination-type
:initarg :type)
(documentation :reader method-combination-documentation
:initarg :documentation)
(options :reader method-combination-options
:initarg :options)))
(defclass long-method-combination (standard-method-combination)
((function
:initarg :function
:reader long-method-combination-function)
(arguments-lambda-list
:initarg :arguments-lambda-list
:reader long-method-combination-arguments-lambda-list)))
(defparameter *early-class-predicates*
'((specializer specializerp)
(exact-class-specializer exact-class-specializer-p)
(class-eq-specializer class-eq-specializer-p)
(eql-specializer eql-specializer-p)
(class classp)
(slot-class slot-class-p)
(standard-class standard-class-p)
(funcallable-standard-class funcallable-standard-class-p)
(structure-class structure-class-p)
(forward-referenced-class forward-referenced-class-p)
(method method-p)
(standard-method standard-method-p)
(standard-accessor-method standard-accessor-method-p)
(standard-reader-method standard-reader-method-p)
(standard-writer-method standard-writer-method-p)
(standard-boundp-method standard-boundp-method-p)
(generic-function generic-function-p)
(standard-generic-function standard-generic-function-p)
(method-combination method-combination-p)
(long-method-combination long-method-combination-p)))
(defun early-find-class-symbol (x &optional errorp environment)
(declare (ignore errorp environment))
(when (or (member x *early-class-definitions* :key 'cadr)
(gethash x *find-class*))
x))
(defun mk-early-cpl (sym)
(let ((l (nth 4 (car (member sym *early-class-definitions* :key 'cadr)))))
(append l (reduce (lambda (&rest r) (when r (apply 'union r))) (mapcar 'mk-early-cpl l)))))
(defun early-class-precedence-list-symbol (x &aux tem)
(cond ((mk-early-cpl x))
((setq tem (gethash x *find-class*))
(early-class-precedence-list (car tem)))))
(setf (get 'si::si-find-class 'si::early) 'early-find-class-symbol)
(setf (get 'si::si-class-precedence-list 'si::early) 'early-class-precedence-list-symbol)
(setf (get 'si::si-class-of 'si::early) 'early-class-name-of)
;(setf (symbol-function 'si::find-class) (symbol-function 'early-find-class-symbol))
;(setf (symbol-function 'si::class-precedence-list) (symbol-function 'early-class-precedence-list-symbol))
;(setf (symbol-function 'si::class-of) (symbol-function 'early-class-name-of))
;(setf (symbol-function 'si::class-direct-subclasses) (symbol-function 'early-class-direct-subclasses)) ;FIXME need class-name here
|