[I thought I better share this with the PyCells crowd because it raises so many interesting issues.]<br><br>In our last episode, we changed the Cells engine to rerun any rule dependent on an ephemeral after resetting the ephemral to NIL, so that rule's dependencies would reflect the world with the ephemeral slot as NIL. ie, it was a consistency issue: before this, the dependencies looked as if the ephemeral was still "on" even after it had been cleared. Inconsistency bad!
<br><br>The obvious downside: the rule gets run a second time (inefficient) and god help anyone putting side effects in their rule.<br><br>OK, save that on the stack. I turned next to something else I noticed while playing with Lars's chat example: if a chatter was instantiated with a non-nil speech value, that speech did not make it into the chat log. The reason is simple:
<br><br>     make chat<br>     make chatter with speech "hello world"<br>    [speech is ephemeral, so it is gone now]<br>     push chatter on to chat participants<br>     the chat-log cell sees null speech for new participant
<br><br>The solution brings up a Cells profundity: It is hard to be a little bit Cells. In the extended code sample below, we arrange for a proxy "joiner" slot to be watched by a /rule/ for the participants of a chat. Now what happens is:
<br><br>    make chat<br>    set chat joiner to be (list name opening-remark)<br>      the participants rule runs and sees a new participant.<br>        and creates it with the speech initialized to the <br>        opening remark
<br>      the participants slot propagates to the chat log,<br>        which sees the opening remark in the speech<br>        slot of the new participant (yeahh!)<br>      now at long last propagation has ended, and we<br>
        process the 'ephemeral-reset' queueu, clearing<br>        the speech of the new participant<br><br>The moral is first that, yes, an instance coming into existence is extremely interesting when it comes to internal consistency of state -- damn, we have not just changed state but /new/ state. That moral in turn gets back to the larger issue of it being hard to be "a little bit Cells"; the more we express declaratively, the better our models will work.
<br><br>Now let's start to look at why the article thread includes the word "Shocker". When I implemented the above it did not work at first. The opening remarks made it into the log, but I lost the annotations "So-and-so has entered the chat." What happened? Hoist on my own petard!
<br><br>The rule I had written for accumulating the chat log expected /either/ a speech or a  new participant or a departed participant. I had now "fixed" things so that the new participant and its new speech were all part of one state change to the world. Doh! OK, fix the dumb assumption:
<br><br>In the chat-log rule, look for anything: someone saying something, someone leaving, someone arriving, and check them all each time. Before I finsihed came the Shocker: omigod. What if two new participants get added at once? Or what if some state change propagates and causes two chat participants to exclaim "Omigod!"? Omigod. I cannot code (some 'speech (participants chat)). Omigod. Just as I have to check population changes /as well as/ speech acts, i have to check all speech acts!!!! You have no idea what I am yelling about, do you?
<br><br>The last bit means I never ever should have been stopping at the first non-nil speech anyway. It was me being smart saying to myself "I know how Cells works, i will stop at the first". Dumb. the whole idea of (a) declarative and (b) transparency is to write the obvious code: iterate over all participants collecting any speech.
<br><br>meaning the fix I made to ephemerals to rerun rules, as plausible as it sounds (thine dependencies shalt match thine state) would not have been necessary. I like plausibility, but running the rule a second time is downright scary, let alone inefficient and unforgiving (to renegades who modify state inside rules), so out it comes.
<br><br>The really neat thing is that I am not through. The chat example eneded with one participant leaving the chat. before I made 'participants' a rule, that was done with an application (setf (participants chat) (remove....))
<br><br>When I changed participants to be a rule, i forgot to change the depart-chat code. It worked. I was stunned, because Cells enforces a discipline: ruled Cells shall get their values only from an invocation of the rule. Then I remembered. This came up a couple of days ago and when I checked the "discipline" discovered that this rule was enforced only if *c-debug* was bound to t. I guess my thinking was that, in this case, other qualities of Cells still work. We do know who to notify of the change. But I was still thinking about being mean and closing this loophole. Until now. i kinda like this. :) There /is/ a declarative solution (change 'joiners' semantics to admit of an opcode (:join or :depart), but come on, we can be a /little/ sloppy, right? :)
<br><br>Here is the latest chat code. test function ending "oops" manifests the problem, ending "ok" shows the fix.<br><br>kt<br><br><br><br>(defpackage #:tu-some-ephemeral-uhoh (:use :cl :utils-kt :cells :tu-cells))
<br>(in-package #:tu-some-ephemeral-uhoh)<br><br><br>(defparameter *newline* (princ-to-string #\Newline))<br><br>(defmodel cells-chat (family) ;; kids slot can be partcipants<br>  ((chat-log :initarg :chat-log :accessor chat-log
<br>     :initform (let (last-chatters)<br>                 (c? (prog1<br>                         (apply 'concatenate 'string<br>                           (or .cache "")<br>                           (append<br>
                            (bwhen (lost-chatters (set-difference last-chatters (^kids)))<br>                              (list (format nil "~{~a~} has left the chat~a"<br>                                      (mapcar 'username lost-chatters) *newline*)))
<br>                            (bwhen (new-chatters (set-difference (^kids) last-chatters))<br>                              (list (format nil "~a has joined the chat~a"<br>                                      (mapcar 'username new-chatters) *newline*)))
<br>                            (loop for p in (^kids)<br>                                nconcing (bwhen (s (speech p))<br>                                           (list (username p) ": " s *newline*)))))<br>
                       (setf last-chatters (^kids))))))))<br><br>(defmodel chatter (model)<br>  ((username :cell nil :accessor username :initarg :username<br>            :initform (error "chatter needs a `username'."))
<br>   (speech :cell :ephemeral :initform (c-in nil)<br>     :initarg :speech :accessor speech)))<br><br>(defun tu-cells::tu-ephemeral-oops ()<br>  (cells-reset)<br>  (let* ((chat (make-instance 'cells-chat))<br>         (lars (make-instance 'chatter
<br>                 :fm-parent chat<br>                 :speech (c-in "Hi, my name is Lars")<br>                 :username "Lars")))<br>    (push lars (kids chat))<br>    (setf (speech lars) "Is anybody in here?")
<br>    (push (make-instance 'chatter<br>            :fm-parent chat<br>            :speech (c-in "Hi, my name is Kenny")<br>            :username "Kenny") (kids chat))<br>    (setf (speech lars) "Hi, Kenny. Cells are different.")
<br>    (setf (speech (car (kids chat))) "Hi, Lars. That's for sure. Takes a while to adjust.")<br>    (setf (speech lars) "OK, I'll keep plugging")<br>    (depart-chat lars)<br>    (print (chat-log chat))))
<br><br>(defun depart-chat (chatter)<br>  (setf (kids (fm-parent chatter)) (remove chatter (kids (fm-parent chatter)))))<br><br>#+test<br>(tu-cells::tu-ephemeral-oops)<br>;<br>; PROBLEM: The log is missing the initial speeches, because the ephemerals got reset before
<br>; the instance was added to the particiapnts list. Solution: bring instantiation<br>; within the larger dataflow by making instantiation happen inside a rule for kids.<br>;<br><br>(defmodel joinable-able (cells-chat)<br>
  ((joiners :cell :ephemeral :initform (c-in nil)<br>     :initarg :joiners :accessor joiners))<br>  (:default-initargs<br>      ;<br>      ; SOLUTION: the initial speech will stay around until the entire state change<br>
      ; propagation has completed, including updating the chat log which has<br>      ; a dependency on the chat 'kids'. The new chatter gets instantiated as <br>      ; part of this rule, which then propagates to the chat-log, which sees the
<br>      ; speech. That is ephemeral, but ephemerals do not get reset until after<br>      ; all propagation in one datapulse (ephemeral reset has its own queueu).<br>      ;<br>      :kids (c? (the-kids<br>                 (loop for (name opening-remark) in (^joiners)
<br>                       collecting (make-kid 'chatter<br>                                    :username name<br>                                    :speech (c-in opening-remark)))<br>                 .cache))))<br><br>(defun join-chat (chat &rest names)
<br>  (setf (joiners chat) (loop for n in names<br>                             collecting (list n (format nil "Hi, my name is ~a" n))))<br>  (subseq (kids chat) 0 (length names)))<br><br>(defun tu-cells::tu-ephemeral-ok ()
<br>  (cells-reset)<br>  (let ((chat (make-instance 'joinable-able))<br>        lars kenny)<br>    (setf lars (car (join-chat chat "Lars")))<br>    (setf (speech lars) "Is anybody in here?")<br>    (setf kenny (car (join-chat chat "Kenny")))
<br>    (setf (speech lars) "Hi, Kenny. Cells are different.")<br>    (setf (speech kenny) "Hi, Lars. That's for sure. You seem to be coming up to speed nicely.")<br>    (setf (speech lars) "OK, I'll keep plugging")
<br>    (depart-chat lars)<br>    (join-chat chat "Peter" "Paul" "Mary")<br>    (print (chat-log chat))<br>    (values)))<br><br>#+test<br>(tu-cells::tu-ephemeral-ok)<br><br><br>   <br>