Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Ashlesh Gawande | 92e4ea5 | 2017-07-19 11:38:12 -0500 | [diff] [blame] | 2 | /* |
Davide Pesavento | 14e71f0 | 2019-03-28 17:35:25 -0400 | [diff] [blame] | 3 | * Copyright (c) 2014-2019, Regents of the University of California, |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 4 | * 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 Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 29 | #include "fw/strategy-info.hpp" |
| 30 | #include "table/measurements-accessor.hpp" |
| 31 | |
Ernest McCracken | 1402fa1 | 2019-06-09 00:36:28 -0700 | [diff] [blame] | 32 | #include <ndn-cxx/util/rtt-estimator.hpp> |
| 33 | |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 34 | namespace nfd { |
| 35 | namespace fw { |
| 36 | namespace asf { |
| 37 | |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 38 | /** \brief Strategy information for each face in a namespace |
| 39 | */ |
| 40 | class FaceInfo |
| 41 | { |
| 42 | public: |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 43 | explicit |
| 44 | FaceInfo(shared_ptr<const ndn::util::RttEstimator::Options> opts) |
| 45 | : m_rttEstimator(std::move(opts)) |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 46 | { |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 47 | } |
| 48 | |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 49 | bool |
| 50 | isTimeoutScheduled() const |
| 51 | { |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 52 | return !!m_timeoutEvent; |
| 53 | } |
| 54 | |
| 55 | time::nanoseconds |
| 56 | scheduleTimeout(const Name& interestName, scheduler::EventCallback cb); |
| 57 | |
| 58 | void |
| 59 | cancelTimeout(const Name& prefix); |
| 60 | |
| 61 | void |
| 62 | recordRtt(time::nanoseconds rtt) |
| 63 | { |
| 64 | m_lastRtt = rtt; |
| 65 | m_rttEstimator.addMeasurement(rtt); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | void |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 69 | recordTimeout(const Name& interestName) |
| 70 | { |
| 71 | m_lastRtt = RTT_TIMEOUT; |
| 72 | cancelTimeout(interestName); |
| 73 | } |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 74 | |
| 75 | bool |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 76 | hasTimeout() const |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 77 | { |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 78 | return getLastRtt() == RTT_TIMEOUT; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 79 | } |
| 80 | |
Ernest McCracken | 1402fa1 | 2019-06-09 00:36:28 -0700 | [diff] [blame] | 81 | time::nanoseconds |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 82 | getLastRtt() const |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 83 | { |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 84 | return m_lastRtt; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 85 | } |
| 86 | |
Ernest McCracken | 1402fa1 | 2019-06-09 00:36:28 -0700 | [diff] [blame] | 87 | time::nanoseconds |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 88 | getSrtt() const |
| 89 | { |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 90 | return m_rttEstimator.getSmoothedRtt(); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 91 | } |
| 92 | |
Ashlesh Gawande | 92e4ea5 | 2017-07-19 11:38:12 -0500 | [diff] [blame] | 93 | size_t |
| 94 | getNSilentTimeouts() const |
| 95 | { |
| 96 | return m_nSilentTimeouts; |
| 97 | } |
| 98 | |
| 99 | void |
| 100 | setNSilentTimeouts(size_t nSilentTimeouts) |
| 101 | { |
| 102 | m_nSilentTimeouts = nSilentTimeouts; |
| 103 | } |
| 104 | |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 105 | public: |
| 106 | static const time::nanoseconds RTT_NO_MEASUREMENT; |
| 107 | static const time::nanoseconds RTT_TIMEOUT; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 108 | |
| 109 | private: |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 110 | ndn::util::RttEstimator m_rttEstimator; |
| 111 | time::nanoseconds m_lastRtt = RTT_NO_MEASUREMENT; |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 112 | Name m_lastInterestName; |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 113 | size_t m_nSilentTimeouts = 0; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 114 | |
| 115 | // Timeout associated with measurement |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 116 | scheduler::ScopedEventId m_measurementExpiration; |
| 117 | friend class NamespaceInfo; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 118 | |
| 119 | // RTO associated with Interest |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 120 | scheduler::ScopedEventId m_timeoutEvent; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 121 | }; |
| 122 | |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 123 | //////////////////////////////////////////////////////////////////////////////// |
| 124 | //////////////////////////////////////////////////////////////////////////////// |
| 125 | |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 126 | /** \brief Stores strategy information about each face in this namespace |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 127 | */ |
| 128 | class NamespaceInfo : public StrategyInfo |
| 129 | { |
| 130 | public: |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 131 | static constexpr int |
| 132 | getTypeId() |
| 133 | { |
| 134 | return 1030; |
| 135 | } |
| 136 | |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 137 | explicit |
| 138 | NamespaceInfo(shared_ptr<const ndn::util::RttEstimator::Options> opts) |
| 139 | : m_rttEstimatorOpts(std::move(opts)) |
| 140 | { |
| 141 | } |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 142 | |
| 143 | FaceInfo* |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 144 | getFaceInfo(FaceId faceId); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 145 | |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 146 | FaceInfo& |
| 147 | getOrCreateFaceInfo(FaceId faceId); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 148 | |
| 149 | void |
Ashlesh Gawande | 92e4ea5 | 2017-07-19 11:38:12 -0500 | [diff] [blame] | 150 | extendFaceInfoLifetime(FaceInfo& info, FaceId faceId); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 151 | |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 152 | bool |
| 153 | isProbingDue() const |
| 154 | { |
| 155 | return m_isProbingDue; |
| 156 | } |
| 157 | |
| 158 | void |
| 159 | setIsProbingDue(bool isProbingDue) |
| 160 | { |
| 161 | m_isProbingDue = isProbingDue; |
| 162 | } |
| 163 | |
| 164 | bool |
| 165 | isFirstProbeScheduled() const |
| 166 | { |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 167 | return m_isFirstProbeScheduled; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | void |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 171 | setIsFirstProbeScheduled(bool isScheduled) |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 172 | { |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 173 | m_isFirstProbeScheduled = isScheduled; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | private: |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 177 | std::unordered_map<FaceId, FaceInfo> m_fiMap; |
| 178 | shared_ptr<const ndn::util::RttEstimator::Options> m_rttEstimatorOpts; |
| 179 | bool m_isProbingDue = false; |
| 180 | bool m_isFirstProbeScheduled = false; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 181 | }; |
| 182 | |
| 183 | //////////////////////////////////////////////////////////////////////////////// |
| 184 | //////////////////////////////////////////////////////////////////////////////// |
| 185 | |
| 186 | /** \brief Helper class to retrieve and create strategy measurements |
| 187 | */ |
| 188 | class AsfMeasurements : noncopyable |
| 189 | { |
| 190 | public: |
| 191 | explicit |
| 192 | AsfMeasurements(MeasurementsAccessor& measurements); |
| 193 | |
| 194 | FaceInfo* |
Ashlesh Gawande | 92e4ea5 | 2017-07-19 11:38:12 -0500 | [diff] [blame] | 195 | getFaceInfo(const fib::Entry& fibEntry, const Interest& interest, FaceId faceId); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 196 | |
| 197 | FaceInfo& |
Ashlesh Gawande | 92e4ea5 | 2017-07-19 11:38:12 -0500 | [diff] [blame] | 198 | getOrCreateFaceInfo(const fib::Entry& fibEntry, const Interest& interest, FaceId faceId); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 199 | |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 200 | NamespaceInfo* |
| 201 | getNamespaceInfo(const Name& prefix); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 202 | |
| 203 | NamespaceInfo& |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 204 | getOrCreateNamespaceInfo(const fib::Entry& fibEntry, const Interest& interest); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 205 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 206 | private: |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 207 | void |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 208 | extendLifetime(measurements::Entry& me); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 209 | |
| 210 | public: |
Davide Pesavento | 14e71f0 | 2019-03-28 17:35:25 -0400 | [diff] [blame] | 211 | static constexpr time::microseconds MEASUREMENTS_LIFETIME = 5_min; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 212 | |
| 213 | private: |
| 214 | MeasurementsAccessor& m_measurements; |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame^] | 215 | shared_ptr<const ndn::util::RttEstimator::Options> m_rttEstimatorOpts; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 216 | }; |
| 217 | |
| 218 | } // namespace asf |
| 219 | } // namespace fw |
| 220 | } // namespace nfd |
| 221 | |
| 222 | #endif // NFD_DAEMON_FW_ASF_MEASUREMENTS_HPP |