Skip to content

Commit a174d22

Browse files
committed
samples: matter: lock: Extract lambda to separate function
Address SonarQube issue regarding too long lambda body. Signed-off-by: Adrian Gielniewski <adrian.gielniewski@nordicsemi.no>
1 parent 09e1880 commit a174d22

File tree

2 files changed

+53
-47
lines changed

2 files changed

+53
-47
lines changed

samples/matter/lock/src/app_task.cpp

+52-47
Original file line numberDiff line numberDiff line change
@@ -176,53 +176,9 @@ void AppTask::UpdateClusterState(const BoltLockManager::StateData &stateData)
176176
return;
177177
}
178178

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);
226182
});
227183

228184
if (err != CHIP_NO_ERROR) {
@@ -231,6 +187,55 @@ void AppTask::UpdateClusterState(const BoltLockManager::StateData &stateData)
231187
}
232188
}
233189

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+
234239
#ifdef CONFIG_CHIP_NUS
235240
void AppTask::NUSLockCallback(void *context)
236241
{

samples/matter/lock/src/app_task.h

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class AppTask {
4141
static void LockActionEventHandler();
4242
static void ButtonEventHandler(Nrf::ButtonState state, Nrf::ButtonMask hasChanged);
4343
static void LockStateChanged(const BoltLockManager::StateData &stateData);
44+
static void UpdateClusterStateHandler(const BoltLockManager::StateData &stateData);
4445

4546
#ifdef CONFIG_THREAD_WIFI_SWITCHING
4647
static void SwitchTransportEventHandler();

0 commit comments

Comments
 (0)