2012-12-04 08:42:24 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2015-01-22 12:00:23 +01:00
|
|
|
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
|
2012-12-04 08:42:24 +01:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/dynamictype.hpp"
|
|
|
|
#include "base/serializer.hpp"
|
|
|
|
#include "base/debug.hpp"
|
|
|
|
#include "base/objectlock.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;
|
|
|
|
|
2013-11-08 16:07:21 +01:00
|
|
|
DynamicType::DynamicType(const String& name)
|
|
|
|
: m_Name(name)
|
2014-11-11 23:06:47 +01:00
|
|
|
{
|
|
|
|
InflateMutex();
|
|
|
|
}
|
2012-12-04 08:42:24 +01:00
|
|
|
|
|
|
|
DynamicType::Ptr DynamicType::GetByName(const String& name)
|
|
|
|
{
|
2013-02-18 14:40:24 +01:00
|
|
|
boost::mutex::scoped_lock lock(GetStaticMutex());
|
2013-02-17 19:14:34 +01:00
|
|
|
|
2013-02-18 23:44:24 +01:00
|
|
|
DynamicType::TypeMap::const_iterator tt = InternalGetTypeMap().find(name);
|
2012-12-04 08:42:24 +01:00
|
|
|
|
2013-11-08 16:07:21 +01:00
|
|
|
if (tt == InternalGetTypeMap().end()) {
|
2014-11-03 00:44:04 +01:00
|
|
|
Type::Ptr type = Type::GetByName(name);
|
2013-11-08 16:07:21 +01:00
|
|
|
|
2013-11-08 21:37:21 +01:00
|
|
|
if (!type || !Type::GetByName("DynamicObject")->IsAssignableFrom(type)
|
2013-11-08 16:07:21 +01:00
|
|
|
|| type->IsAbstract())
|
|
|
|
return DynamicType::Ptr();
|
|
|
|
|
2014-11-08 21:17:16 +01:00
|
|
|
DynamicType::Ptr dtype = new DynamicType(name);
|
2013-11-08 16:07:21 +01:00
|
|
|
|
|
|
|
InternalGetTypeMap()[type->GetName()] = dtype;
|
|
|
|
InternalGetTypeVector().push_back(dtype);
|
|
|
|
|
|
|
|
return dtype;
|
|
|
|
}
|
2012-12-04 08:42:24 +01:00
|
|
|
|
|
|
|
return tt->second;
|
|
|
|
}
|
|
|
|
|
2013-02-17 19:14:34 +01:00
|
|
|
/**
|
2013-03-22 12:02:20 +01:00
|
|
|
* Note: Caller must hold DynamicType::GetStaticMutex() while using the map.
|
2013-02-17 19:14:34 +01:00
|
|
|
*/
|
2013-02-18 23:44:24 +01:00
|
|
|
DynamicType::TypeMap& DynamicType::InternalGetTypeMap(void)
|
2012-12-04 08:42:24 +01:00
|
|
|
{
|
2013-02-18 23:44:24 +01:00
|
|
|
static DynamicType::TypeMap typemap;
|
|
|
|
return typemap;
|
2012-12-04 08:42:24 +01:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
DynamicType::TypeVector& DynamicType::InternalGetTypeVector(void)
|
2013-02-18 23:44:24 +01:00
|
|
|
{
|
2013-08-20 11:06:04 +02:00
|
|
|
static DynamicType::TypeVector typevector;
|
|
|
|
return typevector;
|
2013-02-18 23:44:24 +01:00
|
|
|
}
|
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
DynamicType::TypeVector DynamicType::GetTypes(void)
|
2013-02-18 23:44:24 +01:00
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock lock(GetStaticMutex());
|
2013-08-20 11:06:04 +02:00
|
|
|
return InternalGetTypeVector(); /* Making a copy of the vector here. */
|
2013-02-18 23:44:24 +01:00
|
|
|
}
|
|
|
|
|
2014-04-09 12:22:23 +02:00
|
|
|
std::pair<DynamicTypeIterator<DynamicObject>, DynamicTypeIterator<DynamicObject> > DynamicType::GetObjects(void)
|
2013-02-18 23:44:24 +01:00
|
|
|
{
|
2014-04-09 12:22:23 +02:00
|
|
|
return std::make_pair(
|
2014-11-08 21:17:16 +01:00
|
|
|
DynamicTypeIterator<DynamicObject>(this, 0),
|
|
|
|
DynamicTypeIterator<DynamicObject>(this, -1)
|
2014-04-09 12:22:23 +02:00
|
|
|
);
|
2012-12-04 08:42:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
String DynamicType::GetName(void) const
|
|
|
|
{
|
|
|
|
return m_Name;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DynamicType::RegisterObject(const DynamicObject::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
|
|
|
{
|
|
|
|
ObjectLock olock(this);
|
2013-03-04 15:52:42 +01:00
|
|
|
|
2013-03-06 11:03:50 +01:00
|
|
|
ObjectMap::iterator 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
|
|
|
|
2014-12-10 15:06:09 +01:00
|
|
|
BOOST_THROW_EXCEPTION(ScriptError("An object with type '" + m_Name + "' 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;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
DynamicObject::Ptr DynamicType::GetObject(const String& name) const
|
|
|
|
{
|
2013-03-01 12:07:52 +01:00
|
|
|
ObjectLock olock(this);
|
|
|
|
|
2013-02-18 23:44:24 +01:00
|
|
|
DynamicType::ObjectMap::const_iterator nt = m_ObjectMap.find(name);
|
2012-12-04 08:42:24 +01:00
|
|
|
|
2013-02-18 23:44:24 +01:00
|
|
|
if (nt == m_ObjectMap.end())
|
2012-12-04 08:42:24 +01:00
|
|
|
return DynamicObject::Ptr();
|
|
|
|
|
|
|
|
return nt->second;
|
|
|
|
}
|
|
|
|
|
2013-02-18 14:40:24 +01:00
|
|
|
boost::mutex& DynamicType::GetStaticMutex(void)
|
|
|
|
{
|
|
|
|
static boost::mutex mutex;
|
|
|
|
return mutex;
|
|
|
|
}
|
2014-04-15 17:33:56 +02:00
|
|
|
|