r4680: Auto commit for Debian build
[kmrcl.git] / mop.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          mop.lisp
6 ;;;; Purpose:       Imports standard MOP symbols into KMRCL
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2003
9 ;;;;
10 ;;;; $Id: mop.lisp,v 1.4 2003/04/29 04:59:51 kevin Exp $
11 ;;;;
12 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; KMRCL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 ;;; This file imports MOP symbols into KMR-MOP packages and then
20 ;;; re-exports them to hide differences in MOP implementations.
21
22 (in-package #:cl-user)
23
24 #+sbcl
25 (eval-when (:compile-toplevel :load-toplevel :execute)
26   (if (find-package 'sb-mop)
27       (pushnew :kmr-sbcl-mop cl:*features*)
28       (pushnew :kmr-sbcl-pcl cl:*features*)))
29
30 #+cmu
31 (eval-when (:compile-toplevel :load-toplevel :execute)
32   (if (find-package 'mop)
33       (pushnew :kmr-cmucl-mop cl:*features*)
34       (pushnew :kmr-cmucl-pcl cl:*features*)))
35
36 (defpackage #:kmr-mop
37   (:use
38    #:cl
39    #:kmrcl
40    #+kmr-sbcl-mop #:sb-mop
41    #+kmr-cmucl-mop #:mop
42    #+allegro #:mop
43    #+lispworks #:clos
44    #+scl #:clos))
45
46 (in-package #:kmr-mop)
47
48 (shadowing-import
49  #+allegro
50  '(excl::compute-effective-slot-definition-initargs)
51  #+lispworks
52  '(clos::compute-effective-slot-definition-initargs)
53  #+kmr-sbcl-mop 
54  '(sb-pcl::compute-effective-slot-definition-initargs)
55  #+kmr-sbcl-pcl
56  '(sb-pcl:class-of sb-pcl:class-name sb-pcl:class-slots sb-pcl:find-class
57    sb-pcl::standard-class
58    sb-pcl:slot-definition-name sb-pcl::finalize-inheritance
59    sb-pcl::standard-direct-slot-definition
60    sb-pcl::standard-effective-slot-definition sb-pcl::validate-superclass
61    sb-pcl::direct-slot-definition-class sb-pcl::compute-effective-slot-definition
62    sb-pcl::compute-effective-slot-definition-initargs
63    sb-pcl::slot-value-using-class
64    sb-pcl:class-prototype sb-pcl:generic-function-method-class sb-pcl:intern-eql-specializer
65    sb-pcl:make-method-lambda sb-pcl:generic-function-lambda-list
66    sb-pcl::compute-slots)
67  #+kmr-cmucl-mop 
68  '(pcl::compute-effective-slot-definition-initargs)
69  #+kmr-cmucl-pcl
70  '(pcl:class-of  pcl:class-name pcl:class-slots pcl:find-class pcl::standard-class
71    pcl::slot-definition-name pcl:finalize-inheritance
72    pcl::standard-direct-slot-definition pcl::standard-effective-slot-definition
73    pcl::validate-superclass pcl:direct-slot-definition-class
74    pcl:compute-effective-slot-definition
75    pcl::compute-effective-slot-definition-initargs
76    pcl::slot-value-using-class
77    pcl:class-prototype pcl:generic-function-method-class pcl:intern-eql-specializer
78    pcl:make-method-lambda pcl:generic-function-lambda-list
79    pcl::compute-slots)
80  #+scl
81  '(clos::compute-effective-slot-definition-initargs
82    clos::class-prototype
83    ;; note: make-method-lambda is not fbound
84    )
85  '#:kmr-mop)
86
87 (export '(#:class-of #:class-name #:class-slots #:find-class
88           #:standard-class
89           #:slot-definition-name #:finalize-inheritance
90           #:standard-direct-slot-definition
91           #:standard-effective-slot-definition #:validate-superclass
92           #:direct-slot-definition-class #:compute-effective-slot-definition
93           #:compute-effective-slot-definition-initargs
94           #:slot-value-using-class
95           #:class-prototype #:generic-function-method-class #:intern-eql-specializer
96           #:make-method-lambda #:generic-function-lambda-list
97           #:compute-slots))
98         
99           
100 #+sbcl
101 (eval-when (:compile-toplevel :load-toplevel :execute)
102   (if (find-package 'sb-mop)
103       (setq cl:*features* (delete :kmr-sbcl-mop cl:*features*))
104       (setq cl:*features* (delete :kmr-sbcl-pcl cl:*features*))))
105
106 #+cmu
107 (eval-when (:compile-toplevel :load-toplevel :execute)
108   (if (find-package 'mop)
109       (setq cl:*features* (delete :kmr-cmucl-mop cl:*features*))
110       (setq cl:*features* (delete :kmr-cmucl-pcl cl:*features*))))
111
112 (eval-when (:compile-toplevel :load-toplevel :execute)
113   (when (>= (length (generic-function-lambda-list
114                      (ensure-generic-function
115                       'compute-effective-slot-definition)))
116             3)
117     (pushnew :kmr-normal-cesd cl:*features*)))
118
119 (eval-when (:compile-toplevel :load-toplevel :execute)
120   (when (>= (length (generic-function-lambda-list
121                     (ensure-generic-function
122                      'direct-slot-definition-class)))
123             3)
124     (pushnew :kmr-normal-dsdc cl:*features*)))
125