c++-gtk-utils
Public Member Functions | Friends | List of all members
Cgu::SafeEmitterArg< FreeArgs > Class Template Reference

A thread-safe class to execute callbacks connected to it, with provision for automatic disconnection. More...

#include <c++-gtk-utils/emitter.h>

Public Member Functions

void operator() (typename Cgu::Param< FreeArgs >::ParamType... args) const
 
void emit (typename Cgu::Param< FreeArgs >::ParamType... args) const
 
bool test_emit (typename Cgu::Param< FreeArgs >::ParamType... args) const
 
Callback::SafeFunctorArg< FreeArgs... > connect (const Callback::SafeFunctorArg< FreeArgs... > &f)
 
Callback::SafeFunctorArg< FreeArgs... > connect (const Callback::SafeFunctorArg< FreeArgs... > &f, Releaser &r)
 
template<class F , class = typename std::enable_if<!std::is_convertible<typename std::remove_reference<F>::type, const Callback::SafeFunctorArg<FreeArgs...>>::value>::type>
Callback::SafeFunctorArg< FreeArgs... > connect (F &&f)
 
template<class F , class = typename std::enable_if<!std::is_convertible<typename std::remove_reference<F>::type, const Callback::SafeFunctorArg<FreeArgs...>>::value>::type>
Callback::SafeFunctorArg< FreeArgs... > connect (F &&f, Releaser &r)
 
void disconnect (const Callback::SafeFunctorArg< FreeArgs... > &f)
 
void block (const Callback::SafeFunctorArg< FreeArgs... > &f)
 
void unblock (const Callback::SafeFunctorArg< FreeArgs... > &f)
 
 SafeEmitterArg ()=default
 
 SafeEmitterArg (const SafeEmitterArg &)=delete
 
SafeEmitterArgoperator= (const SafeEmitterArg &)=delete
 
 ~SafeEmitterArg ()
 

Friends

class Releaser
 

Detailed Description

template<class... FreeArgs>
class Cgu::SafeEmitterArg< FreeArgs >

A thread-safe class to execute callbacks connected to it, with provision for automatic disconnection.

See also
EmitterArg Releaser
emitter.h
Callback namespace

This is a thread-safe version of the EmitterArg class. Callable objects (such as lambda expressions or the return value of std::bind) or Callback::SafeFunctorArg objects may be connected to SafeEmitter classes (referred to be below as "connected callables"), and will be executed when SafeEmitterArg::emit() or SafeEmitterArg::operator()() are called.

One version of the connect() method takes a Releaser object as an argument. Such a Releaser object should be a public member of any target class which wants connected callables representing (or calling into) any of its methods to be disconnected automatically from the SafeEmitterArg object when the target class object is destroyed.

A connection may be explicitly disconnected by calling the disconnect() method, and may also be temporarily blocked and subsequently unblocked with the block() and unblock() methods.

The template types are the types of the unbound arguments, if any. SafeEmitterArg<> is typedef'ed to SafeEmitter.

Usage

These are examples:

using namespace Cgu;
se1.connect([] () {std::cout << "Hello world\n";});
se1();
int res;
se2.connect([] (int i, int& j) {j = 10 * i;});
se2(2, res);
std::cout << "10 times 2 is " << res << '\n';

Callback::SafeFunctorArg objects may be connected to an emitter, and the connect() method may be directly initialized with the result of Callback::make(), Callback::make_ref() or Callback::lambda() and implicit conversion will take place. Here is an example using Callback::make_ref(), with a class object my_obj of type MyClass, with a method void MyClass::my_method(const Something&, int):

using namespace Cgu;
Something arg;
se.connect(Callback::make_ref(my_obj, &MyClass::my_method, arg));
se(5);

For further background, including about thread-safety and exception safety and other matters, read this: emitter.h, or for more information about bound and unbound arguments, read this: Cgu::Callback.

Constructor & Destructor Documentation

◆ SafeEmitterArg() [1/2]

template<class... FreeArgs>
Cgu::SafeEmitterArg< FreeArgs >::SafeEmitterArg ( )
default
Exceptions
std::bad_allocThe constructor might throw std::bad_alloc if memory is exhausted and the system throws in that case.
Thread::MutexErrorThe constructor might throw Thread::MutexError if initialisation of the contained mutex fails. (It is often not worth checking for this, as it means either memory is exhausted or pthread has run out of other resources to create new mutexes.)

◆ SafeEmitterArg() [2/2]

template<class... FreeArgs>
Cgu::SafeEmitterArg< FreeArgs >::SafeEmitterArg ( const SafeEmitterArg< FreeArgs > &  )
delete

This class cannot be copied. The copy constructor is deleted.

◆ ~SafeEmitterArg()

template<class... FreeArgs>
Cgu::SafeEmitterArg< FreeArgs >::~SafeEmitterArg

The destructor does not throw provided that the destructors of any bound arguments do not throw (as they should not do), and assuming that merely iterating through a list does not throw (as it would not on any sane implementation). It is thread-safe as regards the dropping of any connected functors and of any relevant Releaser objects.

Member Function Documentation

◆ block()

template<class... FreeArgs>
void Cgu::SafeEmitterArg< FreeArgs >::block ( const Callback::SafeFunctorArg< FreeArgs... > &  f)

Blocks a connected functor from executing when emit() or operator()() is called until unblock() is called. This method does not throw (assuming that merely iterating through a list does not throw, as it would not on any sane implementation). It is thread safe.

Parameters
fThe functor to block.
Note
If the same functor has been connected more than once to the same SafeEmitterArg object, this call will block all of them.

◆ connect() [1/4]

template<class... FreeArgs>
Callback::SafeFunctorArg< FreeArgs... > Cgu::SafeEmitterArg< FreeArgs >::connect ( const Callback::SafeFunctorArg< FreeArgs... > &  f)

Connects a Callback::SafeFunctorArg object.

Parameters
fThe Callback::SafeFunctorArg object to connect.
Returns
The Callback::SafeFunctorArg object connected.
Exceptions
std::bad_allocThe method might throw std::bad_alloc if memory is exhausted and the system throws in that case.

◆ connect() [2/4]

template<class... FreeArgs>
Callback::SafeFunctorArg< FreeArgs... > Cgu::SafeEmitterArg< FreeArgs >::connect ( const Callback::SafeFunctorArg< FreeArgs... > &  f,
Releaser r 
)

Connects a Callback::SafeFunctorArg object.

Parameters
fThe Callback::SafeFunctorArg object to connect.
rA Releaser object for automatic disconnection of the Callback::SafeFunctorArg object if the object whose method it represents is destroyed.
Returns
The Callback::SafeFunctorArg object connected.
Exceptions
std::bad_allocThe method might throw std::bad_alloc if memory is exhausted and the system throws in that case.

◆ connect() [3/4]

template<class... FreeArgs>
template<class F , class = typename std::enable_if<!std::is_convertible<typename std::remove_reference<F>::type, const Callback::SafeFunctorArg<FreeArgs...>>::value>::type>
Callback::SafeFunctorArg<FreeArgs...> Cgu::SafeEmitterArg< FreeArgs >::connect ( F &&  f)
inline

Connects a callable object, such as formed by a lambda expression or the result of std::bind.

Parameters
fThe callable object to connect. If must have the same unbound argument types as the SafeEmitterArg object concerned.
Returns
A Callback::SafeFunctorArg object which can be passed to disconnect(), block() or unblock().
Exceptions
std::bad_allocThe method might throw std::bad_alloc if memory is exhausted and the system throws in that case. If might also throw if the copy or move constructor of the callable object throws.

Since 2.1.0

◆ connect() [4/4]

template<class... FreeArgs>
template<class F , class = typename std::enable_if<!std::is_convertible<typename std::remove_reference<F>::type, const Callback::SafeFunctorArg<FreeArgs...>>::value>::type>
Callback::SafeFunctorArg<FreeArgs...> Cgu::SafeEmitterArg< FreeArgs >::connect ( F &&  f,
Releaser r 
)
inline

Connects a callable object, such as formed by a lambda expression or the result of std::bind.

Parameters
fThe callable object to connect. If must have the same unbound argument types as the SafeEmitterArg object concerned.
rA Releaser object for automatic disconnection of the callable object if an object whose method it represents or calls into is destroyed.
Returns
A Callback::SafeFunctorArg object which can be passed to disconnect(), block() or unblock().
Exceptions
std::bad_allocThe method might throw std::bad_alloc if memory is exhausted and the system throws in that case. If might also throw if the copy or move constructor of the callable object throws.

Since 2.1.0

◆ disconnect()

template<class... FreeArgs>
void Cgu::SafeEmitterArg< FreeArgs >::disconnect ( const Callback::SafeFunctorArg< FreeArgs... > &  f)

Disconnects a functor previously connected. This does not throw provided that the destructors of any bound arguments do not throw (as they should not do), and assuming that merely iterating through a list does not throw (as it would not on any sane implementation). It is thread safe.

Parameters
fThe functor to disconnect.
Note
If the same functor has been connected more than once to the same SafeEmitterArg object, this call will disconnect all of them.

◆ emit()

template<class... FreeArgs>
void Cgu::SafeEmitterArg< FreeArgs >::emit ( typename Cgu::Param< FreeArgs >::ParamType...  args) const

This will execute the connected functors. It is thread safe if the functions or class methods referenced by the connected functors are thread safe.

Parameters
argsThe unbound arguments to be passed to the referenced function or class method, if any.
Exceptions
std::bad_allocThe method might throw std::bad_alloc if memory is exhausted and the system throws in that case. In addition, it will throw if the functions or class methods referenced by the functors throw (or if the copy constructor of a free or bound argument throws and it is not a reference argument).

◆ operator()()

template<class... FreeArgs>
void Cgu::SafeEmitterArg< FreeArgs >::operator() ( typename Cgu::Param< FreeArgs >::ParamType...  args) const
inline

This will execute the connected functors. It is thread safe if the functions or class methods referenced by the connected functors are thread safe.

Parameters
argsThe unbound arguments to be passed to the referenced function or class method, if any.
Exceptions
std::bad_allocThe method might throw std::bad_alloc if memory is exhausted and the system throws in that case. In addition, it will throw if the functions or class methods referenced by the functors throw (or if the copy constructor of a free or bound argument throws and it is not a reference argument).

◆ operator=()

template<class... FreeArgs>
SafeEmitterArg& Cgu::SafeEmitterArg< FreeArgs >::operator= ( const SafeEmitterArg< FreeArgs > &  )
delete

This class cannot be copied. The assignment operator is deleted.

◆ test_emit()

template<class... FreeArgs>
bool Cgu::SafeEmitterArg< FreeArgs >::test_emit ( typename Cgu::Param< FreeArgs >::ParamType...  args) const

This will execute the connected functors, but it also reports whether in fact there were any connected functors to execute. It is thread safe if the functions or class methods referenced by the connected functors are thread safe. (It is not necessary to use this function just because it is not known whether a functor is connected - if the standard emit() function is called when no functor is connected, nothing will happen. The feature of this method is that it will report the outcome.)

Parameters
argsThe unbound arguments to be passed to the referenced function or class method, if any.
Returns
Returns false if there were no functors to execute, or true if functors have been executed.
Exceptions
std::bad_allocThe method might throw std::bad_alloc if memory is exhausted and the system throws in that case. In addition, it will throw if the functions or class methods referenced by the functors throw (or if the copy constructor of a free or bound argument throws and it is not a reference argument).

◆ unblock()

template<class... FreeArgs>
void Cgu::SafeEmitterArg< FreeArgs >::unblock ( const Callback::SafeFunctorArg< FreeArgs... > &  f)

Unblocks a previously blocked functor. This method does not throw (assuming that merely iterating through a list does not throw, as it would not on any sane implementation). It is thread safe.

Parameters
fThe functor to unblock.
Note
If the same functor has been connected more than once to the same SafeEmitterArg object, this call will unblock all of them.

Friends And Related Function Documentation

◆ Releaser

template<class... FreeArgs>
friend class Releaser
friend

The documentation for this class was generated from the following file:
Cgu::SafeEmitterArg::connect
Callback::SafeFunctorArg< FreeArgs... > connect(const Callback::SafeFunctorArg< FreeArgs... > &f)
Definition: emitter.h:1265
Cgu::Callback::make_ref
CallbackArg< FreeArgs... > * make_ref(T &t, void(T::*func)(FreeArgs...))
Definition: callback.h:1352
Cgu
Definition: application.h:44
Cgu::SafeEmitterArg
A thread-safe class to execute callbacks connected to it, with provision for automatic disconnection.
Definition: emitter.h:922