icinga2/base/configobject.cpp

75 lines
1.5 KiB
C++
Raw Normal View History

#include "i2-base.h"
using namespace icinga;
void ConfigObject::SetHive(const ConfigHive::WeakRefType& hive)
{
m_Hive = hive;
}
ConfigHive::WeakRefType 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;
}
void ConfigObject::SetProperty(const string& name, const string& value)
{
string oldValue = GetProperty(name);
Properties[name] = value;
ConfigHive::RefType hive = m_Hive.lock();
if (hive.get() != NULL) {
ConfigHiveEventArgs::RefType ea = new_object<ConfigHiveEventArgs>();
ea->Source = hive;
ea->Object = static_pointer_cast<ConfigObject>(shared_from_this());
ea->Property = name;
ea->OldValue = oldValue;
hive->OnPropertyChanged(ea);
}
}
string ConfigObject::GetProperty(const string& name, const string& defaultValue) const
{
map<string, string>::const_iterator vi = Properties.find(name);
if (vi == Properties.end())
return defaultValue;
return vi->second;
}
int ConfigObject::GetPropertyInteger(const string& name, int defaultValue) const
{
string value = GetProperty(name);
if (value == string())
return defaultValue;
return strtol(value.c_str(), NULL, 10);
}
double ConfigObject::GetPropertyDouble(const string& name, double defaultValue) const
{
string value = GetProperty(name);
if (value == string())
return defaultValue;
return strtod(value.c_str(), NULL);
}