2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-05-12 16:45:25 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/customvarobject.hpp"
|
2018-01-18 13:50:38 +01:00
|
|
|
#include "icinga/customvarobject-ti.cpp"
|
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);
|
|
|
|
|
2018-01-11 07:08:09 +01:00
|
|
|
void CustomVarObject::ValidateVars(const Lazy<Dictionary::Ptr>& lvalue, const ValidationUtils& utils)
|
2015-02-11 13:12:08 +01:00
|
|
|
{
|
2018-01-11 07:08:09 +01:00
|
|
|
MacroProcessor::ValidateCustomVars(this, lvalue());
|
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)
|
|
|
|
{
|
2016-08-27 12:23:09 +02:00
|
|
|
int resultTypeFilter;
|
2016-06-21 14:46:01 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|