2012-03-31 15:18:09 +02:00
|
|
|
#include "i2-base.h"
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2012-04-24 14:02:15 +02:00
|
|
|
/**
|
|
|
|
* AddObject
|
|
|
|
*
|
|
|
|
* Adds a new object to this hive.
|
|
|
|
*
|
|
|
|
* @param object The new object.
|
|
|
|
*/
|
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-24 14:02:15 +02:00
|
|
|
/**
|
|
|
|
* RemoveObject
|
|
|
|
*
|
|
|
|
* Removes an object from this hive.
|
|
|
|
*
|
|
|
|
* @param object The object that is to be removed.
|
|
|
|
*/
|
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-24 14:02:15 +02:00
|
|
|
/**
|
|
|
|
* GetObject
|
|
|
|
*
|
|
|
|
* Retrieves an object by type and name.
|
|
|
|
*
|
|
|
|
* @param type The type of the object.
|
|
|
|
* @param name The name of the object.
|
|
|
|
* @returns The object or a null pointer if the specified object
|
|
|
|
* could not be found.
|
|
|
|
*/
|
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);
|
|
|
|
}
|
|
|
|
|
2012-04-24 14:02:15 +02:00
|
|
|
/**
|
|
|
|
* GetCollection
|
|
|
|
*
|
|
|
|
* Retrieves a collection by name. Creates an empty collection
|
|
|
|
* if the collection doesn't already exist.
|
|
|
|
*
|
|
|
|
* @param collection The name of the collection.
|
|
|
|
* @returns The collection or a null pointer if the specified collection
|
|
|
|
* could not be found.
|
|
|
|
*/
|
2012-04-04 10:04:38 +02:00
|
|
|
ConfigCollection::Ptr ConfigHive::GetCollection(const string& collection)
|
|
|
|
{
|
2012-04-24 14:02:15 +02:00
|
|
|
CollectionConstIterator ci = Collections.find(collection);
|
2012-04-04 10:04:38 +02:00
|
|
|
|
|
|
|
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-24 14:02:15 +02:00
|
|
|
/**
|
|
|
|
* ForEachObject
|
|
|
|
*
|
|
|
|
* Invokes the specified callback for each object contained in this hive.
|
|
|
|
*
|
|
|
|
* @param callback The callback.
|
|
|
|
*/
|
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
|
|
|
}
|