2014-03-19 10:51:09 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2015-01-22 12:00:23 +01:00
|
|
|
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
|
2014-03-19 10:51:09 +01: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 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
|
|
|
*/
|
2014-03-23 11:27:40 +01:00
|
|
|
class I2_BASE_API ScriptUtils
|
2014-03-19 10:51:09 +01:00
|
|
|
{
|
|
|
|
public:
|
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);
|
2014-03-19 10:51:09 +01:00
|
|
|
static bool Regex(const String& pattern, const String& text);
|
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);
|
2014-11-03 13:05:14 +01:00
|
|
|
static Array::Ptr Keys(const Dictionary::Ptr& dict);
|
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);
|
2014-03-19 10:51:09 +01:00
|
|
|
|
|
|
|
private:
|
2014-03-23 11:27:40 +01:00
|
|
|
ScriptUtils(void);
|
2014-03-19 10:51:09 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-03-23 11:27:40 +01:00
|
|
|
#endif /* SCRIPTUTILS_H */
|