103aff08eSMatthew Barth #include "preconditions.hpp"
23e1bb274SMatthew Barth
303aff08eSMatthew Barth #include "zone.hpp"
403aff08eSMatthew Barth
53e1bb274SMatthew Barth #include <phosphor-logging/log.hpp>
63e1bb274SMatthew Barth
73e1bb274SMatthew Barth #include <algorithm>
83e1bb274SMatthew Barth
903aff08eSMatthew Barth namespace phosphor
1003aff08eSMatthew Barth {
1103aff08eSMatthew Barth namespace fan
1203aff08eSMatthew Barth {
1303aff08eSMatthew Barth namespace control
1403aff08eSMatthew Barth {
1503aff08eSMatthew Barth namespace precondition
1603aff08eSMatthew Barth {
1703aff08eSMatthew Barth
1803aff08eSMatthew Barth using namespace phosphor::fan;
193e1bb274SMatthew Barth using namespace phosphor::logging;
2003aff08eSMatthew Barth
property_states_match(std::vector<PrecondGroup> && pg,std::vector<SetSpeedEvent> && sse)2103aff08eSMatthew Barth Action property_states_match(std::vector<PrecondGroup>&& pg,
2203aff08eSMatthew Barth std::vector<SetSpeedEvent>&& sse)
2303aff08eSMatthew Barth {
243e1bb274SMatthew Barth return [pg = std::move(pg), sse = std::move(sse)](auto& zone, auto& group) {
2503aff08eSMatthew Barth // Compare given precondition entries
26*dfddd648SPatrick Williams auto precondState =
27*dfddd648SPatrick Williams std::all_of(pg.begin(), pg.end(), [&zone](const auto& entry) {
2803aff08eSMatthew Barth try
2903aff08eSMatthew Barth {
30*dfddd648SPatrick Williams return zone.getPropValueVariant(
31*dfddd648SPatrick Williams std::get<pcPathPos>(entry),
3203aff08eSMatthew Barth std::get<pcIntfPos>(entry),
3303aff08eSMatthew Barth std::get<pcPropPos>(entry)) ==
3403aff08eSMatthew Barth std::get<pcValuePos>(entry);
3503aff08eSMatthew Barth }
3603aff08eSMatthew Barth catch (const std::out_of_range& oore)
3703aff08eSMatthew Barth {
3803aff08eSMatthew Barth // Default to property variants not equal when not found
3903aff08eSMatthew Barth return false;
4003aff08eSMatthew Barth }
4103aff08eSMatthew Barth });
4203aff08eSMatthew Barth
4303aff08eSMatthew Barth if (precondState)
4403aff08eSMatthew Barth {
4503aff08eSMatthew Barth log<level::DEBUG>(
4603aff08eSMatthew Barth "Preconditions passed, init the associated events",
4703aff08eSMatthew Barth entry("EVENT_COUNT=%u", sse.size()));
4803aff08eSMatthew Barth // Init the events when all the precondition(s) are true
49*dfddd648SPatrick Williams std::for_each(sse.begin(), sse.end(), [&zone](const auto& entry) {
5003aff08eSMatthew Barth zone.initEvent(entry);
5103aff08eSMatthew Barth });
5203aff08eSMatthew Barth }
5303aff08eSMatthew Barth else
5403aff08eSMatthew Barth {
5503aff08eSMatthew Barth log<level::DEBUG>(
5603aff08eSMatthew Barth "Preconditions not met for events, events removed if present",
5703aff08eSMatthew Barth entry("EVENT_COUNT=%u", sse.size()));
5803aff08eSMatthew Barth // Unsubscribe the events' signals when any precondition is false
59*dfddd648SPatrick Williams std::for_each(sse.begin(), sse.end(), [&zone](const auto& entry) {
6003aff08eSMatthew Barth zone.removeEvent(entry);
6103aff08eSMatthew Barth });
6203aff08eSMatthew Barth zone.setFullSpeed();
6303aff08eSMatthew Barth }
6403aff08eSMatthew Barth // Update group's fan control active allowed
6503aff08eSMatthew Barth zone.setActiveAllow(&group, precondState);
6603aff08eSMatthew Barth };
6703aff08eSMatthew Barth }
6803aff08eSMatthew Barth
services_missing_owner(std::vector<SetSpeedEvent> && sse)6936cfcecaSMatthew Barth Action services_missing_owner(std::vector<SetSpeedEvent>&& sse)
7036cfcecaSMatthew Barth {
713e1bb274SMatthew Barth return [sse = std::move(sse)](auto& zone, auto& group) {
7236cfcecaSMatthew Barth // Set/update the services of the group
7336cfcecaSMatthew Barth zone.setServices(&group);
7436cfcecaSMatthew Barth const auto& services = zone.getGroupServices(&group);
75*dfddd648SPatrick Williams auto precondState =
76*dfddd648SPatrick Williams std::any_of(services.begin(), services.end(), [](const auto& s) {
77*dfddd648SPatrick Williams return !std::get<hasOwnerPos>(s);
78*dfddd648SPatrick Williams });
7936cfcecaSMatthew Barth
8036cfcecaSMatthew Barth if (precondState)
8136cfcecaSMatthew Barth {
8236cfcecaSMatthew Barth // Init the events when all the precondition(s) are true
83*dfddd648SPatrick Williams std::for_each(sse.begin(), sse.end(), [&zone](const auto& entry) {
8436cfcecaSMatthew Barth zone.initEvent(entry);
8536cfcecaSMatthew Barth });
8636cfcecaSMatthew Barth }
8736cfcecaSMatthew Barth else
8836cfcecaSMatthew Barth {
8936cfcecaSMatthew Barth // Unsubscribe the events' signals when any precondition is false
90*dfddd648SPatrick Williams std::for_each(sse.begin(), sse.end(), [&zone](const auto& entry) {
9136cfcecaSMatthew Barth zone.removeEvent(entry);
9236cfcecaSMatthew Barth });
9336cfcecaSMatthew Barth }
9436cfcecaSMatthew Barth };
9536cfcecaSMatthew Barth }
9636cfcecaSMatthew Barth
9703aff08eSMatthew Barth } // namespace precondition
9803aff08eSMatthew Barth } // namespace control
9903aff08eSMatthew Barth } // namespace fan
10003aff08eSMatthew Barth } // namespace phosphor
101