mirror of https://github.com/Icinga/icinga2.git
93 lines
3.4 KiB
C++
93 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 CONFIGITEM_H
|
|
#define CONFIGITEM_H
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
/**
|
|
* A configuration item. Non-abstract configuration items can be used to
|
|
* create configuration objects at runtime.
|
|
*
|
|
* @ingroup config
|
|
*/
|
|
class I2_CONFIG_API ConfigItem : public Object {
|
|
public:
|
|
typedef shared_ptr<ConfigItem> Ptr;
|
|
typedef weak_ptr<ConfigItem> WeakPtr;
|
|
|
|
ConfigItem(const String& type, const String& name,
|
|
const ExpressionList::Ptr& exprl, const vector<String>& parents,
|
|
const DebugInfo& debuginfo);
|
|
|
|
String GetType(void) const;
|
|
String GetName(void) const;
|
|
|
|
vector<String> GetParents(void) const;
|
|
|
|
ExpressionList::Ptr GetExpressionList(void) const;
|
|
|
|
DynamicObject::Ptr Commit(void);
|
|
void Unregister(void);
|
|
|
|
void Dump(ostream& fp) const;
|
|
|
|
DynamicObject::Ptr GetDynamicObject(void) const;
|
|
|
|
DebugInfo GetDebugInfo(void) const;
|
|
|
|
static ConfigItem::Ptr GetObject(const String& type,
|
|
const String& name);
|
|
|
|
static boost::signal<void (const ConfigItem::Ptr&)> OnCommitted;
|
|
static boost::signal<void (const ConfigItem::Ptr&)> OnRemoved;
|
|
|
|
private:
|
|
void CalculateProperties(const Dictionary::Ptr& dictionary) const;
|
|
|
|
void RegisterChild(const ConfigItem::Ptr& child);
|
|
void UnregisterChild(const ConfigItem::Ptr& child);
|
|
void UnregisterFromParents(void);
|
|
|
|
void OnParentCommitted(void);
|
|
|
|
String m_Type; /**< The object type. */
|
|
String m_Name; /**< The name. */
|
|
|
|
ExpressionList::Ptr m_ExpressionList;
|
|
vector<String> m_Parents; /**< The names of parent configuration
|
|
items. */
|
|
DebugInfo m_DebugInfo; /**< Debug information. */
|
|
|
|
DynamicObject::WeakPtr m_DynamicObject; /**< The instantiated version
|
|
* of this configuration
|
|
* item */
|
|
set<ConfigItem::WeakPtr> m_ChildObjects; /**< Instantiated items
|
|
* that inherit from this item */
|
|
|
|
typedef map<pair<String, String>, ConfigItem::Ptr> ItemMap;
|
|
static ItemMap m_Items; /**< All registered configuration items. */
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* CONFIGITEM_H */
|