1 | /*
|
---|
2 | * Cacheable.hpp
|
---|
3 | *
|
---|
4 | * Created on: Feb 2, 2010
|
---|
5 | * Author: crueger
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef CACHEABLE_HPP_
|
---|
9 | #define CACHEABLE_HPP_
|
---|
10 |
|
---|
11 | #include "Patterns/Observer.hpp"
|
---|
12 | #include <boost/function.hpp>
|
---|
13 | #include <boost/shared_ptr.hpp>
|
---|
14 | #include <iostream>
|
---|
15 |
|
---|
16 | #include "Helpers/Assert.hpp"
|
---|
17 |
|
---|
18 | #ifndef NO_CACHING
|
---|
19 |
|
---|
20 | template<typename T>
|
---|
21 | class Cacheable : public Observer
|
---|
22 | {
|
---|
23 | // we define the states of the cacheable so we can do very fast state-checks
|
---|
24 | class State{
|
---|
25 | public:
|
---|
26 | State(Cacheable *_owner) :
|
---|
27 | busy(false),
|
---|
28 | owner(_owner)
|
---|
29 | {}
|
---|
30 | virtual T& getValue()=0;
|
---|
31 | virtual void invalidate()=0;
|
---|
32 | virtual bool isValid()=0;
|
---|
33 | virtual void enter()=0;
|
---|
34 | bool isBusy(){
|
---|
35 | return busy;
|
---|
36 | }
|
---|
37 | virtual std::string getName()=0;
|
---|
38 | protected:
|
---|
39 | bool busy;
|
---|
40 | Cacheable *owner;
|
---|
41 | };
|
---|
42 |
|
---|
43 | class InvalidState : public State{
|
---|
44 | public:
|
---|
45 | InvalidState(Cacheable *_owner):
|
---|
46 | State(_owner)
|
---|
47 | {}
|
---|
48 |
|
---|
49 | virtual T& getValue(){
|
---|
50 | // set the state to valid
|
---|
51 | State::owner->switchState(State::owner->validState);
|
---|
52 | // get the value from the now valid state
|
---|
53 | return State::owner->state->getValue();
|
---|
54 | }
|
---|
55 |
|
---|
56 | virtual void invalidate(){
|
---|
57 | // nothing to do on this message
|
---|
58 | }
|
---|
59 |
|
---|
60 | virtual bool isValid(){
|
---|
61 | return false;
|
---|
62 | }
|
---|
63 |
|
---|
64 | virtual void enter(){
|
---|
65 | // nothing to do when entering this
|
---|
66 | }
|
---|
67 |
|
---|
68 | virtual std::string getName(){
|
---|
69 | return "invalid";
|
---|
70 | }
|
---|
71 | };
|
---|
72 |
|
---|
73 | class ValidState : public State{
|
---|
74 | public:
|
---|
75 | ValidState(Cacheable *_owner) :
|
---|
76 | State(_owner)
|
---|
77 | {}
|
---|
78 |
|
---|
79 | virtual T& getValue(){
|
---|
80 | return content;
|
---|
81 | }
|
---|
82 |
|
---|
83 | virtual void invalidate(){
|
---|
84 | State::owner->switchState(State::owner->invalidState);
|
---|
85 | }
|
---|
86 |
|
---|
87 | virtual bool isValid(){
|
---|
88 | return true;
|
---|
89 | }
|
---|
90 |
|
---|
91 | virtual void enter(){
|
---|
92 | State::busy= true;
|
---|
93 | // as soon as we enter the valid state we recalculate
|
---|
94 | content = State::owner->recalcMethod();
|
---|
95 | State::busy = false;
|
---|
96 | }
|
---|
97 |
|
---|
98 | virtual std::string getName(){
|
---|
99 | return "valid";
|
---|
100 | }
|
---|
101 | private:
|
---|
102 | T content;
|
---|
103 | };
|
---|
104 |
|
---|
105 | class DestroyedState : public State {
|
---|
106 | public:
|
---|
107 | DestroyedState(Cacheable *_owner) :
|
---|
108 | State(_owner)
|
---|
109 | {}
|
---|
110 |
|
---|
111 | virtual T& getValue(){
|
---|
112 | ASSERT(0,"Cannot get a value from a Cacheable after it's Observable has died");
|
---|
113 | // we have to return a grossly invalid reference, because no value can be produced anymore
|
---|
114 | return *(static_cast<T*>(0));
|
---|
115 | }
|
---|
116 |
|
---|
117 | virtual void invalidate(){
|
---|
118 | ASSERT(0,"Cannot invalidate a Cacheable after it's Observable has died");
|
---|
119 | }
|
---|
120 |
|
---|
121 | virtual bool isValid(){
|
---|
122 | ASSERT(0,"Cannot check validity of a Cacheable after it's Observable has died");
|
---|
123 | return false;
|
---|
124 | }
|
---|
125 |
|
---|
126 | virtual void enter(){
|
---|
127 | // nothing to do when entering this state
|
---|
128 | }
|
---|
129 |
|
---|
130 | virtual std::string getName(){
|
---|
131 | return "destroyed";
|
---|
132 | }
|
---|
133 | };
|
---|
134 |
|
---|
135 |
|
---|
136 | typedef boost::shared_ptr<State> state_ptr;
|
---|
137 |
|
---|
138 | public:
|
---|
139 | Cacheable(Observable *_owner, boost::function<T()> _recalcMethod, std::string name);
|
---|
140 | virtual ~Cacheable();
|
---|
141 |
|
---|
142 | const bool isValid() const;
|
---|
143 | const T operator*() const;
|
---|
144 |
|
---|
145 | // methods implemented for base-class Observer
|
---|
146 | void update(Observable *subject);
|
---|
147 | void subjectKilled(Observable *subject);
|
---|
148 | private:
|
---|
149 | void switchState(state_ptr newState);
|
---|
150 |
|
---|
151 | mutable state_ptr state;
|
---|
152 | // pre-defined state so we don't have to construct to much
|
---|
153 | state_ptr invalidState;
|
---|
154 | state_ptr validState;
|
---|
155 | // destroyed state is not predefined, because we rarely enter that state and never leave
|
---|
156 |
|
---|
157 | Observable *owner;
|
---|
158 | boost::function<T()> recalcMethod;
|
---|
159 |
|
---|
160 | // de-activated copy constructor
|
---|
161 | Cacheable(const Cacheable&);
|
---|
162 | };
|
---|
163 |
|
---|
164 |
|
---|
165 | template<typename T>
|
---|
166 | Cacheable<T>::Cacheable(Observable *_owner, boost::function<T()> _recalcMethod, std::string name) :
|
---|
167 | Observer(name + "(Cached)"),
|
---|
168 | owner(_owner),
|
---|
169 | recalcMethod(_recalcMethod)
|
---|
170 | {
|
---|
171 | // create all states needed for this object
|
---|
172 | invalidState = state_ptr(new InvalidState(this));
|
---|
173 | validState = state_ptr(new ValidState(this));
|
---|
174 | state = invalidState;
|
---|
175 | // we sign on with the best(=lowest) priority, so cached values are recalculated before
|
---|
176 | // anybody else might ask for updated values
|
---|
177 | owner->signOn(this,-20);
|
---|
178 | }
|
---|
179 |
|
---|
180 | // de-activated copy constructor
|
---|
181 | template<typename T>
|
---|
182 | Cacheable<T>::Cacheable(const Cacheable&){
|
---|
183 | ASSERT(0,"Cacheables should never be copied");
|
---|
184 | }
|
---|
185 |
|
---|
186 | template<typename T>
|
---|
187 | const T Cacheable<T>::operator*() const{
|
---|
188 | // we can only use the cacheable when the owner is not changing at the moment
|
---|
189 | if(!owner->isBlocked()){
|
---|
190 | return state->getValue();
|
---|
191 | }
|
---|
192 | else{
|
---|
193 | return recalcMethod();
|
---|
194 | }
|
---|
195 | }
|
---|
196 |
|
---|
197 | template<typename T>
|
---|
198 | Cacheable<T>::~Cacheable()
|
---|
199 | {
|
---|
200 | owner->signOff(this);
|
---|
201 | }
|
---|
202 |
|
---|
203 | template<typename T>
|
---|
204 | const bool Cacheable<T>::isValid() const{
|
---|
205 | return state->isValid();
|
---|
206 | }
|
---|
207 |
|
---|
208 | template<typename T>
|
---|
209 | void Cacheable<T>::update(Observable *subject) {
|
---|
210 | state->invalidate();
|
---|
211 | }
|
---|
212 |
|
---|
213 | template<typename T>
|
---|
214 | void Cacheable<T>::subjectKilled(Observable *subject) {
|
---|
215 | state_ptr destroyed = state_ptr(new DestroyedState(this));
|
---|
216 | switchState(destroyed);
|
---|
217 | }
|
---|
218 |
|
---|
219 | template<typename T>
|
---|
220 | void Cacheable<T>::switchState(state_ptr newState){
|
---|
221 | ASSERT(!state->isBusy(),"LOOP DETECTED: Cacheable state switched while recalculating.\nDid the recalculation trigger the Observable?");
|
---|
222 | #ifdef LOG_OBSERVER
|
---|
223 | observerLog().addMessage() << "## Cacheable " << observerLog().getName(this) << " changed state (" << state->getName()
|
---|
224 | << "->" << newState->getName() << ")" << std::endl;
|
---|
225 | #endif
|
---|
226 | state = newState;
|
---|
227 | state->enter();
|
---|
228 | }
|
---|
229 |
|
---|
230 | #else
|
---|
231 | template<typename T>
|
---|
232 | class Cacheable : public Observer
|
---|
233 | {
|
---|
234 | public:
|
---|
235 | Cacheable(Observable *_owner, boost::function<T()> _recalcMethod,std::string name);
|
---|
236 | virtual ~Cacheable();
|
---|
237 |
|
---|
238 | const bool isValid() const;
|
---|
239 | const T operator*() const;
|
---|
240 |
|
---|
241 | // methods implemented for base-class Observer
|
---|
242 | void update(Observable *subject);
|
---|
243 | void subjectKilled(Observable *subject);
|
---|
244 | private:
|
---|
245 |
|
---|
246 | boost::function<T()> recalcMethod;
|
---|
247 | };
|
---|
248 |
|
---|
249 | template<typename T>
|
---|
250 | Cacheable<T>::Cacheable(Observable *_owner, boost::function<T()> _recalcMethod, std::string name) :
|
---|
251 | Observer(name),
|
---|
252 | recalcMethod(_recalcMethod)
|
---|
253 | {}
|
---|
254 |
|
---|
255 | template<typename T>
|
---|
256 | const T Cacheable<T>::operator*() const{
|
---|
257 | return recalcMethod();
|
---|
258 | }
|
---|
259 |
|
---|
260 | template<typename T>
|
---|
261 | Cacheable<T>::~Cacheable()
|
---|
262 | {}
|
---|
263 |
|
---|
264 | template<typename T>
|
---|
265 | const bool Cacheable<T>::isValid() const{
|
---|
266 | return true;
|
---|
267 | }
|
---|
268 |
|
---|
269 | template<typename T>
|
---|
270 | void Cacheable<T>::update(Observable *subject) {
|
---|
271 | ASSERT(0, "Cacheable::update should never be called when caching is disabled");
|
---|
272 | }
|
---|
273 |
|
---|
274 | template<typename T>
|
---|
275 | void Cacheable<T>::subjectKilled(Observable *subject){
|
---|
276 | ASSERT(0, "Cacheable::subjectKilled should never be called when caching is disabled");
|
---|
277 | }
|
---|
278 | #endif
|
---|
279 |
|
---|
280 | #endif /* CACHEABLE_HPP_ */
|
---|