2012-03-31 15:18:09 +02:00
|
|
|
#include "i2-base.h"
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2012-04-03 11:39:26 +02:00
|
|
|
void ConfigHive::AddObject(const ConfigObject::Ptr& object)
|
2012-03-31 15:18:09 +02:00
|
|
|
{
|
|
|
|
object->SetHive(static_pointer_cast<ConfigHive>(shared_from_this()));
|
2012-04-04 10:04:38 +02:00
|
|
|
GetCollection(object->GetType())->AddObject(object);
|
2012-03-31 15:18:09 +02:00
|
|
|
}
|
|
|
|
|
2012-04-03 11:39:26 +02:00
|
|
|
void ConfigHive::RemoveObject(const ConfigObject::Ptr& object)
|
2012-03-31 15:18:09 +02:00
|
|
|
{
|
2012-04-04 10:04:38 +02:00
|
|
|
GetCollection(object->GetType())->RemoveObject(object);
|
2012-03-31 15:18:09 +02:00
|
|
|
}
|
|
|
|
|
2012-04-02 20:50:35 +02:00
|
|
|
ConfigObject::Ptr ConfigHive::GetObject(const string& type, const string& name)
|
2012-03-31 15:18:09 +02:00
|
|
|
{
|
2012-04-04 10:04:38 +02:00
|
|
|
return GetCollection(type)->GetObject(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
ConfigCollection::Ptr ConfigHive::GetCollection(const string& collection)
|
|
|
|
{
|
|
|
|
CollectionIterator ci = Collections.find(collection);
|
|
|
|
|
|
|
|
if (ci == Collections.end()) {
|
|
|
|
Collections[collection] = make_shared<ConfigCollection>();
|
|
|
|
ci = Collections.find(collection);
|
|
|
|
}
|
2012-03-31 15:18:09 +02:00
|
|
|
|
2012-04-04 10:04:38 +02:00
|
|
|
return ci->second;
|
|
|
|
}
|
2012-03-31 15:18:09 +02:00
|
|
|
|
2012-04-22 16:45:31 +02:00
|
|
|
void ConfigHive::ForEachObject(const string& type,
|
|
|
|
function<int (const EventArgs&)> callback)
|
2012-04-04 10:04:38 +02:00
|
|
|
{
|
|
|
|
CollectionIterator ci = Collections.find(type);
|
2012-03-31 15:18:09 +02:00
|
|
|
|
2012-04-04 10:04:38 +02:00
|
|
|
if (ci == Collections.end())
|
|
|
|
return;
|
2012-03-31 15:18:09 +02:00
|
|
|
|
2012-04-04 10:04:38 +02:00
|
|
|
ci->second->ForEachObject(callback);
|
2012-03-31 15:18:09 +02:00
|
|
|
}
|