1 | /*
|
---|
2 | * Observer.hpp
|
---|
3 | *
|
---|
4 | * Created on: Jan 19, 2010
|
---|
5 | * Author: crueger
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef OBSERVER_HPP_
|
---|
9 | #define OBSERVER_HPP_
|
---|
10 |
|
---|
11 | #include <map>
|
---|
12 | #include <set>
|
---|
13 |
|
---|
14 | /**
|
---|
15 | * Basic structure for the observer pattern
|
---|
16 | *
|
---|
17 | * Observers register themselves with the observables to be notified when something changes.
|
---|
18 | * In the Observable code that changes attributes should be wrapped in
|
---|
19 | * START_OBSERVER ... END_OBSERVER blocks. If other methods are called that also contain
|
---|
20 | * Observation blocks from there, these functions wont trigger notifications. Only the end
|
---|
21 | * of the final observation block triggers the update of Observers.
|
---|
22 | *
|
---|
23 | * Each observerable can have sub-observables. When one of these sub-observables changes and
|
---|
24 | * notifies its observers the observable that contains them will also notify its observers.
|
---|
25 | * This passing on of updates is blocked, when the main-observable is in the process of
|
---|
26 | * updating many of its internal sub-observables. This means the update is not passed, if
|
---|
27 | * it is produced while the main-observable itself is within any Observation block.
|
---|
28 | */
|
---|
29 |
|
---|
30 | class Observable;
|
---|
31 |
|
---|
32 | class Observer
|
---|
33 | {
|
---|
34 | friend class Observable;
|
---|
35 | public:
|
---|
36 | Observer();
|
---|
37 | virtual ~Observer();
|
---|
38 |
|
---|
39 | protected:
|
---|
40 | virtual void update(Observable *publisher)=0;
|
---|
41 | virtual void subjectKilled(Observable *publisher)=0;
|
---|
42 | };
|
---|
43 |
|
---|
44 | class Observable : public Observer {
|
---|
45 | public:
|
---|
46 | Observable();
|
---|
47 | virtual ~Observable();
|
---|
48 |
|
---|
49 | virtual void signOn(Observer *target);
|
---|
50 | virtual void signOff(Observer *target);
|
---|
51 |
|
---|
52 | protected:
|
---|
53 | virtual void update(Observable *publisher);
|
---|
54 | virtual void subjectKilled(Observable *publisher);
|
---|
55 |
|
---|
56 | virtual void notifyAll();
|
---|
57 | protected:
|
---|
58 | // Observer mechanism is done from a static central place
|
---|
59 | /**
|
---|
60 | * Internal method.
|
---|
61 | * Do not call directly. Use START_OBSERVER macro instead
|
---|
62 | */
|
---|
63 | static void start_observer_internal(Observable *publisher);
|
---|
64 | /**
|
---|
65 | * Internal method.
|
---|
66 | * Do not call directly. Use FINISH_OBSERVER macro instead
|
---|
67 | */
|
---|
68 | static void finish_observer_internal(Observable *publisher);
|
---|
69 |
|
---|
70 | private:
|
---|
71 | static std::map<Observable*, int> depth;
|
---|
72 | static std::multimap<Observable*,Observer*> callTable;
|
---|
73 | static std::set<Observable*> busyObservables;
|
---|
74 | };
|
---|
75 |
|
---|
76 |
|
---|
77 |
|
---|
78 | #define START_OBSERVER Observable::start_observer_internal(this);do{do{}while(0)
|
---|
79 | #define FINISH_OBSERVER }while(0);Observable::finish_observer_internal(this)
|
---|
80 | #endif /* OBSERVER_HPP_ */
|
---|