2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-08-18 14:21:55 +02:00
|
|
|
|
|
|
|
#ifndef CONFIGOBJECTUTILITY_H
|
|
|
|
#define CONFIGOBJECTUTILITY_H
|
|
|
|
|
|
|
|
#include "remote/i2-remote.hpp"
|
|
|
|
#include "base/array.hpp"
|
|
|
|
#include "base/configobject.hpp"
|
|
|
|
#include "base/dictionary.hpp"
|
|
|
|
#include "base/type.hpp"
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper functions.
|
|
|
|
*
|
|
|
|
* @ingroup remote
|
|
|
|
*/
|
2017-12-31 07:22:16 +01:00
|
|
|
class ConfigObjectUtility
|
2015-08-18 14:21:55 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
2018-01-04 04:25:35 +01:00
|
|
|
static String GetConfigDir();
|
2015-08-20 16:43:03 +02:00
|
|
|
static String GetObjectConfigPath(const Type::Ptr& type, const String& fullName);
|
2019-05-10 12:48:34 +02:00
|
|
|
static void RepairPackage(const String& package);
|
|
|
|
static void CreateStorage();
|
2015-08-20 17:18:48 +02:00
|
|
|
|
2015-08-20 16:43:03 +02:00
|
|
|
static String CreateObjectConfig(const Type::Ptr& type, const String& fullName,
|
2017-12-19 15:50:05 +01:00
|
|
|
bool ignoreOnError, const Array::Ptr& templates, const Dictionary::Ptr& attrs);
|
2015-08-20 17:18:48 +02:00
|
|
|
|
2015-08-18 14:21:55 +02:00
|
|
|
static bool CreateObject(const Type::Ptr& type, const String& fullName,
|
2019-08-13 14:53:06 +02:00
|
|
|
const String& config, const Array::Ptr& errors, const Array::Ptr& diagnosticInformation, const Value& cookie = Empty);
|
2015-08-20 17:18:48 +02:00
|
|
|
|
2018-04-06 12:26:49 +02:00
|
|
|
static bool DeleteObject(const ConfigObject::Ptr& object, bool cascade, const Array::Ptr& errors,
|
2019-08-13 14:53:06 +02:00
|
|
|
const Array::Ptr& diagnosticInformation, const Value& cookie = Empty);
|
2015-08-20 17:18:48 +02:00
|
|
|
|
2015-08-18 14:21:55 +02:00
|
|
|
private:
|
|
|
|
static String EscapeName(const String& name);
|
2018-04-06 12:26:49 +02:00
|
|
|
static bool DeleteObjectHelper(const ConfigObject::Ptr& object, bool cascade, const Array::Ptr& errors,
|
2019-08-13 14:53:06 +02:00
|
|
|
const Array::Ptr& diagnosticInformation, const Value& cookie = Empty);
|
2015-08-18 14:21:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIGOBJECTUTILITY_H */
|