| /** |
| * |
| * 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. |
| */ |
| |
| #pragma once |
| |
| #include <app/util/basic-types.h> |
| #include <crypto/SessionKeystore.h> |
| #include <lib/core/CHIPPersistentStorageDelegate.h> |
| #include <lib/core/Optional.h> |
| #include <lib/support/Span.h> |
| #include <protocols/interaction_model/StatusCode.h> |
| |
| #include <app/icd/ICDMonitoringTable.h> |
| |
| namespace chip { |
| |
| using chip::Protocols::InteractionModel::Status; |
| |
| class ICDManagementServer |
| { |
| public: |
| uint32_t GetIdleModeDurationSec() { return mIdleInterval_s; } |
| |
| uint32_t GetActiveModeDurationMs() { return mActiveInterval_ms; } |
| |
| void SetSymmetricKeystore(Crypto::SymmetricKeystore * keyStore) { mSymmetricKeystore = keyStore; } |
| |
| uint16_t GetActiveModeThresholdMs() { return mActiveThreshold_ms; } |
| |
| uint32_t GetICDCounter() { return mICDCounter; } |
| |
| void SetICDCounter(uint32_t count) { mICDCounter = count; } |
| |
| uint16_t GetClientsSupportedPerFabric() { return mFabricClientsSupported; } |
| |
| Status RegisterClient(PersistentStorageDelegate & storage, FabricIndex fabric_index, chip::NodeId node_id, |
| uint64_t monitored_subject, chip::ByteSpan key, Optional<chip::ByteSpan> verification_key, bool is_admin); |
| |
| Status UnregisterClient(PersistentStorageDelegate & storage, FabricIndex fabric_index, chip::NodeId node_id, |
| Optional<chip::ByteSpan> verificationKey, bool is_admin); |
| |
| /** |
| * @brief Triggers table update events to notify subscribers that an entry was added or removed |
| * from the ICDMonitoringTable. |
| */ |
| void TriggerICDMTableUpdatedEvent(); |
| |
| Status StayActiveRequest(FabricIndex fabric_index); |
| |
| static ICDManagementServer & GetInstance() { return mInstance; } |
| |
| private: |
| ICDManagementServer() = default; |
| |
| static ICDManagementServer mInstance; |
| Crypto::SymmetricKeystore * mSymmetricKeystore = nullptr; |
| |
| static_assert((CHIP_CONFIG_ICD_IDLE_MODE_DURATION_SEC) <= 64800, |
| "Spec requires the IdleModeDuration to be equal or inferior to 64800s."); |
| static_assert((CHIP_CONFIG_ICD_IDLE_MODE_DURATION_SEC) >= 1, |
| "Spec requires the IdleModeDuration to be equal or greater to 1s."); |
| uint32_t mIdleInterval_s = CHIP_CONFIG_ICD_IDLE_MODE_DURATION_SEC; |
| |
| static_assert((CHIP_CONFIG_ICD_ACTIVE_MODE_DURATION_MS) <= (CHIP_CONFIG_ICD_IDLE_MODE_DURATION_SEC * kMillisecondsPerSecond), |
| "Spec requires the IdleModeDuration be equal or greater to the ActiveModeDuration."); |
| uint32_t mActiveInterval_ms = CHIP_CONFIG_ICD_ACTIVE_MODE_DURATION_MS; |
| |
| uint16_t mActiveThreshold_ms = CHIP_CONFIG_ICD_ACTIVE_MODE_THRESHOLD_MS; |
| |
| // TODO : Implement ICD counter |
| // https://github.com/project-chip/connectedhomeip/issues/29184 |
| uint32_t mICDCounter = 0; |
| |
| static_assert((CHIP_CONFIG_ICD_CLIENTS_SUPPORTED_PER_FABRIC) >= 1, |
| "Spec requires the minimum of supported clients per fabric be equal or greater to 1."); |
| uint16_t mFabricClientsSupported = CHIP_CONFIG_ICD_CLIENTS_SUPPORTED_PER_FABRIC; |
| }; |
| |
| } // namespace chip |