blob: 23244e5d2b92031679be14c2b088965edac3ee78 [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef QUICHE_QUIC_TEST_TOOLS_QUIC_SENT_PACKET_MANAGER_PEER_H_
6#define QUICHE_QUIC_TEST_TOOLS_QUIC_SENT_PACKET_MANAGER_PEER_H_
7
QUICHE teama6ef0a62019-03-07 20:34:33 -05008#include "net/third_party/quiche/src/quic/core/quic_packets.h"
9#include "net/third_party/quiche/src/quic/core/quic_sent_packet_manager.h"
10
11namespace quic {
12
13class SendAlgorithmInterface;
14
15namespace test {
16
17class QuicSentPacketManagerPeer {
18 public:
19 QuicSentPacketManagerPeer() = delete;
20
21 static size_t GetMaxTailLossProbes(
22 QuicSentPacketManager* sent_packet_manager);
23
24 static void SetMaxTailLossProbes(QuicSentPacketManager* sent_packet_manager,
25 size_t max_tail_loss_probes);
26
27 static bool GetEnableHalfRttTailLossProbe(
28 QuicSentPacketManager* sent_packet_manager);
29
30 static bool GetUseNewRto(QuicSentPacketManager* sent_packet_manager);
31
32 static void SetPerspective(QuicSentPacketManager* sent_packet_manager,
33 Perspective perspective);
34
35 static SendAlgorithmInterface* GetSendAlgorithm(
36 const QuicSentPacketManager& sent_packet_manager);
37
38 static void SetSendAlgorithm(QuicSentPacketManager* sent_packet_manager,
39 SendAlgorithmInterface* send_algorithm);
40
41 static const LossDetectionInterface* GetLossAlgorithm(
42 QuicSentPacketManager* sent_packet_manager);
43
44 static void SetLossAlgorithm(QuicSentPacketManager* sent_packet_manager,
45 LossDetectionInterface* loss_detector);
46
47 static RttStats* GetRttStats(QuicSentPacketManager* sent_packet_manager);
48
49 static bool HasPendingPackets(
50 const QuicSentPacketManager* sent_packet_manager);
51
52 // Returns true if |packet_number| is a retransmission of a packet.
53 static bool IsRetransmission(QuicSentPacketManager* sent_packet_manager,
54 uint64_t packet_number);
55
56 static void MarkForRetransmission(QuicSentPacketManager* sent_packet_manager,
57 uint64_t packet_number,
58 TransmissionType transmission_type);
59
60 static QuicTime::Delta GetRetransmissionDelay(
61 const QuicSentPacketManager* sent_packet_manager,
62 size_t consecutive_rto_count);
63 static QuicTime::Delta GetRetransmissionDelay(
64 const QuicSentPacketManager* sent_packet_manager);
65 static QuicTime::Delta GetTailLossProbeDelay(
66 const QuicSentPacketManager* sent_packet_manager,
67 size_t consecutive_tlp_count);
68 static QuicTime::Delta GetTailLossProbeDelay(
69 const QuicSentPacketManager* sent_packet_manager);
70
71 static bool HasUnackedCryptoPackets(
72 const QuicSentPacketManager* sent_packet_manager);
73
74 static size_t GetNumRetransmittablePackets(
75 const QuicSentPacketManager* sent_packet_manager);
76
77 static QuicByteCount GetBytesInFlight(
78 const QuicSentPacketManager* sent_packet_manager);
79
80 static void SetConsecutiveRtoCount(QuicSentPacketManager* sent_packet_manager,
81 size_t count);
82
83 static void SetConsecutiveTlpCount(QuicSentPacketManager* sent_packet_manager,
84 size_t count);
85
86 static QuicSustainedBandwidthRecorder& GetBandwidthRecorder(
87 QuicSentPacketManager* sent_packet_manager);
88
89 static void SetUsingPacing(QuicSentPacketManager* sent_packet_manager,
90 bool using_pacing);
91
92 static bool UsingPacing(const QuicSentPacketManager* sent_packet_manager);
93
94 static bool IsUnacked(QuicSentPacketManager* sent_packet_manager,
95 uint64_t packet_number);
96
97 static bool HasRetransmittableFrames(
98 QuicSentPacketManager* sent_packet_manager,
99 uint64_t packet_number);
100
101 static QuicUnackedPacketMap* GetUnackedPacketMap(
102 QuicSentPacketManager* sent_packet_manager);
103
104 static void DisablePacerBursts(QuicSentPacketManager* sent_packet_manager);
105
106 static void SetNextPacedPacketTime(QuicSentPacketManager* sent_packet_manager,
107 QuicTime time);
108};
109
110} // namespace test
111
112} // namespace quic
113
114#endif // QUICHE_QUIC_TEST_TOOLS_QUIC_SENT_PACKET_MANAGER_PEER_H_