blob: 87b4824dffa7824afaa77def9dcd7f7986d72865 [file] [log] [blame]
Klaus Schneider9e5122b2019-03-19 17:03:25 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesaventob3570c62022-02-19 19:19:00 -05003 * Copyright (c) 2016-2022, Regents of the University of California,
Klaus Schneider9e5122b2019-03-19 17:03:25 -07004 * Colorado State University,
5 * University Pierre & Marie Curie, Sorbonne University.
6 *
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 Klaus Schneider
24 */
25
26#ifndef NDN_TOOLS_CHUNKS_CATCHUNKS_PIPELINE_INTERESTS_CUBIC_HPP
27#define NDN_TOOLS_CHUNKS_CATCHUNKS_PIPELINE_INTERESTS_CUBIC_HPP
28
29#include "pipeline-interests-adaptive.hpp"
30
Davide Pesaventob3570c62022-02-19 19:19:00 -050031namespace ndn::chunks {
Klaus Schneider9e5122b2019-03-19 17:03:25 -070032
Klaus Schneider9e5122b2019-03-19 17:03:25 -070033/**
34 * @brief Implements Cubic window increase and decrease.
35 *
36 * This implementation follows the RFC8312 https://tools.ietf.org/html/rfc8312
37 * and the Linux kernel implementation https://github.com/torvalds/linux/blob/master/net/ipv4/tcp_cubic.c
38 */
Davide Pesavento32c0df22019-10-17 12:00:12 -040039class PipelineInterestsCubic final : public PipelineInterestsAdaptive
Klaus Schneider9e5122b2019-03-19 17:03:25 -070040{
41public:
Davide Pesavento97a33b22019-10-17 22:10:47 -040042 PipelineInterestsCubic(Face& face, RttEstimatorWithStats& rttEstimator, const Options& opts);
Klaus Schneider9e5122b2019-03-19 17:03:25 -070043
44private:
45 void
46 increaseWindow() final;
47
48 void
49 decreaseWindow() final;
50
51private:
Klaus Schneider9e5122b2019-03-19 17:03:25 -070052 double m_wmax = 0.0; ///< window size before last window decrease
53 double m_lastWmax = 0.0; ///< last wmax
Davide Pesaventof8d9a532021-07-03 16:04:12 -040054 time::steady_clock::time_point m_lastDecrease; ///< time of last window decrease
Klaus Schneider9e5122b2019-03-19 17:03:25 -070055};
56
Davide Pesaventob3570c62022-02-19 19:19:00 -050057} // namespace ndn::chunks
Klaus Schneider9e5122b2019-03-19 17:03:25 -070058
59#endif // NDN_TOOLS_CHUNKS_CATCHUNKS_PIPELINE_INTERESTS_CUBIC_HPP