icinga2/lib/base/scriptutils.cpp

260 lines
7.1 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2014-04-23 15:57:58 +02:00
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
* *
* 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-05-25 16:23:35 +02:00
#include "base/scriptutils.hpp"
#include "base/scriptfunction.hpp"
#include "base/utility.hpp"
#include "base/convert.hpp"
2014-10-26 19:59:49 +01:00
#include "base/json.hpp"
2014-10-19 14:21:12 +02:00
#include "base/logger.hpp"
#include "base/objectlock.hpp"
2014-11-12 19:08:36 +01:00
#include "base/dynamictype.hpp"
#include "base/application.hpp"
#include "base/configerror.hpp"
#include <boost/foreach.hpp>
#include <boost/regex.hpp>
#include <algorithm>
2014-03-20 15:41:37 +01:00
#include <set>
using namespace icinga;
REGISTER_SCRIPTFUNCTION(regex, &ScriptUtils::Regex);
REGISTER_SCRIPTFUNCTION(match, &Utility::Match);
REGISTER_SCRIPTFUNCTION(len, &ScriptUtils::Len);
REGISTER_SCRIPTFUNCTION(union, &ScriptUtils::Union);
REGISTER_SCRIPTFUNCTION(intersection, &ScriptUtils::Intersection);
REGISTER_SCRIPTFUNCTION(log, &ScriptUtils::Log);
2014-05-10 11:26:56 +02:00
REGISTER_SCRIPTFUNCTION(range, &ScriptUtils::Range);
REGISTER_SCRIPTFUNCTION(exit, &Application::Exit);
2014-11-03 00:44:04 +01:00
REGISTER_SCRIPTFUNCTION(typeof, &ScriptUtils::TypeOf);
REGISTER_SCRIPTFUNCTION(keys, &ScriptUtils::Keys);
2014-11-03 17:21:33 +01:00
REGISTER_SCRIPTFUNCTION(random, &Utility::Random);
2014-11-12 19:08:36 +01:00
REGISTER_SCRIPTFUNCTION(__get_object, &ScriptUtils::GetObject);
REGISTER_SCRIPTFUNCTION(assert, &ScriptUtils::Assert);
REGISTER_SCRIPTFUNCTION(string, &ScriptUtils::CastString);
REGISTER_SCRIPTFUNCTION(number, &ScriptUtils::CastNumber);
REGISTER_SCRIPTFUNCTION(bool, &ScriptUtils::CastBool);
String ScriptUtils::CastString(const Value& value)
{
return value;
}
double ScriptUtils::CastNumber(const Value& value)
{
return value;
}
bool ScriptUtils::CastBool(const Value& value)
{
return value.ToBool();
}
bool ScriptUtils::Regex(const String& pattern, const String& text)
{
bool res = false;
try {
boost::regex expr(pattern.GetData());
boost::smatch what;
res = boost::regex_search(text.GetData(), what, expr);
} catch (boost::exception&) {
res = false; /* exception means something went terribly wrong */
}
return res;
}
int ScriptUtils::Len(const Value& value)
{
if (value.IsObjectType<Dictionary>()) {
Dictionary::Ptr dict = value;
return dict->GetLength();
} else if (value.IsObjectType<Array>()) {
Array::Ptr array = value;
return array->GetLength();
} else {
return Convert::ToString(value).GetLength();
}
}
Array::Ptr ScriptUtils::Union(const std::vector<Value>& arguments)
{
std::set<Value> values;
BOOST_FOREACH(const Value& varr, arguments) {
Array::Ptr arr = varr;
if (arr) {
BOOST_FOREACH(const Value& value, arr) {
values.insert(value);
}
}
}
Array::Ptr result = new Array();
BOOST_FOREACH(const Value& value, values) {
result->Add(value);
}
return result;
}
Array::Ptr ScriptUtils::Intersection(const std::vector<Value>& arguments)
{
if (arguments.size() == 0)
return new Array();
Array::Ptr result = new Array();
Array::Ptr arg1 = arguments[0];
if (!arg1)
return result;
Array::Ptr arr1 = arg1->ShallowClone();
2014-05-11 06:00:34 +02:00
for (std::vector<Value>::size_type i = 1; i < arguments.size(); i++) {
std::sort(arr1->Begin(), arr1->End());
Array::Ptr arg2 = arguments[i];
if (!arg2)
return result;
Array::Ptr arr2 = arg2->ShallowClone();
std::sort(arr2->Begin(), arr2->End());
result->Resize(std::max(arr1->GetLength(), arr2->GetLength()));
Array::Iterator it = std::set_intersection(arr1->Begin(), arr1->End(), arr2->Begin(), arr2->End(), result->Begin());
result->Resize(it - result->Begin());
arr1 = result;
}
return result;
}
void ScriptUtils::Log(const std::vector<Value>& arguments)
{
if (arguments.size() != 1 && arguments.size() != 3)
BOOST_THROW_EXCEPTION(std::invalid_argument("Invalid number of arguments for log()"));
LogSeverity severity;
String facility;
Value message;
if (arguments.size() == 1) {
severity = LogInformation;
facility = "config";
message = arguments[0];
} else {
int sval = static_cast<int>(arguments[0]);
severity = static_cast<LogSeverity>(sval);
facility = arguments[1];
message = arguments[2];
}
2014-11-24 18:24:47 +01:00
if (message.IsString() || (!message.IsObjectType<Array>() && !message.IsObjectType<Dictionary>()))
::Log(severity, facility, message);
else
2014-10-26 19:59:49 +01:00
::Log(severity, facility, JsonEncode(message));
}
2014-05-10 11:26:56 +02:00
Array::Ptr ScriptUtils::Range(const std::vector<Value>& arguments)
{
2014-05-11 06:00:34 +02:00
double start, end, increment;
2014-05-10 11:26:56 +02:00
switch (arguments.size()) {
case 1:
start = 0;
end = arguments[0];
increment = 1;
break;
case 2:
start = arguments[0];
end = arguments[1];
increment = 1;
break;
case 3:
start = arguments[0];
end = arguments[1];
increment = arguments[2];
break;
default:
BOOST_THROW_EXCEPTION(std::invalid_argument("Invalid number of arguments for range()"));
2014-05-10 11:26:56 +02:00
}
Array::Ptr result = new Array();
2014-05-10 11:26:56 +02:00
if ((start < end && increment <= 0) ||
(start > end && increment >= 0))
return result;
2014-05-11 06:00:34 +02:00
for (double i = start; i < end; i += increment) {
2014-05-10 11:26:56 +02:00
result->Add(i);
}
return result;
}
2014-11-03 00:44:04 +01:00
Type::Ptr ScriptUtils::TypeOf(const Value& value)
{
switch (value.GetType()) {
case ValueEmpty:
return Type::GetByName("Object");
case ValueNumber:
2014-12-09 16:43:09 +01:00
return Type::GetByName("Number");
2014-11-03 00:44:04 +01:00
case ValueString:
return Type::GetByName("String");
case ValueObject:
return static_cast<Object::Ptr>(value)->GetReflectionType();
default:
VERIFY(!"Invalid value type.");
}
}
Array::Ptr ScriptUtils::Keys(const Dictionary::Ptr& dict)
{
Array::Ptr result = new Array();
if (dict) {
ObjectLock olock(dict);
BOOST_FOREACH(const Dictionary::Pair& kv, dict) {
result->Add(kv.first);
}
}
return result;
}
2014-11-12 19:08:36 +01:00
DynamicObject::Ptr ScriptUtils::GetObject(const String& type, const String& name)
{
DynamicType::Ptr dtype = DynamicType::GetByName(type);
if (!dtype)
BOOST_THROW_EXCEPTION(std::invalid_argument("Invalid type name"));
return dtype->GetObject(name);
}
void ScriptUtils::Assert(const Value& arg)
{
if (!arg.ToBool())
BOOST_THROW_EXCEPTION(ConfigError("Assertion failed"));
}