added better equality checks for clsql-wall-time slot changes
authordrewc <drewc@tech.coop>
Fri, 17 Jun 2005 04:03:59 +0000 (21:03 -0700)
committerdrewc <drewc@tech.coop>
Fri, 17 Jun 2005 04:03:59 +0000 (21:03 -0700)
darcs-hash:20050617040359-39164-064ac2a65594f0df9dc41b617c272b27ce429b56.gz

src/mewa/slot-presentations.lisp

index 4d89895..3df3e1b 100644 (file)
@@ -1,7 +1,7 @@
 (in-package :it.bese.ucw)
 
 
 (in-package :it.bese.ucw)
 
 
-(defslot-presentation clsql-wall-time-slot-presentation ()
+(defslot-presentation clsql-wall-time-slot-presentation (mewa-relation-slot-presentation)
        ()
        (:type-name clsql-sys:wall-time))
 
        ()
        (:type-name clsql-sys:wall-time))
 
       (format nil "~a/~a/~a" m d y)))))
 
 (defmethod (setf presentation-slot-value) ((value string) (slot clsql-wall-time-slot-presentation) instance)
       (format nil "~a/~a/~a" m d y)))))
 
 (defmethod (setf presentation-slot-value) ((value string) (slot clsql-wall-time-slot-presentation) instance)
-  (setf (presentation-slot-value slot instance) (clsql:parse-date-time (remove #\Space value))))
+  (let ((new-time (clsql:parse-date-time (remove #\Space value)))
+       (old-time (when (slot-boundp instance (slot-name slot))
+                   (slot-value instance (slot-name slot)))))
+    (unless (or (eql old-time new-time)
+               (and (null old-time) new-time)
+                (equal :equal (clsql:time-compare new-time old-time)))
+      (setf (presentation-slot-value slot instance) new-time ))))
 
 (defmethod label :around ((slot clsql-wall-time-slot-presentation))
   (concatenate 'string (call-next-method) "  (mm/dd/yyyy)"))
 
 (defmethod label :around ((slot clsql-wall-time-slot-presentation))
   (concatenate 'string (call-next-method) "  (mm/dd/yyyy)"))