akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | af7a211 | 2019-03-19 14:55:20 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2021, The University of Memphis, |
Nick Gordon | f8b5bcd | 2016-08-11 15:06:50 -0500 | [diff] [blame] | 4 | * Regents of the University of California |
akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 5 | * |
| 6 | * This file is part of NLSR (Named-data Link State Routing). |
| 7 | * See AUTHORS.md for complete list of NLSR authors and contributors. |
| 8 | * |
| 9 | * NLSR is free software: you can redistribute it and/or modify it under the terms |
| 10 | * of the GNU General Public License as published by the Free Software Foundation, |
| 11 | * either version 3 of the License, or (at your option) any later version. |
| 12 | * |
| 13 | * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 14 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 15 | * PURPOSE. See the GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License along with |
| 18 | * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame] | 19 | */ |
Davide Pesavento | a08dc3f | 2018-05-24 00:40:28 -0400 | [diff] [blame] | 20 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 21 | #include "routing-table.hpp" |
| 22 | #include "nlsr.hpp" |
| 23 | #include "map.hpp" |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 24 | #include "conf-parameter.hpp" |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 25 | #include "routing-table-calculator.hpp" |
| 26 | #include "routing-table-entry.hpp" |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 27 | #include "logger.hpp" |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame] | 28 | #include "tlv-nlsr.hpp" |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 29 | |
| 30 | namespace nlsr { |
| 31 | |
dmcoomes | cf8d0ed | 2017-02-21 11:39:01 -0600 | [diff] [blame] | 32 | INIT_LOGGER(route.RoutingTable); |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 33 | |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame^] | 34 | RoutingTable::RoutingTable(ndn::Scheduler& scheduler, Lsdb& lsdb, ConfParameter& confParam) |
| 35 | : m_scheduler(scheduler) |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 36 | , m_lsdb(lsdb) |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 37 | , m_routingCalcInterval{confParam.getRoutingCalcInterval()} |
| 38 | , m_isRoutingTableCalculating(false) |
| 39 | , m_isRouteCalculationScheduled(false) |
| 40 | , m_confParam(confParam) |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame^] | 41 | , m_hyperbolicState(m_confParam.getHyperbolicState()) |
Nick Gordon | b7b5839 | 2017-08-17 16:29:21 -0500 | [diff] [blame] | 42 | { |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame^] | 43 | m_afterLsdbModified = lsdb.onLsdbModified.connect( |
| 44 | [this] (std::shared_ptr<Lsa> lsa, LsdbUpdate updateType, |
| 45 | const auto& namesToAdd, const auto& namesToRemove) { |
| 46 | auto type = lsa->getType(); |
| 47 | bool updateForOwnAdjacencyLsa = lsa->getOriginRouter() == m_confParam.getRouterPrefix() && |
| 48 | type == Lsa::Type::ADJACENCY; |
| 49 | bool scheduleCalculation = false; |
| 50 | |
| 51 | if (updateType == LsdbUpdate::REMOVED && updateForOwnAdjacencyLsa) { |
| 52 | // If own Adjacency LSA is removed then we have no ACTIVE neighbors. |
| 53 | // (Own Coordinate LSA is never removed. But routing table calculation is scheduled |
| 54 | // in HelloProtocol. The routing table calculator for HR takes into account |
| 55 | // the INACTIVE status of the link). |
| 56 | NLSR_LOG_DEBUG("No Adj LSA of router itself, routing table can not be calculated :("); |
| 57 | clearRoutingTable(); |
| 58 | clearDryRoutingTable(); |
| 59 | NLSR_LOG_DEBUG("Calling Update NPT With new Route"); |
| 60 | afterRoutingChange(m_rTable); |
| 61 | NLSR_LOG_DEBUG(*this); |
| 62 | m_ownAdjLsaExist = false; |
| 63 | } |
| 64 | |
| 65 | if (updateType == LsdbUpdate::INSTALLED && updateForOwnAdjacencyLsa) { |
| 66 | m_ownAdjLsaExist = true; |
| 67 | } |
| 68 | |
| 69 | // Don;t do anything on removal, wait for HelloProtocol to confirm and then react |
| 70 | if (updateType == LsdbUpdate::INSTALLED || updateType == LsdbUpdate::UPDATED) { |
| 71 | if ((type == Lsa::Type::ADJACENCY && m_hyperbolicState != HYPERBOLIC_STATE_ON) || |
| 72 | (type == Lsa::Type::COORDINATE && m_hyperbolicState != HYPERBOLIC_STATE_OFF)) { |
| 73 | scheduleCalculation = true; |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | if (scheduleCalculation) { |
| 78 | scheduleRoutingTableCalculation(); |
| 79 | } |
| 80 | } |
| 81 | ); |
Nick Gordon | b7b5839 | 2017-08-17 16:29:21 -0500 | [diff] [blame] | 82 | } |
| 83 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 84 | void |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 85 | RoutingTable::calculate() |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 86 | { |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 87 | m_lsdb.writeLog(); |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame^] | 88 | NLSR_LOG_TRACE("Calculating routing table"); |
| 89 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 90 | if (m_isRoutingTableCalculating == false) { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 91 | m_isRoutingTableCalculating = true; |
Nick Gordon | e8e03ac | 2016-07-07 14:24:38 -0500 | [diff] [blame] | 92 | |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame^] | 93 | if (m_hyperbolicState == HYPERBOLIC_STATE_OFF) { |
| 94 | calculateLsRoutingTable(); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 95 | } |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame^] | 96 | else if (m_hyperbolicState == HYPERBOLIC_STATE_DRY_RUN) { |
| 97 | calculateLsRoutingTable(); |
| 98 | calculateHypRoutingTable(true); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 99 | } |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame^] | 100 | else if (m_hyperbolicState == HYPERBOLIC_STATE_ON) { |
| 101 | calculateHypRoutingTable(false); |
| 102 | } |
| 103 | |
| 104 | m_isRouteCalculationScheduled = false; |
| 105 | m_isRoutingTableCalculating = false; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 106 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 107 | else { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 108 | scheduleRoutingTableCalculation(); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 109 | } |
| 110 | } |
| 111 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 112 | void |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 113 | RoutingTable::calculateLsRoutingTable() |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 114 | { |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 115 | NLSR_LOG_TRACE("CalculateLsRoutingTable Called"); |
Vince Lehman | 9a70903 | 2014-09-13 16:28:07 -0500 | [diff] [blame] | 116 | |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame^] | 117 | if (m_lsdb.getIsBuildAdjLsaScheduled()) { |
| 118 | NLSR_LOG_DEBUG("Adjacency build is scheduled, routing table can not be calculated :("); |
| 119 | return; |
| 120 | } |
| 121 | |
| 122 | // We only check this in LS since we never remove our own Coordinate LSA, |
| 123 | // whereas we remove our own Adjacency LSA if we don't have any neighbors |
| 124 | if (!m_ownAdjLsaExist) { |
| 125 | return; |
| 126 | } |
| 127 | |
| 128 | clearRoutingTable(); |
| 129 | |
Vince Lehman | 9a70903 | 2014-09-13 16:28:07 -0500 | [diff] [blame] | 130 | Map map; |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 131 | auto lsaRange = m_lsdb.getLsdbIterator<AdjLsa>(); |
| 132 | map.createFromAdjLsdb(lsaRange.first, lsaRange.second); |
Vince Lehman | 9a70903 | 2014-09-13 16:28:07 -0500 | [diff] [blame] | 133 | map.writeLog(); |
| 134 | |
| 135 | size_t nRouters = map.getMapSize(); |
| 136 | |
| 137 | LinkStateRoutingTableCalculator calculator(nRouters); |
| 138 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 139 | calculator.calculatePath(map, *this, m_confParam, m_lsdb); |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame^] | 140 | |
| 141 | NLSR_LOG_DEBUG("Calling Update NPT With new Route"); |
| 142 | afterRoutingChange(m_rTable); |
| 143 | NLSR_LOG_DEBUG(*this); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | void |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 147 | RoutingTable::calculateHypRoutingTable(bool isDryRun) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 148 | { |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame^] | 149 | if (isDryRun) { |
| 150 | clearDryRoutingTable(); |
| 151 | } |
| 152 | else { |
| 153 | clearRoutingTable(); |
| 154 | } |
| 155 | |
Vince Lehman | 9a70903 | 2014-09-13 16:28:07 -0500 | [diff] [blame] | 156 | Map map; |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 157 | auto lsaRange = m_lsdb.getLsdbIterator<CoordinateLsa>(); |
| 158 | map.createFromCoordinateLsdb(lsaRange.first, lsaRange.second); |
Vince Lehman | 9a70903 | 2014-09-13 16:28:07 -0500 | [diff] [blame] | 159 | map.writeLog(); |
| 160 | |
| 161 | size_t nRouters = map.getMapSize(); |
| 162 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 163 | HyperbolicRoutingCalculator calculator(nRouters, isDryRun, m_confParam.getRouterPrefix()); |
Vince Lehman | 9a70903 | 2014-09-13 16:28:07 -0500 | [diff] [blame] | 164 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 165 | calculator.calculatePath(map, *this, m_lsdb, m_confParam.getAdjacencyList()); |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame^] | 166 | |
| 167 | if (!isDryRun) { |
| 168 | NLSR_LOG_DEBUG("Calling Update NPT With new Route"); |
| 169 | afterRoutingChange(m_rTable); |
| 170 | NLSR_LOG_DEBUG(*this); |
| 171 | } |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | void |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 175 | RoutingTable::scheduleRoutingTableCalculation() |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 176 | { |
Davide Pesavento | af7a211 | 2019-03-19 14:55:20 -0400 | [diff] [blame] | 177 | if (!m_isRouteCalculationScheduled) { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 178 | NLSR_LOG_DEBUG("Scheduling routing table calculation in " << m_routingCalcInterval); |
Davide Pesavento | af7a211 | 2019-03-19 14:55:20 -0400 | [diff] [blame] | 179 | m_scheduler.schedule(m_routingCalcInterval, [this] { calculate(); }); |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 180 | m_isRouteCalculationScheduled = true; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 181 | } |
| 182 | } |
| 183 | |
| 184 | static bool |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 185 | routingTableEntryCompare(RoutingTableEntry& rte, ndn::Name& destRouter) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 186 | { |
| 187 | return rte.getDestination() == destRouter; |
| 188 | } |
| 189 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 190 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 191 | RoutingTable::addNextHop(const ndn::Name& destRouter, NextHop& nh) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 192 | { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 193 | NLSR_LOG_DEBUG("Adding " << nh << " for destination: " << destRouter); |
Vince Lehman | 9a70903 | 2014-09-13 16:28:07 -0500 | [diff] [blame] | 194 | |
akmhoque | b6450b1 | 2014-04-24 00:01:03 -0500 | [diff] [blame] | 195 | RoutingTableEntry* rteChk = findRoutingTableEntry(destRouter); |
Davide Pesavento | af7a211 | 2019-03-19 14:55:20 -0400 | [diff] [blame] | 196 | if (rteChk == nullptr) { |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 197 | RoutingTableEntry rte(destRouter); |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 198 | rte.getNexthopList().addNextHop(nh); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 199 | m_rTable.push_back(rte); |
| 200 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 201 | else { |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 202 | rteChk->getNexthopList().addNextHop(nh); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 203 | } |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame^] | 204 | m_wire.reset(); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 205 | } |
| 206 | |
akmhoque | b6450b1 | 2014-04-24 00:01:03 -0500 | [diff] [blame] | 207 | RoutingTableEntry* |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 208 | RoutingTable::findRoutingTableEntry(const ndn::Name& destRouter) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 209 | { |
Davide Pesavento | af7a211 | 2019-03-19 14:55:20 -0400 | [diff] [blame] | 210 | auto it = std::find_if(m_rTable.begin(), m_rTable.end(), |
| 211 | std::bind(&routingTableEntryCompare, _1, destRouter)); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 212 | if (it != m_rTable.end()) { |
akmhoque | b6450b1 | 2014-04-24 00:01:03 -0500 | [diff] [blame] | 213 | return &(*it); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 214 | } |
Davide Pesavento | af7a211 | 2019-03-19 14:55:20 -0400 | [diff] [blame] | 215 | return nullptr; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | void |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 219 | RoutingTable::addNextHopToDryTable(const ndn::Name& destRouter, NextHop& nh) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 220 | { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 221 | NLSR_LOG_DEBUG("Adding " << nh << " to dry table for destination: " << destRouter); |
Vince Lehman | 9a70903 | 2014-09-13 16:28:07 -0500 | [diff] [blame] | 222 | |
Davide Pesavento | af7a211 | 2019-03-19 14:55:20 -0400 | [diff] [blame] | 223 | auto it = std::find_if(m_dryTable.begin(), m_dryTable.end(), |
| 224 | std::bind(&routingTableEntryCompare, _1, destRouter)); |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 225 | if (it == m_dryTable.end()) { |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 226 | RoutingTableEntry rte(destRouter); |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 227 | rte.getNexthopList().addNextHop(nh); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 228 | m_dryTable.push_back(rte); |
| 229 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 230 | else { |
Davide Pesavento | af7a211 | 2019-03-19 14:55:20 -0400 | [diff] [blame] | 231 | it->getNexthopList().addNextHop(nh); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 232 | } |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame^] | 233 | m_wire.reset(); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | void |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 237 | RoutingTable::clearRoutingTable() |
| 238 | { |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame^] | 239 | m_rTable.clear(); |
| 240 | m_wire.reset(); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | void |
| 244 | RoutingTable::clearDryRoutingTable() |
| 245 | { |
Ashlesh Gawande | 5d93aa5 | 2020-06-13 18:57:45 -0700 | [diff] [blame^] | 246 | m_dryTable.clear(); |
| 247 | m_wire.reset(); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 248 | } |
| 249 | |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame] | 250 | template<ndn::encoding::Tag TAG> |
| 251 | size_t |
| 252 | RoutingTableStatus::wireEncode(ndn::EncodingImpl<TAG>& block) const |
| 253 | { |
| 254 | size_t totalLength = 0; |
| 255 | |
| 256 | for (auto it = m_dryTable.rbegin(); it != m_dryTable.rend(); ++it) { |
| 257 | totalLength += it->wireEncode(block); |
| 258 | } |
| 259 | |
| 260 | for (auto it = m_rTable.rbegin(); it != m_rTable.rend(); ++it) { |
| 261 | totalLength += it->wireEncode(block); |
| 262 | } |
| 263 | |
| 264 | totalLength += block.prependVarNumber(totalLength); |
| 265 | totalLength += block.prependVarNumber(ndn::tlv::nlsr::RoutingTable); |
| 266 | |
| 267 | return totalLength; |
| 268 | } |
| 269 | |
| 270 | NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(RoutingTableStatus); |
| 271 | |
| 272 | const ndn::Block& |
| 273 | RoutingTableStatus::wireEncode() const |
| 274 | { |
| 275 | if (m_wire.hasWire()) { |
| 276 | return m_wire; |
| 277 | } |
| 278 | |
| 279 | ndn::EncodingEstimator estimator; |
| 280 | size_t estimatedSize = wireEncode(estimator); |
| 281 | |
| 282 | ndn::EncodingBuffer buffer(estimatedSize, 0); |
| 283 | wireEncode(buffer); |
| 284 | |
| 285 | m_wire = buffer.block(); |
| 286 | |
| 287 | return m_wire; |
| 288 | } |
| 289 | |
| 290 | void |
| 291 | RoutingTableStatus::wireDecode(const ndn::Block& wire) |
| 292 | { |
| 293 | m_rTable.clear(); |
| 294 | |
| 295 | m_wire = wire; |
| 296 | |
| 297 | if (m_wire.type() != ndn::tlv::nlsr::RoutingTable) { |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame] | 298 | NDN_THROW(Error("RoutingTable", m_wire.type())); |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | m_wire.parse(); |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame] | 302 | auto val = m_wire.elements_begin(); |
| 303 | |
| 304 | std::set<ndn::Name> destinations; |
| 305 | for (; val != m_wire.elements_end() && val->type() == ndn::tlv::nlsr::RoutingTableEntry; ++val) { |
| 306 | auto entry = RoutingTableEntry(*val); |
| 307 | |
| 308 | if (destinations.emplace(entry.getDestination()).second) { |
| 309 | m_rTable.push_back(entry); |
| 310 | } |
| 311 | else { |
| 312 | // If destination already exists then this is the start of dry HR table |
| 313 | m_dryTable.push_back(entry); |
| 314 | } |
| 315 | } |
| 316 | |
| 317 | if (val != m_wire.elements_end()) { |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame] | 318 | NDN_THROW(Error("Unrecognized TLV of type " + ndn::to_string(val->type()) + " in RoutingTable")); |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame] | 319 | } |
| 320 | } |
| 321 | |
| 322 | std::ostream& |
| 323 | operator<<(std::ostream& os, const RoutingTableStatus& rts) |
| 324 | { |
| 325 | os << "Routing Table:\n"; |
| 326 | for (const auto& rte : rts.getRoutingTableEntry()) { |
| 327 | os << rte; |
| 328 | } |
| 329 | |
| 330 | if (!rts.getDryRoutingTableEntry().empty()) { |
| 331 | os << "Dry-Run Hyperbolic Routing Table:\n"; |
| 332 | for (const auto& rte : rts.getDryRoutingTableEntry()) { |
| 333 | os << rte; |
| 334 | } |
| 335 | } |
| 336 | return os; |
| 337 | } |
| 338 | |
Nick Gordon | fad8e25 | 2016-08-11 14:21:38 -0500 | [diff] [blame] | 339 | } // namespace nlsr |