2012-03-31 15:18:09 +02:00
|
|
|
#include "i2-base.h"
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2012-04-24 14:02:15 +02:00
|
|
|
/**
|
|
|
|
* ConfigObject
|
|
|
|
*
|
|
|
|
* Constructor for the ConfigObject class.
|
|
|
|
*
|
|
|
|
* @param type The type of the object.
|
|
|
|
* @param name The name of the object.
|
|
|
|
*/
|
2012-04-04 10:04:38 +02:00
|
|
|
ConfigObject::ConfigObject(const string& type, const string& name)
|
|
|
|
{
|
|
|
|
m_Type = type;
|
|
|
|
m_Name = name;
|
2012-04-20 14:20:25 +02:00
|
|
|
m_Replicated = false;
|
2012-04-04 10:04:38 +02:00
|
|
|
}
|
|
|
|
|
2012-04-24 14:02:15 +02:00
|
|
|
/**
|
|
|
|
* SetHive
|
|
|
|
*
|
|
|
|
* Sets the hive this object belongs to.
|
|
|
|
*
|
|
|
|
* @param hive The hive.
|
|
|
|
*/
|
2012-04-02 20:50:35 +02:00
|
|
|
void ConfigObject::SetHive(const ConfigHive::WeakPtr& hive)
|
2012-03-31 15:18:09 +02:00
|
|
|
{
|
2012-04-20 13:49:04 +02:00
|
|
|
if (m_Hive.lock())
|
|
|
|
throw InvalidArgumentException();
|
|
|
|
|
2012-03-31 15:18:09 +02:00
|
|
|
m_Hive = hive;
|
2012-04-20 13:49:04 +02:00
|
|
|
OnPropertyChanged += bind_weak(&ConfigObject::PropertyChangedHandler, shared_from_this());
|
2012-03-31 15:18:09 +02:00
|
|
|
}
|
|
|
|
|
2012-04-24 14:02:15 +02:00
|
|
|
/**
|
|
|
|
* GetHive
|
|
|
|
*
|
|
|
|
* Retrieves the hive this object belongs to.
|
|
|
|
*
|
|
|
|
* @returns The hive.
|
|
|
|
*/
|
2012-04-02 20:50:35 +02:00
|
|
|
ConfigHive::WeakPtr ConfigObject::GetHive(void) const
|
2012-03-31 15:18:09 +02:00
|
|
|
{
|
|
|
|
return m_Hive;
|
|
|
|
}
|
|
|
|
|
2012-04-24 14:02:15 +02:00
|
|
|
/**
|
|
|
|
* SetName
|
|
|
|
*
|
|
|
|
* Sets the name of this object.
|
|
|
|
*
|
|
|
|
* @param name The name.
|
|
|
|
*/
|
2012-03-31 15:18:09 +02:00
|
|
|
void ConfigObject::SetName(const string& name)
|
|
|
|
{
|
|
|
|
m_Name = name;
|
|
|
|
}
|
|
|
|
|
2012-04-24 14:02:15 +02:00
|
|
|
/**
|
|
|
|
* GetName
|
|
|
|
*
|
|
|
|
* Retrieves the name of this object.
|
|
|
|
*
|
|
|
|
* @returns The name.
|
|
|
|
*/
|
2012-03-31 15:18:09 +02:00
|
|
|
string ConfigObject::GetName(void) const
|
|
|
|
{
|
|
|
|
return m_Name;
|
|
|
|
}
|
|
|
|
|
2012-04-24 14:02:15 +02:00
|
|
|
/**
|
|
|
|
* SetType
|
|
|
|
*
|
|
|
|
* Sets the type of this object.
|
|
|
|
*
|
|
|
|
* @param type The type.
|
|
|
|
*/
|
2012-03-31 15:18:09 +02:00
|
|
|
void ConfigObject::SetType(const string& type)
|
|
|
|
{
|
|
|
|
m_Type = type;
|
|
|
|
}
|
|
|
|
|
2012-04-24 14:02:15 +02:00
|
|
|
/**
|
|
|
|
* GetType
|
|
|
|
*
|
|
|
|
* Retrieves the type of this object.
|
|
|
|
*
|
|
|
|
* @returns The type.
|
|
|
|
*/
|
2012-03-31 15:18:09 +02:00
|
|
|
string ConfigObject::GetType(void) const
|
|
|
|
{
|
|
|
|
return m_Type;
|
|
|
|
}
|
|
|
|
|
2012-04-24 14:02:15 +02:00
|
|
|
/**
|
|
|
|
* SetReplicated
|
|
|
|
*
|
|
|
|
* Sets whether this object was replicated.
|
|
|
|
*
|
|
|
|
* @param replicated Whether this object was replicated.
|
|
|
|
*/
|
2012-04-20 14:20:25 +02:00
|
|
|
void ConfigObject::SetReplicated(bool replicated)
|
|
|
|
{
|
|
|
|
m_Replicated = replicated;
|
|
|
|
}
|
|
|
|
|
2012-04-24 14:02:15 +02:00
|
|
|
/**
|
|
|
|
* GetReplicated
|
|
|
|
*
|
|
|
|
* Retrieves whether this object was replicated.
|
|
|
|
*
|
|
|
|
* @returns Whether this object was replicated.
|
|
|
|
*/
|
2012-04-20 14:20:25 +02:00
|
|
|
bool ConfigObject::GetReplicated(void) const
|
|
|
|
{
|
|
|
|
return m_Replicated;
|
|
|
|
}
|
|
|
|
|
2012-04-24 14:02:15 +02:00
|
|
|
/**
|
|
|
|
* PropertyChangedHandler
|
|
|
|
*
|
|
|
|
* Handles changed properties by propagating them to the hive
|
|
|
|
* and collection this object is contained in.
|
|
|
|
*
|
|
|
|
* @param dpcea The event arguments.
|
|
|
|
* @returns 0.
|
|
|
|
*/
|
2012-04-22 16:45:31 +02:00
|
|
|
int ConfigObject::PropertyChangedHandler(const PropertyChangedEventArgs& dpcea)
|
2012-03-31 15:18:09 +02:00
|
|
|
{
|
2012-04-02 20:50:35 +02:00
|
|
|
ConfigHive::Ptr hive = m_Hive.lock();
|
2012-04-04 10:04:38 +02:00
|
|
|
if (hive) {
|
2012-04-20 13:49:04 +02:00
|
|
|
hive->GetCollection(m_Type)->OnPropertyChanged(dpcea);
|
|
|
|
hive->OnPropertyChanged(dpcea);
|
2012-03-31 15:18:09 +02:00
|
|
|
}
|
|
|
|
|
2012-04-20 13:49:04 +02:00
|
|
|
return 0;
|
2012-03-31 15:18:09 +02:00
|
|
|
}
|