2016-10-20 13:12:15 +00:00
|
|
|
#include "Event.h"
|
|
|
|
#include "Log.h"
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
2016-11-01 14:26:40 +00:00
|
|
|
namespace event
|
|
|
|
{
|
2016-11-01 17:57:25 +00:00
|
|
|
#ifdef WITH_EVENTS
|
2016-11-01 14:26:40 +00:00
|
|
|
EventCore core;
|
2016-11-01 17:57:25 +00:00
|
|
|
#endif
|
2016-10-20 13:12:15 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
void EventCore::SetListener(EventListener * l)
|
|
|
|
{
|
|
|
|
m_listener = l;
|
|
|
|
LogPrint(eLogInfo, "Event: listener set");
|
|
|
|
}
|
2016-10-20 13:12:15 +00:00
|
|
|
|
2016-11-01 14:26:40 +00:00
|
|
|
void EventCore::QueueEvent(const EventType & ev)
|
|
|
|
{
|
2016-12-07 16:52:20 +00:00
|
|
|
if(m_listener) m_listener->HandleEvent(ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EventCore::CollectEvent(const std::string & type, const std::string & ident, uint64_t val)
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lock(m_collect_mutex);
|
|
|
|
std::string key = type + "." + ident;
|
|
|
|
if (m_collected.find(key) == m_collected.end())
|
|
|
|
{
|
|
|
|
m_collected[key] = {type, key, 0};
|
|
|
|
}
|
|
|
|
m_collected[key].Val += val;
|
|
|
|
}
|
2018-01-06 03:48:51 +00:00
|
|
|
|
2016-12-07 16:52:20 +00:00
|
|
|
void EventCore::PumpCollected(EventListener * listener)
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lock(m_collect_mutex);
|
|
|
|
if(listener)
|
|
|
|
{
|
|
|
|
for(const auto & ev : m_collected) {
|
|
|
|
listener->HandlePumpEvent({{"type", ev.second.Key}, {"ident", ev.second.Ident}}, ev.second.Val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m_collected.clear();
|
2016-11-01 14:26:40 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-20 13:12:15 +00:00
|
|
|
}
|
|
|
|
|
2016-12-07 16:52:20 +00:00
|
|
|
void QueueIntEvent(const std::string & type, const std::string & ident, uint64_t val)
|
2016-10-20 13:12:15 +00:00
|
|
|
{
|
2016-11-01 14:26:40 +00:00
|
|
|
#ifdef WITH_EVENTS
|
2016-12-07 16:52:20 +00:00
|
|
|
i2p::event::core.CollectEvent(type, ident, val);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmitEvent(const EventType & e)
|
|
|
|
{
|
|
|
|
#if WITH_EVENTS
|
2016-11-01 14:26:40 +00:00
|
|
|
i2p::event::core.QueueEvent(e);
|
|
|
|
#endif
|
2016-10-20 13:12:15 +00:00
|
|
|
}
|
|
|
|
|