2014-05-12 16:45:25 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2016-01-12 08:29:59 +01:00
|
|
|
* Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/) *
|
2014-05-12 16:45:25 +02: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-05-25 16:23:35 +02:00
|
|
|
#include "icinga/customvarobject.hpp"
|
2015-03-28 11:04:42 +01:00
|
|
|
#include "icinga/customvarobject.tcpp"
|
2015-02-11 16:08:02 +01:00
|
|
|
#include "icinga/macroprocessor.hpp"
|
2014-10-19 14:21:12 +02:00
|
|
|
#include "base/logger.hpp"
|
2015-02-11 13:12:08 +01:00
|
|
|
#include "base/function.hpp"
|
|
|
|
#include "base/exception.hpp"
|
|
|
|
#include "base/objectlock.hpp"
|
2014-05-12 16:45:25 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
REGISTER_TYPE(CustomVarObject);
|
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
void CustomVarObject::ValidateVars(const Dictionary::Ptr& value, const ValidationUtils& utils)
|
2015-02-11 13:12:08 +01:00
|
|
|
{
|
2015-09-22 18:18:29 +02:00
|
|
|
MacroProcessor::ValidateCustomVars(this, value);
|
2015-02-11 15:47:45 +01:00
|
|
|
}
|
2016-06-21 14:46:01 +02:00
|
|
|
|
|
|
|
int icinga::FilterArrayToInt(const Array::Ptr& typeFilters, const std::map<String, int>& filterMap, int defaultValue)
|
|
|
|
{
|
|
|
|
Value resultTypeFilter;
|
|
|
|
|
|
|
|
if (!typeFilters)
|
|
|
|
return defaultValue;
|
|
|
|
|
|
|
|
resultTypeFilter = 0;
|
|
|
|
|
|
|
|
ObjectLock olock(typeFilters);
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const Value& typeFilter : typeFilters) {
|
2016-06-21 14:46:01 +02:00
|
|
|
if (typeFilter.IsNumber()) {
|
|
|
|
resultTypeFilter = resultTypeFilter | typeFilter;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!typeFilter.IsString())
|
|
|
|
return -1;
|
|
|
|
|
2016-08-27 08:33:15 +02:00
|
|
|
auto it = filterMap.find(typeFilter);
|
2016-06-21 14:46:01 +02:00
|
|
|
|
|
|
|
if (it == filterMap.end())
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
resultTypeFilter = resultTypeFilter | it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
return resultTypeFilter;
|
|
|
|
}
|
|
|
|
|