2012-05-10 06:06:41 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
* Icinga 2 *
|
2016-01-12 02:29:59 -05:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://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
|
|
|
******************************************************************************/
|
|
|
|
|
|
2016-08-16 05:02:10 -04:00
|
|
|
#ifndef CONFIGOBJECT_H
|
|
|
|
|
#define CONFIGOBJECT_H
|
2012-03-31 09:18:09 -04:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/i2-base.hpp"
|
2015-08-15 14:28:05 -04:00
|
|
|
#include "base/configobject.thpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#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"
|
2013-03-18 06:02:18 -04:00
|
|
|
#include <boost/signals2.hpp>
|
2013-03-15 13:21:29 -04:00
|
|
|
|
2012-03-31 09:18:09 -04:00
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
2015-08-15 14:28:05 -04:00
|
|
|
class ConfigType;
|
2012-12-04 02:42:24 -05:00
|
|
|
|
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
|
|
|
|
|
*/
|
2015-08-15 14:28:05 -04:00
|
|
|
class I2_BASE_API ConfigObject : public ObjectImpl<ConfigObject>
|
2012-03-31 09:18:09 -04:00
|
|
|
{
|
|
|
|
|
public:
|
2015-08-15 14:28:05 -04:00
|
|
|
DECLARE_OBJECT(ConfigObject);
|
2012-03-31 09:18:09 -04:00
|
|
|
|
2015-08-15 14:28:05 -04:00
|
|
|
static boost::signals2::signal<void (const ConfigObject::Ptr&)> OnStateChanged;
|
2012-08-02 03:38:08 -04:00
|
|
|
|
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);
|
|
|
|
|
|
2015-11-24 09:25:55 -05:00
|
|
|
ConfigObject::Ptr GetZone(void) const;
|
|
|
|
|
|
2015-09-11 08:09:46 -04:00
|
|
|
void ModifyAttribute(const String& attr, const Value& value, bool updateVersion = true);
|
2015-10-22 08:32:14 -04:00
|
|
|
void RestoreAttribute(const String& attr, bool updateVersion = true);
|
2015-08-04 08:47:44 -04:00
|
|
|
bool IsAttributeModified(const String& attr) const;
|
|
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
void Register(void);
|
2015-08-13 03:02:52 -04:00
|
|
|
void Unregister(void);
|
2013-08-20 05:06:04 -04:00
|
|
|
|
2015-08-20 11:18:48 -04:00
|
|
|
void Activate(bool runtimeCreated = false);
|
|
|
|
|
void Deactivate(bool runtimeRemoved = false);
|
2014-05-09 05:32:24 -04:00
|
|
|
void SetAuthority(bool authority);
|
2012-06-12 03:36:18 -04:00
|
|
|
|
2015-08-20 11:18:48 -04:00
|
|
|
virtual void Start(bool runtimeCreated = false) override;
|
|
|
|
|
virtual void Stop(bool runtimeRemoved = false) override;
|
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);
|
2015-03-19 10:47:46 -04:00
|
|
|
virtual void CreateChildObjects(const Type::Ptr& childType);
|
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
|
|
|
{
|
2016-08-16 05:02:10 -04:00
|
|
|
typedef TypeImpl<T> ObjType;
|
|
|
|
|
ObjType *ptype = static_cast<ObjType *>(T::TypeInstance.get());
|
|
|
|
|
return static_pointer_cast<T>(ptype->GetObject(name));
|
2013-08-20 05:06:04 -04:00
|
|
|
}
|
2012-07-24 07:13:02 -04:00
|
|
|
|
2015-08-25 07:53:43 -04:00
|
|
|
static ConfigObject::Ptr GetObject(const String& type, const String& name);
|
|
|
|
|
|
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
|
|
|
|
2015-08-15 14:28:05 -04:00
|
|
|
static void DumpModifiedAttributes(const boost::function<void(const ConfigObject::Ptr&, const String&, const Value&)>& callback);
|
2015-08-12 03:52:29 -04:00
|
|
|
|
2015-08-04 08:47:44 -04:00
|
|
|
static Object::Ptr GetPrototype(void);
|
|
|
|
|
|
2012-08-03 17:03:58 -04:00
|
|
|
protected:
|
2015-08-15 14:28:05 -04:00
|
|
|
explicit ConfigObject(void);
|
2013-03-14 18:52:52 -04:00
|
|
|
|
2012-05-21 17:42:54 -04:00
|
|
|
private:
|
2015-11-24 09:25:55 -05:00
|
|
|
ConfigObject::Ptr m_Zone;
|
|
|
|
|
|
2014-05-18 03:15:27 -04:00
|
|
|
static void RestoreObject(const String& message, int attributeTypes);
|
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) \
|
|
|
|
|
{ \
|
2015-08-15 14:28:05 -04:00
|
|
|
return ConfigObject::GetObject<klass>(name); \
|
2013-08-20 05:06:04 -04:00
|
|
|
}
|
|
|
|
|
|
2012-03-31 09:18:09 -04:00
|
|
|
}
|
|
|
|
|
|
2016-08-16 05:02:10 -04:00
|
|
|
#endif /* CONFIGOBJECT_H */
|