icinga2/base/configobject.cpp

55 lines
967 B
C++
Raw Normal View History

#include "i2-base.h"
using namespace icinga;
ConfigObject::ConfigObject(const string& type, const string& name)
{
m_Type = type;
m_Name = name;
}
void ConfigObject::SetHive(const ConfigHive::WeakPtr& hive)
{
2012-04-20 13:49:04 +02:00
if (m_Hive.lock())
throw InvalidArgumentException();
m_Hive = hive;
2012-04-20 13:49:04 +02:00
OnPropertyChanged += bind_weak(&ConfigObject::PropertyChangedHandler, shared_from_this());
}
ConfigHive::WeakPtr ConfigObject::GetHive(void) const
{
return m_Hive;
}
void ConfigObject::SetName(const string& name)
{
m_Name = name;
}
string ConfigObject::GetName(void) const
{
return m_Name;
}
void ConfigObject::SetType(const string& type)
{
m_Type = type;
}
string ConfigObject::GetType(void) const
{
return m_Type;
}
2012-04-20 13:49:04 +02:00
int ConfigObject::PropertyChangedHandler(const DictionaryPropertyChangedEventArgs dpcea)
{
ConfigHive::Ptr hive = m_Hive.lock();
if (hive) {
2012-04-20 13:49:04 +02:00
hive->GetCollection(m_Type)->OnPropertyChanged(dpcea);
hive->OnPropertyChanged(dpcea);
}
2012-04-20 13:49:04 +02:00
return 0;
}