icinga2/lib/base/registry.hpp
2025-11-07 18:01:38 +01:00

58 lines
892 B
C++

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef REGISTRY_H
#define REGISTRY_H
#include "base/i2-base.hpp"
#include "base/string.hpp"
#include <map>
#include <mutex>
namespace icinga
{
/**
* A registry.
*
* @ingroup base
*/
template<typename U, typename T>
class Registry
{
public:
typedef std::map<String, T> ItemMap;
void Register(const String& name, const T& item)
{
std::unique_lock<std::mutex> lock(m_Mutex);
m_Items[name] = item;
}
T GetItem(const String& name) const
{
std::unique_lock<std::mutex> lock(m_Mutex);
auto it = m_Items.find(name);
if (it == m_Items.end())
return T();
return it->second;
}
ItemMap GetItems() const
{
std::unique_lock<std::mutex> lock(m_Mutex);
return m_Items; /* Makes a copy of the map. */
}
private:
mutable std::mutex m_Mutex;
typename Registry<U, T>::ItemMap m_Items;
};
}
#endif /* REGISTRY_H */