Instance: replace IdleMaskMonitor with CallMaskMonitor

This commit is contained in:
Max Kellermann
2016-03-10 20:31:08 +01:00
parent 5ffe3773d4
commit e2bc92d128
3 changed files with 12 additions and 52 deletions

View File

@@ -22,7 +22,7 @@
#include "check.h"
#include "event/Loop.hxx"
#include "IdleMaskMonitor.hxx"
#include "event/MaskMonitor.hxx"
#include "GlobalEvents.hxx"
#include "Compiler.h"
@@ -52,8 +52,7 @@ struct EventLoopHolder {
};
struct Instance final
: EventLoopHolder,
IdleMaskMonitor
: EventLoopHolder
#if defined(ENABLE_DATABASE) || defined(ENABLE_NEIGHBOR_PLUGINS)
,
#endif
@@ -69,6 +68,8 @@ struct Instance final
{
GlobalEvents::Monitor global_events;
CallbackMaskMonitor<Instance> idle_monitor;
#ifdef ENABLE_NEIGHBOR_PLUGINS
NeighborGlue *neighbors;
#endif
@@ -92,8 +93,8 @@ struct Instance final
StateFile *state_file;
Instance()
:IdleMaskMonitor(event_loop),
global_events(event_loop) {}
:global_events(event_loop),
idle_monitor(event_loop, *this, &Instance::OnIdle) {}
/**
* Initiate shutdown. Wrapper for EventLoop::Break().
@@ -102,6 +103,10 @@ struct Instance final
event_loop.Break();
}
void EmitIdle(unsigned mask) {
idle_monitor.OrMask(mask);
}
#ifdef ENABLE_DATABASE
/**
* Returns the global #Database instance. May return nullptr
@@ -134,8 +139,8 @@ private:
virtual void LostNeighbor(const NeighborInfo &info) override;
#endif
/* virtual methods from class IdleMaskMonitor */
void OnIdle(unsigned mask) override;
/* callback for #idle_monitor */
void OnIdle(unsigned mask);
};
#endif