mirror of https://github.com/Icinga/icinga2.git
107 lines
3.4 KiB
C++
107 lines
3.4 KiB
C++
/******************************************************************************
|
|
* 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 CONFIGOBJECT_H
|
|
#define CONFIGOBJECT_H
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
/**
|
|
* A configuration object.
|
|
*
|
|
* @ingroup base
|
|
*/
|
|
class I2_BASE_API ConfigObject : public Object
|
|
{
|
|
public:
|
|
typedef shared_ptr<ConfigObject> Ptr;
|
|
typedef weak_ptr<ConfigObject> WeakPtr;
|
|
|
|
typedef ObjectMap<pair<string, string>, ConfigObject::Ptr> TNMap;
|
|
typedef ObjectMap<string, ConfigObject::Ptr> TMap;
|
|
typedef ObjectSet<ConfigObject::Ptr> Set;
|
|
|
|
ConfigObject(Dictionary::Ptr properties, const Set::Ptr& container = Set::Ptr());
|
|
|
|
void SetProperties(Dictionary::Ptr config);
|
|
Dictionary::Ptr GetProperties(void) const;
|
|
|
|
template<typename T>
|
|
bool GetProperty(const string& key, T *value) const
|
|
{
|
|
return GetProperties()->Get(key, value);
|
|
}
|
|
|
|
Dictionary::Ptr GetTags(void) const;
|
|
|
|
template<typename T>
|
|
void SetTag(const string& key, const T& value)
|
|
{
|
|
GetTags()->Set(key, value);
|
|
}
|
|
|
|
template<typename T>
|
|
bool GetTag(const string& key, T *value) const
|
|
{
|
|
return GetTags()->Get(key, value);
|
|
}
|
|
|
|
string GetType(void) const;
|
|
string GetName(void) const;
|
|
|
|
bool IsLocal(void) const;
|
|
bool IsAbstract(void) const;
|
|
|
|
void SetSource(const string& value);
|
|
string GetSource(void) const;
|
|
|
|
time_t GetCommitTimestamp(void) const;
|
|
|
|
void Commit(void);
|
|
void Unregister(void);
|
|
|
|
static ObjectSet<ConfigObject::Ptr>::Ptr GetAllObjects(void);
|
|
|
|
static TNMap::Ptr GetObjectsByTypeAndName(void);
|
|
static TMap::Ptr GetObjectsByType(void);
|
|
|
|
static ConfigObject::Ptr GetObject(string type, string name);
|
|
|
|
static TMap::Range GetObjects(string type);
|
|
|
|
static function<bool (ConfigObject::Ptr)> MakeTypePredicate(string type);
|
|
|
|
private:
|
|
Set::Ptr m_Container;
|
|
Dictionary::Ptr m_Properties;
|
|
Dictionary::Ptr m_Tags;
|
|
|
|
void SetCommitTimestamp(time_t ts);
|
|
|
|
static bool TypeAndNameGetter(const ConfigObject::Ptr& object, pair<string, string> *key);
|
|
static bool TypePredicate(const ConfigObject::Ptr& object, string type);
|
|
|
|
static bool TypeGetter(const ConfigObject::Ptr& object, string *key);
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* CONFIGOBJECT_H */
|