Skip to content

Commit 7cec405

Browse files
committed
Add MatterReportingAttributeChangeCallback calls for updated attributes
1 parent 08190ae commit 7cec405

File tree

3 files changed

+21
-49
lines changed

3 files changed

+21
-49
lines changed

examples/thermostat/thermostat-common/src/atomic-write-manager.cpp

+14-6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
#include <atomic-write-manager.h>
2020

21+
#include <app/reporting/reporting.h>
2122
#include <platform/internal/CHIPDeviceLayerInternal.h>
2223

2324
using namespace chip;
@@ -436,31 +437,38 @@ bool ThermostatAtomicWriteManager::CommitWrite(chip::app::CommandHandler * comma
436437
};
437438
}
438439

439-
status = Status::Success;
440+
bool commitSuccessful = true;
440441
for (auto & attributeStatus : attributeStatuses)
441442
{
442443
auto statusCode = mDelegate->OnPreCommitWrite(endpoint, attributeStatus.attributeID);
443444
if (statusCode != Status::Success)
444445
{
445-
status = Status::Failure;
446+
commitSuccessful = false;
446447
}
447448

448449
attributeStatus.statusCode = to_underlying(statusCode);
449450
}
450451

451-
if (status == Status::Success)
452+
if (commitSuccessful)
452453
{
453454
for (auto & attributeStatus : attributeStatuses)
454455
{
455456
auto statusCode = mDelegate->OnCommitWrite(endpoint, attributeStatus.attributeID);
456457
if (statusCode != Status::Success)
457458
{
458-
status = Status::Failure;
459+
commitSuccessful = false;
459460
}
460461
attributeStatus.statusCode = to_underlying(statusCode);
461462
}
462463
}
463-
if (status == Status::Failure)
464+
if (commitSuccessful) // All attributes were successfully written
465+
{
466+
for (auto & attributeStatus : attributeStatuses)
467+
{
468+
MatterReportingAttributeChangeCallback(endpoint, Clusters::Thermostat::Id, attributeStatus.attributeID);
469+
}
470+
}
471+
else
464472
{
465473
// Either one of the calls to OnPreCommitWrite failed, or one of the calls to OnCommitWrite failed; in the former case,
466474
// discard any pending writes. Do the same for the latter, knowing that the server may be in an inconsistent state
@@ -470,7 +478,7 @@ bool ThermostatAtomicWriteManager::CommitWrite(chip::app::CommandHandler * comma
470478
}
471479
}
472480
Commands::AtomicResponse::Type response;
473-
response.statusCode = to_underlying(status);
481+
response.statusCode = to_underlying(commitSuccessful ? Status::Success : Status::Failure);
474482
response.attributeStatus =
475483
DataModel::List<const AtomicAttributeStatusStruct::Type>(attributeStatuses.data(), attributeStatuses.size());
476484
commandObj->AddResponse(commandPath, response);

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

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
#include "thermostat-server-setpoints.h"
1919
#include "thermostat-server.h"
2020

21+
#include <app/reporting/reporting.h>
22+
2123
using namespace chip;
2224
using namespace chip::app;
2325
using namespace chip::app::Clusters;
@@ -537,6 +539,9 @@ Status ThermostatAttrAccess::SetActivePreset(EndpointId endpoint, ByteSpan newPr
537539
ChipLogError(Zcl, "Failed to set ActivePresetHandle with error %" CHIP_ERROR_FORMAT, err.Format());
538540
return StatusIB(err).mStatus;
539541
}
542+
543+
MatterReportingAttributeChangeCallback(endpoint, Clusters::Thermostat::Id, ActivePresetHandle::Id);
544+
540545
return Status::Success;
541546
}
542547

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

+2-43
Original file line numberDiff line numberDiff line change
@@ -683,47 +683,6 @@ bool emberAfThermostatClusterSetActiveScheduleRequestCallback(
683683
return false;
684684
}
685685

686-
bool validAtomicAttributes(CommandHandler * commandObj, const ConcreteCommandPath & commandPath,
687-
const Commands::AtomicRequest::DecodableType & commandData, bool requireBoth)
688-
{
689-
auto attributeIdsIter = commandData.attributeRequests.begin();
690-
bool requestedPresets = false, requestedSchedules = false;
691-
while (attributeIdsIter.Next())
692-
{
693-
auto & attributeId = attributeIdsIter.GetValue();
694-
695-
switch (attributeId)
696-
{
697-
case Presets::Id:
698-
if (requestedPresets) // Double-requesting an attribute is invalid
699-
{
700-
return false;
701-
}
702-
requestedPresets = true;
703-
break;
704-
case Schedules::Id:
705-
if (requestedSchedules) // Double-requesting an attribute is invalid
706-
{
707-
return false;
708-
}
709-
requestedSchedules = true;
710-
break;
711-
default:
712-
return false;
713-
}
714-
}
715-
if (attributeIdsIter.GetStatus() != CHIP_NO_ERROR)
716-
{
717-
return false;
718-
}
719-
if (requireBoth)
720-
{
721-
return (requestedPresets && requestedSchedules);
722-
}
723-
// If the atomic request doesn't contain at least one of these attributes, it's invalid
724-
return (requestedPresets || requestedSchedules);
725-
}
726-
727686
bool emberAfThermostatClusterSetActivePresetRequestCallback(
728687
CommandHandler * commandObj, const ConcreteCommandPath & commandPath,
729688
const Clusters::Thermostat::Commands::SetActivePresetRequest::DecodableType & commandData)
@@ -808,13 +767,13 @@ bool emberAfThermostatClusterSetpointRaiseLowerCallback(app::CommandHandler * co
808767
{
809768
DesiredCoolingSetpoint = static_cast<int16_t>(CoolingSetpoint + amount * 10);
810769
CoolLimit = static_cast<int16_t>(DesiredCoolingSetpoint -
811-
EnforceCoolingSetpointLimits(DesiredCoolingSetpoint, aEndpointId));
770+
EnforceCoolingSetpointLimits(DesiredCoolingSetpoint, aEndpointId));
812771
{
813772
if (OccupiedHeatingSetpoint::Get(aEndpointId, &HeatingSetpoint) == Status::Success)
814773
{
815774
DesiredHeatingSetpoint = static_cast<int16_t>(HeatingSetpoint + amount * 10);
816775
HeatLimit = static_cast<int16_t>(DesiredHeatingSetpoint -
817-
EnforceHeatingSetpointLimits(DesiredHeatingSetpoint, aEndpointId));
776+
EnforceHeatingSetpointLimits(DesiredHeatingSetpoint, aEndpointId));
818777
{
819778
if (CoolLimit != 0 || HeatLimit != 0)
820779
{

0 commit comments

Comments
 (0)