blob: ba521bab2aefe2e09cda2aae285fce12aefff746 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawande0421bc62020-05-08 20:42:19 -07002/*
awlane6d7c37f2025-03-07 11:53:58 -06003 * Copyright (c) 2014-2025, The University of Memphis,
Vince Lehmanc2e51f62015-01-20 15:03:11 -06004 * Regents of the University of California,
5 * Arizona Board of Regents.
akmhoque3d06e792014-05-27 16:23:20 -05006 *
7 * This file is part of NLSR (Named-data Link State Routing).
8 * See AUTHORS.md for complete list of NLSR authors and contributors.
9 *
10 * NLSR is free software: you can redistribute it and/or modify it under the terms
11 * of the GNU General Public License as published by the Free Software Foundation,
12 * either version 3 of the License, or (at your option) any later version.
13 *
14 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Ashlesh Gawande0421bc62020-05-08 20:42:19 -070020 */
Vince Lehmanc2e51f62015-01-20 15:03:11 -060021
Vince Lehmancae33b62015-06-05 09:21:30 -050022#include "name-prefix-table.hpp"
23
24#include "logger.hpp"
25#include "nlsr.hpp"
26#include "routing-table.hpp"
27
28#include <algorithm>
akmhoque53353462014-04-22 08:43:45 -050029#include <list>
30#include <utility>
akmhoque53353462014-04-22 08:43:45 -050031
32namespace nlsr {
33
dmcoomescf8d0ed2017-02-21 11:39:01 -060034INIT_LOGGER(route.NamePrefixTable);
akmhoque674b0b12014-05-20 14:33:28 -050035
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -070036NamePrefixTable::NamePrefixTable(const ndn::Name& ownRouterName, Fib& fib,
37 RoutingTable& routingTable,
38 AfterRoutingChange& afterRoutingChangeSignal,
39 Lsdb::AfterLsdbModified& afterLsdbModifiedSignal)
40 : m_ownRouterName(ownRouterName)
41 , m_fib(fib)
Ashlesh Gawande85998a12017-12-07 22:22:13 -060042 , m_routingTable(routingTable)
Nick Gordonb7b58392017-08-17 16:29:21 -050043{
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -070044 m_afterRoutingChangeConnection = afterRoutingChangeSignal.connect(
Nick Gordonb7b58392017-08-17 16:29:21 -050045 [this] (const std::list<RoutingTableEntry>& entries) {
46 updateWithNewRoute(entries);
47 });
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -070048
49 m_afterLsdbModified = afterLsdbModifiedSignal.connect(
50 [this] (std::shared_ptr<Lsa> lsa, LsdbUpdate updateType,
51 const auto& namesToAdd, const auto& namesToRemove) {
52 updateFromLsdb(lsa, updateType, namesToAdd, namesToRemove);
53 }
54 );
Nick Gordonb7b58392017-08-17 16:29:21 -050055}
56
57NamePrefixTable::~NamePrefixTable()
58{
59 m_afterRoutingChangeConnection.disconnect();
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -070060 m_afterLsdbModified.disconnect();
61}
62
63void
64NamePrefixTable::updateFromLsdb(std::shared_ptr<Lsa> lsa, LsdbUpdate updateType,
awlane6d7c37f2025-03-07 11:53:58 -060065 const std::list<nlsr::PrefixInfo>& namesToAdd,
66 const std::list<nlsr::PrefixInfo>& namesToRemove)
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -070067{
68 if (m_ownRouterName == lsa->getOriginRouter()) {
69 return;
70 }
71 NLSR_LOG_TRACE("Got update from Lsdb for router: " << lsa->getOriginRouter());
72
73 if (updateType == LsdbUpdate::INSTALLED) {
74 addEntry(lsa->getOriginRouter(), lsa->getOriginRouter());
75
76 if (lsa->getType() == Lsa::Type::NAME) {
77 auto nlsa = std::static_pointer_cast<NameLsa>(lsa);
awlane6d7c37f2025-03-07 11:53:58 -060078 for (const auto &prefix : nlsa->getNpl().getPrefixInfo()) {
79 if (prefix.getName() != m_ownRouterName) {
80 m_nexthopCost[DestNameKey(lsa->getOriginRouter(), prefix.getName())] = prefix.getCost();
awlanefc0b45a2025-05-07 15:51:02 -050081 // Don't use capture flag on advertised prefixes...
82 addEntry(prefix.getName(), lsa->getOriginRouter(), ndn::nfd::ROUTE_FLAG_CHILD_INHERIT);
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -070083 }
84 }
85 }
86 }
87 else if (updateType == LsdbUpdate::UPDATED) {
88 if (lsa->getType() != Lsa::Type::NAME) {
89 return;
90 }
91
awlane6d7c37f2025-03-07 11:53:58 -060092 for (const auto &prefix : namesToAdd) {
93 if (prefix.getName() != m_ownRouterName) {
94 m_nexthopCost[DestNameKey(lsa->getOriginRouter(), prefix.getName())] = prefix.getCost();
awlanefc0b45a2025-05-07 15:51:02 -050095 // Don't use capture flag on advertised prefixes...
96 addEntry(prefix.getName(), lsa->getOriginRouter(), ndn::nfd::ROUTE_FLAG_CHILD_INHERIT);
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -070097 }
98 }
99
awlane6d7c37f2025-03-07 11:53:58 -0600100 for (const auto &prefix : namesToRemove) {
101 if (prefix.getName() != m_ownRouterName) {
102 m_nexthopCost.erase(m_nexthopCost.find(DestNameKey(lsa->getOriginRouter(), prefix.getName())));
103 removeEntry(prefix.getName(), lsa->getOriginRouter());
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -0700104 }
105 }
106 }
107 else {
108 removeEntry(lsa->getOriginRouter(), lsa->getOriginRouter());
109 if (lsa->getType() == Lsa::Type::NAME) {
110 auto nlsa = std::static_pointer_cast<NameLsa>(lsa);
111 for (const auto& name : nlsa->getNpl().getNames()) {
112 if (name != m_ownRouterName) {
awlane6d7c37f2025-03-07 11:53:58 -0600113 m_nexthopCost.erase(m_nexthopCost.find(DestNameKey(lsa->getOriginRouter(), name)));
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -0700114 removeEntry(name, lsa->getOriginRouter());
115 }
116 }
117 }
118 }
Nick Gordonb7b58392017-08-17 16:29:21 -0500119}
120
awlane6d7c37f2025-03-07 11:53:58 -0600121NexthopList
122NamePrefixTable::adjustNexthopCosts(const NexthopList& nhlist, const ndn::Name& nameToCheck, const ndn::Name& destRouterName)
123{
124 NexthopList new_nhList;
125 for (const auto& nh : nhlist.getNextHops()) {
126 const NextHop newNextHop = NextHop(nh.getConnectingFaceUri(), nh.getRouteCost() +
127 m_nexthopCost[DestNameKey(destRouterName, nameToCheck)]);
128 new_nhList.addNextHop(newNextHop);
129 }
130 return new_nhList;
131}
132
akmhoque53353462014-04-22 08:43:45 -0500133void
awlanefc0b45a2025-05-07 15:51:02 -0500134NamePrefixTable::addEntry(const ndn::Name& name, const ndn::Name& destRouter, uint64_t routeFlags)
akmhoque53353462014-04-22 08:43:45 -0500135{
Nick Gordonb50e51b2016-07-22 16:05:57 -0500136 // Check if the advertised name prefix is in the table already.
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400137 auto nameItr = std::find_if(m_table.begin(), m_table.end(),
138 [&] (const auto& entry) { return name == entry->getNamePrefix(); });
Vince Lehmancae33b62015-06-05 09:21:30 -0500139
Nick Gordonb50e51b2016-07-22 16:05:57 -0500140 // Attempt to find a routing table pool entry (RTPE) we can use.
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400141 auto rtpeItr = m_rtpool.find(destRouter);
Nick Gordonb50e51b2016-07-22 16:05:57 -0500142
143 // These declarations just to make the compiler happy...
144 RoutingTablePoolEntry rtpe;
145 std::shared_ptr<RoutingTablePoolEntry> rtpePtr(nullptr);
146
147 // There isn't currently a routing table entry in the pool for this name
148 if (rtpeItr == m_rtpool.end()) {
149 // See if there is a routing table entry available we could use
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600150 RoutingTableEntry* routeEntryPtr = m_routingTable.findRoutingTableEntry(destRouter);
Nick Gordonb50e51b2016-07-22 16:05:57 -0500151
152 // We have to create a new routing table entry
153 if (routeEntryPtr == nullptr) {
154 rtpe = RoutingTablePoolEntry(destRouter, 0);
155 }
156 // There was already a usable one in the routing table
157 else {
158 rtpe = RoutingTablePoolEntry(*routeEntryPtr, 0);
159 }
160
161 // Add the new pool object to the pool.
162 rtpePtr = addRtpeToPool(rtpe);
163 }
164 // There was one already, so just fetch that one.
165 else {
166 rtpePtr = (*rtpeItr).second;
167 }
168
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500169 std::shared_ptr<NamePrefixTableEntry> npte;
Nick Gordonb50e51b2016-07-22 16:05:57 -0500170 // Either we have to make a new NPT entry or there already was one.
171 if (nameItr == m_table.end()) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500172 NLSR_LOG_DEBUG("Adding origin: " << rtpePtr->getDestination()
Davide Pesaventod90338d2021-01-07 17:50:05 -0500173 << " to a new name prefix: " << name);
awlanefc0b45a2025-05-07 15:51:02 -0500174
175 npte = std::make_shared<NamePrefixTableEntry>(name, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT);
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500176 npte->addRoutingTableEntry(rtpePtr);
177 npte->generateNhlfromRteList();
Nick Gordonb50e51b2016-07-22 16:05:57 -0500178 m_table.push_back(npte);
Davide Pesaventod90338d2021-01-07 17:50:05 -0500179
Nick Gordonb50e51b2016-07-22 16:05:57 -0500180 // If this entry has next hops, we need to inform the FIB
Nick Gordonff9a6272017-10-12 13:38:29 -0500181 if (npte->getNexthopList().size() > 0) {
Ashlesh Gawandee8d8bd52018-08-09 17:18:51 -0500182 NLSR_LOG_TRACE("Updating FIB with next hops for " << npte->getNamePrefix());
awlanefc0b45a2025-05-07 15:51:02 -0500183 m_fib.update(name, adjustNexthopCosts(npte->getNexthopList(), name, destRouter), npte->getFlags());
Nick Gordonb50e51b2016-07-22 16:05:57 -0500184 }
185 // The routing table may recalculate and add a routing table entry
186 // with no next hops to replace an existing routing table entry. In
187 // this case, the name prefix is no longer reachable through a next
188 // hop and should be removed from the FIB. But, the prefix should
189 // remain in the Name Prefix Table as a future routing table
190 // calculation may add next hops.
191 else {
Ashlesh Gawandee8d8bd52018-08-09 17:18:51 -0500192 NLSR_LOG_TRACE(npte->getNamePrefix() << " has no next hops; removing from FIB");
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600193 m_fib.remove(name);
Nick Gordonb50e51b2016-07-22 16:05:57 -0500194 }
akmhoque53353462014-04-22 08:43:45 -0500195 }
akmhoque157b0a42014-05-13 00:26:37 -0500196 else {
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500197 npte = *nameItr;
Ashlesh Gawandee5002b32018-12-20 21:07:31 -0600198 NLSR_LOG_TRACE("Adding origin: " << rtpePtr->getDestination() <<
awlanefc0b45a2025-05-07 15:51:02 -0500199 " to existing prefix: " << *npte);
200 // We should not downgrade the capture flag to child-inherit unless there are no nexthops
201 if (npte->getFlags() != routeFlags && npte->getNexthopList().size() == 0) {
202 npte->setFlags(routeFlags);
203 }
204 npte->addRoutingTableEntry(rtpePtr);
205 npte->generateNhlfromRteList();
206 if (npte->getNexthopList().size() > 0) {
207 NLSR_LOG_TRACE("Updating FIB with next hops for " << *npte);
208 m_fib.update(name, adjustNexthopCosts(npte->getNexthopList(), name, destRouter), npte->getFlags());
Nick Gordonb50e51b2016-07-22 16:05:57 -0500209 }
210 else {
Ashlesh Gawandee8d8bd52018-08-09 17:18:51 -0500211 NLSR_LOG_TRACE(npte->getNamePrefix() << " has no next hops; removing from FIB");
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600212 m_fib.remove(name);
Nick Gordonb50e51b2016-07-22 16:05:57 -0500213 }
akmhoque53353462014-04-22 08:43:45 -0500214 }
Davide Pesaventod90338d2021-01-07 17:50:05 -0500215
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500216 // Add the reference to this NPT to the RTPE.
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400217 rtpePtr->namePrefixTableEntries.try_emplace(npte->getNamePrefix(),
218 std::weak_ptr<NamePrefixTableEntry>(npte));
akmhoque53353462014-04-22 08:43:45 -0500219}
220
221void
akmhoque31d1d4b2014-05-05 22:08:14 -0500222NamePrefixTable::removeEntry(const ndn::Name& name, const ndn::Name& destRouter)
akmhoque53353462014-04-22 08:43:45 -0500223{
dmcoomes5bcb39e2017-10-31 15:07:55 -0500224 NLSR_LOG_DEBUG("Removing origin: " << destRouter << " from " << name);
Vince Lehmancae33b62015-06-05 09:21:30 -0500225
Nick Gordonb50e51b2016-07-22 16:05:57 -0500226 // Fetch an iterator to the appropriate pair object in the pool.
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400227 auto rtpeItr = m_rtpool.find(destRouter);
Vince Lehmancae33b62015-06-05 09:21:30 -0500228
Nick Gordonb50e51b2016-07-22 16:05:57 -0500229 // Simple error checking to prevent any unusual behavior in the case
230 // that we try to remove an entry that isn't there.
231 if (rtpeItr == m_rtpool.end()) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500232 NLSR_LOG_DEBUG("No entry for origin: " << destRouter
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400233 << " found, so it cannot be removed from prefix: " << name);
Nick Gordonb50e51b2016-07-22 16:05:57 -0500234 return;
235 }
236 std::shared_ptr<RoutingTablePoolEntry> rtpePtr = rtpeItr->second;
237
238 // Ensure that the entry exists
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400239 auto nameItr = std::find_if(m_table.begin(), m_table.end(),
240 [&] (const auto& entry) { return entry->getNamePrefix() == name; });
Nick Gordonb50e51b2016-07-22 16:05:57 -0500241 if (nameItr != m_table.end()) {
awlanefc0b45a2025-05-07 15:51:02 -0500242 std::shared_ptr<NamePrefixTableEntry> npte = *nameItr;
dmcoomes5bcb39e2017-10-31 15:07:55 -0500243 NLSR_LOG_TRACE("Removing origin: " << rtpePtr->getDestination()
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400244 << " from prefix: " << **nameItr);
Nick Gordonb50e51b2016-07-22 16:05:57 -0500245
246 // Rather than iterating through the whole list periodically, just
247 // delete them here if they have no references.
awlanefc0b45a2025-05-07 15:51:02 -0500248 if (npte->removeRoutingTableEntry(rtpePtr) == 0) {
Nick Gordonb50e51b2016-07-22 16:05:57 -0500249 deleteRtpeFromPool(rtpePtr);
250 }
251
252 // If the prefix is a router prefix and it does not have any other
253 // routing table entries, the Adjacency/Coordinate LSA associated
254 // with that origin router has been removed from the LSDB and so
255 // the router prefix should be removed from the Name Prefix Table.
256 //
257 // If the prefix is an advertised name prefix: If another router
258 // advertises this name prefix, the RteList should have another
259 // entry for that router; the next hops should be recalculated
260 // and installed in the FIB.
261 //
262 // If no other router advertises this name prefix, the RteList
263 // should be empty and the prefix can be removed from the Name
264 // Prefix Table. Once a new Name LSA advertises this prefix, a
265 // new entry for the prefix will be created.
266 //
awlanefc0b45a2025-05-07 15:51:02 -0500267 if (npte->getRteListSize() == 0) {
268 NLSR_LOG_TRACE(*npte << " has no routing table entries;"
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400269 << " removing from table and FIB");
Nick Gordonb50e51b2016-07-22 16:05:57 -0500270 m_table.erase(nameItr);
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600271 m_fib.remove(name);
Nick Gordonb50e51b2016-07-22 16:05:57 -0500272 }
273 else {
awlanefc0b45a2025-05-07 15:51:02 -0500274 NLSR_LOG_TRACE(*npte << " has other routing table entries;"
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400275 << " updating FIB with next hops");
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500276 (*nameItr)->generateNhlfromRteList();
awlanefc0b45a2025-05-07 15:51:02 -0500277 m_fib.update(name, adjustNexthopCosts(npte->getNexthopList(), name, destRouter), npte->getFlags());
Nick Gordonb50e51b2016-07-22 16:05:57 -0500278 }
akmhoque53353462014-04-22 08:43:45 -0500279 }
akmhoque157b0a42014-05-13 00:26:37 -0500280 else {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500281 NLSR_LOG_DEBUG("Attempted to remove origin: " << rtpePtr->getDestination()
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400282 << " from non-existent prefix: " << name);
akmhoque53353462014-04-22 08:43:45 -0500283 }
284}
285
286void
Nick Gordonb7b58392017-08-17 16:29:21 -0500287NamePrefixTable::updateWithNewRoute(const std::list<RoutingTableEntry>& entries)
akmhoque53353462014-04-22 08:43:45 -0500288{
dmcoomes5bcb39e2017-10-31 15:07:55 -0500289 NLSR_LOG_DEBUG("Updating table with newly calculated routes");
Vince Lehmancae33b62015-06-05 09:21:30 -0500290
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500291 // Iterate over each pool entry we have
292 for (auto&& poolEntryPair : m_rtpool) {
293 auto&& poolEntry = poolEntryPair.second;
Nick Gordonb7b58392017-08-17 16:29:21 -0500294 auto sourceEntry = std::find_if(entries.begin(), entries.end(),
295 [&poolEntry] (const RoutingTableEntry& entry) {
296 return poolEntry->getDestination() == entry.getDestination();
297 });
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500298 // If this pool entry has a corresponding entry in the routing table now
Nick Gordonb7b58392017-08-17 16:29:21 -0500299 if (sourceEntry != entries.end()
300 && poolEntry->getNexthopList() != sourceEntry->getNexthopList()) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500301 NLSR_LOG_DEBUG("Routing entry: " << poolEntry->getDestination() << " has changed next-hops.");
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500302 poolEntry->setNexthopList(sourceEntry->getNexthopList());
303 for (const auto& nameEntry : poolEntry->namePrefixTableEntries) {
304 auto nameEntryFullPtr = nameEntry.second.lock();
awlanefc0b45a2025-05-07 15:51:02 -0500305 addEntry(nameEntryFullPtr->getNamePrefix(), poolEntry->getDestination(), nameEntryFullPtr->getFlags());
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500306 }
307 }
Nick Gordonb7b58392017-08-17 16:29:21 -0500308 else if (sourceEntry == entries.end()) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500309 NLSR_LOG_DEBUG("Routing entry: " << poolEntry->getDestination() << " now has no next-hops.");
Ashlesh Gawande0421bc62020-05-08 20:42:19 -0700310 poolEntry->getNexthopList().clear();
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500311 for (const auto& nameEntry : poolEntry->namePrefixTableEntries) {
312 auto nameEntryFullPtr = nameEntry.second.lock();
awlanefc0b45a2025-05-07 15:51:02 -0500313 addEntry(nameEntryFullPtr->getNamePrefix(), poolEntry->getDestination(), nameEntryFullPtr->getFlags());
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500314 }
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500315 }
316 else {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500317 NLSR_LOG_TRACE("No change in routing entry:" << poolEntry->getDestination()
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500318 << ", no action necessary.");
akmhoque53353462014-04-22 08:43:45 -0500319 }
320 }
321}
322
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400323// Inserts the routing table pool entry into the NPT's RTE storage
324// pool. This cannot fail, so the pool is guaranteed to contain the
325// item after this occurs.
Nick Gordonb50e51b2016-07-22 16:05:57 -0500326std::shared_ptr<RoutingTablePoolEntry>
327NamePrefixTable::addRtpeToPool(RoutingTablePoolEntry& rtpe)
328{
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400329 auto poolIt = m_rtpool.try_emplace(rtpe.getDestination(),
330 std::make_shared<RoutingTablePoolEntry>(rtpe)).first;
331 return poolIt->second;
Nick Gordonb50e51b2016-07-22 16:05:57 -0500332}
333
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400334// Removes the routing table pool entry from the storage pool. The
335// postconditions of this function are guaranteed to include that
336// the storage pool does not contain such an item. Additionally,
337// this function cannot fail, but nonetheless debug information is
338// given in the case that this function is called with an entry that
339// isn't in the pool.
Nick Gordonb50e51b2016-07-22 16:05:57 -0500340void
341NamePrefixTable::deleteRtpeFromPool(std::shared_ptr<RoutingTablePoolEntry> rtpePtr)
342{
343 if (m_rtpool.erase(rtpePtr->getDestination()) != 1) {
dmcoomes5bcb39e2017-10-31 15:07:55 -0500344 NLSR_LOG_DEBUG("Attempted to delete non-existent origin: "
Davide Pesaventoc1d0e8e2022-06-15 14:26:02 -0400345 << rtpePtr->getDestination()
346 << " from NPT routing table entry storage pool.");
Nick Gordonb50e51b2016-07-22 16:05:57 -0500347 }
348}
349
akmhoque53353462014-04-22 08:43:45 -0500350void
akmhoque674b0b12014-05-20 14:33:28 -0500351NamePrefixTable::writeLog()
352{
dmcoomes5bcb39e2017-10-31 15:07:55 -0500353 NLSR_LOG_DEBUG(*this);
akmhoque674b0b12014-05-20 14:33:28 -0500354}
355
Vince Lehmancae33b62015-06-05 09:21:30 -0500356std::ostream&
357operator<<(std::ostream& os, const NamePrefixTable& table)
358{
359 os << "----------------NPT----------------------\n";
360
Nick Gordonc0c6bcf2017-08-15 18:11:21 -0500361 for (const auto& entryPtr : table) {
362 os << *entryPtr << std::endl;
Vince Lehmancae33b62015-06-05 09:21:30 -0500363 }
364
365 return os;
366}
367
368} // namespace nlsr