mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-13 07:15:06 +00:00
util-event: Rest of fb5041a69d
This commit is contained in:
parent
baf265fd5b
commit
681a586ae9
1 changed files with 104 additions and 60 deletions
|
@ -25,105 +25,149 @@
|
||||||
namespace util {
|
namespace util {
|
||||||
template<typename... _args>
|
template<typename... _args>
|
||||||
class event {
|
class event {
|
||||||
std::list<std::function<void(_args...)>> listeners;
|
std::list<std::function<void(_args...)>> _listeners;
|
||||||
std::recursive_mutex lock;
|
std::recursive_mutex _lock;
|
||||||
|
|
||||||
std::function<void()> listen_cb;
|
std::function<void()> _cb_fill;
|
||||||
std::function<void()> silence_cb;
|
std::function<void()> _cb_clear;
|
||||||
|
|
||||||
public /* functions */:
|
public /* constructor */:
|
||||||
|
event() : _listeners(), _lock(), _cb_fill(), _cb_clear() {}
|
||||||
// Destructor
|
|
||||||
virtual ~event()
|
virtual ~event()
|
||||||
{
|
{
|
||||||
std::lock_guard<std::recursive_mutex> lock;
|
std::lock_guard<std::recursive_mutex> lg(_lock);
|
||||||
this->clear();
|
this->clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add new listener.
|
/* Copy Constructor */
|
||||||
inline void add(std::function<void(_args...)> listener)
|
event(const event<_args...>&) = delete;
|
||||||
{
|
|
||||||
std::lock_guard<std::recursive_mutex> lock;
|
|
||||||
if (listeners.size() == 0) {
|
|
||||||
if (listen_cb) {
|
|
||||||
listen_cb();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
listeners.push_back(listener);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Remove existing listener.
|
/* Move Constructor */
|
||||||
inline void remove(std::function<void(_args...)> listener)
|
event(event<_args...>&& other) : event()
|
||||||
{
|
{
|
||||||
std::lock_guard<std::recursive_mutex> lock;
|
std::lock_guard<std::recursive_mutex> lg(_lock);
|
||||||
listeners.remove(listener);
|
std::lock_guard<std::recursive_mutex> lg(other._lock);
|
||||||
if (listeners.size() == 0) {
|
|
||||||
if (silence_cb) {
|
|
||||||
silence_cb();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check if empty / no listeners.
|
_listeners.swap(other._listeners);
|
||||||
inline bool empty()
|
_cb_fill.swap(other._cb_fill);
|
||||||
{
|
_cb_clear.swap(other._cb_clear);
|
||||||
std::lock_guard<std::recursive_mutex> lock;
|
|
||||||
return listeners.empty();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Remove all listeners.
|
|
||||||
inline void clear()
|
|
||||||
{
|
|
||||||
std::lock_guard<std::recursive_mutex> lock;
|
|
||||||
listeners.clear();
|
|
||||||
if (silence_cb) {
|
|
||||||
silence_cb();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public /* operators */:
|
public /* operators */:
|
||||||
// Call Listeners with arguments.
|
|
||||||
/// Not valid without the extra template.
|
/* Copy Operator */
|
||||||
|
event<_args...>& operator=(const event<_args...>&) = delete;
|
||||||
|
|
||||||
|
/* Move Operator */
|
||||||
|
event<_args...>& operator=(event<_args...>&& other)
|
||||||
|
{
|
||||||
|
std::lock_guard<std::recursive_mutex> lg(_lock);
|
||||||
|
std::lock_guard<std::recursive_mutex> lgo(other._lock);
|
||||||
|
|
||||||
|
_listeners.swap(other._listeners);
|
||||||
|
_cb_fill.swap(other._cb_fill);
|
||||||
|
_cb_clear.swap(other._cb_clear);
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Call the event, going through all listeners in the order they were registered in.
|
||||||
|
*/
|
||||||
template<typename... _largs>
|
template<typename... _largs>
|
||||||
inline void operator()(_args... args)
|
inline void operator()(_args... args)
|
||||||
{
|
{
|
||||||
std::lock_guard<std::recursive_mutex> lock;
|
call<_largs...>(args...);
|
||||||
for (auto& l : listeners) {
|
}
|
||||||
|
template<typename... _largs>
|
||||||
|
inline void call(_args... args)
|
||||||
|
{
|
||||||
|
std::lock_guard<std::recursive_mutex> lg(_lock);
|
||||||
|
for (auto& l : _listeners) {
|
||||||
l(args...);
|
l(args...);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Convert to bool (true if not empty, false if empty).
|
public /* functions: listeners */:
|
||||||
inline operator bool()
|
|
||||||
{
|
|
||||||
return !this->empty();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add new listener.
|
/** Add a new listener to the event.
|
||||||
|
* @param listener A listener bound with std::bind or a std::function.
|
||||||
|
*/
|
||||||
|
inline void add(std::function<void(_args...)> listener)
|
||||||
|
{
|
||||||
|
std::lock_guard<std::recursive_mutex> lg(_lock);
|
||||||
|
if (_listeners.size() == 0) {
|
||||||
|
if (_cb_fill) {
|
||||||
|
_cb_fill();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_listeners.push_back(listener);
|
||||||
|
}
|
||||||
inline event<_args...>& operator+=(std::function<void(_args...)> listener)
|
inline event<_args...>& operator+=(std::function<void(_args...)> listener)
|
||||||
{
|
{
|
||||||
this->add(listener);
|
this->add(listener);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove existing listener.
|
/** Remove an existing listener from the event.
|
||||||
|
* @param listener A listener bound with std::bind or a std::function.
|
||||||
|
*/
|
||||||
|
inline void remove(std::function<void(_args...)> listener)
|
||||||
|
{
|
||||||
|
std::lock_guard<std::recursive_mutex> lg(_lock);
|
||||||
|
_listeners.remove(listener);
|
||||||
|
if (_listeners.size() == 0) {
|
||||||
|
if (_cb_clear) {
|
||||||
|
_cb_clear();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
inline event<_args...>& operator-=(std::function<void(_args...)> listener)
|
inline event<_args...>& operator-=(std::function<void(_args...)> listener)
|
||||||
{
|
{
|
||||||
this->remove(listener);
|
this->remove(listener);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public /* events */:
|
/** Check if there are any listeners for the event.
|
||||||
|
* @return bool `true` if there are none, otherwise `false`.
|
||||||
|
*/
|
||||||
|
inline bool empty()
|
||||||
|
{
|
||||||
|
std::lock_guard<std::recursive_mutex> lg(_lock);
|
||||||
|
return _listeners.empty();
|
||||||
|
}
|
||||||
|
inline operator bool()
|
||||||
|
{
|
||||||
|
return !this->empty();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Clear the list of listeners for the event.
|
||||||
|
*/
|
||||||
|
inline void clear()
|
||||||
|
{
|
||||||
|
std::lock_guard<std::recursive_mutex> lg(_lock);
|
||||||
|
_listeners.clear();
|
||||||
|
if (_cb_clear) {
|
||||||
|
_cb_clear();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
inline event<_args...>& operator=(nullptr_t)
|
||||||
|
{
|
||||||
|
clear();
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public /* callbacks */:
|
||||||
|
|
||||||
void set_listen_callback(std::function<void()> cb)
|
void set_listen_callback(std::function<void()> cb)
|
||||||
{
|
{
|
||||||
std::lock_guard<std::recursive_mutex> lock;
|
std::lock_guard<std::recursive_mutex> lg(_lock);
|
||||||
this->listen_cb = cb;
|
this->_cb_fill = cb;
|
||||||
}
|
}
|
||||||
|
|
||||||
void set_silence_callback(std::function<void()> cb)
|
void set_silence_callback(std::function<void()> cb)
|
||||||
{
|
{
|
||||||
std::lock_guard<std::recursive_mutex> lock;
|
std::lock_guard<std::recursive_mutex> lg(_lock);
|
||||||
this->silence_cb = cb;
|
this->_cb_clear = cb;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
} // namespace util
|
} // namespace util
|
||||||
|
|
Loading…
Reference in a new issue