|
| 1 | +/* |
| 2 | + * |
| 3 | + * Copyright (c) 2024 Project CHIP Authors |
| 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 | +#include <app/CommandHandler.h> |
| 19 | +#include <app/clusters/occupancy-sensor-server/occupancy-hal.h> |
| 20 | +#include <app/clusters/occupancy-sensor-server/occupancy-sensor-server.h> |
| 21 | +#include <app/util/attribute-storage.h> |
| 22 | +#include <platform/CHIPDeviceLayer.h> |
| 23 | + |
| 24 | +#ifdef MATTER_DM_PLUGIN_OCCUPANCY_SENSING_SERVER |
| 25 | + |
| 26 | +using namespace chip; |
| 27 | +using namespace chip::app::Clusters; |
| 28 | +using namespace chip::app::Clusters::OccupancySensing; |
| 29 | +using namespace chip::app::Clusters::OccupancySensing::Structs; |
| 30 | +using namespace chip::DeviceLayer; |
| 31 | + |
| 32 | +using chip::Protocols::InteractionModel::Status; |
| 33 | + |
| 34 | +namespace { |
| 35 | + |
| 36 | +static constexpr size_t kOccupancySensingClusterTableSize = |
| 37 | + MATTER_DM_OCCUPANCY_SENSING_CLUSTER_SERVER_ENDPOINT_COUNT + CHIP_DEVICE_CONFIG_DYNAMIC_ENDPOINT_COUNT; |
| 38 | + |
| 39 | +static_assert(kOccupancySensingClusterTableSize <= kEmberInvalidEndpointIndex, "Occupancy Sensing Cluster table size error"); |
| 40 | + |
| 41 | +static std::unique_ptr<Instance> gOccupancySensingClusterInstances[kOccupancySensingClusterTableSize]; |
| 42 | + |
| 43 | +} // namespace |
| 44 | + |
| 45 | +void emberAfOccupancySensingClusterInitCallback(EndpointId endpointId) |
| 46 | +{ |
| 47 | + uint16_t epIndex = emberAfGetClusterServerEndpointIndex(endpointId, chip::app::Clusters::OccupancySensing::Id, |
| 48 | + MATTER_DM_OCCUPANCY_SENSING_CLUSTER_SERVER_ENDPOINT_COUNT); |
| 49 | + if (epIndex < kOccupancySensingClusterTableSize) |
| 50 | + { |
| 51 | + VerifyOrDie(!gOccupancySensingClusterInstances[epIndex]); |
| 52 | + |
| 53 | + gOccupancySensingClusterInstances[epIndex] = |
| 54 | + std::make_unique<Instance>(BitMask<OccupancySensing::Feature, uint32_t>(OccupancySensing::Feature::kPassiveInfrared)); |
| 55 | + |
| 56 | + if (gOccupancySensingClusterInstances[epIndex]) |
| 57 | + { |
| 58 | + gOccupancySensingClusterInstances[epIndex]->Init(); |
| 59 | + |
| 60 | + OccupancySensing::Structs::HoldTimeLimitsStruct::Type holdTimeLimits = { |
| 61 | + .holdTimeMin = 1, |
| 62 | + .holdTimeMax = 300, |
| 63 | + .holdTimeDefault = 10, |
| 64 | + }; |
| 65 | + |
| 66 | + SetHoldTimeLimits(endpointId, holdTimeLimits); |
| 67 | + // Set default holdtime |
| 68 | + SetHoldTime(endpointId, holdTimeLimits.holdTimeDefault); |
| 69 | + } |
| 70 | + } |
| 71 | + else |
| 72 | + { |
| 73 | + ChipLogError(AppServer, "Error: invalid/unexpected OccupancySensing Cluster endpoint index. %u", |
| 74 | + static_cast<uint16_t>(endpointId)); |
| 75 | + } |
| 76 | +} |
| 77 | +#endif // MATTER_DM_PLUGIN_OCCUPANCY_SENSING_SERVER |
0 commit comments