| /* |
| * |
| * Copyright (c) 2026 Project CHIP Authors |
| * All rights reserved. |
| * |
| * 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 <app/clusters/air-quality-server/CodegenIntegration.h> |
| #include <app/util/attribute-storage.h> |
| #include <data-model-providers/codegen/CodegenDataModelProvider.h> |
| |
| namespace chip { |
| namespace app { |
| namespace Clusters { |
| namespace AirQuality { |
| |
| Instance::Instance(EndpointId aEndpointId, BitMask<Feature> aFeature) : mCluster(aEndpointId, aFeature) {} |
| |
| Instance::~Instance() |
| { |
| CHIP_ERROR err = CodegenDataModelProvider::Instance().Registry().Unregister(&mCluster.Cluster()); |
| if (err != CHIP_NO_ERROR) |
| { |
| ChipLogError(AppServer, "Failed to unregister cluster %u/" ChipLogFormatMEI ": %" CHIP_ERROR_FORMAT, |
| mCluster.Cluster().GetPaths()[0].mEndpointId, ChipLogValueMEI(AirQuality::Id), err.Format()); |
| } |
| } |
| |
| CHIP_ERROR Instance::Init() |
| { |
| // Check if the cluster has been selected in zap |
| VerifyOrDie(emberAfContainsServer(mCluster.Cluster().GetPaths()[0].mEndpointId, Id) == true); |
| |
| CHIP_ERROR err = CodegenDataModelProvider::Instance().Registry().Register(mCluster.Registration()); |
| if (err != CHIP_NO_ERROR) |
| { |
| ChipLogError(AppServer, "Failed to register cluster %u/" ChipLogFormatMEI ": %" CHIP_ERROR_FORMAT, |
| mCluster.Cluster().GetPaths()[0].mEndpointId, ChipLogValueMEI(AirQuality::Id), err.Format()); |
| } |
| return err; |
| } |
| |
| } // namespace AirQuality |
| } // namespace Clusters |
| } // namespace app |
| } // namespace chip |
| |
| void __attribute__((weak)) MatterAirQualityClusterInitCallback(chip::EndpointId) {} |
| void __attribute__((weak)) MatterAirQualityClusterShutdownCallback(chip::EndpointId, MatterClusterShutdownType) {} |