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