forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenergy-preference-server.h
107 lines (94 loc) · 4.43 KB
/
energy-preference-server.h
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/**
*
* Copyright (c) 2024 Project CHIP Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <stddef.h>
#include <app-common/zap-generated/cluster-enums.h>
#include <app-common/zap-generated/cluster-objects.h>
#include <app/util/basic-types.h>
#include <lib/core/CHIPError.h>
namespace chip::app::Clusters::EnergyPreference {
struct Delegate
{
// Note: This delegate does not handle the "Current Active" indexes attributes storage.
// eg: Current Energy Balance and Current Low Power Mode Sensitivity. These can be handled using
// ember built in storage, or via the external callbacks as desired by the implementer.
virtual ~Delegate() {}
/**
* Get an Energy Balance.
*
* The delegate method is called by the cluster to fill out the
* values for the list in EnergyBalances attribute. Storage for
* both aOutStep and aOutLabel is provided by the caller.
*
* @param aEndpoint The endpoint to query.
* @param aIndex The index of the balance, with 0 representing the first one.
* @param aOutStep The Step value from BalanceStruct
*
* @param aOutLabel The Label value from BalanceStruct. Storage is
* provided by the caller, and is large enough to accomodate the
* longest label (64 chars), on successful return the size of the span must be
* adjusted to reflect the length of the value.
*
* @return CHIP_ERROR_NOT_FOUND if the index is out of range.
*/
virtual CHIP_ERROR GetEnergyBalanceAtIndex(chip::EndpointId aEndpoint, size_t aIndex, chip::Percent & aOutStep,
chip::Optional<chip::MutableCharSpan> & aOutLabel) = 0;
/**
* Get an Energy Priority.
* @param aEndpoint The endpoint to query.
* @param aIndex The index of the priority, with 0 representing the first one.
* @param aOutPriority The EnergyPriorityEnum to copy the data into.
* @return CHIP_ERROR_NOT_FOUND if the index is out of range.
*/
virtual CHIP_ERROR GetEnergyPriorityAtIndex(chip::EndpointId aEndpoint, size_t aIndex,
chip::app::Clusters::EnergyPreference::EnergyPriorityEnum & aOutPriority) = 0;
/**
* Get a Power Sensitity Balance Struct data at the specified index.
*
* The delegate method is called by the cluster to fill out the
* values for the list in LowPowerSensitivities attribute. Storage for
* both aOutStep and aOutLabel is provided by the caller.
*
* @param aEndpoint The endpoint to query.
* @param aIndex The index of the priority, with 0 representing the first one.
* @param aOutStep The Step value from BalanceStruct
*
* @param aOutLabel The Label value from BalanceStruct. Storage is
* provided by the caller, and is large enough to accomodate the
* longest label (64 chars), on successful return the size of the span must be
* adjusted to reflect the length of the value.
*
* @return CHIP_ERROR_NOT_FOUND if the index is out of range.
*/
virtual CHIP_ERROR GetLowPowerModeSensitivityAtIndex(chip::EndpointId aEndpoint, size_t aIndex, chip::Percent & aOutStep,
chip::Optional<chip::MutableCharSpan> & aOutLabel) = 0;
/**
* Get the number of energy balances this endpoint has.
* @param aEndpoint The endpoint to query.
* @return the number of balance structs in the list.
*/
virtual size_t GetNumEnergyBalances(chip::EndpointId aEndpoint) = 0;
/**
* Get the number of low power mode sensitivities this endpoint has.
* @param aEndpoint The endpoint to query.
* @return the number of balance structs in the list.
*/
virtual size_t GetNumLowPowerModeSensitivities(chip::EndpointId aEndpoint) = 0;
};
void SetDelegate(Delegate * aDelegate);
Delegate * GetDelegate();
} // namespace chip::app::Clusters::EnergyPreference