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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef DYNAMICTYPE_H
|
|
|
|
#define DYNAMICTYPE_H
|
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
#include "base/i2-base.h"
|
|
|
|
#include "base/registry.h"
|
|
|
|
#include "base/dynamicobject.h"
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
2013-03-15 18:21:29 +01:00
|
|
|
#include <boost/function.hpp>
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <boost/smart_ptr/make_shared.hpp>
|
2013-03-15 18:21:29 +01:00
|
|
|
|
2012-12-04 08:42:24 +01:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
class I2_BASE_API DynamicType : public Object
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef shared_ptr<DynamicType> Ptr;
|
|
|
|
typedef weak_ptr<DynamicType> WeakPtr;
|
|
|
|
|
2013-03-15 18:21:29 +01:00
|
|
|
typedef boost::function<DynamicObject::Ptr (const Dictionary::Ptr&)> ObjectFactory;
|
2012-12-04 08:42:24 +01:00
|
|
|
|
|
|
|
DynamicType(const String& name, const ObjectFactory& factory);
|
|
|
|
|
|
|
|
String GetName(void) const;
|
|
|
|
|
|
|
|
static DynamicType::Ptr GetByName(const String& name);
|
|
|
|
|
|
|
|
static void RegisterType(const DynamicType::Ptr& type);
|
2013-02-17 19:14:34 +01:00
|
|
|
|
2013-03-04 15:52:42 +01:00
|
|
|
DynamicObject::Ptr CreateObject(const Dictionary::Ptr& serializedUpdate);
|
2012-12-04 08:42:24 +01:00
|
|
|
DynamicObject::Ptr GetObject(const String& name) const;
|
|
|
|
|
|
|
|
void RegisterObject(const DynamicObject::Ptr& object);
|
|
|
|
void UnregisterObject(const DynamicObject::Ptr& object);
|
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
static std::set<DynamicType::Ptr> GetTypes(void);
|
|
|
|
std::set<DynamicObject::Ptr> GetObjects(void) const;
|
2013-02-18 23:44:24 +01:00
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
static std::set<DynamicObject::Ptr> GetObjects(const String& type);
|
2012-12-04 08:42:24 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
String m_Name;
|
|
|
|
ObjectFactory m_ObjectFactory;
|
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
typedef std::map<String, DynamicObject::Ptr, string_iless> ObjectMap;
|
|
|
|
typedef std::set<DynamicObject::Ptr> ObjectSet;
|
2013-02-18 23:44:24 +01:00
|
|
|
|
|
|
|
ObjectMap m_ObjectMap;
|
|
|
|
ObjectSet m_ObjectSet;
|
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
typedef std::map<String, DynamicType::Ptr, string_iless> TypeMap;
|
|
|
|
typedef std::set<DynamicType::Ptr> TypeSet;
|
2013-02-18 14:40:24 +01:00
|
|
|
|
2013-02-18 23:44:24 +01:00
|
|
|
static TypeMap& InternalGetTypeMap(void);
|
|
|
|
static TypeSet& InternalGetTypeSet(void);
|
2013-02-18 14:40:24 +01:00
|
|
|
static boost::mutex& GetStaticMutex(void);
|
2012-12-04 08:42:24 +01:00
|
|
|
};
|
|
|
|
|
2013-03-15 11:19:52 +01:00
|
|
|
/**
|
|
|
|
* A registry for DynamicType objects.
|
|
|
|
*
|
|
|
|
* @ingroup base
|
|
|
|
*/
|
2013-03-15 18:21:29 +01:00
|
|
|
class DynamicTypeRegistry : public Registry<DynamicType::Ptr>
|
2013-03-15 11:19:52 +01:00
|
|
|
{ };
|
|
|
|
|
2012-12-04 08:42:24 +01:00
|
|
|
/**
|
|
|
|
* Helper class for registering DynamicObject implementation classes.
|
|
|
|
*
|
|
|
|
* @ingroup base
|
|
|
|
*/
|
|
|
|
class RegisterTypeHelper
|
|
|
|
{
|
|
|
|
public:
|
2013-03-01 12:07:52 +01:00
|
|
|
RegisterTypeHelper(const String& name, const DynamicType::ObjectFactory& factory)
|
2012-12-04 08:42:24 +01:00
|
|
|
{
|
2013-03-01 12:07:52 +01:00
|
|
|
DynamicType::Ptr type = boost::make_shared<DynamicType>(name, factory);
|
|
|
|
DynamicType::RegisterType(type);
|
2012-12-04 08:42:24 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Factory function for DynamicObject-based classes.
|
|
|
|
*
|
|
|
|
* @ingroup base
|
|
|
|
*/
|
|
|
|
template<typename T>
|
|
|
|
shared_ptr<T> DynamicObjectFactory(const Dictionary::Ptr& serializedUpdate)
|
|
|
|
{
|
|
|
|
return boost::make_shared<T>(serializedUpdate);
|
|
|
|
}
|
|
|
|
|
2013-03-01 12:07:52 +01:00
|
|
|
#define REGISTER_TYPE_ALIAS(type, alias) \
|
2013-03-15 12:27:03 +01:00
|
|
|
I2_EXPORT icinga::RegisterTypeHelper g_RegisterDT_ ## type(alias, DynamicObjectFactory<type>);
|
2012-12-04 08:42:24 +01:00
|
|
|
|
2013-03-01 12:07:52 +01:00
|
|
|
#define REGISTER_TYPE(type) \
|
|
|
|
REGISTER_TYPE_ALIAS(type, #type)
|
2012-12-04 08:42:24 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* DYNAMICTYPE_H */
|