2012-05-10 06:06:41 -04: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 07:33:57 -04:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 06:06:41 -04:00
|
|
|
******************************************************************************/
|
|
|
|
|
|
2012-07-30 04:17:29 -04:00
|
|
|
#ifndef DYNAMICOBJECT_H
|
|
|
|
|
#define DYNAMICOBJECT_H
|
2012-03-31 09:18:09 -04:00
|
|
|
|
2013-03-16 16:18:53 -04:00
|
|
|
#include "base/i2-base.h"
|
|
|
|
|
#include "base/attribute.h"
|
|
|
|
|
#include "base/object.h"
|
|
|
|
|
#include "base/dictionary.h"
|
2013-03-18 06:02:18 -04:00
|
|
|
#include <boost/signals2.hpp>
|
2013-03-16 16:18:53 -04:00
|
|
|
#include <map>
|
|
|
|
|
#include <set>
|
2013-03-15 13:21:29 -04:00
|
|
|
|
2012-03-31 09:18:09 -04:00
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
2012-12-04 02:42:24 -05:00
|
|
|
class DynamicType;
|
|
|
|
|
|
2012-06-30 09:22:51 -04:00
|
|
|
/**
|
2012-09-17 07:35:55 -04:00
|
|
|
* A dynamic object that can be instantiated from the configuration file
|
|
|
|
|
* and that supports attribute replication to remote application instances.
|
2012-06-30 09:22:51 -04:00
|
|
|
*
|
|
|
|
|
* @ingroup base
|
|
|
|
|
*/
|
2012-07-30 04:17:29 -04:00
|
|
|
class I2_BASE_API DynamicObject : public Object
|
2012-03-31 09:18:09 -04:00
|
|
|
{
|
|
|
|
|
public:
|
2013-07-09 02:42:08 -04:00
|
|
|
DECLARE_PTR_TYPEDEFS(DynamicObject);
|
2012-03-31 09:18:09 -04:00
|
|
|
|
2013-03-16 16:18:53 -04:00
|
|
|
typedef std::map<String, AttributeHolder, string_iless> AttributeMap;
|
2012-08-02 03:38:08 -04:00
|
|
|
typedef AttributeMap::iterator AttributeIterator;
|
|
|
|
|
typedef AttributeMap::const_iterator AttributeConstIterator;
|
2012-03-31 09:18:09 -04:00
|
|
|
|
2013-02-08 17:40:28 -05:00
|
|
|
~DynamicObject(void);
|
2012-06-12 03:36:18 -04:00
|
|
|
|
2013-02-18 08:40:24 -05:00
|
|
|
static void Initialize(void);
|
|
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
Dictionary::Ptr BuildUpdate(double sinceTx, int attributeTypes) const;
|
2012-08-03 17:03:58 -04:00
|
|
|
void ApplyUpdate(const Dictionary::Ptr& serializedUpdate, int allowedTypes);
|
2012-06-12 03:36:18 -04:00
|
|
|
|
2013-02-26 04:13:54 -05:00
|
|
|
void RegisterAttribute(const String& name, AttributeType type, AttributeBase *boundAttribute = NULL);
|
2012-06-12 03:36:18 -04:00
|
|
|
|
2012-08-03 07:19:55 -04:00
|
|
|
void Set(const String& name, const Value& data);
|
2012-09-03 04:28:14 -04:00
|
|
|
void Touch(const String& name);
|
2012-08-03 07:19:55 -04:00
|
|
|
Value Get(const String& name) const;
|
2012-07-14 06:44:37 -04:00
|
|
|
|
2013-02-26 04:13:54 -05:00
|
|
|
void BindAttribute(const String& name, Value *boundValue);
|
|
|
|
|
|
|
|
|
|
void ClearAttributesByType(AttributeType type);
|
2012-08-02 03:38:08 -04:00
|
|
|
|
2013-03-16 16:18:53 -04:00
|
|
|
static boost::signals2::signal<void (const DynamicObject::Ptr&)> OnRegistered;
|
|
|
|
|
static boost::signals2::signal<void (const DynamicObject::Ptr&)> OnUnregistered;
|
|
|
|
|
static boost::signals2::signal<void (double, const std::set<DynamicObject::WeakPtr>&)> OnTransactionClosing;
|
|
|
|
|
static boost::signals2::signal<void (double, const DynamicObject::Ptr&)> OnFlushObject;
|
2013-07-24 04:55:04 -04:00
|
|
|
static boost::signals2::signal<void (const DynamicObject::Ptr&, const std::set<String, string_iless>&)> OnAttributesChanged;
|
2012-08-02 03:38:08 -04:00
|
|
|
|
2013-03-25 13:36:15 -04:00
|
|
|
Value InvokeMethod(const String& method, const std::vector<Value>& arguments);
|
2012-08-02 03:38:08 -04:00
|
|
|
|
2012-12-04 02:42:24 -05:00
|
|
|
shared_ptr<DynamicType> GetType(void) const;
|
2012-08-02 03:38:08 -04:00
|
|
|
String GetName(void) const;
|
2012-06-12 03:36:18 -04:00
|
|
|
|
|
|
|
|
bool IsLocal(void) const;
|
2013-02-26 04:58:32 -05:00
|
|
|
bool IsRegistered(void) const;
|
2012-05-09 04:15:51 -04:00
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
void SetSource(const String& value);
|
|
|
|
|
String GetSource(void) const;
|
2012-07-02 08:38:37 -04:00
|
|
|
|
2013-07-05 03:37:04 -04:00
|
|
|
void SetExtension(const String& key, const Object::Ptr& object);
|
|
|
|
|
Object::Ptr GetExtension(const String& key);
|
|
|
|
|
void ClearExtension(const String& key);
|
|
|
|
|
|
2013-02-19 17:02:08 -05:00
|
|
|
void Flush(void);
|
|
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
void Register(void);
|
2012-06-12 03:36:18 -04:00
|
|
|
void Unregister(void);
|
|
|
|
|
|
2012-09-28 04:39:28 -04:00
|
|
|
virtual void Start(void);
|
2013-03-12 08:48:37 -04:00
|
|
|
virtual void Stop(void);
|
2012-09-28 04:39:28 -04:00
|
|
|
|
2013-04-05 08:05:00 -04:00
|
|
|
double GetLocalTx(void) const;
|
|
|
|
|
|
2013-02-02 08:28:11 -05:00
|
|
|
const AttributeMap& GetAttributes(void) const;
|
2013-02-08 15:05:08 -05:00
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
static DynamicObject::Ptr GetObject(const String& type, const String& name);
|
2012-05-21 17:42:54 -04:00
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
static void DumpObjects(const String& filename);
|
|
|
|
|
static void RestoreObjects(const String& filename);
|
2012-08-07 07:08:14 -04:00
|
|
|
static void DeactivateObjects(void);
|
2012-07-24 07:13:02 -04:00
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
static double GetCurrentTx(void);
|
2012-07-27 10:05:02 -04:00
|
|
|
|
2013-07-12 09:13:05 -04:00
|
|
|
Dictionary::Ptr GetCustom(void) const;
|
|
|
|
|
|
2012-08-03 17:03:58 -04:00
|
|
|
protected:
|
2013-03-14 18:52:52 -04:00
|
|
|
explicit DynamicObject(const Dictionary::Ptr& serializedObject);
|
|
|
|
|
|
2013-02-20 13:52:25 -05:00
|
|
|
virtual void OnRegistrationCompleted(void);
|
2013-03-02 03:07:47 -05:00
|
|
|
virtual void OnUnregistrationCompleted(void);
|
|
|
|
|
|
2013-03-04 09:52:42 -05:00
|
|
|
virtual void OnAttributeChanged(const String& name);
|
2012-08-03 17:03:58 -04:00
|
|
|
|
2012-05-21 17:42:54 -04:00
|
|
|
private:
|
2013-02-08 17:40:28 -05:00
|
|
|
void InternalSetAttribute(const String& name, const Value& data, double tx, bool allowEditConfig = false);
|
2012-08-02 03:38:08 -04:00
|
|
|
Value InternalGetAttribute(const String& name) const;
|
2013-03-04 09:52:42 -05:00
|
|
|
void InternalRegisterAttribute(const String& name, AttributeType type, AttributeBase *boundAttribute = NULL);
|
2012-08-02 03:38:08 -04:00
|
|
|
|
2013-03-04 09:52:42 -05:00
|
|
|
mutable boost::mutex m_AttributeMutex;
|
2012-08-02 03:38:08 -04:00
|
|
|
AttributeMap m_Attributes;
|
2013-03-16 16:18:53 -04:00
|
|
|
std::set<String, string_iless> m_ModifiedAttributes;
|
2012-08-02 03:38:08 -04:00
|
|
|
double m_ConfigTx;
|
2013-04-05 08:05:00 -04:00
|
|
|
double m_LocalTx;
|
2012-06-12 03:36:18 -04:00
|
|
|
|
2013-02-26 04:13:54 -05:00
|
|
|
Attribute<String> m_Name;
|
|
|
|
|
Attribute<String> m_Type;
|
|
|
|
|
Attribute<bool> m_Local;
|
|
|
|
|
Attribute<String> m_Source;
|
2013-07-05 03:37:04 -04:00
|
|
|
Attribute<Dictionary::Ptr> m_Extensions;
|
2013-02-26 04:13:54 -05:00
|
|
|
Attribute<Dictionary::Ptr> m_Methods;
|
2013-07-12 09:13:05 -04:00
|
|
|
Attribute<Dictionary::Ptr> m_Custom;
|
2013-02-26 04:13:54 -05:00
|
|
|
|
2013-03-06 05:03:50 -05:00
|
|
|
bool m_Registered; /**< protected by the type mutex */
|
2013-02-18 17:44:24 -05:00
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
static double m_CurrentTx;
|
2012-07-24 07:13:02 -04:00
|
|
|
|
2013-02-19 17:02:08 -05:00
|
|
|
static void NewTx(void);
|
|
|
|
|
|
2013-02-27 06:44:51 -05:00
|
|
|
friend class DynamicType; /* for OnRegistrationCompleted. */
|
2012-07-27 10:05:02 -04:00
|
|
|
};
|
2012-07-02 13:25:33 -04:00
|
|
|
|
2012-03-31 09:18:09 -04:00
|
|
|
}
|
|
|
|
|
|
2012-07-30 04:17:29 -04:00
|
|
|
#endif /* DYNAMICOBJECT_H */
|