2014-03-19 05:51:09 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
* Icinga 2 *
|
2018-10-18 03:27:04 -04:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://icinga.com/) *
|
2014-03-19 05:51:09 -04: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. *
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
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);
|
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);
|
2015-08-25 07:53:43 -04:00
|
|
|
static Array::Ptr TrackParents(const Object::Ptr& parent);
|
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);
|
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 */
|