2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
|
|
|
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
|
|
|
|
* *
|
|
|
|
* 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. *
|
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
|
|
|
|
|
|
|
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
|
|
|
*/
|
2012-04-06 08:56:52 +02:00
|
|
|
class I2_ICINGA_API IcingaApplication : public Application
|
2012-03-31 16:29:53 +02:00
|
|
|
{
|
|
|
|
public:
|
2012-04-02 20:50:35 +02:00
|
|
|
typedef shared_ptr<IcingaApplication> Ptr;
|
|
|
|
typedef weak_ptr<IcingaApplication> WeakPtr;
|
2012-03-31 16:29:53 +02:00
|
|
|
|
2012-08-14 12:51:51 +02:00
|
|
|
IcingaApplication(const Dictionary::Ptr& serializedUpdate);
|
2012-07-13 08:30:20 +02:00
|
|
|
|
2013-02-02 23:22:27 +01:00
|
|
|
int Main(void);
|
2012-03-31 16:29:53 +02:00
|
|
|
|
2012-06-27 18:43:34 +02:00
|
|
|
static IcingaApplication::Ptr GetInstance(void);
|
2012-04-27 13:12:06 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
String GetCertificateFile(void) const;
|
|
|
|
String GetCAFile(void) const;
|
|
|
|
String GetNode(void) const;
|
|
|
|
String GetService(void) const;
|
|
|
|
String GetPidPath(void) const;
|
2012-08-07 09:44:36 +02:00
|
|
|
String GetStatePath(void) const;
|
2012-07-13 11:29:23 +02:00
|
|
|
Dictionary::Ptr GetMacros(void) const;
|
2012-09-03 10:28:14 +02:00
|
|
|
shared_ptr<SSL_CTX> GetSSLContext(void) const;
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2012-08-03 18:17:47 +02:00
|
|
|
double GetStartTime(void) const;
|
2012-06-27 23:38:50 +02:00
|
|
|
|
2013-02-24 01:10:34 +01:00
|
|
|
static Dictionary::Ptr CalculateDynamicMacros(const IcingaApplication::Ptr& self);
|
|
|
|
|
2012-05-21 23:42:54 +02:00
|
|
|
private:
|
2013-02-26 10:13:54 +01:00
|
|
|
Attribute<String> m_CertPath;
|
|
|
|
Attribute<String> m_CAPath;
|
|
|
|
Attribute<String> m_Node;
|
|
|
|
Attribute<String> m_Service;
|
|
|
|
Attribute<String> m_PidPath;
|
|
|
|
Attribute<String> m_StatePath;
|
|
|
|
Attribute<Dictionary::Ptr> m_Macros;
|
|
|
|
|
2012-09-03 10:28:14 +02:00
|
|
|
shared_ptr<SSL_CTX> m_SSLContext;
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2012-08-03 18:17:47 +02:00
|
|
|
double m_StartTime;
|
2012-06-27 23:38:50 +02:00
|
|
|
|
2012-07-24 13:13:02 +02:00
|
|
|
Timer::Ptr m_RetentionTimer;
|
|
|
|
|
2012-07-26 11:41:36 +02:00
|
|
|
void DumpProgramState(void);
|
2013-02-24 01:10:34 +01:00
|
|
|
|
|
|
|
virtual void OnShutdown(void);
|
2012-03-31 16:29:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-04-02 08:56:30 +02:00
|
|
|
#endif /* ICINGAAPPLICATION_H */
|