icinga2/lib/base/dynamicobject.h

142 lines
4.8 KiB
C
Raw Normal View History

/******************************************************************************
* 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 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"
#include "base/attribute.h"
#include "base/object.h"
#include "base/dictionary.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;
/**
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
*/
2012-07-30 10:17:29 +02:00
class I2_BASE_API DynamicObject : public Object
{
public:
2012-07-30 10:17:29 +02:00
typedef shared_ptr<DynamicObject> Ptr;
typedef weak_ptr<DynamicObject> WeakPtr;
2013-03-16 21:18:53 +01:00
typedef std::map<String, AttributeHolder, string_iless> AttributeMap;
typedef AttributeMap::iterator AttributeIterator;
typedef AttributeMap::const_iterator AttributeConstIterator;
~DynamicObject(void);
2013-02-18 14:40:24 +01:00
static void Initialize(void);
Dictionary::Ptr BuildUpdate(double sinceTx, int attributeTypes) const;
void ApplyUpdate(const Dictionary::Ptr& serializedUpdate, int allowedTypes);
2013-02-26 10:13:54 +01:00
void RegisterAttribute(const String& name, AttributeType type, AttributeBase *boundAttribute = NULL);
2012-08-03 13:19:55 +02:00
void Set(const String& name, const Value& data);
void Touch(const String& name);
2012-08-03 13:19:55 +02:00
Value Get(const String& name) const;
2013-02-26 10:13:54 +01:00
void BindAttribute(const String& name, Value *boundValue);
void ClearAttributesByType(AttributeType type);
2013-03-16 21:18:53 +01: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-03-25 18:36:15 +01:00
Value InvokeMethod(const String& method, const std::vector<Value>& arguments);
shared_ptr<DynamicType> GetType(void) const;
String GetName(void) const;
bool IsLocal(void) const;
bool IsRegistered(void) const;
void SetSource(const String& value);
String GetSource(void) const;
2012-07-02 14:38:37 +02:00
2013-02-19 23:02:08 +01:00
void Flush(void);
void Register(void);
void Unregister(void);
virtual void Start(void);
2013-03-12 13:48:37 +01:00
virtual void Stop(void);
2013-04-05 14:05:00 +02:00
double GetLocalTx(void) const;
const AttributeMap& GetAttributes(void) const;
static DynamicObject::Ptr GetObject(const String& type, const String& name);
static void DumpObjects(const String& filename);
static void RestoreObjects(const String& filename);
static void DeactivateObjects(void);
2012-07-24 13:13:02 +02:00
static double GetCurrentTx(void);
protected:
2013-03-14 23:52:52 +01:00
explicit DynamicObject(const Dictionary::Ptr& serializedObject);
2013-02-20 19:52:25 +01:00
virtual void OnRegistrationCompleted(void);
2013-03-02 09:07:47 +01:00
virtual void OnUnregistrationCompleted(void);
2013-03-04 15:52:42 +01:00
virtual void OnAttributeChanged(const String& name);
private:
void InternalSetAttribute(const String& name, const Value& data, double tx, bool allowEditConfig = false);
Value InternalGetAttribute(const String& name) const;
2013-03-04 15:52:42 +01:00
void InternalRegisterAttribute(const String& name, AttributeType type, AttributeBase *boundAttribute = NULL);
2013-03-04 15:52:42 +01:00
mutable boost::mutex m_AttributeMutex;
AttributeMap m_Attributes;
2013-03-16 21:18:53 +01:00
std::set<String, string_iless> m_ModifiedAttributes;
double m_ConfigTx;
2013-04-05 14:05:00 +02:00
double m_LocalTx;
2013-02-26 10:13:54 +01:00
Attribute<String> m_Name;
Attribute<String> m_Type;
Attribute<bool> m_Local;
Attribute<String> m_Source;
Attribute<Dictionary::Ptr> m_Methods;
2013-03-06 11:03:50 +01:00
bool m_Registered; /**< protected by the type mutex */
2013-02-18 23:44:24 +01:00
static double m_CurrentTx;
2012-07-24 13:13:02 +02:00
2013-02-19 23:02:08 +01:00
static void NewTx(void);
friend class DynamicType; /* for OnRegistrationCompleted. */
};
}
2012-07-30 10:17:29 +02:00
#endif /* DYNAMICOBJECT_H */