blob: a3eafc95647e5f3e0110a124c6ba04939550cb16 [file] [log] [blame]
Vince Lehman8a4c29e2016-07-11 08:49:35 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -05002/*
Davide Pesaventob7bfcb92022-05-22 23:55:23 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Vince Lehman8a4c29e2016-07-11 08:49:35 +00004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#ifndef NFD_DAEMON_FW_ASF_MEASUREMENTS_HPP
27#define NFD_DAEMON_FW_ASF_MEASUREMENTS_HPP
28
Vince Lehman8a4c29e2016-07-11 08:49:35 +000029#include "fw/strategy-info.hpp"
30#include "table/measurements-accessor.hpp"
31
Ernest McCracken1402fa12019-06-09 00:36:28 -070032#include <ndn-cxx/util/rtt-estimator.hpp>
33
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040034#include <unordered_map>
35
Vince Lehman8a4c29e2016-07-11 08:49:35 +000036namespace nfd {
37namespace fw {
38namespace asf {
39
Vince Lehman8a4c29e2016-07-11 08:49:35 +000040/** \brief Strategy information for each face in a namespace
41*/
42class FaceInfo
43{
44public:
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040045 explicit
46 FaceInfo(shared_ptr<const ndn::util::RttEstimator::Options> opts)
47 : m_rttEstimator(std::move(opts))
Vince Lehman8a4c29e2016-07-11 08:49:35 +000048 {
Vince Lehman8a4c29e2016-07-11 08:49:35 +000049 }
50
Vince Lehman8a4c29e2016-07-11 08:49:35 +000051 bool
52 isTimeoutScheduled() const
53 {
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040054 return !!m_timeoutEvent;
55 }
56
57 time::nanoseconds
58 scheduleTimeout(const Name& interestName, scheduler::EventCallback cb);
59
60 void
61 cancelTimeout(const Name& prefix);
62
63 void
64 recordRtt(time::nanoseconds rtt)
65 {
66 m_lastRtt = rtt;
67 m_rttEstimator.addMeasurement(rtt);
Vince Lehman8a4c29e2016-07-11 08:49:35 +000068 }
69
70 void
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040071 recordTimeout(const Name& interestName)
72 {
73 m_lastRtt = RTT_TIMEOUT;
74 cancelTimeout(interestName);
75 }
Vince Lehman8a4c29e2016-07-11 08:49:35 +000076
77 bool
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040078 hasTimeout() const
Vince Lehman8a4c29e2016-07-11 08:49:35 +000079 {
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040080 return getLastRtt() == RTT_TIMEOUT;
Vince Lehman8a4c29e2016-07-11 08:49:35 +000081 }
82
Ernest McCracken1402fa12019-06-09 00:36:28 -070083 time::nanoseconds
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040084 getLastRtt() const
Vince Lehman8a4c29e2016-07-11 08:49:35 +000085 {
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040086 return m_lastRtt;
Vince Lehman8a4c29e2016-07-11 08:49:35 +000087 }
88
Ernest McCracken1402fa12019-06-09 00:36:28 -070089 time::nanoseconds
Vince Lehman8a4c29e2016-07-11 08:49:35 +000090 getSrtt() const
91 {
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040092 return m_rttEstimator.getSmoothedRtt();
Vince Lehman8a4c29e2016-07-11 08:49:35 +000093 }
94
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050095 size_t
Saurab Dulalaf3ff5a2021-09-19 19:45:07 -040096 getNTimeouts() const
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050097 {
Saurab Dulalaf3ff5a2021-09-19 19:45:07 -040098 return m_nTimeouts;
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050099 }
100
101 void
Saurab Dulalaf3ff5a2021-09-19 19:45:07 -0400102 setNTimeouts(size_t nTimeouts)
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -0500103 {
Saurab Dulalaf3ff5a2021-09-19 19:45:07 -0400104 m_nTimeouts = nTimeouts;
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -0500105 }
106
Davide Pesaventoa6f637a2019-08-28 23:23:20 -0400107public:
108 static const time::nanoseconds RTT_NO_MEASUREMENT;
109 static const time::nanoseconds RTT_TIMEOUT;
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000110
111private:
Davide Pesaventoa6f637a2019-08-28 23:23:20 -0400112 ndn::util::RttEstimator m_rttEstimator;
113 time::nanoseconds m_lastRtt = RTT_NO_MEASUREMENT;
Junxiao Shifc021862016-08-25 21:51:18 +0000114 Name m_lastInterestName;
Saurab Dulalaf3ff5a2021-09-19 19:45:07 -0400115 size_t m_nTimeouts = 0;
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000116
117 // Timeout associated with measurement
Davide Pesaventoa6f637a2019-08-28 23:23:20 -0400118 scheduler::ScopedEventId m_measurementExpiration;
119 friend class NamespaceInfo;
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000120
121 // RTO associated with Interest
Davide Pesaventoa6f637a2019-08-28 23:23:20 -0400122 scheduler::ScopedEventId m_timeoutEvent;
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000123};
124
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000125////////////////////////////////////////////////////////////////////////////////
126////////////////////////////////////////////////////////////////////////////////
127
Davide Pesaventoa6f637a2019-08-28 23:23:20 -0400128/** \brief Stores strategy information about each face in this namespace
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000129 */
Davide Pesavento3db98072021-03-09 23:03:27 -0500130class NamespaceInfo final : public StrategyInfo
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000131{
132public:
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000133 static constexpr int
134 getTypeId()
135 {
136 return 1030;
137 }
138
Davide Pesaventoa6f637a2019-08-28 23:23:20 -0400139 explicit
140 NamespaceInfo(shared_ptr<const ndn::util::RttEstimator::Options> opts)
141 : m_rttEstimatorOpts(std::move(opts))
142 {
143 }
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000144
145 FaceInfo*
Davide Pesaventoa6f637a2019-08-28 23:23:20 -0400146 getFaceInfo(FaceId faceId);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000147
Davide Pesaventoa6f637a2019-08-28 23:23:20 -0400148 FaceInfo&
149 getOrCreateFaceInfo(FaceId faceId);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000150
151 void
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -0500152 extendFaceInfoLifetime(FaceInfo& info, FaceId faceId);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000153
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000154 bool
155 isProbingDue() const
156 {
157 return m_isProbingDue;
158 }
159
160 void
161 setIsProbingDue(bool isProbingDue)
162 {
163 m_isProbingDue = isProbingDue;
164 }
165
166 bool
167 isFirstProbeScheduled() const
168 {
Davide Pesaventoa6f637a2019-08-28 23:23:20 -0400169 return m_isFirstProbeScheduled;
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000170 }
171
172 void
Davide Pesaventoa6f637a2019-08-28 23:23:20 -0400173 setIsFirstProbeScheduled(bool isScheduled)
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000174 {
Davide Pesaventoa6f637a2019-08-28 23:23:20 -0400175 m_isFirstProbeScheduled = isScheduled;
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000176 }
177
178private:
Davide Pesaventoa6f637a2019-08-28 23:23:20 -0400179 std::unordered_map<FaceId, FaceInfo> m_fiMap;
180 shared_ptr<const ndn::util::RttEstimator::Options> m_rttEstimatorOpts;
181 bool m_isProbingDue = false;
182 bool m_isFirstProbeScheduled = false;
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000183};
184
185////////////////////////////////////////////////////////////////////////////////
186////////////////////////////////////////////////////////////////////////////////
187
188/** \brief Helper class to retrieve and create strategy measurements
189 */
190class AsfMeasurements : noncopyable
191{
192public:
193 explicit
194 AsfMeasurements(MeasurementsAccessor& measurements);
195
196 FaceInfo*
Saurab Dulal432be572021-01-26 12:09:29 -0600197 getFaceInfo(const fib::Entry& fibEntry, const Name& interestName, FaceId faceId);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000198
199 FaceInfo&
Saurab Dulal432be572021-01-26 12:09:29 -0600200 getOrCreateFaceInfo(const fib::Entry& fibEntry, const Name& interestName, FaceId faceId);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000201
Junxiao Shifc021862016-08-25 21:51:18 +0000202 NamespaceInfo*
203 getNamespaceInfo(const Name& prefix);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000204
205 NamespaceInfo&
Saurab Dulal432be572021-01-26 12:09:29 -0600206 getOrCreateNamespaceInfo(const fib::Entry& fibEntry, const Name& prefix);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000207
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000208private:
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000209 void
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000210 extendLifetime(measurements::Entry& me);
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000211
212public:
Davide Pesavento14e71f02019-03-28 17:35:25 -0400213 static constexpr time::microseconds MEASUREMENTS_LIFETIME = 5_min;
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000214
215private:
216 MeasurementsAccessor& m_measurements;
Davide Pesaventoa6f637a2019-08-28 23:23:20 -0400217 shared_ptr<const ndn::util::RttEstimator::Options> m_rttEstimatorOpts;
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000218};
219
220} // namespace asf
221} // namespace fw
222} // namespace nfd
223
224#endif // NFD_DAEMON_FW_ASF_MEASUREMENTS_HPP