2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-03-19 10:51:09 +01:00
|
|
|
|
2014-03-23 11:27:40 +01:00
|
|
|
#ifndef SCRIPTUTILS_H
|
|
|
|
#define SCRIPTUTILS_H
|
2014-03-19 10:51:09 +01:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/i2-base.hpp"
|
2014-10-19 14:48:19 +02:00
|
|
|
#include "base/string.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/array.hpp"
|
2014-11-03 13:05:14 +01:00
|
|
|
#include "base/dictionary.hpp"
|
2014-11-03 07:07:54 +01:00
|
|
|
#include "base/type.hpp"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configobject.hpp"
|
2014-03-19 10:51:09 +01:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
2014-03-23 11:27:40 +01:00
|
|
|
* @ingroup base
|
2014-03-19 10:51:09 +01:00
|
|
|
*/
|
2017-12-31 07:22:16 +01:00
|
|
|
class ScriptUtils
|
2014-03-19 10:51:09 +01:00
|
|
|
{
|
|
|
|
public:
|
2018-01-04 04:25:35 +01:00
|
|
|
static void StaticInitialize();
|
2014-11-24 07:09:51 +01:00
|
|
|
static String CastString(const Value& value);
|
|
|
|
static double CastNumber(const Value& value);
|
|
|
|
static bool CastBool(const Value& value);
|
2017-05-15 16:02:20 +02:00
|
|
|
static bool Regex(const std::vector<Value>& args);
|
|
|
|
static bool Match(const std::vector<Value>& args);
|
|
|
|
static bool CidrMatch(const std::vector<Value>& args);
|
2014-12-20 09:36:35 +01:00
|
|
|
static double Len(const Value& value);
|
2014-03-20 14:25:40 +01:00
|
|
|
static Array::Ptr Union(const std::vector<Value>& arguments);
|
|
|
|
static Array::Ptr Intersection(const std::vector<Value>& arguments);
|
2014-04-01 09:33:54 +02:00
|
|
|
static void Log(const std::vector<Value>& arguments);
|
2014-05-10 11:26:56 +02:00
|
|
|
static Array::Ptr Range(const std::vector<Value>& arguments);
|
2014-11-03 00:44:04 +01:00
|
|
|
static Type::Ptr TypeOf(const Value& value);
|
2018-08-07 13:55:41 +02:00
|
|
|
static Array::Ptr Keys(const Object::Ptr& obj);
|
2019-08-08 20:26:44 +02:00
|
|
|
static Dictionary::Ptr GetTemplate(const Value& vtype, const String& name);
|
|
|
|
static Array::Ptr GetTemplates(const Type::Ptr& type);
|
2015-08-15 20:28:05 +02:00
|
|
|
static ConfigObject::Ptr GetObject(const Value& type, const String& name);
|
2015-01-28 08:36:17 +01:00
|
|
|
static Array::Ptr GetObjects(const Type::Ptr& type);
|
2014-11-20 06:53:57 +01:00
|
|
|
static void Assert(const Value& arg);
|
2015-05-12 15:44:44 +02:00
|
|
|
static String MsiGetComponentPathShim(const String& component);
|
2015-08-25 13:53:43 +02:00
|
|
|
static Array::Ptr TrackParents(const Object::Ptr& parent);
|
2016-07-22 09:43:59 +02:00
|
|
|
static double Ptr(const Object::Ptr& object);
|
2017-09-18 09:08:53 +02:00
|
|
|
static Value Glob(const std::vector<Value>& args);
|
|
|
|
static Value GlobRecursive(const std::vector<Value>& args);
|
2018-11-19 14:59:20 +01:00
|
|
|
static String GetEnv(const String& key);
|
2014-03-19 10:51:09 +01:00
|
|
|
|
|
|
|
private:
|
2018-01-04 04:25:35 +01:00
|
|
|
ScriptUtils();
|
2014-03-19 10:51:09 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-03-23 11:27:40 +01:00
|
|
|
#endif /* SCRIPTUTILS_H */
|