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-07-30 10:17:29 +02:00
|
|
|
#ifndef DYNAMICOBJECT_H
|
|
|
|
#define DYNAMICOBJECT_H
|
2012-03-31 15:18:09 +02:00
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
#include "base/i2-base.h"
|
|
|
|
#include "base/object.h"
|
|
|
|
#include "base/dictionary.h"
|
2013-03-18 11:02:18 +01:00
|
|
|
#include <boost/signals2.hpp>
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <map>
|
|
|
|
#include <set>
|
2013-03-15 18:21:29 +01:00
|
|
|
|
2012-03-31 15:18:09 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2012-12-04 08:42:24 +01:00
|
|
|
class DynamicType;
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
/**
|
|
|
|
* The type of an attribute for a DynamicObject.
|
|
|
|
*
|
|
|
|
* @ingroup base
|
|
|
|
*/
|
|
|
|
enum AttributeType
|
|
|
|
{
|
2013-08-29 10:40:43 +02:00
|
|
|
Attribute_State = 1,
|
|
|
|
Attribute_Config = 2,
|
2013-08-20 11:06:04 +02:00
|
|
|
};
|
|
|
|
|
2012-06-30 15:22:51 +02:00
|
|
|
/**
|
2012-09-17 13:35:55 +02:00
|
|
|
* A dynamic object that can be instantiated from the configuration file
|
|
|
|
* and that supports attribute replication to remote application instances.
|
2012-06-30 15:22:51 +02:00
|
|
|
*
|
|
|
|
* @ingroup base
|
|
|
|
*/
|
2012-07-30 10:17:29 +02:00
|
|
|
class I2_BASE_API DynamicObject : public Object
|
2012-03-31 15:18:09 +02:00
|
|
|
{
|
|
|
|
public:
|
2013-07-09 08:42:08 +02:00
|
|
|
DECLARE_PTR_TYPEDEFS(DynamicObject);
|
2012-03-31 15:18:09 +02:00
|
|
|
|
2013-02-08 23:40:28 +01:00
|
|
|
~DynamicObject(void);
|
2012-06-12 09:36:18 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
Dictionary::Ptr Serialize(int attributeTypes) const;
|
|
|
|
void Deserialize(const Dictionary::Ptr& update, int attributeTypes);
|
2013-02-26 10:13:54 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
static boost::signals2::signal<void (const DynamicObject::Ptr&)> OnStarted;
|
|
|
|
static boost::signals2::signal<void (const DynamicObject::Ptr&)> OnStopped;
|
|
|
|
static boost::signals2::signal<void (const DynamicObject::Ptr&)> OnStateChanged;
|
2012-08-02 09:38:08 +02:00
|
|
|
|
2013-03-25 18:36:15 +01:00
|
|
|
Value InvokeMethod(const String& method, const std::vector<Value>& arguments);
|
2012-08-02 09:38:08 +02:00
|
|
|
|
2012-12-04 08:42:24 +01:00
|
|
|
shared_ptr<DynamicType> GetType(void) const;
|
2012-08-02 09:38:08 +02:00
|
|
|
String GetName(void) const;
|
2012-06-12 09:36:18 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
bool IsActive(void) const;
|
2012-07-02 14:38:37 +02:00
|
|
|
|
2013-07-05 09:37:04 +02:00
|
|
|
void SetExtension(const String& key, const Object::Ptr& object);
|
|
|
|
Object::Ptr GetExtension(const String& key);
|
|
|
|
void ClearExtension(const String& key);
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
void Register(void);
|
2013-08-20 11:06:04 +02:00
|
|
|
|
|
|
|
void Activate(void);
|
|
|
|
void Deactivate(void);
|
2012-06-12 09:36:18 +02:00
|
|
|
|
2012-09-28 10:39:28 +02:00
|
|
|
virtual void Start(void);
|
2013-03-12 13:48:37 +01:00
|
|
|
virtual void Stop(void);
|
2012-09-28 10:39:28 +02:00
|
|
|
|
2013-08-29 19:05:06 +02:00
|
|
|
virtual void OnConfigLoaded(void);
|
|
|
|
virtual void OnStateLoaded(void);
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
template<typename T>
|
|
|
|
static shared_ptr<T> GetObject(const String& name)
|
|
|
|
{
|
|
|
|
DynamicObject::Ptr object = GetObject(T::GetTypeName(), name);
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
return dynamic_pointer_cast<T>(object);
|
|
|
|
}
|
2012-07-24 13:13:02 +02:00
|
|
|
|
2013-08-29 10:40:43 +02:00
|
|
|
static void DumpObjects(const String& filename, int attributeTypes = Attribute_State);
|
|
|
|
static void RestoreObjects(const String& filename, int attributeTypes = Attribute_State);
|
2013-08-20 11:06:04 +02:00
|
|
|
static void StopObjects(void);
|
2012-07-27 16:05:02 +02:00
|
|
|
|
2013-07-12 15:13:05 +02:00
|
|
|
Dictionary::Ptr GetCustom(void) const;
|
|
|
|
|
2012-08-03 23:03:58 +02:00
|
|
|
protected:
|
2013-08-20 11:06:04 +02:00
|
|
|
explicit DynamicObject(void);
|
2013-03-14 23:52:52 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
virtual void InternalSerialize(const Dictionary::Ptr& bag, int attributeTypes) const;
|
|
|
|
virtual void InternalDeserialize(const Dictionary::Ptr& bag, int attributeTypes);
|
2012-08-03 23:03:58 +02:00
|
|
|
|
2012-05-21 23:42:54 +02:00
|
|
|
private:
|
2013-08-20 11:06:04 +02:00
|
|
|
String m_Name;
|
|
|
|
String m_Type;
|
|
|
|
Dictionary::Ptr m_Extensions;
|
|
|
|
Dictionary::Ptr m_Methods;
|
|
|
|
Dictionary::Ptr m_Custom;
|
2013-02-18 23:44:24 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
bool m_Active;
|
2012-07-24 13:13:02 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
static DynamicObject::Ptr GetObject(const String& type, const String& name);
|
2012-07-27 16:05:02 +02:00
|
|
|
};
|
2012-07-02 19:25:33 +02:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
#define DECLARE_TYPENAME(klass) \
|
|
|
|
inline static String GetTypeName(void) \
|
|
|
|
{ \
|
|
|
|
return #klass; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
inline static shared_ptr<klass> GetByName(const String& name) \
|
|
|
|
{ \
|
|
|
|
return DynamicObject::GetObject<klass>(name); \
|
|
|
|
}
|
|
|
|
|
2012-03-31 15:18:09 +02:00
|
|
|
}
|
|
|
|
|
2012-07-30 10:17:29 +02:00
|
|
|
#endif /* DYNAMICOBJECT_H */
|