Bluenet  5.7.0
Bluenet, firmware for nRF52 smart home devices
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
cs_BehaviourHandler.h
Go to the documentation of this file.
1/*
2 * Author: Crownstone Team
3 * Copyright: Crownstone (https://crownstone.rocks)
4 * Date: Dec 20, 2019
5 * License: LGPLv3+, Apache License 2.0, and/or MIT (triple-licensed)
6 */
7#pragma once
8
11#include <common/cs_Component.h>
14#include <test/cs_TestAccess.h>
15
16#include <optional>
17
19 friend class TestAccess<BehaviourHandler>;
20
21public:
25 virtual cs_ret_code_t init() override;
26
27 virtual ~BehaviourHandler() = default;
38 virtual void handleEvent(event_t& evt);
39
48 bool update();
49
54 std::optional<uint8_t> getValue();
55
60
65
73 bool validateBehaviour(Behaviour* behaviour) const;
74
75private:
80
85
89 std::optional<uint8_t> previousIntendedState = {};
90
94 std::optional<uint8_t> currentIntendedState = {};
95
100 bool _isActive = true;
101
106
110 std::optional<behaviour_settings_t> _receivedBehaviourSettings = {};
111
112 // -----------------------------------------------------------------------
113 // --------------------------- private methods ---------------------------
114 // -----------------------------------------------------------------------
115
131 std::optional<uint8_t> computeIntendedState(Time currenttime, PresenceStateDescription currentpresence) const;
132
141
143
149 Behaviour* behaviour, Time currentTime, PresenceStateDescription currentPresence) const;
150
156 Behaviour* behaviour, Time currentTime, PresenceStateDescription currentPresence) const;
157
158 // -----------------------------------------------------------------------
159 // --------------------------- synchronization ---------------------------
160 // -----------------------------------------------------------------------
161
163
168
174
180
185
191};
Definition: cs_BehaviourHandler.h:18
TwilightBehaviour * validateTwilightBehaviour(Behaviour *behaviour, Time currentTime, PresenceStateDescription currentPresence) const
bool validateBehaviour(Behaviour *behaviour) const
Checks if the given behaviour is valid.
void onBehaviourSettingsChange(behaviour_settings_t settings)
To be called when the behaviour settings were changed, and on sync response.
std::optional< uint8_t > currentIntendedState
The last value that was updated by the update method.
Definition: cs_BehaviourHandler.h:94
bool onBehaviourSettingsOutgoingSyncRequest()
Returns true when the behaviour settings should be synced.
bool requiresAbsence(Time t)
Returns true if a behaviour at given time requires absence.
void tryFinalizeBehaviourSettingsSync()
If there was any behaviour settings sync response, the behaviour settings sync will be finalized.
virtual ~BehaviourHandler()=default
std::optional< uint8_t > getValue()
Returns currentIntendedState variable and updates the previousIntendedState to currentIntendedState t...
std::optional< uint8_t > previousIntendedState
The last value returned by getValue.
Definition: cs_BehaviourHandler.h:89
virtual void handleEvent(event_t &evt)
Computes the intended behaviour state of this crownstone based on the stored behaviours,...
void onMeshSyncFailed()
Finalizes the behaviour settings sync.
bool requiresPresence(Time t)
Returns true if a behaviour at given time requires presence.
bool update()
Acquires the current time and presence information.
void handleGetBehaviourDebug(event_t &evt)
void onBehaviourSettingsIncomingSyncRequest()
Sends a sync response.
void onBehaviourSettingsMeshMsg(behaviour_settings_t settings)
bool _behaviourSettingsSynced
Whether the behaviour settings are synced.
Definition: cs_BehaviourHandler.h:105
std::optional< uint8_t > computeIntendedState(Time currenttime, PresenceStateDescription currentpresence) const
Given current time/presence, query the behaviourstore and check if there any valid ones.
SwitchBehaviour * validateSwitchBehaviour(Behaviour *behaviour, Time currentTime, PresenceStateDescription currentPresence) const
virtual cs_ret_code_t init() override
Obtains a pointer to presence handler, if it exists.
PresenceHandler * _presenceHandler
Cached reference to the presence handler.
Definition: cs_BehaviourHandler.h:79
std::optional< behaviour_settings_t > _receivedBehaviourSettings
Cache the received behaviour settings during syncing.
Definition: cs_BehaviourHandler.h:110
SwitchBehaviour * resolveSwitchBehaviour(Time currentTime, PresenceStateDescription currentPresence) const
Returns most specific active switch behaviour, resolving conflicts.
bool _isActive
setting this to false will result in a BehaviourHandler that will not have an opinion about the state...
Definition: cs_BehaviourHandler.h:100
BehaviourStore * _behaviourStore
cached reference to the behaviour store.
Definition: cs_BehaviourHandler.h:84
Keeps track of the behaviours that are active on this crownstone.
Definition: cs_BehaviourStore.h:25
Class to derrive behaviours from, centralizing common variables such as from and until times.
Definition: cs_Behaviour.h:20
Helper class to manage decoupling of components.
Definition: cs_Component.h:35
Event listener.
Definition: cs_EventListener.h:17
Keeps up all the locations each profile is present in.
Definition: cs_PresenceHandler.h:22
Class that holds the presence of a profile.
Definition: cs_PresenceDescription.h:23
Object that defines when a state transition should occur.
Definition: cs_SwitchBehaviour.h:26
Definition: cs_TestAccess.h:11
Author: Crownstone Team Copyright: Crownstone (https://crownstone.rocks) Date: Sep 24,...
Definition: cs_Time.h:14
Definition: cs_TwilightBehaviour.h:26
Author: Crownstone Team Copyright: Crownstone (https://crownstone.rocks) Date: Oct 9,...
Definition: cs_Event.h:26
uint16_t cs_ret_code_t
Definition: cs_Typedefs.h:21
Behaviour settings.
Definition: cs_Packets.h:207