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