Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2011 UCLA |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation; |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | * |
| 18 | * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | */ |
| 20 | |
Alexander Afanasyev | 3898e1b | 2013-07-27 12:03:17 -0700 | [diff] [blame] | 21 | #if __clang__ |
| 22 | #pragma clang diagnostic push |
| 23 | #pragma clang diagnostic ignored "-Wunused-variable" |
| 24 | #pragma clang diagnostic ignored "-Wunneeded-internal-declaration" |
| 25 | #endif |
| 26 | |
Alexander Afanasyev | 0c39537 | 2014-12-20 15:54:02 -0800 | [diff] [blame] | 27 | #include "ndn-global-routing-helper.hpp" |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 28 | |
Alexander Afanasyev | 0c39537 | 2014-12-20 15:54:02 -0800 | [diff] [blame] | 29 | #include "ns3/ndn-l3-protocol.hpp" |
| 30 | #include "../model/ndn-net-device-face.hpp" |
| 31 | #include "../model/ndn-global-router.hpp" |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 32 | |
| 33 | #include "ns3/node.h" |
Alexander Afanasyev | ce81014 | 2012-04-17 15:50:36 -0700 | [diff] [blame] | 34 | #include "ns3/node-container.h" |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 35 | #include "ns3/net-device.h" |
| 36 | #include "ns3/channel.h" |
| 37 | #include "ns3/log.h" |
| 38 | #include "ns3/assert.h" |
| 39 | #include "ns3/names.h" |
| 40 | #include "ns3/node-list.h" |
| 41 | #include "ns3/channel-list.h" |
Alexander Afanasyev | f5c0774 | 2012-10-31 13:13:05 -0700 | [diff] [blame] | 42 | #include "ns3/object-factory.h" |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 43 | |
| 44 | #include <boost/lexical_cast.hpp> |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 45 | #include <boost/foreach.hpp> |
Alexander Afanasyev | a5abcd9 | 2012-04-17 13:34:43 -0700 | [diff] [blame] | 46 | #include <boost/concept/assert.hpp> |
| 47 | // #include <boost/graph/graph_concepts.hpp> |
| 48 | // #include <boost/graph/adjacency_list.hpp> |
| 49 | #include <boost/graph/dijkstra_shortest_paths.hpp> |
| 50 | |
Alexander Afanasyev | 0c39537 | 2014-12-20 15:54:02 -0800 | [diff] [blame] | 51 | #include "boost-graph-ndn-global-routing-helper.hpp" |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 52 | |
Alexander Afanasyev | 7353251 | 2012-11-27 00:42:35 -0800 | [diff] [blame] | 53 | #include <math.h> |
| 54 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 55 | NS_LOG_COMPONENT_DEFINE("ndn.GlobalRoutingHelper"); |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 56 | |
| 57 | using namespace std; |
| 58 | using namespace boost; |
| 59 | |
| 60 | namespace ns3 { |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 61 | namespace ndn { |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 62 | |
| 63 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 64 | GlobalRoutingHelper::Install(Ptr<Node> node) |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 65 | { |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 66 | NS_LOG_LOGIC("Node: " << node->GetId()); |
Alexander Afanasyev | 4916586 | 2013-01-31 00:38:20 -0800 | [diff] [blame] | 67 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 68 | Ptr<L3Protocol> ndn = node->GetObject<L3Protocol>(); |
| 69 | NS_ASSERT_MSG(ndn != 0, "Cannot install GlobalRoutingHelper before Ndn is installed on a node"); |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 70 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 71 | Ptr<GlobalRouter> gr = node->GetObject<GlobalRouter>(); |
| 72 | if (gr != 0) { |
| 73 | NS_LOG_DEBUG("GlobalRouter is already installed: " << gr); |
| 74 | return; // already installed |
| 75 | } |
| 76 | |
| 77 | gr = CreateObject<GlobalRouter>(); |
| 78 | node->AggregateObject(gr); |
| 79 | |
| 80 | for (uint32_t faceId = 0; faceId < ndn->GetNFaces(); faceId++) { |
Spyridon Mastorakis | e4f0d3c | 2014-10-29 13:20:03 -0700 | [diff] [blame] | 81 | shared_ptr<NetDeviceFace> face = DynamicCast<NetDeviceFace>(ndn->GetFace(faceId)); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 82 | if (face == 0) { |
| 83 | NS_LOG_DEBUG("Skipping non-netdevice face"); |
| 84 | continue; |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 85 | } |
Alexander Afanasyev | 4916586 | 2013-01-31 00:38:20 -0800 | [diff] [blame] | 86 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 87 | Ptr<NetDevice> nd = face->GetNetDevice(); |
| 88 | if (nd == 0) { |
| 89 | NS_LOG_DEBUG("Not a NetDevice associated with NetDeviceFace"); |
| 90 | continue; |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 91 | } |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 92 | |
| 93 | Ptr<Channel> ch = nd->GetChannel(); |
| 94 | |
| 95 | if (ch == 0) { |
| 96 | NS_LOG_DEBUG("Channel is not associated with NetDevice"); |
| 97 | continue; |
| 98 | } |
| 99 | |
| 100 | if (ch->GetNDevices() == 2) // e.g., point-to-point channel |
| 101 | { |
| 102 | for (uint32_t deviceId = 0; deviceId < ch->GetNDevices(); deviceId++) { |
| 103 | Ptr<NetDevice> otherSide = ch->GetDevice(deviceId); |
| 104 | if (nd == otherSide) |
| 105 | continue; |
| 106 | |
| 107 | Ptr<Node> otherNode = otherSide->GetNode(); |
| 108 | NS_ASSERT(otherNode != 0); |
| 109 | |
| 110 | Ptr<GlobalRouter> otherGr = otherNode->GetObject<GlobalRouter>(); |
| 111 | if (otherGr == 0) { |
| 112 | Install(otherNode); |
| 113 | } |
| 114 | otherGr = otherNode->GetObject<GlobalRouter>(); |
| 115 | NS_ASSERT(otherGr != 0); |
| 116 | gr->AddIncidency(face, otherGr); |
| 117 | } |
| 118 | } |
| 119 | else { |
| 120 | Ptr<GlobalRouter> grChannel = ch->GetObject<GlobalRouter>(); |
| 121 | if (grChannel == 0) { |
| 122 | Install(ch); |
| 123 | } |
| 124 | grChannel = ch->GetObject<GlobalRouter>(); |
| 125 | |
| 126 | gr->AddIncidency(face, grChannel); |
| 127 | } |
| 128 | } |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 132 | GlobalRoutingHelper::Install(Ptr<Channel> channel) |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 133 | { |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 134 | NS_LOG_LOGIC("Channel: " << channel->GetId()); |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 135 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 136 | Ptr<GlobalRouter> gr = channel->GetObject<GlobalRouter>(); |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 137 | if (gr != 0) |
| 138 | return; |
| 139 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 140 | gr = CreateObject<GlobalRouter>(); |
| 141 | channel->AggregateObject(gr); |
Alexander Afanasyev | 4916586 | 2013-01-31 00:38:20 -0800 | [diff] [blame] | 142 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 143 | for (uint32_t deviceId = 0; deviceId < channel->GetNDevices(); deviceId++) { |
| 144 | Ptr<NetDevice> dev = channel->GetDevice(deviceId); |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 145 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 146 | Ptr<Node> node = dev->GetNode(); |
| 147 | NS_ASSERT(node != 0); |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 148 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 149 | Ptr<GlobalRouter> grOther = node->GetObject<GlobalRouter>(); |
| 150 | if (grOther == 0) { |
| 151 | Install(node); |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 152 | } |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 153 | grOther = node->GetObject<GlobalRouter>(); |
| 154 | NS_ASSERT(grOther != 0); |
| 155 | |
| 156 | gr->AddIncidency(0, grOther); |
| 157 | } |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 161 | GlobalRoutingHelper::Install(const NodeContainer& nodes) |
Alexander Afanasyev | ce81014 | 2012-04-17 15:50:36 -0700 | [diff] [blame] | 162 | { |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 163 | for (NodeContainer::Iterator node = nodes.Begin(); node != nodes.End(); node++) { |
| 164 | Install(*node); |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | void |
| 169 | GlobalRoutingHelper::InstallAll() |
| 170 | { |
| 171 | Install(NodeContainer::GetGlobal()); |
| 172 | } |
| 173 | |
| 174 | void |
| 175 | GlobalRoutingHelper::AddOrigin(const std::string& prefix, Ptr<Node> node) |
| 176 | { |
| 177 | Ptr<GlobalRouter> gr = node->GetObject<GlobalRouter>(); |
| 178 | NS_ASSERT_MSG(gr != 0, "GlobalRouter is not installed on the node"); |
| 179 | |
Spyridon Mastorakis | 53e922f | 2014-10-17 17:29:26 -0700 | [diff] [blame] | 180 | auto name = make_shared<Name>(prefix); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 181 | gr->AddLocalPrefix(name); |
| 182 | } |
| 183 | |
| 184 | void |
| 185 | GlobalRoutingHelper::AddOrigins(const std::string& prefix, const NodeContainer& nodes) |
| 186 | { |
| 187 | for (NodeContainer::Iterator node = nodes.Begin(); node != nodes.End(); node++) { |
| 188 | AddOrigin(prefix, *node); |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | void |
| 193 | GlobalRoutingHelper::AddOrigin(const std::string& prefix, const std::string& nodeName) |
| 194 | { |
| 195 | Ptr<Node> node = Names::Find<Node>(nodeName); |
| 196 | NS_ASSERT_MSG(node != 0, nodeName << "is not a Node"); |
| 197 | |
| 198 | AddOrigin(prefix, node); |
| 199 | } |
| 200 | |
| 201 | void |
| 202 | GlobalRoutingHelper::AddOriginsForAll() |
| 203 | { |
| 204 | for (NodeList::Iterator node = NodeList::Begin(); node != NodeList::End(); node++) { |
| 205 | Ptr<GlobalRouter> gr = (*node)->GetObject<GlobalRouter>(); |
| 206 | string name = Names::FindName(*node); |
| 207 | |
| 208 | if (gr != 0 && !name.empty()) { |
| 209 | AddOrigin("/" + name, *node); |
Alexander Afanasyev | ce81014 | 2012-04-17 15:50:36 -0700 | [diff] [blame] | 210 | } |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 211 | } |
Alexander Afanasyev | ce81014 | 2012-04-17 15:50:36 -0700 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 215 | GlobalRoutingHelper::CalculateRoutes(bool invalidatedRoutes /* = true*/) |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 216 | { |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 217 | /** |
| 218 | * Implementation of route calculation is heavily based on Boost Graph Library |
| 219 | * See http://www.boost.org/doc/libs/1_49_0/libs/graph/doc/table_of_contents.html for more details |
| 220 | */ |
Alexander Afanasyev | 4916586 | 2013-01-31 00:38:20 -0800 | [diff] [blame] | 221 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 222 | BOOST_CONCEPT_ASSERT((VertexListGraphConcept<NdnGlobalRouterGraph>)); |
| 223 | BOOST_CONCEPT_ASSERT((IncidenceGraphConcept<NdnGlobalRouterGraph>)); |
Alexander Afanasyev | 4916586 | 2013-01-31 00:38:20 -0800 | [diff] [blame] | 224 | |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 225 | NdnGlobalRouterGraph graph; |
Zongyi Zhao | c837263 | 2014-04-28 15:36:49 -0700 | [diff] [blame] | 226 | // typedef graph_traits < NdnGlobalRouterGraph >::vertex_descriptor vertex_descriptor; |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 227 | |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 228 | // For now we doing Dijkstra for every node. Can be replaced with Bellman-Ford or Floyd-Warshall. |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 229 | // Other algorithms should be faster, but they need additional EdgeListGraph concept provided by |
| 230 | // the graph, which |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 231 | // is not obviously how implement in an efficient manner |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 232 | for (NodeList::Iterator node = NodeList::Begin(); node != NodeList::End(); node++) { |
| 233 | Ptr<GlobalRouter> source = (*node)->GetObject<GlobalRouter>(); |
| 234 | if (source == 0) { |
| 235 | NS_LOG_DEBUG("Node " << (*node)->GetId() << " does not export GlobalRouter interface"); |
| 236 | continue; |
| 237 | } |
Alexander Afanasyev | 4916586 | 2013-01-31 00:38:20 -0800 | [diff] [blame] | 238 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 239 | DistancesMap distances; |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 240 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 241 | dijkstra_shortest_paths(graph, source, |
| 242 | // predecessor_map (boost::ref(predecessors)) |
| 243 | // . |
| 244 | distance_map(boost::ref(distances)) |
| 245 | .distance_inf(WeightInf) |
| 246 | .distance_zero(WeightZero) |
| 247 | .distance_compare(boost::WeightCompare()) |
| 248 | .distance_combine(boost::WeightCombine())); |
| 249 | |
| 250 | // NS_LOG_DEBUG (predecessors.size () << ", " << distances.size ()); |
Spyridon Mastorakis | e4f0d3c | 2014-10-29 13:20:03 -0700 | [diff] [blame] | 251 | /* |
| 252 | Ptr<Fib> fib = source->GetObject<Fib> (); |
| 253 | if (invalidatedRoutes) |
| 254 | { |
| 255 | fib->InvalidateAll (); |
| 256 | } |
| 257 | NS_ASSERT (fib != 0); |
| 258 | */ |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 259 | NS_LOG_DEBUG("Reachability from Node: " << source->GetObject<Node>()->GetId()); |
| 260 | for (DistancesMap::iterator i = distances.begin(); i != distances.end(); i++) { |
| 261 | if (i->first == source) |
| 262 | continue; |
| 263 | else { |
| 264 | // cout << " Node " << i->first->GetObject<Node> ()->GetId (); |
| 265 | if (i->second.get<0>() == 0) { |
| 266 | // cout << " is unreachable" << endl; |
| 267 | } |
| 268 | else { |
Spyridon Mastorakis | 53e922f | 2014-10-17 17:29:26 -0700 | [diff] [blame] | 269 | BOOST_FOREACH (const std::shared_ptr<const Name>& prefix, i->first->GetLocalPrefixes()) { |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 270 | NS_LOG_DEBUG(" prefix " << prefix << " reachable via face " << *i->second.get<0>() |
| 271 | << " with distance " << i->second.get<1>() << " with delay " |
| 272 | << i->second.get<2>()); |
| 273 | |
Spyridon Mastorakis | e4f0d3c | 2014-10-29 13:20:03 -0700 | [diff] [blame] | 274 | // Ptr<fib::Entry> entry = fib->Add (prefix, i->second.get<0> (), i->second.get<1> ()); |
| 275 | // entry->SetRealDelayToProducer (i->second.get<0> (), Seconds (i->second.get<2> ())); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 276 | |
Spyridon Mastorakis | e4f0d3c | 2014-10-29 13:20:03 -0700 | [diff] [blame] | 277 | // Ptr<Limits> faceLimits = i->second.get<0> ()->GetObject<Limits> (); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 278 | |
Spyridon Mastorakis | e4f0d3c | 2014-10-29 13:20:03 -0700 | [diff] [blame] | 279 | // Ptr<Limits> fibLimits = entry->GetObject<Limits> (); |
| 280 | // if (fibLimits != 0) |
| 281 | //{ |
| 282 | // if it was created by the forwarding strategy via DidAddFibEntry event |
| 283 | // fibLimits->SetLimits (faceLimits->GetMaxRate (), 2 * i->second.get<2> () /*exact |
| 284 | // RTT*/); |
| 285 | // NS_LOG_DEBUG ("Set limit for prefix " << *prefix << " " << faceLimits->GetMaxRate () |
| 286 | // << " / " << 2*i->second.get<2> () << "s (" << faceLimits->GetMaxRate () * 2 * |
| 287 | // i->second.get<2> () << ")"); |
| 288 | //} |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 289 | } |
| 290 | } |
| 291 | } |
| 292 | } |
| 293 | } |
| 294 | } |
| 295 | |
| 296 | void |
| 297 | GlobalRoutingHelper::CalculateAllPossibleRoutes(bool invalidatedRoutes /* = true*/) |
| 298 | { |
| 299 | /** |
| 300 | * Implementation of route calculation is heavily based on Boost Graph Library |
| 301 | * See http://www.boost.org/doc/libs/1_49_0/libs/graph/doc/table_of_contents.html for more details |
| 302 | */ |
| 303 | |
| 304 | BOOST_CONCEPT_ASSERT((VertexListGraphConcept<NdnGlobalRouterGraph>)); |
| 305 | BOOST_CONCEPT_ASSERT((IncidenceGraphConcept<NdnGlobalRouterGraph>)); |
| 306 | |
| 307 | NdnGlobalRouterGraph graph; |
| 308 | // typedef graph_traits < NdnGlobalRouterGraph >::vertex_descriptor vertex_descriptor; |
| 309 | |
| 310 | // For now we doing Dijkstra for every node. Can be replaced with Bellman-Ford or Floyd-Warshall. |
| 311 | // Other algorithms should be faster, but they need additional EdgeListGraph concept provided by |
| 312 | // the graph, which |
| 313 | // is not obviously how implement in an efficient manner |
| 314 | for (NodeList::Iterator node = NodeList::Begin(); node != NodeList::End(); node++) { |
| 315 | Ptr<GlobalRouter> source = (*node)->GetObject<GlobalRouter>(); |
| 316 | if (source == 0) { |
| 317 | NS_LOG_DEBUG("Node " << (*node)->GetId() << " does not export GlobalRouter interface"); |
| 318 | continue; |
| 319 | } |
| 320 | |
Spyridon Mastorakis | e4f0d3c | 2014-10-29 13:20:03 -0700 | [diff] [blame] | 321 | // Ptr<Fib> fib = source->GetObject<Fib> (); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 322 | if (invalidatedRoutes) { |
Spyridon Mastorakis | e4f0d3c | 2014-10-29 13:20:03 -0700 | [diff] [blame] | 323 | // fib->InvalidateAll (); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 324 | } |
Spyridon Mastorakis | e4f0d3c | 2014-10-29 13:20:03 -0700 | [diff] [blame] | 325 | // NS_ASSERT (fib != 0); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 326 | |
| 327 | NS_LOG_DEBUG("==========="); |
| 328 | NS_LOG_DEBUG("Reachability from Node: " << source->GetObject<Node>()->GetId() << " (" |
| 329 | << Names::FindName(source->GetObject<Node>()) << ")"); |
| 330 | |
| 331 | Ptr<L3Protocol> l3 = source->GetObject<L3Protocol>(); |
| 332 | NS_ASSERT(l3 != 0); |
| 333 | |
| 334 | // remember interface statuses |
| 335 | std::vector<uint16_t> originalMetric(l3->GetNFaces()); |
| 336 | for (uint32_t faceId = 0; faceId < l3->GetNFaces(); faceId++) { |
| 337 | originalMetric[faceId] = l3->GetFace(faceId)->GetMetric(); |
| 338 | l3->GetFace(faceId) |
| 339 | ->SetMetric(std::numeric_limits<uint16_t>::max() |
| 340 | - 1); // value std::numeric_limits<uint16_t>::max () MUST NOT be used (reserved) |
| 341 | } |
| 342 | |
| 343 | for (uint32_t enabledFaceId = 0; enabledFaceId < l3->GetNFaces(); enabledFaceId++) { |
| 344 | if (DynamicCast<ndn::NetDeviceFace>(l3->GetFace(enabledFaceId)) == 0) |
| 345 | continue; |
| 346 | |
| 347 | // enabling only faceId |
| 348 | l3->GetFace(enabledFaceId)->SetMetric(originalMetric[enabledFaceId]); |
| 349 | |
| 350 | DistancesMap distances; |
| 351 | |
| 352 | NS_LOG_DEBUG("-----------"); |
| 353 | |
| 354 | dijkstra_shortest_paths(graph, source, |
| 355 | // predecessor_map (boost::ref(predecessors)) |
| 356 | // . |
| 357 | distance_map(boost::ref(distances)) |
| 358 | .distance_inf(WeightInf) |
| 359 | .distance_zero(WeightZero) |
| 360 | .distance_compare(boost::WeightCompare()) |
| 361 | .distance_combine(boost::WeightCombine())); |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 362 | |
Alexander Afanasyev | a5abcd9 | 2012-04-17 13:34:43 -0700 | [diff] [blame] | 363 | // NS_LOG_DEBUG (predecessors.size () << ", " << distances.size ()); |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 364 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 365 | for (DistancesMap::iterator i = distances.begin(); i != distances.end(); i++) { |
| 366 | if (i->first == source) |
| 367 | continue; |
| 368 | else { |
| 369 | // cout << " Node " << i->first->GetObject<Node> ()->GetId (); |
| 370 | if (i->second.get<0>() == 0) { |
| 371 | // cout << " is unreachable" << endl; |
| 372 | } |
| 373 | else { |
Spyridon Mastorakis | 53e922f | 2014-10-17 17:29:26 -0700 | [diff] [blame] | 374 | BOOST_FOREACH (const std::shared_ptr<const Name>& prefix, |
| 375 | i->first->GetLocalPrefixes()) { |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 376 | NS_LOG_DEBUG(" prefix " << *prefix << " reachable via face " << *i->second.get<0>() |
| 377 | << " with distance " << i->second.get<1>() << " with delay " |
| 378 | << i->second.get<2>()); |
Alexander Afanasyev | 4916586 | 2013-01-31 00:38:20 -0800 | [diff] [blame] | 379 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 380 | if (i->second.get<0>()->GetMetric() == std::numeric_limits<uint16_t>::max() - 1) |
Alexander Afanasyev | f484fb9 | 2013-03-04 10:37:27 -0800 | [diff] [blame] | 381 | continue; |
Alexander Afanasyev | f484fb9 | 2013-03-04 10:37:27 -0800 | [diff] [blame] | 382 | |
Spyridon Mastorakis | e4f0d3c | 2014-10-29 13:20:03 -0700 | [diff] [blame] | 383 | // Ptr<fib::Entry> entry = fib->Add (prefix, i->second.get<0> (), i->second.get<1> |
| 384 | // ()); |
| 385 | // entry->SetRealDelayToProducer (i->second.get<0> (), Seconds (i->second.get<2> ())); |
Alexander Afanasyev | f484fb9 | 2013-03-04 10:37:27 -0800 | [diff] [blame] | 386 | |
Spyridon Mastorakis | e4f0d3c | 2014-10-29 13:20:03 -0700 | [diff] [blame] | 387 | // Ptr<Limits> faceLimits = i->second.get<0> ()->GetObject<Limits> (); |
Alexander Afanasyev | f484fb9 | 2013-03-04 10:37:27 -0800 | [diff] [blame] | 388 | |
Spyridon Mastorakis | e4f0d3c | 2014-10-29 13:20:03 -0700 | [diff] [blame] | 389 | // Ptr<Limits> fibLimits = entry->GetObject<Limits> (); |
| 390 | // if (fibLimits != 0) |
| 391 | //{ |
| 392 | // if it was created by the forwarding strategy via DidAddFibEntry event |
| 393 | // fibLimits->SetLimits (faceLimits->GetMaxRate (), 2 * i->second.get<2> () /*exact |
| 394 | // RTT*/); |
| 395 | // NS_LOG_DEBUG ("Set limit for prefix " << *prefix << " " << faceLimits->GetMaxRate |
| 396 | // () << " / " << 2*i->second.get<2> () << "s (" << faceLimits->GetMaxRate () * 2 * |
| 397 | // i->second.get<2> () << ")"); |
| 398 | //} |
Alexander Afanasyev | f484fb9 | 2013-03-04 10:37:27 -0800 | [diff] [blame] | 399 | } |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 400 | } |
Alexander Afanasyev | f484fb9 | 2013-03-04 10:37:27 -0800 | [diff] [blame] | 401 | } |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 402 | } |
Alexander Afanasyev | f484fb9 | 2013-03-04 10:37:27 -0800 | [diff] [blame] | 403 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 404 | // disabling the face again |
| 405 | l3->GetFace(enabledFaceId)->SetMetric(std::numeric_limits<uint16_t>::max() - 1); |
Alexander Afanasyev | f484fb9 | 2013-03-04 10:37:27 -0800 | [diff] [blame] | 406 | } |
Alexander Afanasyev | f484fb9 | 2013-03-04 10:37:27 -0800 | [diff] [blame] | 407 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 408 | // recover original interface statuses |
| 409 | for (uint32_t faceId = 0; faceId < l3->GetNFaces(); faceId++) { |
| 410 | l3->GetFace(faceId)->SetMetric(originalMetric[faceId]); |
| 411 | } |
| 412 | } |
| 413 | } |
Alexander Afanasyev | ad3757f | 2012-04-17 10:27:59 -0700 | [diff] [blame] | 414 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 415 | } // namespace ndn |
| 416 | } // namespace ns3 |