-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minimum fix increase, high level api
- Loading branch information
Antonio Juarez
committed
Jun 25, 2014
1 parent
69a7708
commit 76bb193
Showing
82 changed files
with
5,407 additions
and
708 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
// 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; | ||
}; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
76bb193
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Additions to the wallet RPC call taken from Monero: monero-project/monero@117393d
It's a pleasure, feel free to copy and paste our code any time.