icinga2/lib/base/configobject.hpp

121 lines
4.0 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2016-01-12 08:29:59 +01:00
* Copyright (C) 2012-2016 Icinga Development Team (https://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
2014-05-25 16:23:35 +02:00
#include "base/i2-base.hpp"
#include "base/configobject.thpp"
2014-05-25 16:23:35 +02:00
#include "base/object.hpp"
2014-10-26 19:59:49 +01:00
#include "base/type.hpp"
2014-05-25 16:23:35 +02:00
#include "base/dictionary.hpp"
2013-03-18 11:02:18 +01:00
#include <boost/signals2.hpp>
2013-03-15 18:21:29 +01:00
namespace icinga
{
class ConfigType;
/**
* A dynamic object that can be instantiated from the configuration file.
*
* @ingroup base
*/
class I2_BASE_API ConfigObject : public ObjectImpl<ConfigObject>
{
public:
DECLARE_OBJECT(ConfigObject);
static boost::signals2::signal<void (const ConfigObject::Ptr&)> OnStateChanged;
intrusive_ptr<ConfigType> GetType(void) const;
bool IsActive(void) const;
bool IsPaused(void) const;
2012-07-02 14:38:37 +02:00
void SetExtension(const String& key, const Value& value);
Value GetExtension(const String& key);
void ClearExtension(const String& key);
ConfigObject::Ptr GetZone(void) const;
void ModifyAttribute(const String& attr, const Value& value, bool updateVersion = true);
void RestoreAttribute(const String& attr, bool updateVersion = true);
bool IsAttributeModified(const String& attr) const;
void Register(void);
void Unregister(void);
void Activate(bool runtimeCreated = false);
void Deactivate(bool runtimeRemoved = false);
void SetAuthority(bool authority);
virtual void Start(bool runtimeCreated = false) override;
virtual void Stop(bool runtimeRemoved = false) override;
virtual void Pause(void);
virtual void Resume(void);
2013-08-29 19:05:06 +02:00
virtual void OnConfigLoaded(void);
virtual void CreateChildObjects(const Type::Ptr& childType);
virtual void OnAllConfigLoaded(void);
2013-08-29 19:05:06 +02:00
virtual void OnStateLoaded(void);
template<typename T>
static intrusive_ptr<T> GetObject(const String& name)
{
ConfigObject::Ptr object = GetObject(T::GetTypeName(), name);
return static_pointer_cast<T>(object);
}
2012-07-24 13:13:02 +02:00
static ConfigObject::Ptr GetObject(const String& type, const String& name);
static void DumpObjects(const String& filename, int attributeTypes = FAState);
static void RestoreObjects(const String& filename, int attributeTypes = FAState);
static void StopObjects(void);
static void DumpModifiedAttributes(const boost::function<void(const ConfigObject::Ptr&, const String&, const Value&)>& callback);
static Object::Ptr GetPrototype(void);
protected:
explicit ConfigObject(void);
2013-03-14 23:52:52 +01:00
private:
ConfigObject::Ptr m_Zone;
static void RestoreObject(const String& message, int attributeTypes);
};
#define DECLARE_OBJECTNAME(klass) \
inline static String GetTypeName(void) \
{ \
return #klass; \
} \
\
inline static intrusive_ptr<klass> GetByName(const String& name) \
{ \
return ConfigObject::GetObject<klass>(name); \
}
}
2012-07-30 10:17:29 +02:00
#endif /* DYNAMICOBJECT_H */