2012-12-04 08:42:24 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
|
|
|
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
#include "base/dynamictype.h"
|
|
|
|
#include "base/objectlock.h"
|
2012-12-04 08:42:24 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
DynamicType::DynamicType(const String& name, const DynamicType::ObjectFactory& factory)
|
|
|
|
: m_Name(name), m_ObjectFactory(factory)
|
|
|
|
{ }
|
|
|
|
|
2013-02-17 19:14:34 +01:00
|
|
|
/**
|
|
|
|
* @threadsafety Always.
|
|
|
|
*/
|
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-02-18 23:44:24 +01:00
|
|
|
if (tt == InternalGetTypeMap().end())
|
2012-12-04 08:42:24 +01:00
|
|
|
return DynamicType::Ptr();
|
|
|
|
|
|
|
|
return tt->second;
|
|
|
|
}
|
|
|
|
|
2013-02-17 19:14:34 +01:00
|
|
|
/**
|
2013-02-18 14:40:24 +01:00
|
|
|
* @threadsafety 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-02-18 23:44:24 +01:00
|
|
|
DynamicType::TypeSet& DynamicType::InternalGetTypeSet(void)
|
|
|
|
{
|
|
|
|
static DynamicType::TypeSet typeset;
|
|
|
|
return typeset;
|
|
|
|
}
|
|
|
|
|
|
|
|
DynamicType::TypeSet DynamicType::GetTypes(void)
|
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock lock(GetStaticMutex());
|
|
|
|
return InternalGetTypeSet(); /* Making a copy of the set here. */
|
|
|
|
}
|
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
std::set<DynamicObject::Ptr> DynamicType::GetObjects(const String& type)
|
2013-02-18 23:44:24 +01:00
|
|
|
{
|
|
|
|
DynamicType::Ptr dt = GetByName(type);
|
|
|
|
return dt->GetObjects();
|
|
|
|
}
|
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
std::set<DynamicObject::Ptr> DynamicType::GetObjects(void) const
|
2012-12-04 08:42:24 +01:00
|
|
|
{
|
2013-03-01 12:07:52 +01:00
|
|
|
ObjectLock olock(this);
|
|
|
|
|
2013-02-18 23:44:24 +01:00
|
|
|
return m_ObjectSet; /* Making a copy of the set here. */
|
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
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("RegisterObject() found existing object with the same name: " + name));
|
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_ObjectSet.insert(object);
|
|
|
|
|
|
|
|
object->m_Registered = true;
|
|
|
|
}
|
2013-02-19 23:02:08 +01:00
|
|
|
|
2013-02-20 19:52:25 +01:00
|
|
|
object->OnRegistrationCompleted();
|
2012-12-04 08:42:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void DynamicType::UnregisterObject(const DynamicObject::Ptr& object)
|
|
|
|
{
|
2013-03-06 11:03:50 +01:00
|
|
|
{
|
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
|
|
m_ObjectMap.erase(object->GetName());
|
|
|
|
m_ObjectSet.erase(object);
|
2013-03-04 15:52:42 +01:00
|
|
|
|
2013-03-06 11:03:50 +01:00
|
|
|
object->m_Registered = false;
|
|
|
|
}
|
2013-03-02 09:07:47 +01:00
|
|
|
|
|
|
|
object->OnUnregistrationCompleted();
|
2012-12-04 08:42:24 +01:00
|
|
|
}
|
|
|
|
|
2013-03-01 12:07:52 +01:00
|
|
|
/**
|
|
|
|
* @threadsafety Always.
|
|
|
|
*/
|
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-17 19:14:34 +01:00
|
|
|
/**
|
|
|
|
* @threadsafety Always.
|
|
|
|
*/
|
2012-12-04 08:42:24 +01:00
|
|
|
void DynamicType::RegisterType(const DynamicType::Ptr& type)
|
|
|
|
{
|
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(type->GetName());
|
2013-02-17 19:14:34 +01:00
|
|
|
|
2013-02-18 23:44:24 +01:00
|
|
|
if (tt != InternalGetTypeMap().end())
|
2013-03-16 21:18:53 +01:00
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Cannot register class for type '" +
|
2012-12-04 08:42:24 +01:00
|
|
|
type->GetName() + "': Objects of this type already exist."));
|
|
|
|
|
2013-02-18 23:44:24 +01:00
|
|
|
InternalGetTypeMap()[type->GetName()] = type;
|
|
|
|
InternalGetTypeSet().insert(type);
|
2012-12-04 08:42:24 +01:00
|
|
|
}
|
|
|
|
|
2013-03-04 15:52:42 +01:00
|
|
|
DynamicObject::Ptr DynamicType::CreateObject(const Dictionary::Ptr& serializedUpdate)
|
2012-12-04 08:42:24 +01:00
|
|
|
{
|
2013-03-07 16:00:10 +01:00
|
|
|
ASSERT(!OwnsLock());
|
2013-03-04 15:52:42 +01:00
|
|
|
|
2013-03-01 12:07:52 +01:00
|
|
|
ObjectFactory factory;
|
2012-12-04 08:42:24 +01:00
|
|
|
|
2013-02-20 19:52:25 +01:00
|
|
|
{
|
2013-03-04 15:52:42 +01:00
|
|
|
ObjectLock olock(this);
|
|
|
|
factory = m_ObjectFactory;
|
2013-03-01 12:07:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
DynamicObject::Ptr object = factory(serializedUpdate);
|
2013-02-20 19:52:25 +01:00
|
|
|
|
2013-03-04 15:52:42 +01:00
|
|
|
/* apply the object's non-config attributes */
|
|
|
|
object->ApplyUpdate(serializedUpdate, Attribute_All & ~Attribute_Config);
|
2012-12-04 08:42:24 +01:00
|
|
|
|
2013-02-19 23:02:08 +01:00
|
|
|
return object;
|
2012-12-04 08:42:24 +01:00
|
|
|
}
|
|
|
|
|
2013-02-18 14:40:24 +01:00
|
|
|
boost::mutex& DynamicType::GetStaticMutex(void)
|
|
|
|
{
|
|
|
|
static boost::mutex mutex;
|
|
|
|
return mutex;
|
|
|
|
}
|