icinga2/lib/config/configitem.hpp

107 lines
3.0 KiB
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef CONFIGITEM_H
#define CONFIGITEM_H
2014-05-25 16:23:35 +02:00
#include "config/i2-config.hpp"
2014-10-16 17:44:06 +02:00
#include "config/expression.hpp"
#include "config/activationcontext.hpp"
#include "base/configobject.hpp"
#include "base/workqueue.hpp"
2013-03-16 21:18:53 +01: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
*/
2018-01-04 06:11:04 +01:00
class ConfigItem final : public Object {
public:
2014-11-07 12:32:25 +01:00
DECLARE_PTR_TYPEDEFS(ConfigItem);
ConfigItem(Type::Ptr type, String name, bool abstract,
Expression::Ptr exprl,
Expression::Ptr filter,
bool defaultTmpl, bool ignoreOnError, DebugInfo debuginfo,
Dictionary::Ptr scope, String zone,
String package);
Type::Ptr GetType() const;
String GetName() const;
bool IsAbstract() const;
bool IsDefaultTemplate() const;
bool IsIgnoreOnError() const;
std::vector<ConfigItem::Ptr> GetParents() const;
Expression::Ptr GetExpression() const;
Expression::Ptr GetFilter() const;
void Register();
void Unregister();
DebugInfo GetDebugInfo() const;
Dictionary::Ptr GetScope() const;
ConfigObject::Ptr GetObject() const;
2017-12-13 12:54:14 +01:00
static ConfigItem::Ptr GetByTypeAndName(const Type::Ptr& type,
const String& name);
static bool CommitItems(const ActivationContext::Ptr& context, WorkQueue& upq, std::vector<ConfigItem::Ptr>& newItems, bool silent = false);
static bool ActivateItems(const std::vector<ConfigItem::Ptr>& newItems, bool runtimeCreated = false,
bool mainConfigActivation = false, bool withModAttrs = false, const Value& cookie = Empty);
static bool RunWithActivationContext(const Function::Ptr& function);
static std::vector<ConfigItem::Ptr> GetItems(const Type::Ptr& type);
static std::vector<ConfigItem::Ptr> GetDefaultTemplates(const Type::Ptr& type);
static void RemoveIgnoredItems(const String& allowedConfigPath);
private:
Type::Ptr m_Type; /**< The object type. */
2012-09-19 12:32:39 +02:00
String m_Name; /**< The name. */
bool m_Abstract; /**< Whether this is a template. */
2012-07-06 14:33:10 +02:00
Expression::Ptr m_Expression;
Expression::Ptr m_Filter;
bool m_DefaultTmpl;
bool m_IgnoreOnError;
2012-09-19 12:32:39 +02:00
DebugInfo m_DebugInfo; /**< Debug information. */
Dictionary::Ptr m_Scope; /**< variable scope. */
String m_Zone; /**< The zone. */
String m_Package;
ActivationContext::Ptr m_ActivationContext;
ConfigObject::Ptr m_Object;
2021-02-02 10:16:04 +01:00
static std::mutex m_Mutex;
2013-02-17 19:14:34 +01:00
typedef std::map<String, ConfigItem::Ptr> ItemMap;
typedef std::map<Type::Ptr, ItemMap> TypeMap;
static TypeMap m_Items; /**< All registered configuration items. */
static TypeMap m_DefaultTemplates;
typedef std::vector<ConfigItem::Ptr> ItemList;
static ItemList m_UnnamedItems;
typedef std::vector<String> IgnoredItemList;
static IgnoredItemList m_IgnoredItems;
static ConfigItem::Ptr GetObjectUnlocked(const String& type,
const String& name);
ConfigObject::Ptr Commit(bool discard = true);
static bool CommitNewItems(const ActivationContext::Ptr& context, WorkQueue& upq, std::vector<ConfigItem::Ptr>& newItems);
};
}
#endif /* CONFIGITEM_H */