@@ -31,18 +31,68 @@ namespace app {
31
31
namespace Clusters {
32
32
namespace Thermostat {
33
33
34
+ /* *
35
+ * @brief The AtomicWriteDelegate handles actual execution of the atomic write by the cluster
36
+ *
37
+ */
34
38
class AtomicWriteDelegate
35
39
{
36
40
public:
37
41
AtomicWriteDelegate () = default ;
38
42
39
43
virtual ~AtomicWriteDelegate () = default ;
40
44
41
- virtual imcode OnBeginWrite (EndpointId endpoint, AttributeId attributeId) = 0;
45
+ /* *
46
+ * @brief OnBeginWrite is called when the client has successfully started an atomic write. The server should begin pending any
47
+ * writes to the associated attribute; if it is not capable for any reason, it should return an error code, and the atomic write
48
+ * will be discarded
49
+ *
50
+ * @param endpoint The endpoint for the atomic write
51
+ * @param attributeId The attribute for the associated atomic write
52
+ * @return Success, if the server is able to pend writes; otherwise an error code.
53
+ */
54
+ virtual imcode OnBeginWrite (EndpointId endpoint, AttributeId attributeId) = 0;
55
+
56
+ /* *
57
+ * @brief OnPreCommitWrite is called when a client attempts to commit an atomic write. The server should evaluate writes to this
58
+ * attribute, and return an error code if they would not be successful. This method should not have any side effects; even if it
59
+ * returns Success, any pending changes may still be discarded if OnPreCommit fails for a separate attribute included in the
60
+ * atomic write
61
+ *
62
+ * @param endpoint The endpoint for the atomic write
63
+ * @param attributeId The attribute for the associated atomic write
64
+ * @return Success, if the pending writes would succeed; otherwise an error code.
65
+ */
42
66
virtual imcode OnPreCommitWrite (EndpointId endpoint, AttributeId attributeId) = 0;
43
- virtual imcode OnCommitWrite (EndpointId endpoint, AttributeId attributeId) = 0;
44
- virtual imcode OnRollbackWrite (EndpointId endpoint, AttributeId attributeId) = 0;
45
67
68
+ /* *
69
+ * @brief OnCommitWrite is called when a client attempts to commit an atomic write, and all calls to OnPreCommitWrite were
70
+ * successful.
71
+ *
72
+ * @param endpoint The endpoint for the atomic write
73
+ * @param attributeId The attribute for the associated atomic write
74
+ * @return Success, if the pending writes succeeded; otherwise an error code.
75
+ */
76
+ virtual imcode OnCommitWrite (EndpointId endpoint, AttributeId attributeId) = 0;
77
+
78
+ /* *
79
+ * @brief OnRollbackWrite is called when a client attempts to rollback an atomic write, or when the timeout expires without the
80
+ * client attempting to commit or rollback the atomic write
81
+ *
82
+ * @param endpoint The endpoint for the atomic write
83
+ * @param attributeId The attribute for the associated atomic write
84
+ * @return Success, if rolling back pending writes succeeded; otherwise an error code.
85
+ */
86
+ virtual imcode OnRollbackWrite (EndpointId endpoint, AttributeId attributeId) = 0;
87
+
88
+ /* *
89
+ * @brief Get the maximum write time out for a given attribute
90
+ *
91
+ * @param endpoint The endpoint for the atomic write
92
+ * @param attributeId The attribute for the associated atomic write
93
+ * @return The maximum milliseconds a server is willing to wait for an atomic write to succeed for the given attribute, or
94
+ * nullopt if the server can not determine the maximum
95
+ */
46
96
virtual std::optional<System::Clock::Milliseconds16> GetWriteTimeout (EndpointId endpoint, AttributeId attributeId) = 0;
47
97
};
48
98
@@ -54,53 +104,110 @@ class AtomicWriteManager
54
104
virtual ~AtomicWriteManager () = default ;
55
105
56
106
/* *
57
- * @brief Gets whether an atomic write is in progress for the given endpoint and attribute
107
+ * @brief Check if there is an open atomic write on an endpoint, optionally associated with a specific attribute
58
108
*
59
- * @param[in] attributeId The attribute ID.
60
- * @param[in] endpoint The endpoint.
61
- *
62
- * @return Whether an atomic write is in progress for the given endpoint
109
+ * @param attributeId Optional attribute filter
110
+ * @param endpoint The endpoint to check atomic write state
111
+ * @return true if there is an open atomic write
112
+ * @return false if there is not at open atomic write
63
113
*/
64
114
virtual bool InWrite (const std::optional<AttributeId> attributeId, EndpointId endpoint) = 0;
65
115
66
116
/* *
67
- * @brief Gets whether an atomic write is in progress for the given endpoint and attribute
68
- *
69
- * @param[in] attributeId The attribute ID.
70
- * @param[in] subjectDescriptor The subject descriptor.
71
- * @param[in] endpoint The endpoint.
117
+ * @brief Check if there is an open atomic write on an endpoint, associated with a given SubjectDescriptor, and optionally
118
+ * associated with a specific attribute
72
119
*
73
- * @return Whether an atomic write is in progress for the given endpoint
120
+ * @param attributeId Optional attribute filter
121
+ * @param subjectDescriptor The subject descriptor to check against
122
+ * @param endpoint The endpoint to check atomic write state
123
+ * @return true if there is an open atomic write
124
+ * @return false if there is not an open atomic write
74
125
*/
75
126
virtual bool InWrite (const std::optional<AttributeId> attributeId, const Access::SubjectDescriptor & subjectDescriptor,
76
127
EndpointId endpoint) = 0;
77
128
78
129
/* *
79
- * @brief Gets whether an atomic write is in progress for the given endpoint and attribute
130
+ * @brief Check if there is an open atomic write on an endpoint, associated with the source node for a given command invocation,
131
+ * and optionally associated with a specific attribute
80
132
*
81
- * @param[in] attributeId The attribute ID.
82
- * @param[in] commandObj The command handler.
83
- * @param[in] endpoint The endpoint.
84
- *
85
- * @return Whether an atomic write is in progress for the given endpoint
133
+ * @param attributeId
134
+ * @param commandObj
135
+ * @param endpoint
136
+ * @return true
137
+ * @return false
86
138
*/
87
139
virtual bool InWrite (const std::optional<AttributeId> attributeId, CommandHandler * commandObj, EndpointId endpoint) = 0;
88
140
141
+ /* *
142
+ * @brief Check if there is an open atomic write on an endpoint, associated with the source node for a given command invocation,
143
+ * and associated with the set of attribute IDs
144
+ *
145
+ * @param attributeIds The set of attribute IDs to check against
146
+ * @param commandObj The command being invoked
147
+ * @param endpoint The endpoint for the atomic write
148
+ * @return true if there is an open atomic write
149
+ * @return false if there is not an open atomic write
150
+ */
89
151
virtual bool InWrite (const DataModel::DecodableList<AttributeId>::Iterator attributeIds, CommandHandler * commandObj,
90
152
EndpointId endpoint) = 0;
91
153
154
+ /* *
155
+ * @brief Attempt to start an atomic write
156
+ *
157
+ * @param commandObj The AtomicRequest command
158
+ * @param commandPath The path for the command
159
+ * @param commandData The payload of the command
160
+ * @return true if the atomic write was opened
161
+ * @return false if the atomic write was not opened
162
+ */
92
163
virtual bool BeginWrite (chip::app::CommandHandler * commandObj, const ConcreteCommandPath & commandPath,
93
164
const Commands::AtomicRequest::DecodableType & commandData) = 0;
94
165
166
+ /* *
167
+ * @brief Attempt to commit an atomic write; returns true if the server is able to commit or failed trying, false if it was
168
+ * unable to find a matching atomic write
169
+ *
170
+ * @param commandObj The AtomicRequest command
171
+ * @param commandPath The path for the command
172
+ * @param commandData The payload of the command
173
+ * @return true if the atomic write was committed or rolled back
174
+ * @return false if the atomic write was not found
175
+ */
95
176
virtual bool CommitWrite (chip::app::CommandHandler * commandObj, const ConcreteCommandPath & commandPath,
96
177
const Commands::AtomicRequest::DecodableType & commandData) = 0;
97
178
179
+ /* *
180
+ * @brief Attempt to roll back an atomic write; returns true if the server is able to commit or failed trying, false if it was
181
+ * unable to find a matching atomic write
182
+ *
183
+ * @param commandObj The AtomicRequest command
184
+ * @param commandPath The path for the command
185
+ * @param commandData The payload of the command
186
+ * @return true if the atomic write was rolled back
187
+ * @return false if the atomic write was not found
188
+ */
98
189
virtual bool RollbackWrite (chip::app::CommandHandler * commandObj, const ConcreteCommandPath & commandPath,
99
190
const Commands::AtomicRequest::DecodableType & commandData) = 0;
100
191
101
- virtual void ResetWrite (EndpointId endpoint) = 0;
192
+ /* *
193
+ * @brief Reset any atomic writes associated with the given endpoint
194
+ *
195
+ * @param endpoint
196
+ */
197
+ virtual void ResetWrite (EndpointId endpoint) = 0;
198
+
199
+ /* *
200
+ * @brief Reset any atomic writes originating from a given fabric index
201
+ *
202
+ * @param fabricIndex
203
+ */
102
204
virtual void ResetWrite (FabricIndex fabricIndex) = 0;
103
205
206
+ /* *
207
+ * @brief Sets a delegate for actually executing atomic writes
208
+ *
209
+ * @param delegate
210
+ */
104
211
virtual void SetDelegate (AtomicWriteDelegate * delegate) = 0;
105
212
};
106
213
0 commit comments