icinga2/lib/config/configitem.h

73 lines
2.6 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
namespace icinga
{
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,
2012-07-06 14:33:10 +02:00
const DebugInfo& debuginfo);
String GetType(void) const;
String GetName(void) const;
vector<String> GetParents(void) const;
ExpressionList::Ptr GetExpressionList(void) const;
2012-07-30 10:17:29 +02:00
DynamicObject::Ptr Commit(void);
void Unregister(void);
2012-07-30 10:17:29 +02:00
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;
String m_Type;
String m_Name;
2012-07-06 14:33:10 +02:00
ExpressionList::Ptr m_ExpressionList;
vector<String> m_Parents;
2012-07-06 14:33:10 +02:00
DebugInfo m_DebugInfo;
2012-07-30 10:17:29 +02:00
DynamicObject::WeakPtr m_DynamicObject;
typedef map<pair<String, String>, ConfigItem::Ptr> ItemMap;
static ItemMap m_Items;
};
}
#endif /* CONFIGITEM_H */