20
20
* Includes
21
21
*********************************************************/
22
22
23
- #include " include/thermostat-delegate-impl.h"
24
23
#include " include/thermostat-manager.h"
24
+ #include " include/thermostat-delegate-impl.h"
25
25
26
26
#include < app/clusters/bindings/BindingManager.h>
27
27
#include < app/clusters/thermostat-server/thermostat-server.h>
@@ -61,34 +61,39 @@ ThermostatManager ThermostatManager::sThermostatMgr;
61
61
namespace {
62
62
63
63
template <typename DecodableAttributeType>
64
- static void OnAttributeChangeReported (const ConcreteDataAttributePath & path, const DecodableAttributeType & value);
64
+ static void OnAttributeChangeReported (const ConcreteDataAttributePath & path, const DecodableAttributeType & value);
65
65
66
-
67
- template <>
66
+ template <>
68
67
void OnAttributeChangeReported<MeasuredValue::TypeInfo::DecodableType>(const ConcreteDataAttributePath & path,
69
- const MeasuredValue::TypeInfo::DecodableType & value)
68
+ const MeasuredValue::TypeInfo::DecodableType & value)
70
69
{
71
70
ClusterId clusterId = path.mClusterId ;
72
- if (clusterId != TemperatureMeasurement::Id) {
73
- ChipLogError (AppServer, " Attribute change reported for TemperatureMeasurement cluster on incorrect cluster id %u" , clusterId);
71
+ if (clusterId != TemperatureMeasurement::Id)
72
+ {
73
+ ChipLogError (AppServer, " Attribute change reported for TemperatureMeasurement cluster on incorrect cluster id %u" ,
74
+ clusterId);
74
75
return ;
75
76
}
76
77
77
78
AttributeId attributeId = path.mAttributeId ;
78
- if (attributeId != MeasuredValue::Id) {
79
- ChipLogError (AppServer, " Attribute change reported for TemperatureMeasurement cluster for incorrect attribute %u" , attributeId);
79
+ if (attributeId != MeasuredValue::Id)
80
+ {
81
+ ChipLogError (AppServer, " Attribute change reported for TemperatureMeasurement cluster for incorrect attribute %u" ,
82
+ attributeId);
80
83
return ;
81
84
}
82
85
83
86
if (!value.IsNull ())
84
87
{
85
- ChipLogDetail (AppServer, " Attribute change reported for TemperatureMeasurement cluster - MeasuredValue is %d" , static_cast <short >(value.Value ()));
88
+ ChipLogDetail (AppServer, " Attribute change reported for TemperatureMeasurement cluster - MeasuredValue is %d" ,
89
+ static_cast <short >(value.Value ()));
86
90
}
87
91
}
88
92
89
- static void OnError (const ConcreteDataAttributePath * path, ChipError err) {
90
- ChipLogError (AppServer, " Subscribing to cluster Id %u and attribute Id %u failed with error %" CHIP_ERROR_FORMAT, path->mClusterId ,
91
- path->mAttributeId , err.Format ());
93
+ static void OnError (const ConcreteDataAttributePath * path, ChipError err)
94
+ {
95
+ ChipLogError (AppServer, " Subscribing to cluster Id %u and attribute Id %u failed with error %" CHIP_ERROR_FORMAT,
96
+ path->mClusterId , path->mAttributeId , err.Format ());
92
97
}
93
98
94
99
static void OnSubscriptionEstablished (const ReadClient & client, unsigned int value)
@@ -98,16 +103,19 @@ static void OnSubscriptionEstablished(const ReadClient & client, unsigned int va
98
103
99
104
template <typename DecodableAttributeType>
100
105
void SubscribeToAttribute (ClusterId clusterId, AttributeId attributeId, const EmberBindingTableEntry & binding,
101
- OperationalDeviceProxy * peer_device)
106
+ OperationalDeviceProxy * peer_device)
102
107
{
103
- VerifyOrReturn (peer_device->GetSecureSession ().HasValue (), ChipLogError (AppServer, " SubscribeToAttribute failed. Secure session is null" ));
108
+ VerifyOrReturn (peer_device->GetSecureSession ().HasValue (),
109
+ ChipLogError (AppServer, " SubscribeToAttribute failed. Secure session is null" ));
104
110
105
- SubscribeAttribute<DecodableAttributeType>(peer_device->GetExchangeManager (), peer_device->GetSecureSession ().Value (), binding.remote , clusterId,
106
- attributeId, &OnAttributeChangeReported<DecodableAttributeType>, &OnError, 0 , kMaxIntervalCeilingSeconds , &OnSubscriptionEstablished, nullptr , true /* fabricFiltered */ , true /* keepExistingSubscription */ );
111
+ SubscribeAttribute<DecodableAttributeType>(
112
+ peer_device->GetExchangeManager (), peer_device->GetSecureSession ().Value (), binding.remote , clusterId, attributeId,
113
+ &OnAttributeChangeReported<DecodableAttributeType>, &OnError, 0 , kMaxIntervalCeilingSeconds , &OnSubscriptionEstablished,
114
+ nullptr , true /* fabricFiltered */ , true /* keepExistingSubscription */ );
107
115
}
108
116
109
- static void ThermostatBoundDeviceChangedHandler (const EmberBindingTableEntry & binding,
110
- OperationalDeviceProxy * peer_device, void * context)
117
+ static void ThermostatBoundDeviceChangedHandler (const EmberBindingTableEntry & binding, OperationalDeviceProxy * peer_device,
118
+ void * context)
111
119
{
112
120
VerifyOrReturn (binding.clusterId .has_value (), ChipLogError (AppServer, " Cluster Id is null" ));
113
121
ClusterId clusterId = binding.clusterId .value ();
@@ -140,7 +148,7 @@ static void OnPlatformChipDeviceEvent(const DeviceLayer::ChipDeviceEvent * event
140
148
141
149
void InitBindingManager (intptr_t context)
142
150
{
143
- auto & server = Server::GetInstance ();
151
+ auto & server = Server::GetInstance ();
144
152
CHIP_ERROR error = BindingManager::GetInstance ().Init (
145
153
{ &server.GetFabricTable (), server.GetCASESessionManager (), &server.GetPersistentStorage () });
146
154
@@ -176,7 +184,8 @@ CHIP_ERROR ThermostatManager::Init()
176
184
ChipLogError (AppServer,
177
185
" Initialized a thermostat with \n "
178
186
" mSystemMode: %hhu (%s) \n mRunningMode: %hhu (%s) \n mLocalTemperature: %d \n mOccupiedHeatingSetpoint: %d \n "
179
- " mOccupiedCoolingSetpoint: %d" " NumberOfPresets: %d" ,
187
+ " mOccupiedCoolingSetpoint: %d"
188
+ " NumberOfPresets: %d" ,
180
189
mSystemMode , SystemModeString (mSystemMode ), mRunningMode , RunningModeString (mRunningMode ), mLocalTemperature ,
181
190
mOccupiedHeatingSetpoint , mOccupiedCoolingSetpoint , GetNumberOfPresets ());
182
191
@@ -201,7 +210,6 @@ void ThermostatManager::AttributeChangeHandler(EndpointId endpointId, ClusterId
201
210
}
202
211
}
203
212
204
-
205
213
void ThermostatManager::ThermostatEndpointAttributeChangeHandler (ClusterId clusterId, AttributeId attributeId, uint8_t * value,
206
214
uint16_t size)
207
215
{
@@ -212,7 +220,8 @@ void ThermostatManager::ThermostatEndpointAttributeChangeHandler(ClusterId clust
212
220
break ;
213
221
214
222
default :
215
- ChipLogError (AppServer, " Attribute change reported for Thermostat on incorrect cluster for the thermostat endpoint. Ignoring." );
223
+ ChipLogError (AppServer,
224
+ " Attribute change reported for Thermostat on incorrect cluster for the thermostat endpoint. Ignoring." );
216
225
break ;
217
226
}
218
227
}
@@ -479,14 +488,14 @@ static const char * RunningModeString(ThermostatRunningModeEnum runningMode)
479
488
}
480
489
}
481
490
482
- void MatterPostAttributeChangeCallback (const ConcreteAttributePath & attributePath, uint8_t type, uint16_t size,
483
- uint8_t * value)
491
+ void MatterPostAttributeChangeCallback (const ConcreteAttributePath & attributePath, uint8_t type, uint16_t size, uint8_t * value)
484
492
{
485
493
ClusterId clusterId = attributePath.mClusterId ;
486
494
AttributeId attributeId = attributePath.mAttributeId ;
487
495
ChipLogProgress (AppServer, " Cluster callback: " ChipLogFormatMEI, ChipLogValueMEI (clusterId));
488
496
489
- ChipLogProgress (AppServer, " Attribute ID changed: " ChipLogFormatMEI " Endpoint: %d ClusterId: %d Type: %u Value: %u, length %u" ,
497
+ ChipLogProgress (AppServer,
498
+ " Attribute ID changed: " ChipLogFormatMEI " Endpoint: %d ClusterId: %d Type: %u Value: %u, length %u" ,
490
499
ChipLogValueMEI (attributeId), attributePath.mEndpointId , clusterId, type, *value, size);
491
500
492
501
ThermostatMgr ().AttributeChangeHandler (attributePath.mEndpointId , clusterId, attributeId, value, size);
0 commit comments