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