mirror of https://github.com/Icinga/icinga2.git
39 lines
851 B
C++
39 lines
851 B
C++
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#include "livestatus/maxaggregator.hpp"
|
|
|
|
using namespace icinga;
|
|
|
|
MaxAggregator::MaxAggregator(String attr)
|
|
: m_MaxAttr(std::move(attr))
|
|
{ }
|
|
|
|
MaxAggregatorState *MaxAggregator::EnsureState(AggregatorState **state)
|
|
{
|
|
if (!*state)
|
|
*state = new MaxAggregatorState();
|
|
|
|
return static_cast<MaxAggregatorState *>(*state);
|
|
}
|
|
|
|
void MaxAggregator::Apply(const Table::Ptr& table, const Value& row, AggregatorState **state)
|
|
{
|
|
Column column = table->GetColumn(m_MaxAttr);
|
|
|
|
Value value = column.ExtractValue(row);
|
|
|
|
MaxAggregatorState *pstate = EnsureState(state);
|
|
|
|
if (value > pstate->Max)
|
|
pstate->Max = value;
|
|
}
|
|
|
|
double MaxAggregator::GetResultAndFreeState(AggregatorState *state) const
|
|
{
|
|
MaxAggregatorState *pstate = EnsureState(&state);
|
|
double result = pstate->Max;
|
|
delete pstate;
|
|
|
|
return result;
|
|
}
|