2012-05-10 06:06:41 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
* Icinga 2 *
|
2014-03-18 20:02:29 -04:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2012-05-10 06:06:41 -04:00
|
|
|
* *
|
|
|
|
|
* 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 07:33:57 -04:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 06:06:41 -04:00
|
|
|
******************************************************************************/
|
|
|
|
|
|
2012-07-30 04:17:29 -04:00
|
|
|
#ifndef DYNAMICOBJECT_H
|
|
|
|
|
#define DYNAMICOBJECT_H
|
2012-03-31 09:18:09 -04:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/i2-base.hpp"
|
|
|
|
|
#include "base/dynamicobject.thpp"
|
|
|
|
|
#include "base/object.hpp"
|
2014-10-26 14:59:49 -04:00
|
|
|
#include "base/type.hpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/dictionary.hpp"
|
2014-09-09 08:49:21 -04:00
|
|
|
#include "base/debuginfo.hpp"
|
2013-03-18 06:02:18 -04:00
|
|
|
#include <boost/signals2.hpp>
|
2013-03-16 16:18:53 -04:00
|
|
|
#include <map>
|
2013-03-15 13:21:29 -04:00
|
|
|
|
2012-03-31 09:18:09 -04:00
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
2012-12-04 02:42:24 -05:00
|
|
|
class DynamicType;
|
|
|
|
|
|
2012-06-30 09:22:51 -04:00
|
|
|
/**
|
2014-05-19 12:17:47 -04:00
|
|
|
* A dynamic object that can be instantiated from the configuration file.
|
2012-06-30 09:22:51 -04:00
|
|
|
*
|
|
|
|
|
* @ingroup base
|
|
|
|
|
*/
|
2013-11-04 17:14:34 -05:00
|
|
|
class I2_BASE_API DynamicObject : public ObjectImpl<DynamicObject>
|
2012-03-31 09:18:09 -04:00
|
|
|
{
|
|
|
|
|
public:
|
2014-11-02 18:44:04 -05:00
|
|
|
DECLARE_OBJECT(DynamicObject);
|
2012-03-31 09:18:09 -04:00
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
static boost::signals2::signal<void (const DynamicObject::Ptr&)> OnStarted;
|
|
|
|
|
static boost::signals2::signal<void (const DynamicObject::Ptr&)> OnStopped;
|
2014-05-09 05:32:24 -04:00
|
|
|
static boost::signals2::signal<void (const DynamicObject::Ptr&)> OnPaused;
|
|
|
|
|
static boost::signals2::signal<void (const DynamicObject::Ptr&)> OnResumed;
|
2014-05-03 14:02:22 -04:00
|
|
|
static boost::signals2::signal<void (const DynamicObject::Ptr&)> OnStateChanged;
|
2012-08-02 03:38:08 -04:00
|
|
|
|
2014-11-08 15:17:16 -05:00
|
|
|
intrusive_ptr<DynamicType> GetType(void) const;
|
2012-06-12 03:36:18 -04:00
|
|
|
|
2014-09-09 08:49:21 -04:00
|
|
|
DebugInfo GetDebugInfo(void) const;
|
|
|
|
|
void SetDebugInfo(const DebugInfo& di);
|
|
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
bool IsActive(void) const;
|
2014-05-09 05:32:24 -04:00
|
|
|
bool IsPaused(void) const;
|
2012-07-02 08:38:37 -04:00
|
|
|
|
2014-11-13 05:23:57 -05:00
|
|
|
void SetExtension(const String& key, const Value& value);
|
|
|
|
|
Value GetExtension(const String& key);
|
2013-07-05 03:37:04 -04:00
|
|
|
void ClearExtension(const String& key);
|
|
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
void Register(void);
|
2013-08-20 05:06:04 -04:00
|
|
|
|
|
|
|
|
void Activate(void);
|
|
|
|
|
void Deactivate(void);
|
2014-05-09 05:32:24 -04:00
|
|
|
void SetAuthority(bool authority);
|
2012-06-12 03:36:18 -04:00
|
|
|
|
2012-09-28 04:39:28 -04:00
|
|
|
virtual void Start(void);
|
2013-03-12 08:48:37 -04:00
|
|
|
virtual void Stop(void);
|
2012-09-28 04:39:28 -04:00
|
|
|
|
2014-05-09 05:32:24 -04:00
|
|
|
virtual void Pause(void);
|
|
|
|
|
virtual void Resume(void);
|
|
|
|
|
|
2013-08-29 13:05:06 -04:00
|
|
|
virtual void OnConfigLoaded(void);
|
2014-11-21 12:31:37 -05:00
|
|
|
virtual void OnAllConfigLoaded(void);
|
2013-08-29 13:05:06 -04:00
|
|
|
virtual void OnStateLoaded(void);
|
|
|
|
|
|
2013-08-20 05:06:04 -04:00
|
|
|
template<typename T>
|
2014-11-08 15:17:16 -05:00
|
|
|
static intrusive_ptr<T> GetObject(const String& name)
|
2013-08-20 05:06:04 -04:00
|
|
|
{
|
|
|
|
|
DynamicObject::Ptr object = GetObject(T::GetTypeName(), name);
|
2012-05-21 17:42:54 -04:00
|
|
|
|
2013-12-02 03:16:46 -05:00
|
|
|
return static_pointer_cast<T>(object);
|
2013-08-20 05:06:04 -04:00
|
|
|
}
|
2012-07-24 07:13:02 -04:00
|
|
|
|
2013-11-04 17:14:34 -05:00
|
|
|
static void DumpObjects(const String& filename, int attributeTypes = FAState);
|
|
|
|
|
static void RestoreObjects(const String& filename, int attributeTypes = FAState);
|
2013-08-20 05:06:04 -04:00
|
|
|
static void StopObjects(void);
|
2012-07-27 10:05:02 -04:00
|
|
|
|
2012-08-03 17:03:58 -04:00
|
|
|
protected:
|
2013-08-20 05:06:04 -04:00
|
|
|
explicit DynamicObject(void);
|
2013-03-14 18:52:52 -04:00
|
|
|
|
2012-05-21 17:42:54 -04:00
|
|
|
private:
|
2013-08-20 05:06:04 -04:00
|
|
|
static DynamicObject::Ptr GetObject(const String& type, const String& name);
|
2014-05-18 03:15:27 -04:00
|
|
|
static void RestoreObject(const String& message, int attributeTypes);
|
2014-09-09 08:49:21 -04:00
|
|
|
|
|
|
|
|
DebugInfo m_DebugInfo;
|
2012-07-27 10:05:02 -04:00
|
|
|
};
|
2012-07-02 13:25:33 -04:00
|
|
|
|
2014-11-08 15:17:16 -05:00
|
|
|
#define DECLARE_OBJECTNAME(klass) \
|
|
|
|
|
inline static String GetTypeName(void) \
|
|
|
|
|
{ \
|
|
|
|
|
return #klass; \
|
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
inline static intrusive_ptr<klass> GetByName(const String& name) \
|
|
|
|
|
{ \
|
|
|
|
|
return DynamicObject::GetObject<klass>(name); \
|
2013-08-20 05:06:04 -04:00
|
|
|
}
|
|
|
|
|
|
2012-03-31 09:18:09 -04:00
|
|
|
}
|
|
|
|
|
|
2012-07-30 04:17:29 -04:00
|
|
|
#endif /* DYNAMICOBJECT_H */
|