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