December 4, 2008
References for our discussion:
Requirements for our EDA:
- Storage of events to be executed when events triggered.
- Events.
- Push/Pull Model.
- Broadcast of events. One trigger can execute more than one handler.
- Ex. When User Clicks Save Button, data is saved and the event is logged as executed.
Read the rest of this entry »
1 Comment |
EDA, Lisp Programming | Tagged: EDA, Event Driven Architecture, Event Driven Programming, Events, Lisp Programming |
Permalink
Posted by gutzofter
December 3, 2008
-
What does it mean to be an object?
-
A [computer] language mechanism for binding data with methods that operate on that data. Object (Computer Science).
-
Binding is the creation of a simple reference to something that is larger and more complicated and used frequently. Binding (Computer Science).
-
Data refers to a collection of facts usually collected as the result of [...] processes within a computer system [...]. Data.
-
[...] a method usually consists of a sequence of statements to perform an action, a set of input parameters to customize those actions, and possibly an output value (called return value) of some kind. Methods (Computer Science).
So the following code by the above definitions must be an object.
(defun make-counter-obj ()
(let ((counter 0))
(list :increment-counter
(lambda ()
(incf counter))
:get-counter
(lambda ()
counter))))
(defun increment-counter (obj)
(funcall (getf obj :increment-counter)))
(defun get-counter (obj)
(funcall (getf obj :get-counter))
- ‘make-counter-obj’ creates the binding.
- The ‘counter variable in ‘make-counter-obj’ is the storage for our data.
- The two functions/methods ‘increment-counter’ and ‘get-counter’ are definitely methods of some kind, that allow us to operate on the ‘counter data.
Throughout this entire series it seemed to be inevitable that p-lists were to be used not only the actual storage mechanisms for the methods that act on the data, but also in the macros, p-lists are a major data structure.
Right now, I’m pretty comfortable with the implementation of this type of object. But already I can see future implementations. There is definitely another abstraction that can be pulled out of this. The ‘get-object-id’ function is a place to start. All object instances, that use my objects language, use this function. It could be considered part of a parent property.
Right now I want to start integrating Event Driven Architecture to further my cargo-cultism of Lisp.
Have a Happy Holiday,
Joe G
Leave a Comment » |
EDA, Lisp Programming, OOP | Tagged: EDA, Event Driven Architecture, Lisp, Lisp Programming, OOP |
Permalink
Posted by gutzofter