@@ -105,6 +105,10 @@ void ICDManager::Shutdown()
105
105
mFabricTable = nullptr ;
106
106
mSubInfoProvider = nullptr ;
107
107
mICDSenderPool .ReleaseAll ();
108
+
109
+ #if CHIP_CONFIG_PERSIST_SUBSCRIPTIONS && !CHIP_CONFIG_SUBSCRIPTION_TIMEOUT_RESUMPTION
110
+ mIsBootUpResumeSubscriptionExecuted = false ;
111
+ #endif // !CHIP_CONFIG_SUBSCRIPTION_TIMEOUT_RESUMPTION
108
112
#endif // CHIP_CONFIG_ENABLE_ICD_CIP
109
113
}
110
114
@@ -152,6 +156,7 @@ void ICDManager::SendCheckInMsgs()
152
156
153
157
ICDMonitoringTable table (*mStorage , fabricInfo.GetFabricIndex (), supported_clients /* Table entry limit*/ ,
154
158
mSymmetricKeystore );
159
+
155
160
if (table.IsEmpty ())
156
161
{
157
162
continue ;
@@ -173,8 +178,7 @@ void ICDManager::SendCheckInMsgs()
173
178
continue ;
174
179
}
175
180
176
- bool active = mSubInfoProvider ->SubjectHasActiveSubscription (entry.fabricIndex , entry.monitoredSubject );
177
- if (active)
181
+ if (!CheckInWouldBeSentAtActiveModeVerifier (entry.fabricIndex , entry.monitoredSubject ))
178
182
{
179
183
continue ;
180
184
}
@@ -244,17 +248,77 @@ bool ICDManager::CheckInMessagesWouldBeSent(std::function<RegistrationVerificati
244
248
return false ;
245
249
}
246
250
251
+ /* *
252
+ * CheckInWouldBeSentAtActiveModeVerifier is used to determine if a Check-In message is required for a given registration.
253
+ * Due to how the ICD Check-In use-case interacts with the persistent subscription and subscription timeout resumption,
254
+ * having a single implementation of the function renders the implematention very difficult to understand and maintain.
255
+ * Because of this, each valid feature combination has its own implementation of the verifier.
256
+ */
257
+ #if CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
258
+ #if CHIP_CONFIG_SUBSCRIPTION_TIMEOUT_RESUMPTION
259
+ /* *
260
+ * @brief Implementation for when the persistant subscription and subscription timeout resumption feature are present.
261
+ * Verifier checks that there no active or persisted subscriptions for a given fabricIndex or subjectID.
262
+ *
263
+ * @param aFabricIndex
264
+ * @param subjectID subjectID to check. Can be an opperationnal node id or a CAT
265
+ *
266
+ * @return true Returns true if the fabricIndex and subjectId combination does not have an active or a persisted subscription.
267
+ * @return false Returns false if the fabricIndex and subjectId combination has an active or persisted subscription.
268
+ */
269
+ bool ICDManager::CheckInWouldBeSentAtActiveModeVerifier (FabricIndex aFabricIndex, NodeId subjectID)
270
+ {
271
+ return !(mSubInfoProvider ->SubjectHasActiveSubscription (aFabricIndex, subjectID) ||
272
+ mSubInfoProvider ->SubjectHasPersistedSubscription (aFabricIndex, subjectID));
273
+ }
274
+ #else
275
+ /* *
276
+ * @brief Implementation for when the persistant subscription is present without the subscription timeout resumption feature.
277
+ * Verifier checks that there no active subscriptions. If the boot up subscription resumption has been completed,
278
+ * verifier also checks if there are persisted subscriptions.
279
+ *
280
+ * @note The persistent subscriptions feature tries to resume subscriptions at the highest min interval
281
+ * of all the persisted subscriptions. As such, it is possible for the ICD to return to Idle Mode
282
+ * until the timer elaspses. We do not when to send Check-In message to clients with persisted subscriptions
283
+ * until we have tried to resubscribe.
284
+ *
285
+ * @param aFabricIndex
286
+ * @param subjectID subjectID to check. Can be an opperationnal node id or a CAT
287
+ *
288
+ * @return true Returns true if the fabricIndex and subjectId combination does not have an active subscription.
289
+ * If the boot up susbscription has not been completed, there must not be a persisted subscription either.
290
+ * @return false Returns false if the fabricIndex and subjectId combination has an active subscription.
291
+ * If the boot up susbscription has not been completed,
292
+ * if the fabricIndex and subjectId combination has a persisted subscription.
293
+ */
247
294
bool ICDManager::CheckInWouldBeSentAtActiveModeVerifier (FabricIndex aFabricIndex, NodeId subjectID)
248
295
{
249
- VerifyOrReturnValue (mSubInfoProvider ->SubjectHasActiveSubscription (aFabricIndex, subjectID), true );
296
+ bool wouldSendCheckIn = ! (mSubInfoProvider ->SubjectHasActiveSubscription (aFabricIndex, subjectID));
250
297
251
- #if CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
252
- // If at least one registration has a persisted entry, do not send Check-In message.
253
- // The resumption of the persisted subscription will serve the same function a check-in would have served.
254
- VerifyOrReturnValue (mSubInfoProvider ->SubjectHasPersistedSubscription (aFabricIndex, subjectID), true );
255
- #endif // CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
256
- return false ;
298
+ if (!mIsBootUpResumeSubscriptionExecuted )
299
+ {
300
+ wouldSendCheckIn = wouldSendCheckIn && !mSubInfoProvider ->SubjectHasPersistedSubscription (aFabricIndex, subjectID);
301
+ }
302
+
303
+ return wouldSendCheckIn;
304
+ }
305
+ #endif // CHIP_CONFIG_SUBSCRIPTION_TIMEOUT_RESUMPTION
306
+ #else
307
+ /* *
308
+ * @brief Implementation for when neither the persistant subscription and subscription timeout resumption feature are present.
309
+ * Verifier checks that there no active sbuscriptions for a given fabricIndex and subjectId combination.
310
+ *
311
+ * @param aFabricIndex
312
+ * @param subjectID subjectID to check. Can be an opperationnal node id or a CAT
313
+ *
314
+ * @return true Returns true if the fabricIndex and subjectId combination does not have an active subscription.
315
+ * @return false Returns false if the fabricIndex and subjectId combination has an active subscription.
316
+ */
317
+ bool ICDManager::CheckInWouldBeSentAtActiveModeVerifier (FabricIndex aFabricIndex, NodeId subjectID)
318
+ {
319
+ return !(mSubInfoProvider ->SubjectHasActiveSubscription (aFabricIndex, subjectID));
257
320
}
321
+ #endif // CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
258
322
259
323
void ICDManager::TriggerCheckInMessages (const std::function<RegistrationVerificationFunction> & verifier)
260
324
{
0 commit comments