Explicitly add python-numpy dependency to install-build-deps.
[chromium-blink-merge.git] / net / quic / quic_received_packet_manager.h
blob7e1c88f2068347d42584eeb507bdfe98d810e540
1 // 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 // Manages the packet entropy calculation for both sent and received packets
6 // for a connection.
8 #ifndef NET_QUIC_QUIC_RECEIVED_PACKET_MANAGER_H_
9 #define NET_QUIC_QUIC_RECEIVED_PACKET_MANAGER_H_
11 #include <deque>
13 #include "net/quic/congestion_control/receive_algorithm_interface.h"
14 #include "net/quic/quic_config.h"
15 #include "net/quic/quic_framer.h"
16 #include "net/quic/quic_protocol.h"
18 namespace net {
20 namespace test {
21 class EntropyTrackerPeer;
22 class QuicConnectionPeer;
23 class QuicReceivedPacketManagerPeer;
24 } // namespace test
26 struct QuicConnectionStats;
28 // Records all received packets by a connection and tracks their entropy.
29 // Also calculates the correct entropy for the framer when it truncates an ack
30 // frame being serialized.
31 class NET_EXPORT_PRIVATE QuicReceivedPacketManager :
32 public QuicReceivedEntropyHashCalculatorInterface {
33 public:
34 class NET_EXPORT_PRIVATE EntropyTracker {
35 public:
36 EntropyTracker();
37 ~EntropyTracker();
39 // Compute the XOR of the entropy of all received packets up to
40 // and including sequence_number.
41 // Requires that either:
42 // sequence_number == largest_observed_
43 // or:
44 // sequence_number > first_gap_ &&
45 // sequence_number < largest_observed_ &&
46 // sequence_number in packets_entropy_
47 QuicPacketEntropyHash EntropyHash(
48 QuicPacketSequenceNumber sequence_number) const;
50 // Record the received entropy hash against |sequence_number|.
51 // Performs garbage collection to advance first_gap_ if
52 // sequence_number == first_gap_.
53 void RecordPacketEntropyHash(QuicPacketSequenceNumber sequence_number,
54 QuicPacketEntropyHash entropy_hash);
56 // Sets the entropy hash up to but not including a sequence number based
57 // on the hash provided by a StopWaiting frame. Clears older packet
58 // entropy entries and performs garbage collection up to the first gap.
59 void SetCumulativeEntropyUpTo(QuicPacketSequenceNumber sequence_number,
60 QuicPacketEntropyHash entropy_hash);
62 size_t size() const { return packets_entropy_.size(); }
64 private:
65 friend class test::EntropyTrackerPeer;
67 // A deque indexed by sequence number storing the packet's hash and whether
68 // a hash was recorded for that sequence number.
69 typedef std::deque<std::pair<QuicPacketEntropyHash, bool> >
70 ReceivedEntropyHashes;
72 // Recomputes first_gap_ and removes packets_entropy_ entries that are no
73 // longer needed to compute EntropyHash.
74 void AdvanceFirstGapAndGarbageCollectEntropyMap();
76 // Map of received sequence numbers to their corresponding entropy.
77 // Stores an entry for every received packet whose sequence_number is larger
78 // than first_gap_. Packets without the entropy bit set have an entropy
79 // value of 0.
80 ReceivedEntropyHashes packets_entropy_;
82 // Cumulative hash of entropy of all received packets.
83 QuicPacketEntropyHash packets_entropy_hash_;
85 // Sequence number of the first packet that we do not know the entropy of.
86 // If there are no gaps in the received packet sequence,
87 // packets_entropy_ will be empty and first_gap_ will be equal to
88 // 'largest_observed_ + 1' since that's the first packet for which
89 // entropy is unknown. If there are gaps, packets_entropy_ will
90 // contain entries for all received packets with sequence_number >
91 // first_gap_.
92 QuicPacketSequenceNumber first_gap_;
94 // Sequence number of the largest observed packet.
95 QuicPacketSequenceNumber largest_observed_;
97 DISALLOW_COPY_AND_ASSIGN(EntropyTracker);
100 explicit QuicReceivedPacketManager(QuicConnectionStats* stats);
101 ~QuicReceivedPacketManager() override;
103 // Updates the internal state concerning which packets have been received.
104 // bytes: the packet size in bytes including Quic Headers.
105 // header: the packet header.
106 // timestamp: the arrival time of the packet.
107 void RecordPacketReceived(QuicByteCount bytes,
108 const QuicPacketHeader& header,
109 QuicTime receipt_time);
111 void RecordPacketRevived(QuicPacketSequenceNumber sequence_number);
113 // Checks whether |sequence_number| is missing and less than largest observed.
114 bool IsMissing(QuicPacketSequenceNumber sequence_number);
116 // Checks if we're still waiting for the packet with |sequence_number|.
117 bool IsAwaitingPacket(QuicPacketSequenceNumber sequence_number);
119 // Update the |ack_frame| for an outgoing ack.
120 void UpdateReceivedPacketInfo(QuicAckFrame* ack_frame,
121 QuicTime approximate_now);
123 // Should be called before sending an ACK packet, to decide if we need
124 // to attach a QuicCongestionFeedbackFrame block.
125 // Returns false if no QuicCongestionFeedbackFrame block is needed.
126 // Otherwise fills in feedback and returns true.
127 virtual bool GenerateCongestionFeedback(
128 QuicCongestionFeedbackFrame* feedback);
130 // QuicReceivedEntropyHashCalculatorInterface
131 // Called by QuicFramer, when the outgoing ack gets truncated, to recalculate
132 // the received entropy hash for the truncated ack frame.
133 QuicPacketEntropyHash EntropyHash(
134 QuicPacketSequenceNumber sequence_number) const override;
136 // Updates internal state based on |stop_waiting|.
137 void UpdatePacketInformationSentByPeer(
138 const QuicStopWaitingFrame& stop_waiting);
140 // Returns true when there are new missing packets to be reported within 3
141 // packets of the largest observed.
142 bool HasNewMissingPackets() const;
144 // Returns the number of packets being tracked in the EntropyTracker.
145 size_t NumTrackedPackets() const;
147 QuicPacketSequenceNumber peer_least_packet_awaiting_ack() {
148 return peer_least_packet_awaiting_ack_;
151 private:
152 friend class test::QuicConnectionPeer;
153 friend class test::QuicReceivedPacketManagerPeer;
155 // Deletes all missing packets before least unacked. The connection won't
156 // process any packets with sequence number before |least_unacked| that it
157 // received after this call. Returns true if there were missing packets before
158 // |least_unacked| unacked, false otherwise.
159 bool DontWaitForPacketsBefore(QuicPacketSequenceNumber least_unacked);
161 // Tracks entropy hashes of received packets.
162 EntropyTracker entropy_tracker_;
164 // Least sequence number of the the packet sent by the peer for which it
165 // hasn't received an ack.
166 QuicPacketSequenceNumber peer_least_packet_awaiting_ack_;
168 // Received packet information used to produce acks.
169 QuicAckFrame ack_frame_;
171 // The time we received the largest_observed sequence number, or zero if
172 // no sequence numbers have been received since UpdateReceivedPacketInfo.
173 // Needed for calculating delta_time_largest_observed.
174 QuicTime time_largest_observed_;
176 scoped_ptr<ReceiveAlgorithmInterface> receive_algorithm_;
178 QuicConnectionStats* stats_;
180 PacketTimeList received_packet_times_;
182 DISALLOW_COPY_AND_ASSIGN(QuicReceivedPacketManager);
185 } // namespace net
187 #endif // NET_QUIC_QUIC_RECEIVED_PACKET_MANAGER_H_