Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2014-2016, Regents of the University of California, |
| 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 | #include "asf-measurements.hpp" |
| 27 | |
| 28 | namespace nfd { |
| 29 | namespace fw { |
| 30 | namespace asf { |
| 31 | |
| 32 | NFD_LOG_INIT("AsfMeasurements"); |
| 33 | |
| 34 | const RttStats::Rtt RttStats::RTT_TIMEOUT(-1.0); |
| 35 | const RttStats::Rtt RttStats::RTT_NO_MEASUREMENT(0.0); |
| 36 | const double RttStats::ALPHA = 0.125; |
| 37 | |
| 38 | RttStats::RttStats() |
| 39 | : m_srtt(RTT_NO_MEASUREMENT) |
| 40 | , m_rtt(RTT_NO_MEASUREMENT) |
| 41 | { |
| 42 | } |
| 43 | |
| 44 | void |
| 45 | RttStats::addRttMeasurement(RttEstimator::Duration& durationRtt) |
| 46 | { |
| 47 | m_rtt = static_cast<RttStats::Rtt>(durationRtt.count()); |
| 48 | |
| 49 | m_rttEstimator.addMeasurement(durationRtt); |
| 50 | |
| 51 | m_srtt = computeSrtt(m_srtt, m_rtt); |
| 52 | } |
| 53 | |
| 54 | RttStats::Rtt |
| 55 | RttStats::computeSrtt(Rtt previousSrtt, Rtt currentRtt) |
| 56 | { |
| 57 | if (previousSrtt == RTT_NO_MEASUREMENT) { |
| 58 | return currentRtt; |
| 59 | } |
| 60 | |
| 61 | return Rtt(ALPHA * currentRtt + (1 - ALPHA) * previousSrtt); |
| 62 | } |
| 63 | |
| 64 | //////////////////////////////////////////////////////////////////////////////// |
| 65 | //////////////////////////////////////////////////////////////////////////////// |
| 66 | |
| 67 | FaceInfo::FaceInfo() |
| 68 | : m_isTimeoutScheduled(false) |
| 69 | { |
| 70 | } |
| 71 | |
| 72 | FaceInfo::~FaceInfo() |
| 73 | { |
| 74 | cancelTimeoutEvent(); |
| 75 | scheduler::cancel(m_measurementExpirationId); |
| 76 | } |
| 77 | |
| 78 | void |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 79 | FaceInfo::setTimeoutEvent(const scheduler::EventId& id, const Name& interestName) |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 80 | { |
| 81 | if (!m_isTimeoutScheduled) { |
| 82 | m_timeoutEventId = id; |
| 83 | m_isTimeoutScheduled = true; |
| 84 | m_lastInterestName = interestName; |
| 85 | } |
| 86 | else { |
| 87 | BOOST_THROW_EXCEPTION(FaceInfo::Error("Tried to schedule a timeout for a face that already has a timeout scheduled.")); |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | void |
| 92 | FaceInfo::cancelTimeoutEvent() |
| 93 | { |
| 94 | scheduler::cancel(m_timeoutEventId); |
| 95 | m_isTimeoutScheduled = false; |
| 96 | } |
| 97 | |
| 98 | void |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 99 | FaceInfo::cancelTimeoutEvent(const Name& prefix) |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 100 | { |
| 101 | if (isTimeoutScheduled() && doesNameMatchLastInterest(prefix)) { |
| 102 | cancelTimeoutEvent(); |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | bool |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 107 | FaceInfo::doesNameMatchLastInterest(const Name& name) |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 108 | { |
| 109 | return m_lastInterestName.isPrefixOf(name); |
| 110 | } |
| 111 | |
| 112 | void |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 113 | FaceInfo::recordRtt(const shared_ptr<pit::Entry>& pitEntry, const Face& inFace) |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 114 | { |
| 115 | // Calculate RTT |
| 116 | pit::OutRecordCollection::const_iterator outRecord = pitEntry->getOutRecord(inFace); |
| 117 | time::steady_clock::Duration steadyRtt = time::steady_clock::now() - outRecord->getLastRenewed(); |
| 118 | RttEstimator::Duration durationRtt = time::duration_cast<RttEstimator::Duration>(steadyRtt); |
| 119 | |
| 120 | m_rttStats.addRttMeasurement(durationRtt); |
| 121 | |
| 122 | NFD_LOG_TRACE("Recording RTT for FaceId: " << inFace.getId() |
| 123 | << " RTT: " << m_rttStats.getRtt() |
| 124 | << " SRTT: " << m_rttStats.getSrtt()); |
| 125 | } |
| 126 | |
| 127 | void |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 128 | FaceInfo::recordTimeout(const Name& interestName) |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 129 | { |
| 130 | m_rttStats.recordTimeout(); |
| 131 | cancelTimeoutEvent(interestName); |
| 132 | } |
| 133 | |
| 134 | //////////////////////////////////////////////////////////////////////////////// |
| 135 | //////////////////////////////////////////////////////////////////////////////// |
| 136 | |
| 137 | NamespaceInfo::NamespaceInfo() |
| 138 | : m_isProbingDue(false) |
| 139 | , m_hasFirstProbeBeenScheduled(false) |
| 140 | { |
| 141 | } |
| 142 | |
| 143 | FaceInfo* |
| 144 | NamespaceInfo::getFaceInfo(const fib::Entry& fibEntry, const Face& face) |
| 145 | { |
| 146 | FaceInfoTable::iterator it = m_fit.find(face.getId()); |
| 147 | |
| 148 | if (it != m_fit.end()) { |
| 149 | return &it->second; |
| 150 | } |
| 151 | else { |
| 152 | return nullptr; |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | FaceInfo& |
| 157 | NamespaceInfo::getOrCreateFaceInfo(const fib::Entry& fibEntry, const Face& face) |
| 158 | { |
| 159 | FaceInfoTable::iterator it = m_fit.find(face.getId()); |
| 160 | |
| 161 | FaceInfo* info = nullptr; |
| 162 | |
| 163 | if (it == m_fit.end()) { |
| 164 | const auto& pair = m_fit.insert(std::make_pair(face.getId(), FaceInfo())); |
| 165 | info = &pair.first->second; |
| 166 | |
| 167 | extendFaceInfoLifetime(*info, face); |
| 168 | } |
| 169 | else { |
| 170 | info = &it->second; |
| 171 | } |
| 172 | |
| 173 | return *info; |
| 174 | } |
| 175 | |
| 176 | void |
| 177 | NamespaceInfo::expireFaceInfo(nfd::face::FaceId faceId) |
| 178 | { |
| 179 | m_fit.erase(faceId); |
| 180 | } |
| 181 | |
| 182 | void |
| 183 | NamespaceInfo::extendFaceInfoLifetime(FaceInfo& info, const Face& face) |
| 184 | { |
| 185 | // Cancel previous expiration |
| 186 | scheduler::cancel(info.getMeasurementExpirationEventId()); |
| 187 | |
| 188 | // Refresh measurement |
| 189 | scheduler::EventId id = scheduler::schedule(AsfMeasurements::MEASUREMENTS_LIFETIME, |
| 190 | bind(&NamespaceInfo::expireFaceInfo, this, face.getId())); |
| 191 | |
| 192 | info.setMeasurementExpirationEventId(id); |
| 193 | } |
| 194 | |
| 195 | //////////////////////////////////////////////////////////////////////////////// |
| 196 | //////////////////////////////////////////////////////////////////////////////// |
| 197 | |
| 198 | constexpr time::microseconds AsfMeasurements::MEASUREMENTS_LIFETIME; |
| 199 | |
| 200 | AsfMeasurements::AsfMeasurements(MeasurementsAccessor& measurements) |
| 201 | : m_measurements(measurements) |
| 202 | { |
| 203 | } |
| 204 | |
| 205 | FaceInfo* |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 206 | AsfMeasurements::getFaceInfo(const fib::Entry& fibEntry, const Interest& interest, const Face& face) |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 207 | { |
| 208 | NamespaceInfo& info = getOrCreateNamespaceInfo(fibEntry, interest); |
| 209 | return info.getFaceInfo(fibEntry, face); |
| 210 | } |
| 211 | |
| 212 | FaceInfo& |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 213 | AsfMeasurements::getOrCreateFaceInfo(const fib::Entry& fibEntry, const Interest& interest, const Face& face) |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 214 | { |
| 215 | NamespaceInfo& info = getOrCreateNamespaceInfo(fibEntry, interest); |
| 216 | return info.getOrCreateFaceInfo(fibEntry, face); |
| 217 | } |
| 218 | |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 219 | NamespaceInfo* |
| 220 | AsfMeasurements::getNamespaceInfo(const Name& prefix) |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 221 | { |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 222 | measurements::Entry* me = m_measurements.findLongestPrefixMatch(prefix); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 223 | if (me == nullptr) { |
| 224 | return nullptr; |
| 225 | } |
| 226 | |
| 227 | // Set or update entry lifetime |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 228 | extendLifetime(*me); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 229 | |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 230 | NamespaceInfo* info = me->insertStrategyInfo<NamespaceInfo>().first; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 231 | BOOST_ASSERT(info != nullptr); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 232 | return info; |
| 233 | } |
| 234 | |
| 235 | NamespaceInfo& |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 236 | AsfMeasurements::getOrCreateNamespaceInfo(const fib::Entry& fibEntry, const Interest& interest) |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 237 | { |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 238 | measurements::Entry* me = m_measurements.get(fibEntry); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 239 | |
| 240 | // If the FIB entry is not under the strategy's namespace, find a part of the prefix |
| 241 | // that falls under the strategy's namespace |
| 242 | for (size_t prefixLen = fibEntry.getPrefix().size() + 1; |
| 243 | me == nullptr && prefixLen <= interest.getName().size(); ++prefixLen) { |
| 244 | me = m_measurements.get(interest.getName().getPrefix(prefixLen)); |
| 245 | } |
| 246 | |
| 247 | // Either the FIB entry or the Interest's name must be under this strategy's namespace |
| 248 | BOOST_ASSERT(me != nullptr); |
| 249 | |
| 250 | // Set or update entry lifetime |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 251 | extendLifetime(*me); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 252 | |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 253 | NamespaceInfo* info = me->insertStrategyInfo<NamespaceInfo>().first; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 254 | BOOST_ASSERT(info != nullptr); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 255 | return *info; |
| 256 | } |
| 257 | |
| 258 | void |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 259 | AsfMeasurements::extendLifetime(measurements::Entry& me) |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 260 | { |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 261 | m_measurements.extendLifetime(me, MEASUREMENTS_LIFETIME); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | } // namespace asf |
| 265 | } // namespace fw |
| 266 | } // namespace nfd |