Skip to content

Commit 739a3d7

Browse files
committedAug 23, 2024··
Move the constraint check for number of presets not to exceed the number of presets supported from the atomic write commit command handling to the write request

File tree

1 file changed

+22
-19
lines changed

1 file changed

+22
-19
lines changed
 

‎src/app/clusters/thermostat-server/thermostat-server-presets.cpp

+22-19
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,28 @@ CHIP_ERROR ThermostatAttrAccess::AppendPendingPreset(Thermostat::Delegate * dele
402402
return CHIP_IM_GLOBAL_STATUS(ConstraintError);
403403
}
404404

405+
// Before adding this preset to the pending presets, if the expected length of the pending presets' list
406+
// exceeds the total number of presets supported, return RESOURCE_EXHAUSTED. Note that the preset has not been appended yet.
407+
408+
// Increment number of pending presets by 1 to account for this preset.
409+
uint8_t totalExpectedCount = CountNumberOfPendingPresets(delegate) + 1;
410+
411+
uint8_t numberOfPresetsSupported = delegate->GetNumberOfPresets();
412+
413+
if (numberOfPresetsSupported == 0)
414+
{
415+
ChipLogError(Zcl, "AppendPendingPreset: Failed to get NumberOfPresets");
416+
return CHIP_IM_GLOBAL_STATUS(InvalidInState);
417+
}
418+
419+
if (numberOfPresetsSupported > 0 && totalExpectedCount > numberOfPresetsSupported)
420+
{
421+
return CHIP_IM_GLOBAL_STATUS(ResourceExhausted);
422+
}
423+
424+
// TODO #34556 : Check if the number of presets for each presetScenario exceeds the max number of presets supported for that
425+
// scenario. We plan to support only one preset for each presetScenario for our use cases so defer this for re-evaluation.
426+
405427
return delegate->AppendToPendingPresetList(preset);
406428
}
407429

@@ -504,25 +526,6 @@ Status ThermostatAttrAccess::PrecommitPresets(EndpointId endpoint)
504526
}
505527
}
506528

507-
uint8_t totalCount = CountNumberOfPendingPresets(delegate);
508-
509-
uint8_t numberOfPresetsSupported = delegate->GetNumberOfPresets();
510-
511-
if (numberOfPresetsSupported == 0)
512-
{
513-
ChipLogError(Zcl, "emberAfThermostatClusterCommitPresetsSchedulesRequestCallback: Failed to get NumberOfPresets");
514-
return Status::InvalidInState;
515-
}
516-
517-
// If the expected length of the presets attribute with the applied changes exceeds the total number of presets supported,
518-
// return RESOURCE_EXHAUSTED. Note that the changes are not yet applied.
519-
if (numberOfPresetsSupported > 0 && totalCount > numberOfPresetsSupported)
520-
{
521-
return Status::ResourceExhausted;
522-
}
523-
524-
// TODO: Check if the number of presets for each presetScenario exceeds the max number of presets supported for that
525-
// scenario. We plan to support only one preset for each presetScenario for our use cases so defer this for re-evaluation.
526529
return Status::Success;
527530
}
528531

0 commit comments

Comments
 (0)
Please sign in to comment.