Skip to content

Commit 26ec08f

Browse files
[Scenes] Scenes-Server on Fabric Removal (project-chip#30419)
Added Fabric Removal callback to the scenes-server
1 parent aeee127 commit 26ec08f

File tree

5 files changed

+1483
-0
lines changed

5 files changed

+1483
-0
lines changed

src/app/clusters/scenes-server/SceneTable.h

+8
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,14 @@ class SceneTable
284284
virtual CHIP_ERROR SceneApplyEFS(const SceneTableEntry & scene) = 0;
285285

286286
// Fabrics
287+
288+
/**
289+
* @brief Removes all scenes associated with a fabric index and the stored FabricSceneData that maps them
290+
* @param fabric_index Fabric index to remove
291+
* @return CHIP_ERROR, CHIP_NO_ERROR if successful or if the Fabric was not found, specific CHIP_ERROR otherwise
292+
* @note This function is meant to be used after a fabric is removed from the device, the implementation MUST ensure that it
293+
* won't interact with the actual fabric table as it will be removed beforehand.
294+
*/
287295
virtual CHIP_ERROR RemoveFabric(FabricIndex fabric_index) = 0;
288296
virtual CHIP_ERROR RemoveEndpoint() = 0;
289297

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

+14
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,19 @@ ScenesServer & ScenesServer::Instance()
104104
}
105105
void ReportAttributeOnAllEndpoints(AttributeId attribute) {}
106106

107+
class ScenesClusterFabricDelegate : public chip::FabricTable::Delegate
108+
{
109+
void OnFabricRemoved(const FabricTable & fabricTable, FabricIndex fabricIndex) override
110+
{
111+
SceneTable * sceneTable = scenes::GetSceneTableImpl();
112+
VerifyOrReturn(nullptr != sceneTable);
113+
// The implementation of SceneTable::RemoveFabric() must not call back into the FabricTable
114+
sceneTable->RemoveFabric(fabricIndex);
115+
}
116+
};
117+
118+
static ScenesClusterFabricDelegate gFabricDelegate;
119+
107120
CHIP_ERROR ScenesServer::Init()
108121
{
109122
// Prevents re-initializing
@@ -115,6 +128,7 @@ CHIP_ERROR ScenesServer::Init()
115128

116129
SceneTable * sceneTable = scenes::GetSceneTableImpl();
117130
ReturnErrorOnFailure(sceneTable->Init(&chip::Server::GetInstance().GetPersistentStorage()));
131+
ReturnErrorOnFailure(chip::Server::GetInstance().GetFabricTable().AddFabricDelegate(&gFabricDelegate));
118132

119133
mIsInitialized = true;
120134
return CHIP_NO_ERROR;

0 commit comments

Comments
 (0)