summaryrefslogtreecommitdiffstats
path: root/fan_enclosure.cpp
blob: b02d6e11850d442719537731562975adbbccc1fd (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
#include <algorithm>
#include "fan_enclosure.hpp"


namespace phosphor
{
namespace fan
{
namespace presence
{

void FanEnclosure::addInventory()
{
    //TODO Add this fan to inventory
}

void FanEnclosure::updInventory()
{
    auto presPred = [](auto const& s) {return s->isPresent();};
    // Determine if all sensors show fan is not present
    auto isPresent = std::any_of(FanEnclosure::sensors.begin(),
                                 FanEnclosure::sensors.end(),
                                 presPred);
    if (!isPresent)
    {
        //TODO Update inventory for this fan
    }
}

void FanEnclosure::addSensor(
    std::unique_ptr<Sensor>&& sensor)
{
    FanEnclosure::sensors.push_back(std::move(sensor));
}

} // namespace presence
} // namespace fan
} // namespace phosphor
OpenPOWER on IntegriCloud