blob: 29e0d27e7a2c23c660c7b2d4d1b671b2f05d0045 [file] [log] [blame]
Davide Pesaventobf1c0692017-01-15 19:15:09 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Chavoosh Ghasemi4d36ed52017-10-31 22:26:25 +00002/*
Junxiao Shi7664b122019-01-23 16:45:17 +00003 * Copyright (c) 2016-2019, Regents of the University of California,
Davide Pesaventocd65c2c2017-01-15 16:10:38 -05004 * Colorado State University,
5 * University Pierre & Marie Curie, Sorbonne University.
Weiwei Liu245d7912016-07-28 00:04:25 -07006 *
7 * This file is part of ndn-tools (Named Data Networking Essential Tools).
8 * See AUTHORS.md for complete list of ndn-tools authors and contributors.
9 *
10 * ndn-tools is free software: you can redistribute it and/or modify it under the terms
11 * of the GNU General Public License as published by the Free Software Foundation,
12 * either version 3 of the License, or (at your option) any later version.
13 *
14 * ndn-tools is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * ndn-tools, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
20 *
21 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
22 *
23 * @author Shuo Yang
24 * @author Weiwei Liu
Chavoosh Ghasemi4d36ed52017-10-31 22:26:25 +000025 * @author Chavoosh Ghasemi
schneiderklausd8197df2019-03-16 11:31:40 -070026 * @author Klaus Schneider
Weiwei Liu245d7912016-07-28 00:04:25 -070027 */
28
schneiderklausd8197df2019-03-16 11:31:40 -070029#include "pipeline-interests-adaptive.hpp"
Davide Pesavento44b3b232017-12-23 16:58:25 -050030#include "data-fetcher.hpp"
Weiwei Liu245d7912016-07-28 00:04:25 -070031
32#include <cmath>
Chavoosh Ghasemi3dae1092017-12-21 12:39:08 -070033#include <iomanip>
Weiwei Liu245d7912016-07-28 00:04:25 -070034
35namespace ndn {
36namespace chunks {
Weiwei Liu245d7912016-07-28 00:04:25 -070037
schneiderklausd8197df2019-03-16 11:31:40 -070038constexpr double PipelineInterestsAdaptive::MIN_SSTHRESH;
Chavoosh Ghasemi641f5932017-11-06 22:45:11 +000039
Davide Pesavento5e3773d2019-08-22 15:35:08 -040040PipelineInterestsAdaptive::PipelineInterestsAdaptive(Face& face,
41 RttEstimatorWithStats& rttEstimator,
Davide Pesavento97a33b22019-10-17 22:10:47 -040042 const Options& opts)
43 : PipelineInterests(face, opts)
Klaus Schneider9e5122b2019-03-19 17:03:25 -070044 , m_cwnd(m_options.initCwnd)
45 , m_ssthresh(m_options.initSsthresh)
Weiwei Liu245d7912016-07-28 00:04:25 -070046 , m_rttEstimator(rttEstimator)
47 , m_scheduler(m_face.getIoService())
Weiwei Liu245d7912016-07-28 00:04:25 -070048 , m_highData(0)
49 , m_highInterest(0)
50 , m_recPoint(0)
51 , m_nInFlight(0)
schneiderklaus8ff3abd2019-03-12 22:15:12 -070052 , m_nLossDecr(0)
53 , m_nMarkDecr(0)
54 , m_nTimeouts(0)
55 , m_nSkippedRetx(0)
Weiwei Liu245d7912016-07-28 00:04:25 -070056 , m_nRetransmitted(0)
Chavoosh Ghasemi641f5932017-11-06 22:45:11 +000057 , m_nCongMarks(0)
Chavoosh Ghasemi75309ae2018-03-26 14:46:24 -040058 , m_nSent(0)
Weiwei Liu245d7912016-07-28 00:04:25 -070059 , m_hasFailure(false)
60 , m_failedSegNo(0)
61{
Weiwei Liu245d7912016-07-28 00:04:25 -070062}
63
schneiderklausd8197df2019-03-16 11:31:40 -070064PipelineInterestsAdaptive::~PipelineInterestsAdaptive()
Weiwei Liu245d7912016-07-28 00:04:25 -070065{
66 cancel();
67}
68
69void
schneiderklausd8197df2019-03-16 11:31:40 -070070PipelineInterestsAdaptive::doRun()
Weiwei Liu245d7912016-07-28 00:04:25 -070071{
Ryan Wickman034f30f2018-06-06 11:11:11 -050072 if (allSegmentsReceived()) {
73 cancel();
74 if (!m_options.isQuiet) {
75 printSummary();
76 }
77 return;
78 }
79
Weiwei Liu245d7912016-07-28 00:04:25 -070080 // schedule the event to check retransmission timer
Davide Pesaventobf2c5172019-03-20 19:08:09 -040081 m_checkRtoEvent = m_scheduler.schedule(m_options.rtoCheckInterval, [this] { checkRto(); });
Weiwei Liu245d7912016-07-28 00:04:25 -070082
Davide Pesavento958896e2017-01-19 00:52:04 -050083 schedulePackets();
Weiwei Liu245d7912016-07-28 00:04:25 -070084}
85
86void
schneiderklausd8197df2019-03-16 11:31:40 -070087PipelineInterestsAdaptive::doCancel()
Weiwei Liu245d7912016-07-28 00:04:25 -070088{
Davide Pesaventocd65c2c2017-01-15 16:10:38 -050089 m_checkRtoEvent.cancel();
Weiwei Liu245d7912016-07-28 00:04:25 -070090 m_segmentInfo.clear();
Weiwei Liu245d7912016-07-28 00:04:25 -070091}
92
93void
schneiderklausd8197df2019-03-16 11:31:40 -070094PipelineInterestsAdaptive::checkRto()
Weiwei Liu245d7912016-07-28 00:04:25 -070095{
96 if (isStopping())
97 return;
98
Davide Pesavento958896e2017-01-19 00:52:04 -050099 bool hasTimeout = false;
Weiwei Liu245d7912016-07-28 00:04:25 -0700100
101 for (auto& entry : m_segmentInfo) {
102 SegmentInfo& segInfo = entry.second;
Ryan Wickman2c9933c2018-06-12 11:51:51 -0500103 if (segInfo.state != SegmentState::InRetxQueue) { // skip segments already in the retx queue
Davide Pesavento70576402019-06-07 16:42:21 -0400104 auto timeElapsed = time::steady_clock::now() - segInfo.timeSent;
105 if (timeElapsed > segInfo.rto) { // timer expired?
schneiderklaus8ff3abd2019-03-12 22:15:12 -0700106 m_nTimeouts++;
Davide Pesavento958896e2017-01-19 00:52:04 -0500107 hasTimeout = true;
108 enqueueForRetransmission(entry.first);
Weiwei Liu245d7912016-07-28 00:04:25 -0700109 }
110 }
111 }
112
Davide Pesavento958896e2017-01-19 00:52:04 -0500113 if (hasTimeout) {
114 recordTimeout();
115 schedulePackets();
Weiwei Liu245d7912016-07-28 00:04:25 -0700116 }
117
118 // schedule the next check after predefined interval
Davide Pesaventobf2c5172019-03-20 19:08:09 -0400119 m_checkRtoEvent = m_scheduler.schedule(m_options.rtoCheckInterval, [this] { checkRto(); });
Weiwei Liu245d7912016-07-28 00:04:25 -0700120}
121
122void
schneiderklausd8197df2019-03-16 11:31:40 -0700123PipelineInterestsAdaptive::sendInterest(uint64_t segNo, bool isRetransmission)
Weiwei Liu245d7912016-07-28 00:04:25 -0700124{
125 if (isStopping())
126 return;
127
Ryan Wickman034f30f2018-06-06 11:11:11 -0500128 if (m_hasFinalBlockId && segNo > m_lastSegmentNo)
Weiwei Liu245d7912016-07-28 00:04:25 -0700129 return;
130
131 if (!isRetransmission && m_hasFailure)
132 return;
133
134 if (m_options.isVerbose) {
Davide Pesavento958896e2017-01-19 00:52:04 -0500135 std::cerr << (isRetransmission ? "Retransmitting" : "Requesting")
136 << " segment #" << segNo << std::endl;
Weiwei Liu245d7912016-07-28 00:04:25 -0700137 }
138
139 if (isRetransmission) {
Davide Pesavento958896e2017-01-19 00:52:04 -0500140 // keep track of retx count for this segment
141 auto ret = m_retxCount.emplace(segNo, 1);
Weiwei Liu245d7912016-07-28 00:04:25 -0700142 if (ret.second == false) { // not the first retransmission
143 m_retxCount[segNo] += 1;
Davide Pesavento44b3b232017-12-23 16:58:25 -0500144 if (m_options.maxRetriesOnTimeoutOrNack != DataFetcher::MAX_RETRIES_INFINITE &&
145 m_retxCount[segNo] > m_options.maxRetriesOnTimeoutOrNack) {
Weiwei Liu245d7912016-07-28 00:04:25 -0700146 return handleFail(segNo, "Reached the maximum number of retries (" +
147 to_string(m_options.maxRetriesOnTimeoutOrNack) +
148 ") while retrieving segment #" + to_string(segNo));
149 }
150
151 if (m_options.isVerbose) {
152 std::cerr << "# of retries for segment #" << segNo
153 << " is " << m_retxCount[segNo] << std::endl;
154 }
155 }
Weiwei Liu245d7912016-07-28 00:04:25 -0700156 }
157
Davide Pesavento84d84772019-04-07 14:40:07 -0400158 auto interest = Interest()
159 .setName(Name(m_prefix).appendSegment(segNo))
160 .setCanBePrefix(false)
161 .setMustBeFresh(m_options.mustBeFresh)
162 .setInterestLifetime(m_options.interestLifetime);
Weiwei Liu245d7912016-07-28 00:04:25 -0700163
Junxiao Shi06d008c2019-02-04 08:26:59 +0000164 SegmentInfo& segInfo = m_segmentInfo[segNo];
165 segInfo.interestHdl = m_face.expressInterest(interest,
schneiderklausd8197df2019-03-16 11:31:40 -0700166 bind(&PipelineInterestsAdaptive::handleData, this, _1, _2),
167 bind(&PipelineInterestsAdaptive::handleNack, this, _1, _2),
168 bind(&PipelineInterestsAdaptive::handleLifetimeExpiration, this, _1));
Junxiao Shi06d008c2019-02-04 08:26:59 +0000169 segInfo.timeSent = time::steady_clock::now();
170 segInfo.rto = m_rttEstimator.getEstimatedRto();
171
Weiwei Liu245d7912016-07-28 00:04:25 -0700172 m_nInFlight++;
Chavoosh Ghasemi75309ae2018-03-26 14:46:24 -0400173 m_nSent++;
Weiwei Liu245d7912016-07-28 00:04:25 -0700174
175 if (isRetransmission) {
Davide Pesavento958896e2017-01-19 00:52:04 -0500176 segInfo.state = SegmentState::Retransmitted;
Weiwei Liu245d7912016-07-28 00:04:25 -0700177 m_nRetransmitted++;
178 }
179 else {
180 m_highInterest = segNo;
Junxiao Shi06d008c2019-02-04 08:26:59 +0000181 segInfo.state = SegmentState::FirstTimeSent;
Weiwei Liu245d7912016-07-28 00:04:25 -0700182 }
183}
184
185void
schneiderklausd8197df2019-03-16 11:31:40 -0700186PipelineInterestsAdaptive::schedulePackets()
Weiwei Liu245d7912016-07-28 00:04:25 -0700187{
Davide Pesaventobf1c0692017-01-15 19:15:09 -0500188 BOOST_ASSERT(m_nInFlight >= 0);
189 auto availableWindowSize = static_cast<int64_t>(m_cwnd) - m_nInFlight;
190
Weiwei Liu245d7912016-07-28 00:04:25 -0700191 while (availableWindowSize > 0) {
192 if (!m_retxQueue.empty()) { // do retransmission first
193 uint64_t retxSegNo = m_retxQueue.front();
194 m_retxQueue.pop();
Ryan Wickman2c9933c2018-06-12 11:51:51 -0500195 if (m_segmentInfo.count(retxSegNo) == 0) {
schneiderklaus8ff3abd2019-03-12 22:15:12 -0700196 m_nSkippedRetx++;
Weiwei Liu245d7912016-07-28 00:04:25 -0700197 continue;
198 }
Ryan Wickman2c9933c2018-06-12 11:51:51 -0500199 // the segment is still in the map, that means it needs to be retransmitted
Weiwei Liu245d7912016-07-28 00:04:25 -0700200 sendInterest(retxSegNo, true);
201 }
202 else { // send next segment
203 sendInterest(getNextSegmentNo(), false);
204 }
205 availableWindowSize--;
206 }
207}
208
209void
schneiderklausd8197df2019-03-16 11:31:40 -0700210PipelineInterestsAdaptive::handleData(const Interest& interest, const Data& data)
Weiwei Liu245d7912016-07-28 00:04:25 -0700211{
212 if (isStopping())
213 return;
214
Davide Pesavento84d84772019-04-07 14:40:07 -0400215 // Interest was expressed with CanBePrefix=false
Weiwei Liu245d7912016-07-28 00:04:25 -0700216 BOOST_ASSERT(data.getName().equals(interest.getName()));
217
Davide Pesavento969cd5a2018-04-20 16:27:47 -0400218 if (!m_hasFinalBlockId && data.getFinalBlock()) {
219 m_lastSegmentNo = data.getFinalBlock()->toSegment();
Weiwei Liu245d7912016-07-28 00:04:25 -0700220 m_hasFinalBlockId = true;
221 cancelInFlightSegmentsGreaterThan(m_lastSegmentNo);
222 if (m_hasFailure && m_lastSegmentNo >= m_failedSegNo) {
223 // previously failed segment is part of the content
224 return onFailure(m_failureReason);
Chavoosh Ghasemi4d36ed52017-10-31 22:26:25 +0000225 }
226 else {
Weiwei Liu245d7912016-07-28 00:04:25 -0700227 m_hasFailure = false;
228 }
229 }
230
Davide Pesaventobf1c0692017-01-15 19:15:09 -0500231 uint64_t recvSegNo = getSegmentFromPacket(data);
Ryan Wickman2c9933c2018-06-12 11:51:51 -0500232 auto segIt = m_segmentInfo.find(recvSegNo);
233 if (segIt == m_segmentInfo.end()) {
Weiwei Liu245d7912016-07-28 00:04:25 -0700234 return; // ignore already-received segment
235 }
236
Ryan Wickman2c9933c2018-06-12 11:51:51 -0500237 SegmentInfo& segInfo = segIt->second;
Davide Pesaventoba560662019-06-26 22:45:44 -0400238 time::nanoseconds rtt = time::steady_clock::now() - segInfo.timeSent;
Weiwei Liu245d7912016-07-28 00:04:25 -0700239 if (m_options.isVerbose) {
240 std::cerr << "Received segment #" << recvSegNo
Davide Pesaventoba560662019-06-26 22:45:44 -0400241 << ", rtt=" << rtt.count() / 1e6 << "ms"
242 << ", rto=" << segInfo.rto.count() / 1e6 << "ms" << std::endl;
Weiwei Liu245d7912016-07-28 00:04:25 -0700243 }
244
Davide Pesavento958896e2017-01-19 00:52:04 -0500245 if (m_highData < recvSegNo) {
246 m_highData = recvSegNo;
247 }
248
249 // for segments in retx queue, we must not decrement m_nInFlight
250 // because it was already decremented when the segment timed out
251 if (segInfo.state != SegmentState::InRetxQueue) {
Weiwei Liu245d7912016-07-28 00:04:25 -0700252 m_nInFlight--;
253 }
254
Chavoosh Ghasemi641f5932017-11-06 22:45:11 +0000255 // upon finding congestion mark, decrease the window size
256 // without retransmitting any packet
257 if (data.getCongestionMark() > 0) {
258 m_nCongMarks++;
259 if (!m_options.ignoreCongMarks) {
260 if (m_options.disableCwa || m_highData > m_recPoint) {
261 m_recPoint = m_highInterest; // react to only one congestion event (timeout or congestion mark)
262 // per RTT (conservative window adaptation)
schneiderklaus8ff3abd2019-03-12 22:15:12 -0700263 m_nMarkDecr++;
Chavoosh Ghasemi641f5932017-11-06 22:45:11 +0000264 decreaseWindow();
265
266 if (m_options.isVerbose) {
267 std::cerr << "Received congestion mark, value = " << data.getCongestionMark()
268 << ", new cwnd = " << m_cwnd << std::endl;
269 }
270 }
271 }
272 else {
273 increaseWindow();
274 }
275 }
276 else {
277 increaseWindow();
278 }
279
Davide Pesaventoe9c69852017-11-04 18:08:37 -0400280 onData(data);
Weiwei Liu245d7912016-07-28 00:04:25 -0700281
Ryan Wickman2c9933c2018-06-12 11:51:51 -0500282 // do not sample RTT for retransmitted segments
283 if ((segInfo.state == SegmentState::FirstTimeSent ||
284 segInfo.state == SegmentState::InRetxQueue) &&
285 m_retxCount.count(recvSegNo) == 0) {
Davide Pesaventobf1c0692017-01-15 19:15:09 -0500286 auto nExpectedSamples = std::max<int64_t>((m_nInFlight + 1) >> 1, 1);
287 BOOST_ASSERT(nExpectedSamples > 0);
Davide Pesavento5e3773d2019-08-22 15:35:08 -0400288 m_rttEstimator.addMeasurement(rtt, static_cast<size_t>(nExpectedSamples));
289 afterRttMeasurement({recvSegNo, rtt,
290 m_rttEstimator.getSmoothedRtt(),
291 m_rttEstimator.getRttVariation(),
292 m_rttEstimator.getEstimatedRto()});
Weiwei Liu245d7912016-07-28 00:04:25 -0700293 }
294
Ryan Wickman2c9933c2018-06-12 11:51:51 -0500295 // remove the entry associated with the received segment
296 m_segmentInfo.erase(segIt);
297
Ryan Wickman034f30f2018-06-06 11:11:11 -0500298 if (allSegmentsReceived()) {
Weiwei Liu245d7912016-07-28 00:04:25 -0700299 cancel();
Davide Pesaventof6991e12018-01-08 20:58:50 -0500300 if (!m_options.isQuiet) {
Weiwei Liu245d7912016-07-28 00:04:25 -0700301 printSummary();
302 }
303 }
304 else {
305 schedulePackets();
306 }
307}
308
309void
schneiderklausd8197df2019-03-16 11:31:40 -0700310PipelineInterestsAdaptive::handleNack(const Interest& interest, const lp::Nack& nack)
Weiwei Liu245d7912016-07-28 00:04:25 -0700311{
312 if (isStopping())
313 return;
314
315 if (m_options.isVerbose)
316 std::cerr << "Received Nack with reason " << nack.getReason()
317 << " for Interest " << interest << std::endl;
318
Davide Pesaventobf1c0692017-01-15 19:15:09 -0500319 uint64_t segNo = getSegmentFromPacket(interest);
Weiwei Liu245d7912016-07-28 00:04:25 -0700320
321 switch (nack.getReason()) {
Davide Pesavento958896e2017-01-19 00:52:04 -0500322 case lp::NackReason::DUPLICATE:
323 // ignore duplicates
Weiwei Liu245d7912016-07-28 00:04:25 -0700324 break;
Davide Pesavento958896e2017-01-19 00:52:04 -0500325 case lp::NackReason::CONGESTION:
326 // treated the same as timeout for now
327 enqueueForRetransmission(segNo);
328 recordTimeout();
329 schedulePackets();
330 break;
331 default:
Weiwei Liu245d7912016-07-28 00:04:25 -0700332 handleFail(segNo, "Could not retrieve data for " + interest.getName().toUri() +
333 ", reason: " + boost::lexical_cast<std::string>(nack.getReason()));
334 break;
Weiwei Liu245d7912016-07-28 00:04:25 -0700335 }
336}
337
338void
schneiderklausd8197df2019-03-16 11:31:40 -0700339PipelineInterestsAdaptive::handleLifetimeExpiration(const Interest& interest)
Weiwei Liu245d7912016-07-28 00:04:25 -0700340{
341 if (isStopping())
342 return;
343
schneiderklaus8ff3abd2019-03-12 22:15:12 -0700344 m_nTimeouts++;
Davide Pesavento958896e2017-01-19 00:52:04 -0500345 enqueueForRetransmission(getSegmentFromPacket(interest));
346 recordTimeout();
347 schedulePackets();
Weiwei Liu245d7912016-07-28 00:04:25 -0700348}
349
350void
schneiderklausd8197df2019-03-16 11:31:40 -0700351PipelineInterestsAdaptive::recordTimeout()
Weiwei Liu245d7912016-07-28 00:04:25 -0700352{
Weiwei Liu245d7912016-07-28 00:04:25 -0700353 if (m_options.disableCwa || m_highData > m_recPoint) {
354 // react to only one timeout per RTT (conservative window adaptation)
355 m_recPoint = m_highInterest;
356
357 decreaseWindow();
358 m_rttEstimator.backoffRto();
schneiderklaus8ff3abd2019-03-12 22:15:12 -0700359 m_nLossDecr++;
Weiwei Liu245d7912016-07-28 00:04:25 -0700360
361 if (m_options.isVerbose) {
Chavoosh Ghasemi641f5932017-11-06 22:45:11 +0000362 std::cerr << "Packet loss event, new cwnd = " << m_cwnd
Weiwei Liu245d7912016-07-28 00:04:25 -0700363 << ", ssthresh = " << m_ssthresh << std::endl;
364 }
365 }
Davide Pesavento958896e2017-01-19 00:52:04 -0500366}
Weiwei Liu245d7912016-07-28 00:04:25 -0700367
Davide Pesavento958896e2017-01-19 00:52:04 -0500368void
schneiderklausd8197df2019-03-16 11:31:40 -0700369PipelineInterestsAdaptive::enqueueForRetransmission(uint64_t segNo)
Davide Pesavento958896e2017-01-19 00:52:04 -0500370{
371 BOOST_ASSERT(m_nInFlight > 0);
372 m_nInFlight--;
373 m_retxQueue.push(segNo);
374 m_segmentInfo.at(segNo).state = SegmentState::InRetxQueue;
Weiwei Liu245d7912016-07-28 00:04:25 -0700375}
376
377void
schneiderklausd8197df2019-03-16 11:31:40 -0700378PipelineInterestsAdaptive::handleFail(uint64_t segNo, const std::string& reason)
Weiwei Liu245d7912016-07-28 00:04:25 -0700379{
380 if (isStopping())
381 return;
382
383 // if the failed segment is definitely part of the content, raise a fatal error
384 if (m_hasFinalBlockId && segNo <= m_lastSegmentNo)
385 return onFailure(reason);
386
387 if (!m_hasFinalBlockId) {
388 m_segmentInfo.erase(segNo);
Davide Pesavento958896e2017-01-19 00:52:04 -0500389 m_nInFlight--;
Weiwei Liu245d7912016-07-28 00:04:25 -0700390
391 if (m_segmentInfo.empty()) {
392 onFailure("Fetching terminated but no final segment number has been found");
393 }
394 else {
395 cancelInFlightSegmentsGreaterThan(segNo);
396 m_hasFailure = true;
397 m_failedSegNo = segNo;
398 m_failureReason = reason;
399 }
400 }
401}
402
403void
schneiderklausd8197df2019-03-16 11:31:40 -0700404PipelineInterestsAdaptive::cancelInFlightSegmentsGreaterThan(uint64_t segNo)
Weiwei Liu245d7912016-07-28 00:04:25 -0700405{
406 for (auto it = m_segmentInfo.begin(); it != m_segmentInfo.end();) {
407 // cancel fetching all segments that follow
Davide Pesavento958896e2017-01-19 00:52:04 -0500408 if (it->first > segNo) {
Weiwei Liu245d7912016-07-28 00:04:25 -0700409 it = m_segmentInfo.erase(it);
Davide Pesavento958896e2017-01-19 00:52:04 -0500410 m_nInFlight--;
Weiwei Liu245d7912016-07-28 00:04:25 -0700411 }
412 else {
413 ++it;
414 }
415 }
416}
417
418void
Davide Pesavento97a33b22019-10-17 22:10:47 -0400419PipelineInterestsAdaptive::printOptions() const
420{
421 PipelineInterests::printOptions();
422 std::cerr
423 << "\tInitial congestion window size = " << m_options.initCwnd << "\n"
424 << "\tInitial slow start threshold = " << m_options.initSsthresh << "\n"
425 << "\tAdditive increase step = " << m_options.aiStep << "\n"
426 << "\tMultiplicative decrease factor = " << m_options.mdCoef << "\n"
427 << "\tRTO check interval = " << m_options.rtoCheckInterval << "\n"
428 << "\tReact to congestion marks = " << (m_options.ignoreCongMarks ? "no" : "yes") << "\n"
429 << "\tConservative window adaptation = " << (m_options.disableCwa ? "no" : "yes") << "\n"
430 << "\tResetting window to " << (m_options.resetCwndToInit ?
431 "initial value" : "ssthresh") << " upon loss event\n";
432}
433
434void
schneiderklausd8197df2019-03-16 11:31:40 -0700435PipelineInterestsAdaptive::printSummary() const
Weiwei Liu245d7912016-07-28 00:04:25 -0700436{
Chavoosh Ghasemi4d36ed52017-10-31 22:26:25 +0000437 PipelineInterests::printSummary();
schneiderklaus8ff3abd2019-03-12 22:15:12 -0700438 std::cerr << "Congestion marks: " << m_nCongMarks << " (caused " << m_nMarkDecr << " window decreases)\n"
439 << "Timeouts: " << m_nTimeouts << " (caused " << m_nLossDecr << " window decreases)\n"
440 << "Retransmitted segments: " << m_nRetransmitted
Davide Pesaventoba560662019-06-26 22:45:44 -0400441 << " (" << (m_nSent == 0 ? 0 : (m_nRetransmitted * 100.0 / m_nSent)) << "%)"
schneiderklaus8ff3abd2019-03-12 22:15:12 -0700442 << ", skipped: " << m_nSkippedRetx << "\n"
Chavoosh Ghasemi75309ae2018-03-26 14:46:24 -0400443 << "RTT ";
444
Davide Pesaventoba560662019-06-26 22:45:44 -0400445 if (m_rttEstimator.getMinRtt() == time::nanoseconds::max() ||
446 m_rttEstimator.getMaxRtt() == time::nanoseconds::min()) {
Davide Pesavento70576402019-06-07 16:42:21 -0400447 std::cerr << "stats unavailable\n";
448 }
449 else {
450 std::cerr << "min/avg/max = " << std::fixed << std::setprecision(3)
Davide Pesaventoba560662019-06-26 22:45:44 -0400451 << m_rttEstimator.getMinRtt().count() / 1e6 << "/"
452 << m_rttEstimator.getAvgRtt().count() / 1e6 << "/"
453 << m_rttEstimator.getMaxRtt().count() / 1e6 << " ms\n";
Chavoosh Ghasemi75309ae2018-03-26 14:46:24 -0400454 }
Weiwei Liu245d7912016-07-28 00:04:25 -0700455}
456
457std::ostream&
458operator<<(std::ostream& os, SegmentState state)
459{
460 switch (state) {
461 case SegmentState::FirstTimeSent:
462 os << "FirstTimeSent";
463 break;
464 case SegmentState::InRetxQueue:
465 os << "InRetxQueue";
466 break;
467 case SegmentState::Retransmitted:
468 os << "Retransmitted";
469 break;
Weiwei Liu245d7912016-07-28 00:04:25 -0700470 }
Weiwei Liu245d7912016-07-28 00:04:25 -0700471 return os;
472}
473
Weiwei Liu245d7912016-07-28 00:04:25 -0700474} // namespace chunks
475} // namespace ndn