r4602: 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.23 2003/04/22 18:42:58 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 #+ignore
68 (defmethod (setf slot-value-using-class) :around
69     (new-value (cl hyperobject-class) obj (slot hyperobject-esd))
70   (call-next-method))
71
72 ;; this does not work on gerd-pcl in cmu 18e+
73 ;;#+ignore
74 (defmethod (setf slot-value-using-class) :around 
75     (new-value (cl hyperobject-class) obj (slot hyperobject-esd))
76   #+ignore
77   (cmsg-c :verbose "Setf slot value: class: ~s, obj: ~s, slot: ~s, value: ~s" cl (class-of obj) slot new-value)
78   
79   
80   (let ((func (slot-value slot 'value-constraint)))
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        (prog1
88            (call-next-method)
89          (when (direct-rules cl)
90            (fire-class-rules cl obj slot)))))))
91
92 #+ignore
93 (defmethod (setf slot-value-using-class) :around
94     (new-value (cl hyperobject-class) obj (slot hyperobject-esd))
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))