forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding MRP analytics delegate (project-chip#37439)
This is a starting point for MRP events to be sent to some sort of delegate interested. The design is intentionally done in this way to reduce code size within the SDK and is meant for applications such as a controller to registers a delegate for MRP events allowing for it to construct analytics. --------- Co-authored-by: Restyled.io <commits@restyled.io> Co-authored-by: Boris Zbarsky <bzbarsky@apple.com>
- Loading branch information
1 parent
00c6f4e
commit 86e0b85
Showing
8 changed files
with
531 additions
and
0 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
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,74 @@ | ||
/* | ||
* Copyright (c) 2025 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 for objects interested in MRP events for analytics | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <lib/core/DataModelTypes.h> | ||
#include <lib/core/NodeId.h> | ||
|
||
namespace chip { | ||
namespace Messaging { | ||
|
||
class ReliableMessageAnalyticsDelegate | ||
{ | ||
public: | ||
virtual ~ReliableMessageAnalyticsDelegate() = default; | ||
|
||
enum class SessionType | ||
{ | ||
kEstablishedCase, | ||
// Initially, we are starting with only one session type, but we are considering the future when we expand to allow | ||
// other session types, such as establishing a CASE session. | ||
}; | ||
|
||
enum class EventType | ||
{ | ||
// Event associated with first time this specific message is sent. | ||
kInitialSend, | ||
// Event associated with re-transmitting a message that was previously sent but not acknowledged. | ||
kRetransmission, | ||
// Event associated with receiving an acknowledgement of a previously sent message. | ||
kAcknowledged, | ||
// Event associated with transmission of a message that failed to be acknowledged. | ||
kFailed, | ||
}; | ||
|
||
struct TransmitEvent | ||
{ | ||
// When the session has a peer node ID, this will be a value other than kUndefinedNodeId. | ||
NodeId nodeId = kUndefinedNodeId; | ||
// When the session has a fabric index, this will be a value other than kUndefinedFabricIndex. | ||
FabricIndex fabricIndex = kUndefinedFabricIndex; | ||
// Session type of session the message involved is being sent on. | ||
SessionType sessionType = SessionType::kEstablishedCase; | ||
// The transmit event type. | ||
EventType eventType = EventType::kInitialSend; | ||
// The outgoing message counter associated with the event. If there is no outgoing message counter | ||
// this value will be 0. | ||
uint32_t messageCounter = 0; | ||
}; | ||
|
||
virtual void OnTransmitEvent(const TransmitEvent & event) = 0; | ||
}; | ||
|
||
} // namespace Messaging | ||
} // 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
Oops, something went wrong.