| /* |
| * |
| * Copyright (c) 2024 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. |
| */ |
| |
| /** |
| * @file |
| * This file defines an interface that exposes all the public subscription management APIs. |
| * The interface is implemented by the InteractionModelEngine to avoid creating unnecessary dependencies |
| * Since the IMEgine has more dependency than its consummers need. |
| * By leveraging the SubscriptionManager APIs, a consummer avoids depending on the global data model functions. |
| */ |
| |
| #pragma once |
| |
| #include <lib/core/DataModelTypes.h> |
| #include <lib/core/NodeId.h> |
| |
| namespace chip { |
| namespace app { |
| |
| class SubscriptionManager |
| { |
| public: |
| virtual ~SubscriptionManager(){}; |
| |
| /** |
| * @brief Check if a given subject (CAT or operational NodeId) has at least 1 active subscription. |
| * |
| * @param[in] aFabricIndex fabric index of the subject |
| * @param[in] subject NodeId of the subect |
| * |
| * @return true subject has at least one active subscription with the device |
| * false subject doesn't have any acitve subscription with the device |
| */ |
| virtual bool SubjectHasActiveSubscription(const FabricIndex & aFabricIndex, const NodeId & subject) = 0; |
| |
| /** |
| * @brief Check if a given subject (CAT or operational NodeId) has at least 1 persisted subscription. |
| * If CHIP_CONFIG_PERSIST_SUBSCRIPTIONS is not enable, function alweays returns false. |
| * See the CHIP_CONFIG_PERSIST_SUBSCRIPTIONS for more information on persisted subscriptions. |
| * |
| * @param[in] aFabricIndex fabric index of the subject |
| * @param[in] subject NodeId of the subect |
| * |
| * @return true subject has at least one persisted subscription with the device |
| * false subject doesn't have any acitve subscription with the device |
| * false If CHIP_CONFIG_PERSIST_SUBSCRIPTIONS is not enabled |
| */ |
| virtual bool SubjectHasPersistedSubscription(const FabricIndex & aFabricIndex, const NodeId & subject) = 0; |
| }; |
| |
| } // namespace app |
| } // namespace chip |