2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-12-04 08:42:24 +01:00
|
|
|
|
2016-08-16 11:02:10 +02:00
|
|
|
#include "base/configobject.hpp"
|
2014-09-09 14:49:21 +02:00
|
|
|
#include "base/convert.hpp"
|
2014-12-18 15:11:57 +01:00
|
|
|
#include "base/exception.hpp"
|
2012-12-04 08:42:24 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
ConfigType::~ConfigType()
|
2015-11-11 10:21:30 +01:00
|
|
|
{ }
|
2012-12-04 08:42:24 +01:00
|
|
|
|
2016-08-16 11:02:10 +02:00
|
|
|
ConfigObject::Ptr ConfigType::GetObject(const String& name) const
|
2013-02-18 23:44:24 +01:00
|
|
|
{
|
2021-02-02 10:16:04 +01:00
|
|
|
std::unique_lock<std::mutex> lock(m_Mutex);
|
2013-02-18 23:44:24 +01:00
|
|
|
|
2016-08-27 08:33:15 +02:00
|
|
|
auto nt = m_ObjectMap.find(name);
|
2013-02-18 23:44:24 +01:00
|
|
|
|
2016-08-16 11:02:10 +02:00
|
|
|
if (nt == m_ObjectMap.end())
|
2017-11-30 08:36:35 +01:00
|
|
|
return nullptr;
|
2012-12-04 08:42:24 +01:00
|
|
|
|
2016-08-16 11:02:10 +02:00
|
|
|
return nt->second;
|
2012-12-04 08:42:24 +01:00
|
|
|
}
|
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
void ConfigType::RegisterObject(const ConfigObject::Ptr& object)
|
2012-12-04 08:42:24 +01:00
|
|
|
{
|
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
|
|
|
{
|
2021-02-02 10:16:04 +01:00
|
|
|
std::unique_lock<std::mutex> lock(m_Mutex);
|
2013-03-04 15:52:42 +01:00
|
|
|
|
2016-08-27 19:56:12 +02: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
|
|
|
|
2018-01-04 09:07:03 +01:00
|
|
|
auto *type = dynamic_cast<Type *>(this);
|
2016-08-16 11:02:10 +02:00
|
|
|
|
|
|
|
BOOST_THROW_EXCEPTION(ScriptError("An object with type '" + type->GetName() + "' and name '" + name + "' already exists (" +
|
2017-12-19 15:50:05 +01:00
|
|
|
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;
|
2013-08-20 11:06:04 +02:00
|
|
|
m_ObjectVector.push_back(object);
|
2013-03-06 11:03:50 +01:00
|
|
|
}
|
2012-12-04 08:42:24 +01:00
|
|
|
}
|
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
void ConfigType::UnregisterObject(const ConfigObject::Ptr& object)
|
2015-08-13 09:02:52 +02:00
|
|
|
{
|
|
|
|
String name = object->GetName();
|
|
|
|
|
|
|
|
{
|
2021-02-02 10:16:04 +01:00
|
|
|
std::unique_lock<std::mutex> lock(m_Mutex);
|
2015-08-13 09:02:52 +02:00
|
|
|
|
|
|
|
m_ObjectMap.erase(name);
|
|
|
|
m_ObjectVector.erase(std::remove(m_ObjectVector.begin(), m_ObjectVector.end(), object), m_ObjectVector.end());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
std::vector<ConfigObject::Ptr> ConfigType::GetObjects() const
|
2012-12-04 08:42:24 +01:00
|
|
|
{
|
2021-02-02 10:16:04 +01:00
|
|
|
std::unique_lock<std::mutex> lock(m_Mutex);
|
2016-08-16 13:25:36 +02:00
|
|
|
return m_ObjectVector;
|
|
|
|
}
|
2012-12-04 08:42:24 +01:00
|
|
|
|
2016-08-16 13:25:36 +02:00
|
|
|
std::vector<ConfigObject::Ptr> ConfigType::GetObjectsHelper(Type *type)
|
|
|
|
{
|
|
|
|
return static_cast<TypeImpl<ConfigObject> *>(type)->GetObjects();
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
int ConfigType::GetObjectCount() const
|
2016-08-16 13:25:36 +02:00
|
|
|
{
|
2021-02-02 10:16:04 +01:00
|
|
|
std::unique_lock<std::mutex> lock(m_Mutex);
|
2016-08-16 13:25:36 +02:00
|
|
|
return m_ObjectVector.size();
|
2013-02-18 14:40:24 +01:00
|
|
|
}
|