mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 11:03:05 +00:00
58 lines
2.1 KiB
C++
58 lines
2.1 KiB
C++
// Copyright 2025 Espressif Systems (Shanghai) PTE LTD
|
|
//
|
|
// 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/ClusterCallbacks.h>
|
|
#include <app/clusters/bindings/BindingCluster.h>
|
|
#include <data_model_provider/esp_matter_data_model_provider.h>
|
|
#include <unordered_map>
|
|
|
|
using namespace chip;
|
|
using namespace chip::app;
|
|
using namespace chip::app::Clusters;
|
|
|
|
namespace {
|
|
std::unordered_map<EndpointId, LazyRegisteredServerCluster<BindingCluster>> gServers;
|
|
|
|
} // namespace
|
|
|
|
void ESPMatterBindingClusterServerInitCallback(EndpointId endpointId)
|
|
{
|
|
if (gServers[endpointId].IsConstructed()) {
|
|
return;
|
|
}
|
|
|
|
gServers[endpointId].Create(endpointId);
|
|
CHIP_ERROR err =
|
|
esp_matter::data_model::provider::get_instance().registry().Register(gServers[endpointId].Registration());
|
|
if (err != CHIP_NO_ERROR) {
|
|
ChipLogError(AppServer, "Failed to register Binding on endpoint %u - Error: %" CHIP_ERROR_FORMAT, endpointId,
|
|
err.Format());
|
|
}
|
|
}
|
|
|
|
void ESPMatterBindingClusterServerShutdownCallback(EndpointId endpointId, ClusterShutdownType shutdownType)
|
|
{
|
|
CHIP_ERROR err =
|
|
esp_matter::data_model::provider::get_instance().registry().Unregister(&gServers[endpointId].Cluster(), shutdownType);
|
|
if (err != CHIP_NO_ERROR) {
|
|
ChipLogError(AppServer, "Failed to unregister Binding on endpoint %u - Error: %" CHIP_ERROR_FORMAT, endpointId,
|
|
err.Format());
|
|
}
|
|
gServers[endpointId].Destroy();
|
|
}
|
|
|
|
void MatterBindingPluginServerInitCallback() {}
|
|
|
|
void MatterBindingPluginServerShutdownCallback() {}
|