2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-07-12 06:07:32 -04:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "livestatus/minaggregator.hpp"
|
2013-07-12 06:07:32 -04:00
|
|
|
|
2013-11-11 05:57:25 -05:00
|
|
|
using namespace icinga;
|
2013-07-12 06:07:32 -04:00
|
|
|
|
2018-01-04 02:54:18 -05:00
|
|
|
MinAggregator::MinAggregator(String attr)
|
|
|
|
|
: m_MinAttr(std::move(attr))
|
2014-07-21 07:33:51 -04:00
|
|
|
{ }
|
2013-07-12 06:07:32 -04:00
|
|
|
|
2017-08-14 09:30:06 -04:00
|
|
|
MinAggregatorState *MinAggregator::EnsureState(AggregatorState **state)
|
|
|
|
|
{
|
|
|
|
|
if (!*state)
|
|
|
|
|
*state = new MinAggregatorState();
|
|
|
|
|
|
|
|
|
|
return static_cast<MinAggregatorState *>(*state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MinAggregator::Apply(const Table::Ptr& table, const Value& row, AggregatorState **state)
|
2013-07-12 06:07:32 -04:00
|
|
|
{
|
|
|
|
|
Column column = table->GetColumn(m_MinAttr);
|
|
|
|
|
|
|
|
|
|
Value value = column.ExtractValue(row);
|
|
|
|
|
|
2017-08-14 09:30:06 -04:00
|
|
|
MinAggregatorState *pstate = EnsureState(state);
|
|
|
|
|
|
|
|
|
|
if (value < pstate->Min)
|
|
|
|
|
pstate->Min = value;
|
2013-07-12 06:07:32 -04:00
|
|
|
}
|
|
|
|
|
|
2017-08-14 09:30:06 -04:00
|
|
|
double MinAggregator::GetResultAndFreeState(AggregatorState *state) const
|
2013-07-12 06:07:32 -04:00
|
|
|
{
|
2017-08-14 09:30:06 -04:00
|
|
|
MinAggregatorState *pstate = EnsureState(&state);
|
|
|
|
|
|
|
|
|
|
double result;
|
|
|
|
|
|
|
|
|
|
if (pstate->Min == DBL_MAX)
|
|
|
|
|
result = 0;
|
2017-06-01 13:30:04 -04:00
|
|
|
else
|
2017-08-14 09:30:06 -04:00
|
|
|
result = pstate->Min;
|
|
|
|
|
|
|
|
|
|
delete pstate;
|
|
|
|
|
|
|
|
|
|
return result;
|
2013-07-12 06:07:32 -04:00
|
|
|
}
|