/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */ #ifndef APPLYRULE_H #define APPLYRULE_H #include "config/i2-config.hpp" #include "config/expression.hpp" #include "base/debuginfo.hpp" namespace icinga { /** * @ingroup config */ class ApplyRule { public: typedef std::map > TypeMap; typedef std::map > RuleMap; String GetTargetType() const; String GetName() const; std::shared_ptr GetExpression() const; std::shared_ptr GetFilter() const; String GetPackage() const; String GetFKVar() const; String GetFVVar() const; std::shared_ptr GetFTerm() const; bool GetIgnoreOnError() const; DebugInfo GetDebugInfo() const; Dictionary::Ptr GetScope() const; void AddMatch(); bool HasMatches() const; bool EvaluateFilter(ScriptFrame& frame) const; static void AddRule(const String& sourceType, const String& targetType, const String& name, const std::shared_ptr& expression, const std::shared_ptr& filter, const String& package, const String& fkvar, const String& fvvar, const std::shared_ptr& fterm, bool ignoreOnError, const DebugInfo& di, const Dictionary::Ptr& scope); static std::vector& GetRules(const String& type); static void RegisterType(const String& sourceType, const std::vector& targetTypes); static bool IsValidSourceType(const String& sourceType); static bool IsValidTargetType(const String& sourceType, const String& targetType); static std::vector GetTargetTypes(const String& sourceType); static void CheckMatches(bool silent); private: String m_TargetType; String m_Name; std::shared_ptr m_Expression; std::shared_ptr m_Filter; String m_Package; String m_FKVar; String m_FVVar; std::shared_ptr m_FTerm; bool m_IgnoreOnError; DebugInfo m_DebugInfo; Dictionary::Ptr m_Scope; bool m_HasMatches; static TypeMap m_Types; static RuleMap m_Rules; ApplyRule(String targetType, String name, std::shared_ptr expression, std::shared_ptr filter, String package, String fkvar, String fvvar, std::shared_ptr fterm, bool ignoreOnError, DebugInfo di, Dictionary::Ptr scope); }; } #endif /* APPLYRULE_H */