|
25 | 25 | #include <app-common/zap-generated/ids/Attributes.h>
|
26 | 26 | #include <app-common/zap-generated/ids/Clusters.h>
|
27 | 27 | #include <app/AttributeAccessInterface.h>
|
| 28 | +#include <app/server/Server.h> |
28 | 29 | #include <app/util/attribute-storage.h>
|
| 30 | +#include <credentials/FabricTable.h> |
29 | 31 | #include <lib/support/CodeUtils.h>
|
30 | 32 | #include <lib/support/logging/CHIPLogging.h>
|
31 | 33 | #include <platform/DeviceInfoProvider.h>
|
@@ -184,7 +186,39 @@ CHIP_ERROR UserLabelAttrAccess::Write(const ConcreteDataAttributePath & aPath, A
|
184 | 186 |
|
185 | 187 | } // anonymous namespace
|
186 | 188 |
|
| 189 | +class UserLabelFabricTableDelegate : public chip::FabricTable::Delegate |
| 190 | +{ |
| 191 | +public: |
| 192 | + // Gets called when a fabric is deleted |
| 193 | + void OnFabricRemoved(const FabricTable & fabricTable, FabricIndex fabricIndex) override |
| 194 | + { |
| 195 | + // If the FabricIndex matches the last remaining entry in the Fabrics list, then the device SHALL delete all Matter |
| 196 | + // related data on the node which was created since it was commissioned. |
| 197 | + if (Server::GetInstance().GetFabricTable().FabricCount() == 0) |
| 198 | + { |
| 199 | + ChipLogProgress(Zcl, "UserLabel: Last Fabric index 0x%x was removed", static_cast<unsigned>(fabricIndex)); |
| 200 | + |
| 201 | + // Delete all user label data on the node which was added since it was commissioned. |
| 202 | + DeviceLayer::DeviceInfoProvider * provider = DeviceLayer::GetDeviceInfoProvider(); |
| 203 | + if (provider) |
| 204 | + { |
| 205 | + for (auto endpoint : EnabledEndpointsWithServerCluster(UserLabel::Id)) |
| 206 | + { |
| 207 | + // If UserLabel cluster is implemented on this endpoint |
| 208 | + if (CHIP_NO_ERROR != provider->ClearUserLabelList(endpoint)) |
| 209 | + { |
| 210 | + ChipLogError(Zcl, "UserLabel::Failed to clear UserLabelList for endpoint:%d", endpoint); |
| 211 | + } |
| 212 | + } |
| 213 | + } |
| 214 | + } |
| 215 | + } |
| 216 | +}; |
| 217 | + |
| 218 | +UserLabelFabricTableDelegate gUserLabelFabricDelegate; |
| 219 | + |
187 | 220 | void MatterUserLabelPluginServerInitCallback(void)
|
188 | 221 | {
|
189 | 222 | registerAttributeAccessOverride(&gAttrAccess);
|
| 223 | + Server::GetInstance().GetFabricTable().AddFabricDelegate(&gUserLabelFabricDelegate); |
190 | 224 | }
|
0 commit comments