summaryrefslogtreecommitdiffstats
path: root/signal-composer-binding/observer-pattern.hpp
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-09-22 18:15:33 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2017-12-14 11:00:25 +0100
commita758f4a632adc7fff4769d97379264de6c68685d (patch)
tree01bab4db9d9e8227fc37c17312ea346f46e90fec /signal-composer-binding/observer-pattern.hpp
parente4258ef6e45009b5625f85ec7e4f8946805e1c4a (diff)
Migrating to real Observer design pattern usage
Change-Id: I2fa4e1dc81f5dff852e619a425b8caf26b94b55a Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'signal-composer-binding/observer-pattern.hpp')
-rw-r--r--signal-composer-binding/observer-pattern.hpp139
1 files changed, 139 insertions, 0 deletions
diff --git a/signal-composer-binding/observer-pattern.hpp b/signal-composer-binding/observer-pattern.hpp
new file mode 100644
index 0000000..aba2847
--- /dev/null
+++ b/signal-composer-binding/observer-pattern.hpp
@@ -0,0 +1,139 @@
+/*
+ * Copyright (C) 2015, 2016 "IoT.bzh"
+ * Author "Romain Forlot" <romain.forlot@iot.bzh>
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+*/
+
+/* This is a classic observer design pattern a bit enhanced to be
+ able to pull and push info in 2 ways */
+
+
+ #include <list>
+ #include <algorithm>
+
+template<class T>
+class Observable;
+
+template<class T>
+class Observer
+{
+protected:
+ virtual ~Observer()
+ {
+ const_iterator_ ite = observableList_.end();
+
+ for(iterator_ itb=observableList_.begin();itb!=ite;++itb)
+ {
+ (*itb)->delObserver(this);
+ }
+ }
+
+ std::list<Observable<T>*> observableList_;
+ typedef typename std::list<Observable<T>*>::iterator iterator_;
+ typedef typename std::list<Observable<T>*>::const_iterator const_iterator_;
+
+public:
+ virtual void update(T* observable) = 0;
+
+ void addObservable(Observable<T>* observable)
+ {
+ for (auto& obs : observableList_)
+ {
+ if (obs == observable)
+ {return;}
+ }
+
+ observableList_.push_back(observable);
+ }
+
+ void delObservable(Observable<T>* observable)
+ {
+ const_iterator_ it = std::find(observableList_.begin(), observableList_.end(), observable);
+ if(it != observableList_.end())
+ {observableList_.erase(it);}
+ }
+/*
+ void recursionCheck(T* obs)
+ {
+ for (const auto& obs: observersList_)
+ {
+ if( id_ == obs->id())
+ {return -1;}
+ if( origId == obs->id())
+ {return -1;}
+ if(! obs->recursionCheck(origId))
+ {return -1;}
+ }
+ return 0;
+ }
+*/
+};
+
+template <class T>
+class Observable
+{
+private:
+ std::list<Observer<T>*> observerList_;
+ typedef typename std::list<Observer<T>*>::iterator iterator_;
+ typedef typename std::list<Observer<T>*>::const_iterator const_iterator_;
+
+public:
+ void addObserver(Observer<T>* observer)
+ {
+ observerList_.push_back(observer);
+ observer->addObservable(this);
+ }
+
+ void delObserver(Observer<T>* observer)
+ {
+ const_iterator_ it = find(observerList_.begin(), observerList_.end(), observer);
+ if(it != observerList_.end())
+ {observerList_.erase(it);}
+ }
+/*
+ int recursionCheck()
+ {
+ for (auto& obs: observerList_)
+ {
+ if( static_cast<T*>(obs) == static_cast<T*>(this))
+ {return -1;}
+ if( obs->recursionCheck(id_))
+ {return -1;}
+ }
+ return 0;
+ }
+*/
+ virtual ~Observable()
+ {
+ iterator_ itb = observerList_.begin();
+ const_iterator_ ite = observerList_.end();
+
+ for(;itb!=ite;++itb)
+ {
+ (*itb)->delObservable(this);
+ }
+ }
+
+protected:
+ void notify()
+ {
+ iterator_ itb=observerList_.begin();
+ const_iterator_ ite=observerList_.end();
+
+ for(;itb!=ite;++itb)
+ {
+ (*itb)->update(static_cast<T*>(this));
+ }
+ }
+};