@@ -176,53 +176,9 @@ void AppTask::UpdateClusterState(const BoltLockManager::StateData &stateData)
176
176
return ;
177
177
}
178
178
179
- CHIP_ERROR err = SystemLayer ().ScheduleLambda ([stateData = stateDataCopy]() {
180
- DlLockState newLockState;
181
-
182
- switch (stateData->mState ) {
183
- case BoltLockManager::State::kLockingCompleted :
184
- newLockState = DlLockState::kLocked ;
185
- break ;
186
- case BoltLockManager::State::kUnlockingCompleted :
187
- newLockState = DlLockState::kUnlocked ;
188
- break ;
189
- default :
190
- newLockState = DlLockState::kNotFullyLocked ;
191
- break ;
192
- }
193
-
194
- chip::app::DataModel::Nullable<chip::app::Clusters::DoorLock::DlLockState> currentLockState;
195
- chip::app::Clusters::DoorLock::Attributes::LockState::Get (kLockEndpointId , currentLockState);
196
-
197
- if (currentLockState.IsNull ()) {
198
- /* Initialize lock state with start value, but not invoke lock/unlock. */
199
- chip::app::Clusters::DoorLock::Attributes::LockState::Set (kLockEndpointId , newLockState);
200
- } else {
201
- LOG_INF (" Updating LockState attribute" );
202
-
203
- Nullable<uint16_t > userId;
204
- Nullable<List<const LockOpCredentials>> credentials;
205
- List<const LockOpCredentials> credentialList;
206
-
207
- if (!stateData->mValidatePINResult .IsNull ()) {
208
- userId = { stateData->mValidatePINResult .Value ().mUserId };
209
-
210
- /* `DoorLockServer::SetLockState` exptects list of `LockOpCredentials`,
211
- however in case of PIN validation it makes no sense to have more than one
212
- credential corresponding to validation result. For simplicity we wrap single
213
- credential in list here. */
214
- credentialList = { &stateData->mValidatePINResult .Value ().mCredential , 1 };
215
- credentials = { credentialList };
216
- }
217
-
218
- if (!DoorLockServer::Instance ().SetLockState (kLockEndpointId , newLockState, stateData->mSource ,
219
- userId, credentials, stateData->mFabricIdx ,
220
- stateData->mNodeId )) {
221
- LOG_ERR (" Failed to update LockState attribute" );
222
- }
223
- }
224
-
225
- Platform::Delete (stateData);
179
+ CHIP_ERROR err = SystemLayer ().ScheduleLambda ([stateDataCopy]() {
180
+ UpdateClusterStateHandler (*stateDataCopy);
181
+ Platform::Delete (stateDataCopy);
226
182
});
227
183
228
184
if (err != CHIP_NO_ERROR) {
@@ -231,6 +187,55 @@ void AppTask::UpdateClusterState(const BoltLockManager::StateData &stateData)
231
187
}
232
188
}
233
189
190
+ void AppTask::UpdateClusterStateHandler (const BoltLockManager::StateData &stateData)
191
+ {
192
+ using namespace chip ::app::Clusters::DoorLock::Attributes;
193
+
194
+ DlLockState newLockState;
195
+
196
+ switch (stateData.mState ) {
197
+ case BoltLockManager::State::kLockingCompleted :
198
+ newLockState = DlLockState::kLocked ;
199
+ break ;
200
+ case BoltLockManager::State::kUnlockingCompleted :
201
+ newLockState = DlLockState::kUnlocked ;
202
+ break ;
203
+ default :
204
+ newLockState = DlLockState::kNotFullyLocked ;
205
+ break ;
206
+ }
207
+
208
+ Nullable<DlLockState> currentLockState;
209
+ LockState::Get (kLockEndpointId , currentLockState);
210
+
211
+ if (currentLockState.IsNull ()) {
212
+ /* Initialize lock state with start value, but not invoke lock/unlock. */
213
+ LockState::Set (kLockEndpointId , newLockState);
214
+ } else {
215
+ LOG_INF (" Updating LockState attribute" );
216
+
217
+ Nullable<uint16_t > userId;
218
+ Nullable<List<const LockOpCredentials>> credentials;
219
+ List<const LockOpCredentials> credentialList;
220
+
221
+ if (!stateData.mValidatePINResult .IsNull ()) {
222
+ userId = { stateData.mValidatePINResult .Value ().mUserId };
223
+
224
+ /* `DoorLockServer::SetLockState` exptects list of `LockOpCredentials`,
225
+ however in case of PIN validation it makes no sense to have more than one
226
+ credential corresponding to validation result. For simplicity we wrap single
227
+ credential in list here. */
228
+ credentialList = { &stateData.mValidatePINResult .Value ().mCredential , 1 };
229
+ credentials = { credentialList };
230
+ }
231
+
232
+ if (!DoorLockServer::Instance ().SetLockState (kLockEndpointId , newLockState, stateData.mSource , userId,
233
+ credentials, stateData.mFabricIdx , stateData.mNodeId )) {
234
+ LOG_ERR (" Failed to update LockState attribute" );
235
+ }
236
+ }
237
+ }
238
+
234
239
#ifdef CONFIG_CHIP_NUS
235
240
void AppTask::NUSLockCallback (void *context)
236
241
{
0 commit comments