icinga2/lib/base/configtype.cpp

77 lines
1.7 KiB
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "base/configobject.hpp"
#include "base/convert.hpp"
#include "base/exception.hpp"
using namespace icinga;
ConfigType::~ConfigType()
{ }
ConfigObject::Ptr ConfigType::GetObject(const String& name) const
2013-02-18 23:44:24 +01:00
{
boost::mutex::scoped_lock lock(m_Mutex);
2013-02-18 23:44:24 +01:00
auto nt = m_ObjectMap.find(name);
2013-02-18 23:44:24 +01:00
if (nt == m_ObjectMap.end())
2017-11-30 08:36:35 +01:00
return nullptr;
return nt->second;
}
void ConfigType::RegisterObject(const ConfigObject::Ptr& object)
{
2013-03-01 12:07:52 +01:00
String name = object->GetName();
2013-02-20 19:52:25 +01:00
2013-03-06 11:03:50 +01:00
{
boost::mutex::scoped_lock lock(m_Mutex);
2013-03-04 15:52:42 +01:00
auto it = m_ObjectMap.find(name);
2013-02-19 23:02:08 +01:00
2013-03-06 11:03:50 +01:00
if (it != m_ObjectMap.end()) {
if (it->second == object)
return;
2013-02-19 23:02:08 +01:00
auto *type = dynamic_cast<Type *>(this);
BOOST_THROW_EXCEPTION(ScriptError("An object with type '" + type->GetName() + "' and name '" + name + "' already exists (" +
Convert::ToString(it->second->GetDebugInfo()) + "), new declaration: " + Convert::ToString(object->GetDebugInfo()),
object->GetDebugInfo()));
2013-03-06 11:03:50 +01:00
}
2013-02-18 23:44:24 +01:00
2013-03-06 11:03:50 +01:00
m_ObjectMap[name] = object;
m_ObjectVector.push_back(object);
2013-03-06 11:03:50 +01:00
}
}
void ConfigType::UnregisterObject(const ConfigObject::Ptr& object)
{
String name = object->GetName();
{
boost::mutex::scoped_lock lock(m_Mutex);
m_ObjectMap.erase(name);
m_ObjectVector.erase(std::remove(m_ObjectVector.begin(), m_ObjectVector.end(), object), m_ObjectVector.end());
}
}
std::vector<ConfigObject::Ptr> ConfigType::GetObjects() const
{
boost::mutex::scoped_lock lock(m_Mutex);
return m_ObjectVector;
}
std::vector<ConfigObject::Ptr> ConfigType::GetObjectsHelper(Type *type)
{
return static_cast<TypeImpl<ConfigObject> *>(type)->GetObjects();
}
int ConfigType::GetObjectCount() const
{
boost::mutex::scoped_lock lock(m_Mutex);
return m_ObjectVector.size();
2013-02-18 14:40:24 +01:00
}