icinga2/lib/config/configitem.h

111 lines
3.9 KiB
C
Raw Normal View History

/******************************************************************************
* 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
2013-03-17 20:19:29 +01:00
#include "config/i2-config.h"
#include "config/expressionlist.h"
2013-03-16 21:18:53 +01:00
#include "base/dynamicobject.h"
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
*/
class I2_CONFIG_API ConfigItem : public Object {
public:
DECLARE_PTR_TYPEDEFS(ConfigItem);
ConfigItem(const String& type, const String& name, const String& unit,
2013-03-16 21:18:53 +01:00
bool abstract, const ExpressionList::Ptr& exprl, const std::vector<String>& parents,
2012-07-06 14:33:10 +02:00
const DebugInfo& debuginfo);
String GetType(void) const;
String GetName(void) const;
String GetUnit(void) const;
bool IsAbstract(void) const;
std::vector<ConfigItem::Ptr> GetParents(void) const;
void Link(void);
ExpressionList::Ptr GetLinkedExpressionList(void) const;
void GetProperties(void);
2013-03-02 09:07:47 +01:00
DynamicObject::Ptr Commit(void);
void Register(void);
void Unregister(void);
2013-03-16 21:18:53 +01:00
void Dump(std::ostream& fp) const;
2012-07-30 10:17:29 +02:00
DynamicObject::Ptr GetDynamicObject(void) const;
DebugInfo GetDebugInfo(void) const;
2012-09-19 12:32:39 +02:00
static ConfigItem::Ptr GetObject(const String& type,
const String& name);
static void UnloadUnit(const String& unit);
2013-03-16 21:18:53 +01:00
static boost::signals2::signal<void (const ConfigItem::Ptr&)> OnCommitted;
static boost::signals2::signal<void (const ConfigItem::Ptr&)> OnRemoved;
private:
ExpressionList::Ptr GetExpressionList(void) const;
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. */
String m_Unit; /**< The compilation unit. */
bool m_Abstract; /**< Whether this is a template. */
2012-07-06 14:33:10 +02:00
ExpressionList::Ptr m_ExpressionList;
std::vector<String> m_ParentNames; /**< The names of parent configuration
2012-09-19 12:32:39 +02:00
items. */
std::vector<ConfigItem::Ptr> m_Parents;
2012-09-19 12:32:39 +02:00
DebugInfo m_DebugInfo; /**< Debug information. */
ExpressionList::Ptr m_LinkedExpressionList;
2012-09-19 12:32:39 +02:00
DynamicObject::WeakPtr m_DynamicObject; /**< The instantiated version
* of this configuration item */
std::set<ConfigItem::WeakPtr> m_ChildObjects; /**< Instantiated items
* that inherit from this item */
2013-03-15 18:21:29 +01:00
static boost::mutex m_Mutex;
2013-02-17 19:14:34 +01:00
typedef std::map<std::pair<String, String>, ConfigItem::Ptr, pair_string_iless> ItemMap;
2012-09-19 12:32:39 +02:00
static ItemMap m_Items; /**< All registered configuration items. */
static ConfigItem::Ptr GetObjectUnlocked(const String& type,
const String& name);
};
}
#endif /* CONFIGITEM_H */