icinga2/lib/base/dynamictype.cpp

177 lines
4.7 KiB
C++
Raw Normal View History

/******************************************************************************
* 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. *
******************************************************************************/
#include "i2-base.h"
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.
*/
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);
2013-02-18 23:44:24 +01:00
if (tt == InternalGetTypeMap().end())
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)
{
2013-02-18 23:44:24 +01:00
static DynamicType::TypeMap typemap;
return typemap;
}
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. */
}
set<DynamicObject::Ptr> DynamicType::GetObjects(const String& type)
{
DynamicType::Ptr dt = GetByName(type);
return dt->GetObjects();
}
set<DynamicObject::Ptr> DynamicType::GetObjects(void) const
{
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. */
}
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-06 11:03:50 +01:00
BOOST_THROW_EXCEPTION(runtime_error("RegisterObject() found existing object with the same name: " + name));
}
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();
}
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();
}
2013-03-01 12:07:52 +01:00
/**
* @threadsafety Always.
*/
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);
2013-02-18 23:44:24 +01:00
if (nt == m_ObjectMap.end())
return DynamicObject::Ptr();
return nt->second;
}
2013-02-17 19:14:34 +01:00
/**
* @threadsafety Always.
*/
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())
BOOST_THROW_EXCEPTION(runtime_error("Cannot register class for type '" +
type->GetName() + "': Objects of this type already exist."));
2013-02-18 23:44:24 +01:00
InternalGetTypeMap()[type->GetName()] = type;
InternalGetTypeSet().insert(type);
}
2013-03-04 15:52:42 +01:00
DynamicObject::Ptr DynamicType::CreateObject(const Dictionary::Ptr& serializedUpdate)
{
ASSERT(!OwnsLock());
2013-03-04 15:52:42 +01:00
2013-03-01 12:07:52 +01:00
ObjectFactory factory;
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);
2013-02-19 23:02:08 +01:00
return object;
}
2013-02-18 14:40:24 +01:00
boost::mutex& DynamicType::GetStaticMutex(void)
{
static boost::mutex mutex;
return mutex;
}