-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IC-Device] Add Accessor class for ClientMonitoring Cluster (#23909)
* Add Accessor class for ClientMonitoring Cluster * restyle changes * Resolve comments and failures * restyler * Replace singleton pattern with factory logic * Change nbre entries per fabric to 1 * Apply suggestions from code review Co-authored-by: Boris Zbarsky <[email protected]> * replace response sender with commandhandler * Fix spelling mistakes Co-authored-by: Tennessee Carmel-Veilleux <[email protected]> * Change return value for IM status Co-authored-by: Boris Zbarsky <[email protected]> Co-authored-by: Tennessee Carmel-Veilleux <[email protected]>
- Loading branch information
Showing
4 changed files
with
185 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/** | ||
* | ||
* Copyright (c) 2022 Project CHIP Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#include "ClientMonitoringRegistrationTable.h" | ||
|
||
namespace chip { | ||
|
||
/********************************************************** | ||
* Attributes Definition | ||
*********************************************************/ | ||
|
||
/********************************************************** | ||
* ClientMonitoringRegistrationTable Implementation | ||
*********************************************************/ | ||
|
||
ClientMonitoringRegistrationTable::ClientMonitoringRegistrationTable(FabricIndex fabricIndex) | ||
{ | ||
this->LoadFromStorage(fabricIndex); | ||
} | ||
|
||
void ClientMonitoringRegistrationTable::LoadFromStorage(FabricIndex fabricIndex) | ||
{ | ||
// TODO: Implement load from NVM logic | ||
} | ||
|
||
void ClientMonitoringRegistrationTable::SaveToStorage() | ||
{ | ||
// Store to NVM based of class attributes | ||
} | ||
|
||
NodeId ClientMonitoringRegistrationTable::getClientNodeId() | ||
{ | ||
return mRegisteredClient.clientNodeId; | ||
} | ||
|
||
uint64_t ClientMonitoringRegistrationTable::getICid() | ||
{ | ||
return mRegisteredClient.ICid; | ||
} | ||
|
||
FabricIndex ClientMonitoringRegistrationTable::getFaricIndex() | ||
{ | ||
return mRegisteredClient.fabricIndex; | ||
} | ||
|
||
void ClientMonitoringRegistrationTable::setClientNodeId(NodeId clientNodeId) | ||
{ | ||
mRegisteredClient.clientNodeId = clientNodeId; | ||
} | ||
|
||
void ClientMonitoringRegistrationTable::setICid(uint64_t ICid) | ||
{ | ||
mRegisteredClient.ICid = ICid; | ||
} | ||
|
||
void ClientMonitoringRegistrationTable::setFabricIndex(FabricIndex fabric) | ||
{ | ||
mRegisteredClient.fabricIndex = fabric; | ||
} | ||
|
||
} // namespace chip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/** | ||
* | ||
* Copyright (c) 2022 Project CHIP Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <app-common/zap-generated/cluster-objects.h> | ||
#include <lib/core/CHIPConfig.h> | ||
#include <lib/support/CodeUtils.h> | ||
#include <platform/CHIPDeviceConfig.h> | ||
|
||
namespace chip { | ||
class ClientMonitoringRegistrationTable | ||
{ | ||
public: | ||
using MonitoringRegistrationStruct = chip::app::Clusters::ClientMonitoring::Structs::MonitoringRegistration::Type; | ||
|
||
ClientMonitoringRegistrationTable(FabricIndex fabricIndex); | ||
~ClientMonitoringRegistrationTable(){}; | ||
|
||
void SaveToStorage(); | ||
|
||
// Getter | ||
NodeId getClientNodeId(); | ||
uint64_t getICid(); | ||
FabricIndex getFaricIndex(); | ||
|
||
// Setter | ||
void setClientNodeId(NodeId clientNodeId); | ||
void setICid(uint64_t ICid); | ||
void setFabricIndex(FabricIndex fabric); | ||
|
||
private: | ||
void LoadFromStorage(FabricIndex fabricIndex); | ||
MonitoringRegistrationStruct mRegisteredClient; | ||
}; | ||
|
||
} // namespace chip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters