icinga2/lib/base/registry.hpp

122 lines
2.0 KiB
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2013-03-15 11:19:52 +01:00
#ifndef REGISTRY_H
#define REGISTRY_H
2014-05-25 16:23:35 +02:00
#include "base/i2-base.hpp"
#include "base/string.hpp"
2013-03-16 21:18:53 +01:00
#include <boost/thread/mutex.hpp>
#include <boost/signals2.hpp>
2018-01-04 18:24:45 +01:00
#include <map>
2013-03-16 21:18:53 +01:00
2013-03-15 11:19:52 +01:00
namespace icinga
{
/**
* A registry.
*
* @ingroup base
*/
2013-10-10 23:07:05 +02:00
template<typename U, typename T>
2013-03-18 22:40:40 +01:00
class Registry
2013-03-15 11:19:52 +01:00
{
public:
typedef std::map<String, T> ItemMap;
2013-03-15 11:19:52 +01:00
2013-11-03 13:45:26 +01:00
void RegisterIfNew(const String& name, const T& item)
2013-03-15 11:19:52 +01:00
{
2013-11-03 13:45:26 +01:00
boost::mutex::scoped_lock lock(m_Mutex);
2013-03-15 11:19:52 +01:00
2013-11-03 13:45:26 +01:00
if (m_Items.find(name) != m_Items.end())
return;
2013-03-15 11:19:52 +01:00
2013-11-03 13:45:26 +01:00
RegisterInternal(name, item, lock);
}
2013-03-15 11:19:52 +01:00
2013-11-03 13:45:26 +01:00
void Register(const String& name, const T& item)
{
boost::mutex::scoped_lock lock(m_Mutex);
2013-03-15 11:19:52 +01:00
2013-11-03 13:45:26 +01:00
RegisterInternal(name, item, lock);
2013-03-15 11:19:52 +01:00
}
void Unregister(const String& name)
{
2013-10-10 23:30:05 +02:00
size_t erased;
2013-03-15 11:19:52 +01:00
{
boost::mutex::scoped_lock lock(m_Mutex);
erased = m_Items.erase(name);
}
if (erased > 0)
OnUnregistered(name);
}
void Clear()
{
2013-10-10 23:07:05 +02:00
typename Registry<U, T>::ItemMap items;
{
boost::mutex::scoped_lock lock(m_Mutex);
items = m_Items;
}
for (const auto& kv : items) {
OnUnregistered(kv.first);
}
{
boost::mutex::scoped_lock lock(m_Mutex);
m_Items.clear();
}
}
2013-03-15 11:19:52 +01:00
T GetItem(const String& name) const
{
boost::mutex::scoped_lock lock(m_Mutex);
auto it = m_Items.find(name);
2013-03-15 11:19:52 +01:00
if (it == m_Items.end())
return T();
return it->second;
}
ItemMap GetItems() const
2013-03-15 11:19:52 +01:00
{
boost::mutex::scoped_lock lock(m_Mutex);
return m_Items; /* Makes a copy of the map. */
}
2013-03-16 21:18:53 +01:00
boost::signals2::signal<void (const String&, const T&)> OnRegistered;
boost::signals2::signal<void (const String&)> OnUnregistered;
2013-03-15 11:19:52 +01:00
private:
mutable boost::mutex m_Mutex;
2013-10-10 23:07:05 +02:00
typename Registry<U, T>::ItemMap m_Items;
2013-11-03 13:45:26 +01:00
void RegisterInternal(const String& name, const T& item, boost::mutex::scoped_lock& lock)
{
bool old_item = false;
if (m_Items.erase(name) > 0)
old_item = true;
m_Items[name] = item;
lock.unlock();
if (old_item)
OnUnregistered(name);
OnRegistered(name, item);
}
2013-03-15 11:19:52 +01:00
};
}
#endif /* REGISTRY_H */