-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ICD] Add Check-In message check when switching to idle mode (#31563)
* Add Check-In message check when switching to idle mode * Rename function to something shorter Co-authored-by: Boris Zbarsky <[email protected]> * Add unit test to validate fix * Rename last functions * add lib/support to the ICDConfigurationData dependencies * Apply suggestions from code review Co-authored-by: Boris Zbarsky <[email protected]> * Fix comment * Refactor ICDManager dependency with InteractionModelEngine to introduce mediator * Clean up refactor * Address comments * Fix comment typos Co-authored-by: Junior Martinez <[email protected]> * Use a variable instead of GetInstance * Rename SetDurations to SetModeDurations * Fix typo --------- Co-authored-by: Boris Zbarsky <[email protected]> Co-authored-by: Junior Martinez <[email protected]>
- Loading branch information
1 parent
6fd32ba
commit d61bfd6
Showing
12 changed files
with
422 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* | ||
* 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.