2014-03-19 10:51:09 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
|
|
|
* Copyright (C) 2012-present 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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include "methods/utilityfuncs.h"
|
|
|
|
#include "base/scriptfunction.h"
|
|
|
|
#include "base/utility.h"
|
2014-03-19 13:25:06 +01:00
|
|
|
#include "base/convert.h"
|
|
|
|
#include "base/array.h"
|
|
|
|
#include "base/dictionary.h"
|
2014-03-19 10:51:09 +01:00
|
|
|
#include <boost/regex.hpp>
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
REGISTER_SCRIPTFUNCTION(regex, &UtilityFuncs::Regex);
|
|
|
|
REGISTER_SCRIPTFUNCTION(match, &Utility::Match);
|
2014-03-19 13:25:06 +01:00
|
|
|
REGISTER_SCRIPTFUNCTION(len, &UtilityFuncs::Len);
|
2014-03-19 10:51:09 +01:00
|
|
|
|
|
|
|
bool UtilityFuncs::Regex(const String& pattern, const String& text)
|
|
|
|
{
|
|
|
|
boost::regex expr(pattern.GetData());
|
|
|
|
boost::smatch what;
|
|
|
|
return boost::regex_search(text.GetData(), what, expr);
|
|
|
|
}
|
2014-03-19 13:25:06 +01:00
|
|
|
|
|
|
|
int UtilityFuncs::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();
|
|
|
|
}
|
|
|
|
}
|