icinga2/lib/base/dynamicobject.h

135 lines
4.2 KiB
C
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2013-09-25 07:43:57 +02:00
* Copyright (C) 2012-2013 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-07-30 10:17:29 +02:00
#ifndef DYNAMICOBJECT_H
#define DYNAMICOBJECT_H
2013-03-16 21:18:53 +01:00
#include "base/i2-base.h"
2013-10-26 09:41:45 +02:00
#include "base/dynamicobject.th"
2013-03-16 21:18:53 +01:00
#include "base/object.h"
#include "base/dictionary.h"
2013-09-12 10:03:48 +02:00
#include "base/array.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
namespace icinga
{
class DynamicType;
/**
* The type of an attribute for a DynamicObject.
*
* @ingroup base
*/
enum AttributeType
{
2013-10-26 09:41:45 +02:00
Attribute_State = FAState,
Attribute_Config = FAConfig
};
2013-09-17 13:18:26 +02:00
enum DomainPriv
{
DomainPrivRead = (1<<0),
DomainPrivCheckResult = (1<<1),
DomainPrivCommand = (1<<2)
};
/**
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.
*
* @ingroup base
*/
2013-10-26 09:41:45 +02:00
class I2_BASE_API DynamicObject : public ReflectionObjectImpl<DynamicObject>
{
public:
DECLARE_PTR_TYPEDEFS(DynamicObject);
~DynamicObject(void);
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;
static boost::signals2::signal<void (const DynamicObject::Ptr&, const String&, bool)> OnAuthorityChanged;
2013-03-25 18:36:15 +01:00
Value InvokeMethod(const String& method, const std::vector<Value>& arguments);
shared_ptr<DynamicType> GetType(void) const;
bool IsActive(void) const;
2012-07-02 14:38:37 +02:00
void SetAuthority(const String& type, bool value);
bool HasAuthority(const String& type) const;
2013-09-12 10:03:48 +02:00
2013-09-17 13:18:26 +02:00
void SetPrivileges(const String& instance, int privs);
bool HasPrivileges(const String& instance, int privs) const;
void SetExtension(const String& key, const Object::Ptr& object);
Object::Ptr GetExtension(const String& key);
void ClearExtension(const String& key);
void Register(void);
void Activate(void);
void Deactivate(void);
virtual void Start(void);
2013-03-12 13:48:37 +01:00
virtual void Stop(void);
2013-08-29 19:05:06 +02:00
virtual void OnConfigLoaded(void);
virtual void OnStateLoaded(void);
template<typename T>
static shared_ptr<T> GetObject(const String& name)
{
DynamicObject::Ptr object = GetObject(T::GetTypeName(), name);
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);
static void StopObjects(void);
protected:
explicit DynamicObject(void);
2013-03-14 23:52:52 +01:00
private:
2013-09-17 13:18:26 +02:00
std::map<String, int> m_Privileges;
2013-02-18 23:44:24 +01:00
static DynamicObject::Ptr GetObject(const String& type, const String& name);
};
#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-07-30 10:17:29 +02:00
#endif /* DYNAMICOBJECT_H */