2012-06-06 14:38:28 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* 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
|
2012-06-01 16:49:33 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2012-09-17 14:47:43 +02:00
|
|
|
/**
|
2012-09-19 12:32:39 +02:00
|
|
|
* A configuration item. Non-abstract configuration items can be used to
|
|
|
|
* create configuration objects at runtime.
|
2012-09-17 14:47:43 +02:00
|
|
|
*
|
|
|
|
* @ingroup config
|
|
|
|
*/
|
2012-09-07 10:27:31 +02:00
|
|
|
class I2_CONFIG_API ConfigItem : public Object {
|
2012-06-01 16:49:33 +02:00
|
|
|
public:
|
2012-06-06 14:38:28 +02:00
|
|
|
typedef shared_ptr<ConfigItem> Ptr;
|
|
|
|
typedef weak_ptr<ConfigItem> WeakPtr;
|
|
|
|
|
2013-02-06 00:32:05 +01:00
|
|
|
ConfigItem(const String& type, const String& name, const String& unit,
|
2012-08-02 09:38:08 +02:00
|
|
|
const ExpressionList::Ptr& exprl, const vector<String>& parents,
|
2012-07-06 14:33:10 +02:00
|
|
|
const DebugInfo& debuginfo);
|
2012-06-05 15:05:15 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
String GetType(void) const;
|
|
|
|
String GetName(void) const;
|
2013-02-06 00:32:05 +01:00
|
|
|
String GetUnit(void) const;
|
2012-06-05 15:05:15 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
vector<String> GetParents(void) const;
|
2012-06-01 16:49:33 +02:00
|
|
|
|
|
|
|
ExpressionList::Ptr GetExpressionList(void) const;
|
|
|
|
|
2012-07-30 10:17:29 +02:00
|
|
|
DynamicObject::Ptr Commit(void);
|
2012-06-06 14:38:28 +02:00
|
|
|
void Unregister(void);
|
|
|
|
|
2013-01-30 23:02:46 +01:00
|
|
|
void Dump(ostream& fp) const;
|
|
|
|
|
2012-07-30 10:17:29 +02:00
|
|
|
DynamicObject::Ptr GetDynamicObject(void) const;
|
2012-07-06 11:22:38 +02:00
|
|
|
|
|
|
|
DebugInfo GetDebugInfo(void) const;
|
|
|
|
|
2013-02-05 13:06:42 +01:00
|
|
|
Dictionary::Ptr Link(void) const;
|
|
|
|
|
2012-09-19 12:32:39 +02:00
|
|
|
static ConfigItem::Ptr GetObject(const String& type,
|
|
|
|
const String& name);
|
2012-06-05 15:05:15 +02:00
|
|
|
|
2013-02-06 00:32:05 +01:00
|
|
|
static void UnloadUnit(const String& unit);
|
|
|
|
|
2012-07-27 16:05:02 +02:00
|
|
|
static boost::signal<void (const ConfigItem::Ptr&)> OnCommitted;
|
|
|
|
static boost::signal<void (const ConfigItem::Ptr&)> OnRemoved;
|
|
|
|
|
2012-06-01 16:49:33 +02:00
|
|
|
private:
|
2013-02-05 13:06:42 +01:00
|
|
|
void InternalLink(const Dictionary::Ptr& dictionary) const;
|
2012-08-02 09:38:08 +02:00
|
|
|
|
2013-01-31 15:26:54 +01:00
|
|
|
void RegisterChild(const ConfigItem::Ptr& child);
|
|
|
|
void UnregisterChild(const ConfigItem::Ptr& child);
|
|
|
|
void UnregisterFromParents(void);
|
|
|
|
|
|
|
|
void OnParentCommitted(void);
|
|
|
|
|
2012-09-19 12:32:39 +02:00
|
|
|
String m_Type; /**< The object type. */
|
|
|
|
String m_Name; /**< The name. */
|
2013-02-06 00:32:05 +01:00
|
|
|
String m_Unit; /**< The compilation unit. */
|
2012-07-06 14:33:10 +02:00
|
|
|
|
2012-06-01 16:49:33 +02:00
|
|
|
ExpressionList::Ptr m_ExpressionList;
|
2012-09-19 12:32:39 +02:00
|
|
|
vector<String> m_Parents; /**< The names of parent configuration
|
|
|
|
items. */
|
|
|
|
DebugInfo m_DebugInfo; /**< Debug information. */
|
2012-06-01 16:49:33 +02:00
|
|
|
|
2012-09-19 12:32:39 +02:00
|
|
|
DynamicObject::WeakPtr m_DynamicObject; /**< The instantiated version
|
2013-01-31 15:26:54 +01:00
|
|
|
* of this configuration
|
|
|
|
* item */
|
|
|
|
set<ConfigItem::WeakPtr> m_ChildObjects; /**< Instantiated items
|
|
|
|
* that inherit from this item */
|
2012-06-06 14:38:28 +02:00
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
typedef map<pair<String, String>, ConfigItem::Ptr> ItemMap;
|
2012-09-19 12:32:39 +02:00
|
|
|
static ItemMap m_Items; /**< All registered configuration items. */
|
2012-06-01 16:49:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-06-06 14:38:28 +02:00
|
|
|
#endif /* CONFIGITEM_H */
|