icinga2/lib/icinga/icingaapplication.hpp

65 lines
2.4 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2018-01-02 12:06:00 +01:00
* Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/) *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software Foundation *
2012-05-11 13:33:57 +02:00
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#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
{
/**
* The Icinga application.
2012-05-18 22:21:28 +02:00
*
* @ingroup icinga
*/
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
static void StaticInitialize();
2013-10-08 11:57:35 +02:00
int Main() override;
2012-03-31 16:29:53 +02:00
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
static IcingaApplication::Ptr GetInstance();
2012-04-27 13:12:06 +02:00
bool ResolveMacro(const String& macro, const CheckResult::Ptr& cr, Value *result) const override;
2013-02-24 01:10:34 +01:00
String GetNodeName() const;
2013-10-08 11:57:35 +02:00
void ValidateVars(const Lazy<Dictionary::Ptr>& lvalue, const ValidationUtils& utils) override;
2013-10-08 11:57:35 +02:00
private:
void DumpProgramState();
void DumpModifiedAttributes();
2013-02-24 01:10:34 +01:00
void OnShutdown() override;
2012-03-31 16:29:53 +02:00
};
}
#endif /* ICINGAAPPLICATION_H */