/** * * 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 #include #include #include #include #include #include #include #include #include using namespace chip; using namespace chip::app; using namespace chip::app::Clusters; using namespace chip::app::Clusters::BridgedDeviceBasicInformation; using chip::Protocols::InteractionModel::Status; namespace { void ReachableChanged(EndpointId endpointId) { MATTER_TRACE_INSTANT("ReachableChanged", "BridgeBasicInfo"); bool reachable = false; if (Status::Success != Attributes::Reachable::Get(endpointId, &reachable)) { ChipLogError(Zcl, "ReachabledChanged: Failed to get Reachable value"); } Events::ReachableChanged::Type event{ reachable }; EventNumber eventNumber; if (CHIP_NO_ERROR != LogEvent(event, endpointId, eventNumber)) { ChipLogError(Zcl, "ReachableChanged: Failed to record ReachableChanged event"); } } } // anonymous namespace void MatterBridgedDeviceBasicInformationClusterServerAttributeChangedCallback(const ConcreteAttributePath & attributePath) { if (attributePath.mClusterId != BridgedDeviceBasicInformation::Id) { ChipLogError(Zcl, "MatterBridgedDeviceBasicClusterServerAttributeChangedCallback: Incorrect cluster ID"); return; } switch (attributePath.mAttributeId) { case Attributes::Reachable::Id: ReachableChanged(attributePath.mEndpointId); break; default: break; } }