summaryrefslogtreecommitdiffstats
path: root/src/conditions.hpp
blob: b6136798d2cba12789ec1258669805a686167d25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#pragma once

#include <algorithm>
#include "data_types.hpp"

namespace phosphor
{
namespace dbus
{
namespace monitoring
{
namespace condition
{

/**
 * @brief A condition used to trigger an action when a number of items are at
 * or above a given value
 * @details A given group of items is updated with their last known item
 * value, which then the entire group is checked if there are a given number of
 * them at or above a value which would cause the condition to be true
 *
 * @param[in] items - Group of items
 * @param[in] path - Path of a item within the group
 * @param[in] count - Number of items needed at or above value
 * @param[in] value - Value of items to be at or above
 *
 * @return Lambda function
 *     A lambda function to determine if the number of items within the group
 *     are at or above the given value
 */
template <typename T>
auto countAtOrAbove(Group& items, const char* path, size_t count, T&& value)
{
    return [&items,
            path,
            count,
            value = std::forward<T>(value)](T&& arg)
    {
        Group::iterator it =
            std::find_if(items.begin(),
                         items.end(),
                         [&path](auto const& item)
                         {
                             return std::get<0>(item) == path;
                         });
        if (it != std::end(items))
        {
            std::get<1>(*it) = arg;
        }
        size_t condCount =
            std::count_if(items.begin(),
                          items.end(),
                          [&value](auto const& item)
                          {
                              return std::get<1>(item) >= value;
                          });
        return condCount >= count;
    };
}

} // namespace condition
} // namespace monitoring
} // namespace dbus
} // namespace phosphor
OpenPOWER on IntegriCloud