blob: efd907987ec2b12af9a4c6b4a46712f0456610b8 [file] [log] [blame]
/*
*
* Copyright (c) 2025 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/CHIPPersistentStorageDelegate.h>
#include <lib/core/CHIPVendorIdentifiers.hpp>
#include <lib/core/NodeId.h>
namespace chip {
namespace app {
class JointFabricAdministrator
{
public:
class Delegate
{
public:
Delegate() {}
virtual ~Delegate() {}
virtual CHIP_ERROR GetIcacCsr(MutableByteSpan & icacCsr) { return CHIP_NO_ERROR; }
};
static JointFabricAdministrator & GetInstance()
{
static JointFabricAdministrator sInstance;
return sInstance;
}
void SetPeerJFAdminClusterEndpointId(chip::EndpointId peerJFAdminClusterEndpointId)
{
mPeerJFAdminClusterEndpointId = peerJFAdminClusterEndpointId;
}
CHIP_ERROR SetDelegate(JointFabricAdministrator::Delegate * delegate)
{
VerifyOrReturnError(delegate != nullptr, CHIP_ERROR_INVALID_ARGUMENT);
mDelegate = delegate;
return CHIP_NO_ERROR;
}
chip::EndpointId GetPeerJFAdminClusterEndpointId() const { return mPeerJFAdminClusterEndpointId; }
JointFabricAdministrator::Delegate * GetDelegate() { return mDelegate; }
private:
chip::EndpointId mPeerJFAdminClusterEndpointId = chip::kInvalidEndpointId;
JointFabricAdministrator::Delegate * mDelegate = nullptr;
};
} // namespace app
} // namespace chip