1c15e345d27c5e3990be8e63d79421afd4069b8c
[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.6 2003/04/28 23:51:59 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                                                  &rest iargs &key attributes)
46   (declare (ignore attributes))
47   ;;  (format t "attributes:~s iargs:~s~%" attributes iargs)
48   (kmr-mop:find-class 'attributes-dsd))
49
50 (defmethod kmr-mop:compute-effective-slot-definition :around
51     ((cl attributes-class) #+kmr-named-cesd name dsds)
52   #+kmr-named-cesd (declare (ignore name))
53   (apply
54    #'make-instance 'attributes-esd 
55    :attributes (remove-duplicates (mapappend #'dsd-attributes dsds))
56    (kmr-mop:compute-effective-slot-definition-initargs cl dsds))
57   )
58
59 #+ignore
60 (defmethod kmr-mop:compute-effective-slot-definition :around
61     ((cl attributes-class) #+kmr-named-cesd name dsds)
62   #+kmr-named-cesd (declare (ignore name))
63   (let ((normal-slot (call-next-method)))
64     (setf (esd-attributes normal-slot)
65       (remove-duplicates
66        (mapappend #'esd-attributes dsds)))
67     normal-slot))
68
69
70 (defmethod kmr-mop:compute-slots ((class attributes-class))
71   (let* ((normal-slots (call-next-method))
72          (alist
73           (mapcar
74            #'(lambda (slot)
75                (let ((attr-list (mapcar #'(lambda (attr) (cons attr nil))
76                                         (esd-attributes slot))))
77                  (when attr-list
78                    (cons (kmr-mop:slot-definition-name slot) attr-list))))
79            normal-slots)))
80     (setq alist (delete nil alist))
81     (cons (make-instance 'kmr-mop:standard-effective-slot-definition
82             :name 'all-attributes
83             :initform `',alist
84             :initfunction #'(lambda () alist))
85           normal-slots)))
86   
87 (defun slot-attribute (instance slot-name attribute)
88   (cdr (slot-attribute-bucket instance slot-name attribute)))
89
90 (defun (setf slot-attribute) (new-value instance slot-name attribute)
91   (setf (cdr (slot-attribute-bucket instance slot-name attribute))
92     new-value))
93
94 (defun slot-attribute-bucket (instance slot-name attribute)
95   (let* ((all-buckets (slot-value instance 'all-attributes))
96          (slot-bucket (assoc slot-name all-buckets)))
97     (unless slot-bucket
98       (error "The slot named ~S of ~S has no attributes."
99              slot-name instance))
100     (let ((attr-bucket (assoc attribute (cdr slot-bucket))))
101       (unless attr-bucket
102         (error "The slot named ~S of ~S has no attributes named ~S."
103                slot-name instance attribute))
104       attr-bucket)))
105
106 (eval-when (:compile-toplevel :load-toplevel :execute)
107   (export '(attributes-class slot-attributes)))
108