2011-06-27 15:31:41 +10:00
|
|
|
/*
|
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
|
2011-06-27 15:31:41 +10:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-06-27 15:31:41 +10:00
|
|
|
*
|
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.
|
2011-06-27 15:31:41 +10:00
|
|
|
*
|
2015-02-18 02:34:10 +11:00
|
|
|
* Copyright 2011-2015 Danny Robson <danny@nerdcruft.net>
|
2011-06-27 15:31:41 +10:00
|
|
|
*/
|
|
|
|
|
2013-08-06 17:43:52 +10:00
|
|
|
#ifndef __UTIL_SIGNAL_HPP
|
|
|
|
#define __UTIL_SIGNAL_HPP
|
2011-06-27 15:31:41 +10:00
|
|
|
|
2015-03-10 22:52:38 +11:00
|
|
|
#include "types/traits.hpp"
|
2011-08-10 21:31:24 +10:00
|
|
|
|
2011-06-27 15:31:41 +10:00
|
|
|
#include <functional>
|
2015-02-18 02:34:10 +11:00
|
|
|
#include <list>
|
2011-06-27 15:31:41 +10:00
|
|
|
|
2011-07-16 14:47:56 +10:00
|
|
|
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)
|
2017-08-08 13:54:45 +10:00
|
|
|
if (!(*first++)(args...))
|
2015-03-10 22:52:38 +11:00
|
|
|
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)
|
2017-08-08 13:54:45 +10:00
|
|
|
if ((*first++)(args...))
|
2015-03-10 22:52:38 +11:00
|
|
|
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) {
|
2017-08-08 13:54:45 +10:00
|
|
|
(*first++)(args...);
|
2015-03-10 22:52:38 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename F, template <typename> class C = combine::noop>
|
2011-07-16 14:47:56 +10:00
|
|
|
class signal {
|
|
|
|
public:
|
2015-03-10 22:52:38 +11:00
|
|
|
using R = typename C<F>::R;
|
2015-02-18 02:34:10 +11:00
|
|
|
using callback = std::function<F>;
|
2011-08-10 21:31:24 +10:00
|
|
|
|
2015-02-18 02:34:10 +11:00
|
|
|
struct cookie;
|
2011-06-27 15:31:41 +10:00
|
|
|
|
2011-07-16 14:47:56 +10:00
|
|
|
public:
|
2013-08-06 17:43:52 +10:00
|
|
|
signal ();
|
2015-02-18 02:34:10 +11:00
|
|
|
~signal ();
|
2011-06-27 15:31:41 +10:00
|
|
|
|
2011-07-16 14:47:56 +10:00
|
|
|
/// Add a callback to list.
|
2017-08-08 13:55:06 +10:00
|
|
|
cookie connect [[gnu::warn_unused_result]] (callback&&);
|
|
|
|
cookie connect [[gnu::warn_unused_result]] (const callback&);
|
2015-02-18 02:34:10 +11:00
|
|
|
|
2015-03-10 22:52:38 +11:00
|
|
|
void disconnect (cookie&);
|
2011-06-27 15:31:41 +10:00
|
|
|
|
2011-07-16 14:47:56 +10:00
|
|
|
/// Disconnect all callbacks
|
2013-08-06 17:43:52 +10:00
|
|
|
void clear (void);
|
2011-08-10 21:31:24 +10:00
|
|
|
|
2011-07-16 14:47:56 +10:00
|
|
|
/// Returns the number of callbacks connected.
|
2016-05-12 17:39:33 +10:00
|
|
|
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
|
2015-02-18 02:34:10 +11:00
|
|
|
template <typename ...Args>
|
2015-03-10 22:52:38 +11:00
|
|
|
R
|
|
|
|
operator() (Args&&... tail);
|
2015-02-18 02:34:10 +11:00
|
|
|
|
|
|
|
private:
|
|
|
|
typedef std::list<callback> group;
|
|
|
|
group m_children;
|
2011-07-16 14:47:56 +10:00
|
|
|
};
|
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:
|
2017-05-23 12:50:51 +10:00
|
|
|
explicit value_signal (T);
|
2015-02-20 15:27:18 +11:00
|
|
|
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;
|
|
|
|
};
|
2011-07-16 14:47:56 +10:00
|
|
|
}
|
2011-06-27 15:31:41 +10:00
|
|
|
|
2013-08-06 17:43:52 +10:00
|
|
|
#include "signal.ipp"
|
|
|
|
|
2011-06-27 15:31:41 +10:00
|
|
|
#endif // __SIGNAL_HPP
|