2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-05-12 10:45:25 -04:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "icinga/customvarobject.hpp"
|
2018-01-18 07:50:38 -05:00
|
|
|
#include "icinga/customvarobject-ti.cpp"
|
2015-02-11 10:08:02 -05:00
|
|
|
#include "icinga/macroprocessor.hpp"
|
2014-10-19 08:21:12 -04:00
|
|
|
#include "base/logger.hpp"
|
2015-02-11 07:12:08 -05:00
|
|
|
#include "base/function.hpp"
|
|
|
|
|
#include "base/exception.hpp"
|
|
|
|
|
#include "base/objectlock.hpp"
|
2014-05-12 10:45:25 -04:00
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
|
|
REGISTER_TYPE(CustomVarObject);
|
|
|
|
|
|
2018-01-11 01:08:09 -05:00
|
|
|
void CustomVarObject::ValidateVars(const Lazy<Dictionary::Ptr>& lvalue, const ValidationUtils& utils)
|
2015-02-11 07:12:08 -05:00
|
|
|
{
|
2018-01-11 01:08:09 -05:00
|
|
|
MacroProcessor::ValidateCustomVars(this, lvalue());
|
2015-02-11 09:47:45 -05:00
|
|
|
}
|
2016-06-21 08:46:01 -04:00
|
|
|
|
|
|
|
|
int icinga::FilterArrayToInt(const Array::Ptr& typeFilters, const std::map<String, int>& filterMap, int defaultValue)
|
|
|
|
|
{
|
2016-08-27 06:23:09 -04:00
|
|
|
int resultTypeFilter;
|
2016-06-21 08:46:01 -04:00
|
|
|
|
|
|
|
|
if (!typeFilters)
|
|
|
|
|
return defaultValue;
|
|
|
|
|
|
|
|
|
|
resultTypeFilter = 0;
|
|
|
|
|
|
|
|
|
|
ObjectLock olock(typeFilters);
|
2016-08-25 00:19:44 -04:00
|
|
|
for (const Value& typeFilter : typeFilters) {
|
2016-06-21 08:46:01 -04:00
|
|
|
if (typeFilter.IsNumber()) {
|
|
|
|
|
resultTypeFilter = resultTypeFilter | typeFilter;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!typeFilter.IsString())
|
|
|
|
|
return -1;
|
|
|
|
|
|
2016-08-27 02:33:15 -04:00
|
|
|
auto it = filterMap.find(typeFilter);
|
2016-06-21 08:46:01 -04:00
|
|
|
|
|
|
|
|
if (it == filterMap.end())
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
resultTypeFilter = resultTypeFilter | it->second;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return resultTypeFilter;
|
|
|
|
|
}
|