@@ -402,6 +402,28 @@ CHIP_ERROR ThermostatAttrAccess::AppendPendingPreset(Thermostat::Delegate * dele
402
402
return CHIP_IM_GLOBAL_STATUS (ConstraintError);
403
403
}
404
404
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
+
405
427
return delegate->AppendToPendingPresetList (preset);
406
428
}
407
429
@@ -504,25 +526,6 @@ Status ThermostatAttrAccess::PrecommitPresets(EndpointId endpoint)
504
526
}
505
527
}
506
528
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.
526
529
return Status::Success;
527
530
}
528
531
0 commit comments