r4615: 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.29 2003/04/23 20:27:49 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) :around
69     (new-value (cl hyperobject-class) obj (slot hyperobject-esd))
70   ;; this does not work on gerd-pcl in cmu 18e+
71   (esd-value-constraint slot)
72   (call-next-method))
73
74 #+ignore
75 (defmethod (setf slot-value-using-class) :around 
76     (new-value (cl hyperobject-class) obj (slot hyperobject-esd))
77
78   #+ignore
79   (cmsg-c :verbose "Setf slot value: class: ~s, obj: ~s, slot: ~s, value: ~s" cl (class-of obj) slot new-value)
80   
81   (let ((func (esd-value-constraint slot)))
82     (call-next-method)
83     (cond
84       ((and func (not (funcall func new-value)))
85        (warn "Rejected change to value of slot ~a of object ~a"
86              (slot-definition-name slot) obj)
87        (slot-value obj (slot-definition-name slot)))
88       (t
89        (prog1
90            (call-next-method)
91          (when (direct-rules cl)
92            (fire-class-rules cl obj slot)))))))
93
94
95
96 #+ignore
97 (defmethod (setf slot-value-using-class) :around
98     (new-value (cl hyperobject-class) obj (slot hyperobject-esd))
99   (let ((value (call-next-method)))
100     (cmsg-c :verbose "slot value: class: ~s, obj: ~s, slot: ~s" cl (class-of obj) slot)
101     value))