summaryrefslogtreecommitdiffstats
path: root/control/preconditions.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'control/preconditions.hpp')
-rw-r--r--control/preconditions.hpp22
1 files changed, 17 insertions, 5 deletions
diff --git a/control/preconditions.hpp b/control/preconditions.hpp
index 65eb0e2..f989f0d 100644
--- a/control/preconditions.hpp
+++ b/control/preconditions.hpp
@@ -28,7 +28,7 @@ namespace precondition
* and either subscribe or unsubscribe a set speed event group.
*/
auto property_states_match(std::vector<PrecondGroup>&& pg,
- SetSpeedEvent&& sse)
+ std::vector<SetSpeedEvent>&& sse)
{
return [pg = std::move(pg),
sse = std::move(sse)](auto& zone, auto& group)
@@ -56,13 +56,25 @@ auto property_states_match(std::vector<PrecondGroup>&& pg,
if (precondState == pg.size())
{
- // Init the event when all the precondition(s) are true
- zone.initEvent(sse);
+ // Init the events when all the precondition(s) are true
+ std::for_each(
+ sse.begin(),
+ sse.end(),
+ [&zone](auto const& entry)
+ {
+ zone.initEvent(entry);
+ });
}
else
{
- // Unsubscribe the event signals when any precondition is false
- zone.removeEvent(sse);
+ // Unsubscribe the events' signals when any precondition is false
+ std::for_each(
+ sse.begin(),
+ sse.end(),
+ [&zone](auto const& entry)
+ {
+ zone.removeEvent(entry);
+ });
zone.setFullSpeed();
}
// Update group's fan control active allowed
OpenPOWER on IntegriCloud