117 lines
2.7 KiB
C
117 lines
2.7 KiB
C
|
// Copyright (c) 2012-2013 The Cryptonote developers
|
||
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <mutex>
|
||
|
#include <vector>
|
||
|
|
||
|
namespace tools {
|
||
|
|
||
|
template<typename T>
|
||
|
class ObserverManager {
|
||
|
public:
|
||
|
bool add(T* observer) {
|
||
|
std::unique_lock<std::mutex> lock(m_observersMutex);
|
||
|
auto it = std::find(m_observers.begin(), m_observers.end(), observer);
|
||
|
if (m_observers.end() == it) {
|
||
|
m_observers.push_back(observer);
|
||
|
return true;
|
||
|
} else {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
bool remove(T* observer) {
|
||
|
std::unique_lock<std::mutex> lock(m_observersMutex);
|
||
|
auto it = std::find(m_observers.begin(), m_observers.end(), observer);
|
||
|
if (m_observers.end() == it) {
|
||
|
return false;
|
||
|
} else {
|
||
|
m_observers.erase(it);
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void clear() {
|
||
|
std::unique_lock<std::mutex> lock(m_observersMutex);
|
||
|
m_observers.clear();
|
||
|
}
|
||
|
|
||
|
#if defined(_MSC_VER)
|
||
|
template<typename F>
|
||
|
void notify(F notification) {
|
||
|
std::vector<T*> observersCopy;
|
||
|
{
|
||
|
std::unique_lock<std::mutex> lock(m_observersMutex);
|
||
|
observersCopy = m_observers;
|
||
|
}
|
||
|
|
||
|
for (T* observer : observersCopy) {
|
||
|
(observer->*notification)();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
template<typename F, typename Arg0>
|
||
|
void notify(F notification, const Arg0& arg0) {
|
||
|
std::vector<T*> observersCopy;
|
||
|
{
|
||
|
std::unique_lock<std::mutex> lock(m_observersMutex);
|
||
|
observersCopy = m_observers;
|
||
|
}
|
||
|
|
||
|
for (T* observer : observersCopy) {
|
||
|
(observer->*notification)(arg0);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
template<typename F, typename Arg0, typename Arg1>
|
||
|
void notify(F notification, const Arg0& arg0, const Arg1& arg1) {
|
||
|
std::vector<T*> observersCopy;
|
||
|
{
|
||
|
std::unique_lock<std::mutex> lock(m_observersMutex);
|
||
|
observersCopy = m_observers;
|
||
|
}
|
||
|
|
||
|
for (T* observer : observersCopy) {
|
||
|
(observer->*notification)(arg0, arg1);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
template<typename F, typename Arg0, typename Arg1, typename Arg2>
|
||
|
void notify(F notification, const Arg0& arg0, const Arg1& arg1, const Arg2& arg2) {
|
||
|
std::vector<T*> observersCopy;
|
||
|
{
|
||
|
std::unique_lock<std::mutex> lock(m_observersMutex);
|
||
|
observersCopy = m_observers;
|
||
|
}
|
||
|
|
||
|
for (T* observer : observersCopy) {
|
||
|
(observer->*notification)(arg0, arg1, arg2);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#else
|
||
|
|
||
|
template<typename F, typename... Args>
|
||
|
void notify(F notification, Args... args) {
|
||
|
std::vector<T*> observersCopy;
|
||
|
{
|
||
|
std::unique_lock<std::mutex> lock(m_observersMutex);
|
||
|
observersCopy = m_observers;
|
||
|
}
|
||
|
|
||
|
for (T* observer : observersCopy) {
|
||
|
(observer->*notification)(args...);
|
||
|
}
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
private:
|
||
|
std::vector<T*> m_observers;
|
||
|
std::mutex m_observersMutex;
|
||
|
};
|
||
|
|
||
|
}
|