2013-02-02 14:28:11 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-01-09 00:32:11 +01:00
|
|
|
* Copyright (C) 2012-present Icinga Development Team (http://www.icinga.org) *
|
2013-02-02 14:28:11 +01:00
|
|
|
* *
|
|
|
|
* 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 CONFIGTYPE_H
|
|
|
|
#define CONFIGTYPE_H
|
|
|
|
|
2013-03-17 20:19:29 +01:00
|
|
|
#include "config/i2-config.h"
|
|
|
|
#include "config/typerule.h"
|
|
|
|
#include "config/typerulelist.h"
|
|
|
|
#include "config/configitem.h"
|
2013-03-16 21:18:53 +01:00
|
|
|
#include "base/array.h"
|
2013-08-20 11:06:04 +02:00
|
|
|
#include "base/registry.h"
|
2013-11-30 17:47:53 +01:00
|
|
|
#include "base/singleton.h"
|
2013-03-16 21:18:53 +01:00
|
|
|
|
2013-02-02 14:28:11 +01:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A configuration type. Used to validate config objects.
|
|
|
|
*
|
|
|
|
* @ingroup config
|
|
|
|
*/
|
|
|
|
class I2_CONFIG_API ConfigType : public Object {
|
|
|
|
public:
|
2013-07-09 08:42:08 +02:00
|
|
|
DECLARE_PTR_TYPEDEFS(ConfigType);
|
2013-02-02 14:28:11 +01:00
|
|
|
|
|
|
|
ConfigType(const String& name, const DebugInfo& debuginfo);
|
|
|
|
|
|
|
|
String GetName(void) const;
|
|
|
|
|
|
|
|
String GetParent(void) const;
|
|
|
|
void SetParent(const String& parent);
|
|
|
|
|
|
|
|
TypeRuleList::Ptr GetRuleList(void) const;
|
|
|
|
|
|
|
|
DebugInfo GetDebugInfo(void) const;
|
|
|
|
|
2013-06-06 11:26:00 +02:00
|
|
|
void ValidateItem(const ConfigItem::Ptr& object);
|
2013-02-02 14:28:11 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
void Register(void);
|
|
|
|
static ConfigType::Ptr GetByName(const String& name);
|
2013-10-10 23:07:05 +02:00
|
|
|
static Registry<ConfigType, ConfigType::Ptr>::ItemMap GetTypes(void);
|
2013-08-20 11:06:04 +02:00
|
|
|
static void DiscardTypes(void);
|
|
|
|
|
2013-02-02 14:28:11 +01:00
|
|
|
private:
|
|
|
|
String m_Name; /**< The type name. */
|
|
|
|
String m_Parent; /**< The parent type. */
|
|
|
|
|
|
|
|
TypeRuleList::Ptr m_RuleList;
|
|
|
|
DebugInfo m_DebugInfo; /**< Debug information. */
|
|
|
|
|
2013-02-05 13:06:42 +01:00
|
|
|
static void ValidateDictionary(const Dictionary::Ptr& dictionary,
|
2013-03-16 21:18:53 +01:00
|
|
|
const std::vector<TypeRuleList::Ptr>& ruleLists, std::vector<String>& locations);
|
2013-03-14 13:24:07 +01:00
|
|
|
static void ValidateArray(const Array::Ptr& array,
|
2013-03-16 21:18:53 +01:00
|
|
|
const std::vector<TypeRuleList::Ptr>& ruleLists, std::vector<String>& locations);
|
2013-02-02 14:28:11 +01:00
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
static String LocationToString(const std::vector<String>& locations);
|
2013-06-06 11:26:00 +02:00
|
|
|
|
|
|
|
static void AddParentRules(std::vector<TypeRuleList::Ptr>& ruleLists, const ConfigType::Ptr& item);
|
2013-02-02 14:28:11 +01:00
|
|
|
};
|
|
|
|
|
2013-11-30 17:47:53 +01:00
|
|
|
class I2_CONFIG_API ConfigTypeRegistry : public Registry<ConfigTypeRegistry, ConfigType::Ptr>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static ConfigTypeRegistry *GetInstance(void);
|
|
|
|
};
|
|
|
|
|
2013-02-02 14:28:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIGTYPE_H */
|