blob: 895531f782eafb41a17a22fcd6a713a8a3273795 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef EXTERNALCOMMANDLISTENER_H
#define EXTERNALCOMMANDLISTENER_H
#include "compat/externalcommandlistener-ti.hpp"
#include "base/objectlock.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:
#ifndef _WIN32
std::thread m_CommandThread;
void CommandPipeThread(const String& commandPath);
#endif /* _WIN32 */
};
}
#endif /* EXTERNALCOMMANDLISTENER_H */
|