|
| 1 | +/* |
| 2 | + * Copyright (c) 2024 Project CHIP Authors |
| 3 | + * All rights reserved. |
| 4 | + * |
| 5 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | + * you may not use this file except in compliance with the License. |
| 7 | + * You may obtain a copy of the License at |
| 8 | + * |
| 9 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + * |
| 11 | + * Unless required by applicable law or agreed to in writing, software |
| 12 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + * See the License for the specific language governing permissions and |
| 15 | + * limitations under the License. |
| 16 | + * |
| 17 | + */ |
| 18 | + |
| 19 | +#include "FabricSyncGetter.h" |
| 20 | + |
| 21 | +using namespace ::chip; |
| 22 | +using namespace ::chip::app; |
| 23 | +using chip::app::ReadClient; |
| 24 | + |
| 25 | +namespace { |
| 26 | + |
| 27 | +void OnDeviceConnectedWrapper(void * context, Messaging::ExchangeManager & exchangeMgr, const SessionHandle & sessionHandle) |
| 28 | +{ |
| 29 | + reinterpret_cast<FabricSyncGetter *>(context)->OnDeviceConnected(exchangeMgr, sessionHandle); |
| 30 | +} |
| 31 | + |
| 32 | +void OnDeviceConnectionFailureWrapper(void * context, const ScopedNodeId & peerId, CHIP_ERROR error) |
| 33 | +{ |
| 34 | + reinterpret_cast<FabricSyncGetter *>(context)->OnDeviceConnectionFailure(peerId, error); |
| 35 | +} |
| 36 | + |
| 37 | +} // namespace |
| 38 | + |
| 39 | +FabricSyncGetter::FabricSyncGetter() : |
| 40 | + mOnDeviceConnectedCallback(OnDeviceConnectedWrapper, this), |
| 41 | + mOnDeviceConnectionFailureCallback(OnDeviceConnectionFailureWrapper, this) |
| 42 | +{} |
| 43 | + |
| 44 | +CHIP_ERROR FabricSyncGetter::GetFabricSynchronizationData(OnDoneCallback onDoneCallback, Controller::DeviceController & controller, |
| 45 | + NodeId nodeId, EndpointId endpointId) |
| 46 | +{ |
| 47 | + assertChipStackLockedByCurrentThread(); |
| 48 | + |
| 49 | + mEndpointId = endpointId; |
| 50 | + mOnDoneCallback = onDoneCallback; |
| 51 | + |
| 52 | + CHIP_ERROR err = controller.GetConnectedDevice(nodeId, &mOnDeviceConnectedCallback, &mOnDeviceConnectionFailureCallback); |
| 53 | + if (err != CHIP_NO_ERROR) |
| 54 | + { |
| 55 | + ChipLogError(NotSpecified, "Failed to connect to remote fabric bridge %" CHIP_ERROR_FORMAT, err.Format()); |
| 56 | + } |
| 57 | + return err; |
| 58 | +} |
| 59 | + |
| 60 | +void FabricSyncGetter::OnAttributeData(const ConcreteDataAttributePath & path, TLV::TLVReader * data, const StatusIB & status) |
| 61 | +{ |
| 62 | + VerifyOrDie(path.mClusterId == Clusters::CommissionerControl::Id); |
| 63 | + |
| 64 | + if (!status.IsSuccess()) |
| 65 | + { |
| 66 | + ChipLogError(NotSpecified, "Response Failure: %" CHIP_ERROR_FORMAT, status.ToChipError().Format()); |
| 67 | + return; |
| 68 | + } |
| 69 | + |
| 70 | + switch (path.mAttributeId) |
| 71 | + { |
| 72 | + case Clusters::CommissionerControl::Attributes::SupportedDeviceCategories::Id: { |
| 73 | + mOnDoneCallback(*data); |
| 74 | + break; |
| 75 | + } |
| 76 | + default: |
| 77 | + break; |
| 78 | + } |
| 79 | +} |
| 80 | + |
| 81 | +void FabricSyncGetter::OnError(CHIP_ERROR error) |
| 82 | +{ |
| 83 | + ChipLogProgress(NotSpecified, "Error Getting SupportedDeviceCategories: %" CHIP_ERROR_FORMAT, error.Format()); |
| 84 | +} |
| 85 | + |
| 86 | +void FabricSyncGetter::OnDone(ReadClient * apReadClient) |
| 87 | +{ |
| 88 | + ChipLogProgress(NotSpecified, "Reading SupportedDeviceCategories is done."); |
| 89 | +} |
| 90 | + |
| 91 | +void FabricSyncGetter::OnDeviceConnected(Messaging::ExchangeManager & exchangeMgr, const SessionHandle & sessionHandle) |
| 92 | +{ |
| 93 | + mClient = std::make_unique<ReadClient>(app::InteractionModelEngine::GetInstance(), &exchangeMgr, *this /* callback */, |
| 94 | + ReadClient::InteractionType::Read); |
| 95 | + VerifyOrDie(mClient); |
| 96 | + |
| 97 | + AttributePathParams readPaths[1]; |
| 98 | + readPaths[0] = AttributePathParams(mEndpointId, Clusters::CommissionerControl::Id, |
| 99 | + Clusters::CommissionerControl::Attributes::SupportedDeviceCategories::Id); |
| 100 | + |
| 101 | + ReadPrepareParams readParams(sessionHandle); |
| 102 | + |
| 103 | + readParams.mpAttributePathParamsList = readPaths; |
| 104 | + readParams.mAttributePathParamsListSize = 1; |
| 105 | + |
| 106 | + CHIP_ERROR err = mClient->SendRequest(readParams); |
| 107 | + |
| 108 | + if (err != CHIP_NO_ERROR) |
| 109 | + { |
| 110 | + ChipLogError(NotSpecified, "Failed to read SupportedDeviceCategories from the bridged device."); |
| 111 | + OnDone(nullptr); |
| 112 | + return; |
| 113 | + } |
| 114 | +} |
| 115 | + |
| 116 | +void FabricSyncGetter::OnDeviceConnectionFailure(const ScopedNodeId & peerId, CHIP_ERROR error) |
| 117 | +{ |
| 118 | + ChipLogError(NotSpecified, "FabricSyncGetter failed to connect to " ChipLogFormatX64, ChipLogValueX64(peerId.GetNodeId())); |
| 119 | + |
| 120 | + OnDone(nullptr); |
| 121 | +} |
0 commit comments