2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-08-18 08:21:55 -04: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 01:22:16 -05:00
|
|
|
class ConfigObjectUtility
|
2015-08-18 08:21:55 -04:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public:
|
2018-01-03 22:25:35 -05:00
|
|
|
static String GetConfigDir();
|
2015-08-20 10:43:03 -04:00
|
|
|
static String GetObjectConfigPath(const Type::Ptr& type, const String& fullName);
|
2019-05-10 06:48:34 -04:00
|
|
|
static void RepairPackage(const String& package);
|
|
|
|
|
static void CreateStorage();
|
2015-08-20 11:18:48 -04:00
|
|
|
|
2015-08-20 10:43:03 -04:00
|
|
|
static String CreateObjectConfig(const Type::Ptr& type, const String& fullName,
|
2017-12-19 09:50:05 -05:00
|
|
|
bool ignoreOnError, const Array::Ptr& templates, const Dictionary::Ptr& attrs);
|
2015-08-20 11:18:48 -04:00
|
|
|
|
2015-08-18 08:21:55 -04:00
|
|
|
static bool CreateObject(const Type::Ptr& type, const String& fullName,
|
2019-08-13 08:53:06 -04:00
|
|
|
const String& config, const Array::Ptr& errors, const Array::Ptr& diagnosticInformation, const Value& cookie = Empty);
|
2015-08-20 11:18:48 -04:00
|
|
|
|
2018-04-06 06:26:49 -04:00
|
|
|
static bool DeleteObject(const ConfigObject::Ptr& object, bool cascade, const Array::Ptr& errors,
|
2019-08-13 08:53:06 -04:00
|
|
|
const Array::Ptr& diagnosticInformation, const Value& cookie = Empty);
|
2015-08-20 11:18:48 -04:00
|
|
|
|
2015-08-18 08:21:55 -04:00
|
|
|
private:
|
|
|
|
|
static String EscapeName(const String& name);
|
2018-04-06 06:26:49 -04:00
|
|
|
static bool DeleteObjectHelper(const ConfigObject::Ptr& object, bool cascade, const Array::Ptr& errors,
|
2019-08-13 08:53:06 -04:00
|
|
|
const Array::Ptr& diagnosticInformation, const Value& cookie = Empty);
|
2015-08-18 08:21:55 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* CONFIGOBJECTUTILITY_H */
|