EventBus/include/eventbus/EventCollector.h
2017-12-04 13:24:44 +01:00

106 lines
1.9 KiB
C++

//
// Created by Dawid Drozd aka Gelldur on 18/10/16.
//
#pragma once
#include <memory>
#include "EventBus.h"
namespace Dexode
{
class [[deprecated("This class will be removed, is breaking API")]] BusAttorney
{
public:
BusAttorney(std::shared_ptr<EventBus> bus)
: _bus(std::move(bus))
{
}
/**
* Notify all listeners for event
*
* @param event your event struct
*/
template<typename Event>
[[deprecated]]
void notify(const Event& event) const
{
_bus->notify(event);
}
[[deprecated]]
std::shared_ptr<EventBus> extract() const
{
return _bus;
}
private:
std::shared_ptr<EventBus> _bus;
};
class EventCollector
{
public:
EventCollector(const std::shared_ptr<EventBus>& bus);
EventCollector(EventBus* bus);
EventCollector(EventCollector const& other);
EventCollector(EventCollector&& other);
~EventCollector();
EventCollector& operator=(EventCollector const& other);
EventCollector& operator=(EventCollector&& other);
/**
* Register listener for event.
*
* @tparam Event - type you want to listen for
* @param callback - your callback to handle event
*/
template<typename Event>
void listen(const std::function<void(const Event&)>& callback)
{
if (!callback || !_bus)
{
return;//Skip such things
}
if (_token == 0)
{
_token = _bus->listen<Event>(callback);
}
else
{
_bus->listen<Event>(_token, callback);
}
}
void unlistenAll();
/**
* @tparam Event - type you want to unlisten. @see Notiier::listen
*/
template<typename Event>
void unlisten()
{
if (_bus)
{
_bus->unlisten<Event>(_token);
}
}
bool isUsing(const std::shared_ptr<EventBus>& bus) const;
///I wan't explicitly say getBus. Ok we could add method for notify but this is more explicit
[[deprecated("This method will be removed, is breaking encapsulation")]]
BusAttorney getBus() const;
private:
int _token = 0;
std::shared_ptr<EventBus> _bus;
};
}