2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-01-09 00:32:11 +01:00
|
|
|
* Copyright (C) 2012-present Icinga Development Team (http://www.icinga.org) *
|
2012-05-10 12:06:41 +02: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 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"
|
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
|
|
|
|
2012-03-31 15:18:09 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2012-12-04 08:42:24 +01:00
|
|
|
class DynamicType;
|
|
|
|
|
2013-09-17 13:18:26 +02:00
|
|
|
enum DomainPriv
|
|
|
|
{
|
|
|
|
DomainPrivRead = (1<<0),
|
|
|
|
DomainPrivCheckResult = (1<<1),
|
|
|
|
DomainPrivCommand = (1<<2)
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
*/
|
2013-11-04 23:14:34 +01:00
|
|
|
class I2_BASE_API DynamicObject : public ObjectImpl<DynamicObject>
|
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-12-17 14:24:29 +01:00
|
|
|
static void StaticInitialize(void);
|
|
|
|
|
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;
|
2013-09-13 07:49:12 +02:00
|
|
|
static boost::signals2::signal<void (const DynamicObject::Ptr&, const String&, bool)> OnAuthorityChanged;
|
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-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-09-13 07:49:12 +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;
|
|
|
|
|
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-12-02 09:16:46 +01:00
|
|
|
return static_pointer_cast<T>(object);
|
2013-08-20 11:06:04 +02:00
|
|
|
}
|
2012-07-24 13:13:02 +02:00
|
|
|
|
2013-11-04 23:14:34 +01:00
|
|
|
static void DumpObjects(const String& filename, int attributeTypes = FAState);
|
|
|
|
static void RestoreObjects(const String& filename, int attributeTypes = FAState);
|
2013-08-20 11:06:04 +02:00
|
|
|
static void StopObjects(void);
|
2012-07-27 16:05:02 +02:00
|
|
|
|
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
|
|
|
|
2012-05-21 23:42:54 +02:00
|
|
|
private:
|
2013-09-17 13:18:26 +02:00
|
|
|
std::map<String, int> m_Privileges;
|
2013-02-18 23:44:24 +01: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 */
|