libcruft-util/signal.hpp

216 lines
6.1 KiB
C++
Raw Normal View History

/*
2018-08-04 15:14:06 +10:00
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright 2011-2019 Danny Robson <danny@nerdcruft.net>
*/
#pragma once
2015-03-10 22:52:38 +11:00
#include "types/traits.hpp"
#include "debug.hpp"
#include "nocopy.hpp"
#include <algorithm>
#include <functional>
#include <list>
namespace cruft {
namespace reduce {
2019-03-13 12:08:57 +11:00
/// Returns the short-circuited logical-and of the results of all
/// connected callbacks.
2015-03-10 22:52:38 +11:00
struct logical_and {
template <typename InputT, typename ...Args>
2019-03-13 12:08:57 +11:00
decltype(auto)
operator() (InputT first, InputT last, Args&&... args)
2015-03-10 22:52:38 +11:00
{
while (first != last)
2019-03-13 12:08:57 +11:00
if (!(std::invoke (*first++, args...)))
2015-03-10 22:52:38 +11:00
return false;
return true;
}
};
2019-03-13 12:08:57 +11:00
/// Returns the short-circuited logical-or of the results of all
/// connected callbacks.
2015-03-10 22:52:38 +11:00
struct logical_or {
template <typename InputT, typename ...Args>
2019-03-13 12:08:57 +11:00
decltype(auto)
operator() (InputT first, InputT last, Args&&... args)
2015-03-10 22:52:38 +11:00
{
while (first != last)
2019-03-13 12:08:57 +11:00
if (std::invoke (*first++, args...))
2015-03-10 22:52:38 +11:00
return true;
return false;
}
};
2019-03-13 12:08:57 +11:00
/// Unconditionally evaluates all connected callbacks. Returns nothing.
2015-03-10 22:52:38 +11:00
struct noop {
template <typename InputT, typename ...Args>
2019-03-13 12:08:57 +11:00
void operator() (InputT first, InputT last, Args&&... args)
2015-03-10 22:52:38 +11:00
{
while (first != last) {
2019-03-13 12:08:57 +11:00
std::invoke (*first++, args...);
2015-03-10 22:52:38 +11:00
}
}
};
}
template <
typename FunctionT,
2019-03-13 12:08:57 +11:00
typename ReductionT = reduce::noop
>
class signal {
public:
2019-03-13 12:08:57 +11:00
using reduction_type = ReductionT;
using function_type = FunctionT;
typedef std::list<FunctionT> group;
///////////////////////////////////////////////////////////////////////
struct cookie {
cookie (cookie const&) = delete;
cookie& operator= (cookie const&) = delete;
cookie (typename group::iterator _position,
signal<FunctionT,ReductionT> &_parent):
m_position (_position),
m_parent (_parent)
{ ; }
cookie (cookie &&rhs) noexcept:
m_position (rhs.m_position),
m_parent (rhs.m_parent)
{
rhs.m_position = rhs.m_parent.m_children.end ();
}
cookie& operator= (cookie &&rhs) noexcept
{
CHECK_EQ (&m_parent, &rhs.m_parent);
std::swap (m_position, rhs.m_position);
return *this;
}
~cookie ()
{
if (m_parent.m_children.end () != m_position)
m_parent.disconnect (*this);
}
2019-03-13 12:08:57 +11:00
void reset (FunctionT &&cb)
{
*m_position = std::move (cb);
}
typename group::iterator m_position;
signal<FunctionT,ReductionT> &m_parent;
};
public:
signal () = default;
signal (signal const&) = default;
signal& operator= (signal const&) = default;
signal (signal &&) noexcept = default;
signal& operator= (signal &&) noexcept = default;
~signal ()
{
CHECK (empty ());
}
/// Add a callback to list.
2019-03-13 12:08:57 +11:00
cookie connect [[nodiscard]] (FunctionT &&_cb)
{
return cookie (
m_children.insert (
m_children.end (),
std::move (_cb)
),
*this
);
}
2019-03-13 12:08:57 +11:00
cookie connect [[nodiscard]] (FunctionT const &_cb)
{
2019-03-13 12:08:57 +11:00
return cookie (
m_children.insert (
m_children.end (),
std::move (_cb)
),
*this
);
}
void disconnect (cookie &c)
{
m_children.erase (c.m_position);
c.m_position = m_children.end ();
}
/// Disconnect all callbacks
void clear (void)
{
m_children.clear ();
}
/// Returns the number of callbacks connected.
size_t size (void) const
{
return m_children.size ();
}
bool empty (void) const
{
return m_children.empty ();
}
2011-08-10 21:30:03 +10:00
2015-03-10 22:52:38 +11:00
/// Execute all callbacks
template <typename ...ArgsT>
2019-03-13 12:08:57 +11:00
decltype(auto)
operator() (ArgsT&&... tail)
{
2019-03-13 12:08:57 +11:00
return ReductionT {} (
m_children.begin (),
m_children.end (),
std::forward<ArgsT> (tail)...
);
}
private:
group m_children;
};
2015-02-19 13:27:47 +11:00
2015-03-10 22:52:38 +11:00
///////////////////////////////////////////////////////////////////////////
// wrap a value in a signal and trigger on assignment
//template <typename T, template <typename> class ReductionT>
2019-03-13 12:08:57 +11:00
template <typename ValueT, typename FunctionT = std::function<void(ValueT)>>
class value_signal : public signal<FunctionT> {
2015-02-19 13:27:47 +11:00
public:
explicit value_signal (ValueT _value): m_value (_value) { ; }
value_signal () = default;
operator const ValueT&() const { return m_value; }
2015-02-19 13:27:47 +11:00
value_signal<ValueT>&
operator= (const ValueT &t)
{
m_value = t;
(*this) (m_value);
return *this;
}
2015-02-19 13:27:47 +11:00
private:
ValueT m_value;
2015-02-19 13:27:47 +11:00
};
}