libcruft-util/signal.hpp

127 lines
3.4 KiB
C++
Raw Normal View History

/*
2015-04-13 18:05:28 +10:00
* 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
*
2015-04-13 18:05:28 +10:00
* http://www.apache.org/licenses/LICENSE-2.0
*
2015-04-13 18:05:28 +10:00
* 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.
*
* Copyright 2011-2015 Danny Robson <danny@nerdcruft.net>
*/
2013-08-06 17:43:52 +10:00
#ifndef __UTIL_SIGNAL_HPP
#define __UTIL_SIGNAL_HPP
2015-03-10 22:52:38 +11:00
#include "types/traits.hpp"
#include <functional>
#include <list>
namespace util {
2015-03-10 22:52:38 +11:00
namespace combine {
template <typename F>
struct logical_and {
using R = typename func_traits<F>::return_type;
template <typename T, typename ...Args>
R operator() (T first, T last, Args&&... args)
{
while (first != last)
if (!(*first++)(std::forward<Args> (args)...))
return false;
return true;
}
};
template <typename F>
struct logical_or {
using R = typename func_traits<F>::return_type;
template <typename T, typename ...Args>
R operator() (T first, T last, Args&&... args)
{
while (first != last)
if ((*first++)(std::forward<Args> (args)...))
return true;
return false;
}
};
template <typename F>
struct noop {
using R = void;
template <typename T, typename ...Args>
R operator() (T first, T last, Args&&... args)
{
while (first != last) {
(*first++)(std::forward<Args> (args)...);
}
}
};
}
template <typename F, template <typename> class C = combine::noop>
class signal {
public:
2015-03-10 22:52:38 +11:00
using R = typename C<F>::R;
using callback = std::function<F>;
struct cookie;
public:
2013-08-06 17:43:52 +10:00
signal ();
~signal ();
/// Add a callback to list.
2015-03-10 22:52:38 +11:00
cookie connect (callback&&);
cookie connect (const callback&);
2015-03-10 22:52:38 +11:00
void disconnect (cookie&);
/// Disconnect all callbacks
2013-08-06 17:43:52 +10:00
void clear (void);
/// Returns the number of callbacks connected.
size_t size (void) const;
2013-08-06 17:43:52 +10:00
bool empty (void) const;
2011-08-10 21:30:03 +10:00
2015-03-10 22:52:38 +11:00
/// Execute all callbacks
template <typename ...Args>
2015-03-10 22:52:38 +11:00
R
operator() (Args&&... tail);
private:
typedef std::list<callback> group;
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 C>
2015-02-19 13:27:47 +11:00
template <typename T>
class value_signal : public signal<void(T)> {
public:
value_signal (T);
value_signal () = default;
2015-02-19 13:27:47 +11:00
operator const T&() const;
value_signal<T>& operator= (const T&);
private:
T m_value;
};
}
2013-08-06 17:43:52 +10:00
#include "signal.ipp"
#endif // __SIGNAL_HPP