icinga2/lib/compat/externalcommandlistener.hpp
Alexander A. Klimov c7cca7b460 Add a StoppableWaitGroup, and join it on #Stop(), to:
ApiListener
CheckerComponent
ExternalCommandListener
LivestatusListener
2025-05-23 14:53:58 +02:00

45 lines
968 B
C++

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef EXTERNALCOMMANDLISTENER_H
#define EXTERNALCOMMANDLISTENER_H
#include "compat/externalcommandlistener-ti.hpp"
#include "base/objectlock.hpp"
#include "base/wait-group.hpp"
#include "base/timer.hpp"
#include "base/utility.hpp"
#include <thread>
#include <iostream>
namespace icinga
{
/**
* @ingroup compat
*/
class ExternalCommandListener final : public ObjectImpl<ExternalCommandListener>
{
public:
DECLARE_OBJECT(ExternalCommandListener);
DECLARE_OBJECTNAME(ExternalCommandListener);
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
protected:
void Start(bool runtimeCreated) override;
void Stop(bool runtimeRemoved) override;
private:
StoppableWaitGroup::Ptr m_WaitGroup = new StoppableWaitGroup();
#ifndef _WIN32
std::thread m_CommandThread;
void CommandPipeThread(const String& commandPath);
#endif /* _WIN32 */
};
}
#endif /* EXTERNALCOMMANDLISTENER_H */