Skip to content

Commit a2f3500

Browse files
Apply suggestions from code review
Co-authored-by: Boris Zbarsky <bzbarsky@apple.com>
1 parent dad5709 commit a2f3500

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/app/clusters/thermostat-server/thermostat-delegate.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class Delegate
4444
* @param[in] attributeId The attribute to write to.
4545
* @return The maximum allowed timeout; nullopt if the request is invalid.
4646
*/
47-
virtual std::optional<System::Clock::Milliseconds16> GetAtomicWriteTimeout(chip::AttributeId attributeId) = 0;
47+
virtual std::optional<System::Clock::Milliseconds16> GetMaxAtomicWriteTimeout(chip::AttributeId attributeId) = 0;
4848

4949
/**
5050
* @brief Get the preset type at a given index in the PresetTypes attribute

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ using namespace chip::Protocols::InteractionModel;
3131
namespace chip {
3232
namespace app {
3333
namespace Clusters {
34-
/// @brief
3534
namespace Thermostat {
3635

3736
extern ThermostatAttrAccess gThermostatAttrAccess;
@@ -103,7 +102,7 @@ ScopedNodeId GetSourceScopedNodeId(CommandHandler * commandObj)
103102
* @return true if the attribute list was counted
104103
* @return false if there was an error reading the list
105104
*/
106-
bool countAttributeRequests(const DataModel::DecodableList<chip::AttributeId> attributeRequests, size_t & attributeRequestCount,
105+
bool CountAttributeRequests(const DataModel::DecodableList<chip::AttributeId> attributeRequests, size_t & attributeRequestCount,
107106
bool & requestedPresets, bool & requestedSchedules)
108107
{
109108
attributeRequestCount = 0;
@@ -136,7 +135,7 @@ bool countAttributeRequests(const DataModel::DecodableList<chip::AttributeId> at
136135
/// @param attributeStatuses The status of each requested attribute, plus additional attributes if needed
137136
/// @param requireAll Whether the caller requires all atomic attributes to be represented in attributeRequests
138137
/// @return Status::Success if the request is valid, an error status if it is not
139-
Status buildAttributeStatuses(const EndpointId endpoint, const DataModel::DecodableList<chip::AttributeId> attributeRequests,
138+
Status BuildAttributeStatuses(const EndpointId endpoint, const DataModel::DecodableList<chip::AttributeId> attributeRequests,
140139
size_t & attributeStatusCount,
141140
Platform::ScopedMemoryBuffer<AtomicAttributeStatusStruct::Type> & attributeStatuses, bool requireAll)
142141
{
@@ -145,7 +144,7 @@ Status buildAttributeStatuses(const EndpointId endpoint, const DataModel::Decoda
145144
attributeStatusCount = 0;
146145
if (!countAttributeRequests(attributeRequests, attributeStatusCount, requestedPresets, requestedSchedules))
147146
{
148-
// Either we errored reading the list, or one of the attributes is not supported on this server
147+
// We errored reading the list
149148
return Status::InvalidCommand;
150149
}
151150
if (attributeStatusCount == 0)
@@ -156,6 +155,7 @@ Status buildAttributeStatuses(const EndpointId endpoint, const DataModel::Decoda
156155
if (requestedPresets ^ requestedSchedules)
157156
{
158157
// Client requested presets or schedules, but not both, so we need an extra status
158+
// because we will in fact treat the atomic request as applying to both.
159159
attributeStatusCount++;
160160
}
161161
attributeStatuses.Alloc(attributeStatusCount);
@@ -272,9 +272,9 @@ ScopedNodeId ThermostatAttrAccess::GetAtomicWriteOriginatorScopedNodeId(const En
272272
return originatorNodeId;
273273
}
274274

275-
void sendAtomicResponse(CommandHandler * commandObj, const ConcreteCommandPath & commandPath, Status status,
275+
void SendAtomicResponse(CommandHandler * commandObj, const ConcreteCommandPath & commandPath, Status status,
276276
const Platform::ScopedMemoryBuffer<AtomicAttributeStatusStruct::Type> & attributeStatuses,
277-
size_t & attributeRequestCount, Optional<uint16_t> timeout = NullOptional)
277+
size_t attributeRequestCount, Optional<uint16_t> timeout = NullOptional)
278278
{
279279
Commands::AtomicResponse::Type response;
280280
response.statusCode = to_underlying(status);

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -560,9 +560,9 @@ Status ThermostatAttrAccess::PrecommitPresets(EndpointId endpoint)
560560

561561
bool emberAfThermostatClusterSetActivePresetRequestCallback(
562562
CommandHandler * commandObj, const ConcreteCommandPath & commandPath,
563-
const Clusters::Thermostat::Commands::SetActivePresetRequest::DecodableType & commandData)
563+
const Commands::SetActivePresetRequest::DecodableType & commandData)
564564
{
565-
auto status = Clusters::Thermostat::gThermostatAttrAccess.SetActivePreset(commandPath.mEndpointId, commandData.presetHandle);
565+
auto status = gThermostatAttrAccess.SetActivePreset(commandPath.mEndpointId, commandData.presetHandle);
566566
commandObj->AddStatus(commandPath, status);
567567
return true;
568568
}

0 commit comments

Comments
 (0)