r4673: Auto commit for Debian build
[kmrcl.git] / attrib-class.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          attrib-class.lisp
6 ;;;; Purpose:       Defines metaclass allowing use of attributes on slots
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2000
9 ;;;;
10 ;;;; $Id: attrib-class.lisp,v 1.8 2003/04/29 01:39:40 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 ;;;; Defines a metaclass that allows the use of attributes (or subslots)
20 ;;;; on slots. Based on example in AMOP, but modified to use ACL's MOP.
21
22 (in-package :kmrcl)
23
24 (defclass attributes-dsd (kmr-mop:standard-direct-slot-definition)
25   ((attributes :initarg :attributes :initform nil
26                :accessor dsd-attributes)))
27
28 (defclass attributes-esd (kmr-mop:standard-effective-slot-definition)
29   ((attributes :initarg :attributes :initform nil 
30                :accessor esd-attributes)))
31
32
33 (defclass attributes-class (kmr-mop:standard-class)
34   ()
35   (:documentation "metaclass that implements attributes on slots. Based
36 on example from AMOP"))
37
38
39 #+(or cmu scl sbcl)
40 (defmethod kmr-mop:validate-superclass ((class attributes-class)
41                                         (superclass kmr-mop:standard-class))
42   t)
43
44 (defmethod kmr-mop:direct-slot-definition-class ((cl attributes-class)
45                                                  #+(or sbcl cmu scl lispworks)
46                                                  initargs
47                                                  #+(or allegro) &rest #+(or allegro) iargs)
48   ;;  (format t "attributes:~s iargs:~s~%" attributes iargs)
49   (kmr-mop:find-class 'attributes-dsd))
50
51 (defmethod kmr-mop:compute-effective-slot-definition :around
52     ((cl attributes-class) #+kmr-named-cesd name dsds)
53   #+kmr-named-cesd (declare (ignore name))
54   (apply
55    #'make-instance 'attributes-esd 
56    :attributes (remove-duplicates (mapappend #'dsd-attributes dsds))
57    (kmr-mop:compute-effective-slot-definition-initargs cl dsds))
58   )
59
60 #+ignore
61 (defmethod kmr-mop:compute-effective-slot-definition :around
62     ((cl attributes-class) #+kmr-named-cesd name dsds)
63   #+kmr-named-cesd (declare (ignore name))
64   (let ((normal-slot (call-next-method)))
65     (setf (esd-attributes normal-slot)
66       (remove-duplicates
67        (mapappend #'esd-attributes dsds)))
68     normal-slot))
69
70
71 (defmethod kmr-mop:compute-slots ((class attributes-class))
72   (let* ((normal-slots (call-next-method))
73          (alist
74           (mapcar
75            #'(lambda (slot)
76                (let ((attr-list (mapcar #'(lambda (attr) (cons attr nil))
77                                         (esd-attributes slot))))
78                  (when attr-list
79                    (cons (kmr-mop:slot-definition-name slot) attr-list))))
80            normal-slots)))
81     (setq alist (delete nil alist))
82     (cons (make-instance 'kmr-mop:standard-effective-slot-definition
83             :name 'all-attributes
84             :initform `',alist
85             :initfunction #'(lambda () alist))
86           normal-slots)))
87   
88 (defun slot-attribute (instance slot-name attribute)
89   (cdr (slot-attribute-bucket instance slot-name attribute)))
90
91 (defun (setf slot-attribute) (new-value instance slot-name attribute)
92   (setf (cdr (slot-attribute-bucket instance slot-name attribute))
93     new-value))
94
95 (defun slot-attribute-bucket (instance slot-name attribute)
96   (let* ((all-buckets (slot-value instance 'all-attributes))
97          (slot-bucket (assoc slot-name all-buckets)))
98     (unless slot-bucket
99       (error "The slot named ~S of ~S has no attributes."
100              slot-name instance))
101     (let ((attr-bucket (assoc attribute (cdr slot-bucket))))
102       (unless attr-bucket
103         (error "The slot named ~S of ~S has no attributes named ~S."
104                slot-name instance attribute))
105       attr-bucket)))
106
107 (eval-when (:compile-toplevel :load-toplevel :execute)
108   (export '(attributes-class slot-attributes)))
109