2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-05-10 12:06:41 +02:00
|
|
|
|
2012-04-02 08:56:30 +02:00
|
|
|
#ifndef ICINGAAPPLICATION_H
|
|
|
|
#define ICINGAAPPLICATION_H
|
2012-03-31 16:29:53 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/i2-icinga.hpp"
|
2018-01-18 13:50:38 +01:00
|
|
|
#include "icinga/icingaapplication-ti.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/macroresolver.hpp"
|
2013-03-16 21:18:53 +01:00
|
|
|
|
2012-03-31 16:29:53 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2012-05-15 16:24:04 +02:00
|
|
|
/**
|
|
|
|
* The Icinga application.
|
2012-05-18 22:21:28 +02:00
|
|
|
*
|
|
|
|
* @ingroup icinga
|
2012-05-15 16:24:04 +02:00
|
|
|
*/
|
2018-01-04 06:11:04 +01:00
|
|
|
class IcingaApplication final : public ObjectImpl<IcingaApplication>, public MacroResolver
|
2012-03-31 16:29:53 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-11-03 00:44:04 +01:00
|
|
|
DECLARE_OBJECT(IcingaApplication);
|
|
|
|
DECLARE_OBJECTNAME(IcingaApplication);
|
2012-07-13 08:30:20 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static void StaticInitialize();
|
2013-10-08 11:57:35 +02:00
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
int Main() override;
|
2012-03-31 16:29:53 +02:00
|
|
|
|
2015-02-13 11:28:43 +01:00
|
|
|
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
|
2014-02-17 16:34:18 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static IcingaApplication::Ptr GetInstance();
|
2012-04-27 13:12:06 +02:00
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
bool ResolveMacro(const String& macro, const CheckResult::Ptr& cr, Value *result) const override;
|
2013-02-24 01:10:34 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String GetNodeName() const;
|
2013-10-08 11:57:35 +02:00
|
|
|
|
2019-04-15 16:56:30 +02:00
|
|
|
int GetMaxConcurrentChecks() const;
|
|
|
|
|
2018-08-10 10:15:41 +02:00
|
|
|
String GetEnvironment() const override;
|
|
|
|
void SetEnvironment(const String& value, bool suppress_events = false, const Value& cookie = Empty) override;
|
|
|
|
|
2018-01-11 07:08:09 +01:00
|
|
|
void ValidateVars(const Lazy<Dictionary::Ptr>& lvalue, const ValidationUtils& utils) override;
|
2013-10-08 11:57:35 +02:00
|
|
|
|
2012-05-21 23:42:54 +02:00
|
|
|
private:
|
2018-01-04 04:25:35 +01:00
|
|
|
void DumpProgramState();
|
|
|
|
void DumpModifiedAttributes();
|
2013-02-24 01:10:34 +01:00
|
|
|
|
2018-01-04 05:12:56 +01:00
|
|
|
void OnShutdown() override;
|
2012-03-31 16:29:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-04-02 08:56:30 +02:00
|
|
|
#endif /* ICINGAAPPLICATION_H */
|