r4579: Auto commit for Debian build
[hyperobject.git] / rules.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          rules.lisp
6 ;;;; Purpose:       Slot and Class rules
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2000
9 ;;;;
10 ;;;; $Id: rules.lisp,v 1.4 2003/04/22 15:20:57 kevin Exp $
11 ;;;;
12 ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; *************************************************************************
15  
16 (in-package :hyperobject)
17
18 (eval-when (:compile-toplevel :execute)
19   (declaim (optimize (speed 2) (safety 2) (compilation-speed 0) (debug 2))))
20
21 ;;; Slot accessor and class rules
22
23 (defclass rule ()
24   ((name :initarg :name :initform nil :accessor name)
25    (dependants :initarg :dependants :initform nil :accessor dependants)
26    (volatile :initarg :volatile :initform nil :accessor volatile)
27    (access-slots :initarg :access-slots :initform nil :accessor access-slots)
28    (source-code :initarg :source-code :initform nil :accessor source-code)
29    (func :initform nil :initarg :func :accessor func)))
30
31 (defun compile-rule (source-code dependants volatile cl)
32   (let ((access (appendnew dependants volatile)))
33     (compile nil
34              (eval
35               `(lambda (obj)
36                  (when (every #'(lambda (x) (slot-boundp obj x))
37                               (quote ,dependants))
38                    (with-slots ,access obj
39                      ,@source-code)))))))
40   
41 (defun finalize-rules (cl)
42   (let* ((direct-rules (direct-rules cl))
43          (rules '()))
44     (dolist (rule direct-rules)
45       (destructuring-bind (name (&key dependants volatile) &rest source-code)
46           rule
47         (setf dependants (mklist dependants)
48               volatile (mklist volatile))
49         (push
50          (make-instance 'rule :name name :dependants dependants
51                         :volatile volatile :source-code source-code
52                         :access-slots (appendnew dependants volatile)
53                         :func (compile-rule
54                                source-code dependants volatile cl))
55          rules)))
56     (setf (rules cl) (nreverse rules))))
57
58
59 (defun fire-class-rules (cl obj slot)
60   "Fire all class rules. Called after a slot is modified."
61   (let ((name (slot-definition-name slot)))
62     (dolist (rule (rules cl))
63       (when (find name (dependants rule))
64         (cmsg-c :debug "firing rule: ~W" (source-code rule))
65         (funcall (func rule) obj)))))
66
67
68 (defmethod (setf slot-value-using-class) 
69     :around (new-value (cl hyperobject-class) obj
70                        (slot standard-effective-slot-definition))
71     (call-next-method))
72
73 #+ignore
74 (defmethod (setf slot-value-using-class) 
75     :around (new-value (cl hyperobject-class) obj
76                        (slot standard-effective-slot-definition))
77     #+ignore
78     (cmsg-c :verbose "Setf slot value: class: ~s, obj: ~s, slot: ~s, value: ~s" cl (class-of obj) slot new-value)
79     
80     (let ((func (esd-value-constraint slot)))
81       (cond
82         ((and func (not (funcall func new-value)))
83          (warn "Rejected change to value of slot ~a of object ~a"
84                (slot-definition-name slot) obj)
85          (slot-value obj (slot-definition-name slot)))
86         (t
87          (call-next-method)
88          (when (direct-rules cl)
89            (fire-class-rules cl obj slot))
90          new-value))))
91
92 #+ignore
93 (defmethod slot-value-using-class :around ((cl hyperobject-class) obj
94                                            (slot standard-effective-slot-definition))
95   (let ((value (call-next-method)))
96     (cmsg-c :verbose "slot value: class: ~s, obj: ~s, slot: ~s" cl (class-of obj) slot)
97     value))