mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-17 07:37:51 +01:00

This change adds mocked time unit tests to RtcEventLogImpl. In order to simplify test implementation, the Impl ctor was changed to accept an already created event log encoder. The previous factory was made public in the Impl interface and relevant code sites were updated. Bug: chromium:1288710 Change-Id: Ifbfd899c5a06a3350c7e5fbc3bb7280f67124f2b Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/290382 Reviewed-by: Henrik Andreassson <henrika@webrtc.org> Commit-Queue: Markus Handell <handellm@webrtc.org> Reviewed-by: Björn Terelius <terelius@webrtc.org> Cr-Commit-Position: refs/heads/main@{#38987}
87 lines
2.7 KiB
C++
87 lines
2.7 KiB
C++
/*
|
|
* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef API_RTC_EVENT_LOG_RTC_EVENT_H_
|
|
#define API_RTC_EVENT_LOG_RTC_EVENT_H_
|
|
|
|
#include <cstdint>
|
|
|
|
namespace webrtc {
|
|
|
|
// This class allows us to store unencoded RTC events. Subclasses of this class
|
|
// store the actual information. This allows us to keep all unencoded events,
|
|
// even when their type and associated information differ, in the same buffer.
|
|
// Additionally, it prevents dependency leaking - a module that only logs
|
|
// events of type RtcEvent_A doesn't need to know about anything associated
|
|
// with events of type RtcEvent_B.
|
|
class RtcEvent {
|
|
public:
|
|
// Subclasses of this class have to associate themselves with a unique value
|
|
// of Type. This leaks the information of existing subclasses into the
|
|
// superclass, but the *actual* information - rtclog::StreamConfig, etc. -
|
|
// is kept separate.
|
|
enum class Type : uint32_t {
|
|
AlrStateEvent,
|
|
RouteChangeEvent,
|
|
RemoteEstimateEvent,
|
|
AudioNetworkAdaptation,
|
|
AudioPlayout,
|
|
AudioReceiveStreamConfig,
|
|
AudioSendStreamConfig,
|
|
BweUpdateDelayBased,
|
|
BweUpdateLossBased,
|
|
DtlsTransportState,
|
|
DtlsWritableState,
|
|
IceCandidatePairConfig,
|
|
IceCandidatePairEvent,
|
|
ProbeClusterCreated,
|
|
ProbeResultFailure,
|
|
ProbeResultSuccess,
|
|
RtcpPacketIncoming,
|
|
RtcpPacketOutgoing,
|
|
RtpPacketIncoming,
|
|
RtpPacketOutgoing,
|
|
VideoReceiveStreamConfig,
|
|
VideoSendStreamConfig,
|
|
GenericPacketSent,
|
|
GenericPacketReceived,
|
|
GenericAckReceived,
|
|
FrameDecoded,
|
|
BeginV3Log = 0x2501580,
|
|
EndV3Log = 0x2501581,
|
|
FakeEvent, // For unit testing.
|
|
};
|
|
|
|
RtcEvent();
|
|
virtual ~RtcEvent() = default;
|
|
|
|
virtual Type GetType() const = 0;
|
|
|
|
virtual bool IsConfigEvent() const = 0;
|
|
|
|
// Events are grouped by Type before being encoded.
|
|
// Optionally, `GetGroupKey` can be overloaded to group the
|
|
// events by a secondary key (in addition to the event type.)
|
|
// This can, in some cases, improve compression efficiency
|
|
// e.g. by grouping events by SSRC.
|
|
virtual uint32_t GetGroupKey() const { return 0; }
|
|
|
|
int64_t timestamp_ms() const { return timestamp_us_ / 1000; }
|
|
int64_t timestamp_us() const { return timestamp_us_; }
|
|
|
|
protected:
|
|
explicit RtcEvent(int64_t timestamp_us) : timestamp_us_(timestamp_us) {}
|
|
|
|
const int64_t timestamp_us_;
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // API_RTC_EVENT_LOG_RTC_EVENT_H_
|