NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.0: NDN, CCN, CCNx, content centric networks
API Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
rocketfuel-map-reader.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
20 // Based on the code by Hajime Tazaki <tazaki@sfc.wide.ad.jp>
21 
23 
24 #include "ns3/nstime.h"
25 #include "ns3/log.h"
26 #include "ns3/fatal-error.h"
27 #include "ns3/assert.h"
28 #include "ns3/names.h"
29 #include "ns3/net-device-container.h"
30 #include "ns3/point-to-point-helper.h"
31 #include "ns3/point-to-point-net-device.h"
32 #include "ns3/internet-stack-helper.h"
33 #include "ns3/ipv4-address-helper.h"
34 #include "ns3/ipv4-global-routing-helper.h"
35 #include "ns3/drop-tail-queue.h"
36 #include "ns3/ipv4-interface.h"
37 #include "ns3/ipv4.h"
38 #include "ns3/string.h"
39 #include "ns3/pointer.h"
40 #include "ns3/uinteger.h"
41 #include "ns3/ipv4-address.h"
42 #include "ns3/node-list.h"
43 #include "ns3/random-variable.h"
44 
45 #include "ns3/mobility-model.h"
46 
47 #include <regex.h>
48 
49 #include <boost/foreach.hpp>
50 #include <boost/lexical_cast.hpp>
51 
52 #include <boost/graph/graphviz.hpp>
53 #include <boost/graph/connected_components.hpp>
54 
55 #include <iomanip>
56 
57 using namespace std;
58 using namespace boost;
59 
60 NS_LOG_COMPONENT_DEFINE("RocketfuelMapReader");
61 
62 namespace ns3 {
63 
64 RocketfuelMapReader::RocketfuelMapReader(const std::string& path /*=""*/, double scale /*=1.0*/,
65  const std::string& referenceOspfRate)
66  : AnnotatedTopologyReader(path, scale)
67  , m_referenceOspfRate(boost::lexical_cast<DataRate>(referenceOspfRate))
68 {
69 }
70 
72 {
73 }
74 
75 NodeContainer
77 {
78  NS_FATAL_ERROR("Deprecated call. Use the other overloaded method instead");
79  return NodeContainer();
80 }
81 
82 /* uid @loc [+] [bb] (num_neigh) [&ext] -> <nuid-1> <nuid-2> ... {-euid} ... =name[!] rn */
83 
84 #define REGMATCH_MAX 16
85 
86 #define START "^"
87 #define END "$"
88 #define SPACE "[ \t]+"
89 #define MAYSPACE "[ \t]*"
90 
91 #define ROCKETFUEL_MAPS_LINE \
92  START "(-*[0-9]+)" SPACE "(@[?A-Za-z0-9,+]+)" SPACE "(\\+)*" MAYSPACE "(bb)*" MAYSPACE \
93  "\\(([0-9]+)\\)" SPACE "(&[0-9]+)*" MAYSPACE "->" MAYSPACE "(<[0-9 \t<>]+>)*" MAYSPACE \
94  "(\\{-[0-9\\{\\} \t-]+\\})*" SPACE "=([A-Za-z0-9.!-]+)" SPACE "r([0-9])" MAYSPACE END
95 
96 void
97 RocketfuelMapReader::CreateLink(string nodeName1, string nodeName2, double averageRtt,
98  const string& minBw, const string& maxBw, const string& minDelay,
99  const string& maxDelay)
100 {
101  Ptr<Node> node1 = Names::Find<Node>(m_path, nodeName1);
102  Ptr<Node> node2 = Names::Find<Node>(m_path, nodeName2);
103  Link link(node1, nodeName1, node2, nodeName2);
104 
105  DataRate randBandwidth(
106  m_randVar.GetInteger(static_cast<uint32_t>(lexical_cast<DataRate>(minBw).GetBitRate()),
107  static_cast<uint32_t>(lexical_cast<DataRate>(maxBw).GetBitRate())));
108 
109  int32_t metric = std::max(1, static_cast<int32_t>(1.0 * m_referenceOspfRate.GetBitRate()
110  / randBandwidth.GetBitRate()));
111 
112  Time randDelay =
113  Time::FromDouble((m_randVar.GetValue(lexical_cast<Time>(minDelay).ToDouble(Time::US),
114  lexical_cast<Time>(maxDelay).ToDouble(Time::US))),
115  Time::US);
116 
117  uint32_t queue = ceil(averageRtt * (randBandwidth.GetBitRate() / 8.0 / 1100.0));
118 
119  link.SetAttribute("DataRate", boost::lexical_cast<string>(randBandwidth));
120  link.SetAttribute("OSPF", boost::lexical_cast<string>(metric));
121  link.SetAttribute("Delay",
122  boost::lexical_cast<string>(ceil(randDelay.ToDouble(Time::US))) + "us");
123  link.SetAttribute("MaxPackets", boost::lexical_cast<string>(queue));
124 
125  AddLink(link);
126 }
127 
128 // NodeContainer
129 void
130 RocketfuelMapReader::GenerateFromMapsFile(int argc, char* argv[])
131 {
132  string uid;
133  string loc;
134  string ptr;
135  string name;
136  string nuid;
137  // bool dns = false;
138  // bool bb = false;
139  int num_neigh_s = 0;
140  unsigned int num_neigh = 0;
141  int radius = 0;
142  vector<string> neigh_list;
143 
144  uid = argv[0];
145  loc = argv[1];
146 
147  // if (argv[2])
148  // {
149  // dns = true;
150  // }
151 
152  // if (argv[3])
153  // {
154  // bb = true;
155  // }
156 
157  num_neigh_s = ::atoi(argv[4]);
158  if (num_neigh_s < 0) {
159  num_neigh = 0;
160  NS_LOG_WARN("Negative number of neighbors given");
161  }
162  else {
163  num_neigh = num_neigh_s;
164  }
165 
166  /* neighbors */
167  if (argv[6]) {
168  char* nbr;
169  char* stringp = argv[6];
170  while ((nbr = strsep(&stringp, " \t")) != NULL) {
171  nbr[strlen(nbr) - 1] = '\0';
172  neigh_list.push_back(nbr + 1);
173  }
174  }
175 
176  if (num_neigh != neigh_list.size()) {
177  NS_LOG_WARN("Given number of neighbors = " << num_neigh << " != size of neighbors list = "
178  << neigh_list.size());
179  }
180 
181  /* externs */
182  if (argv[7]) {
183  // euid = argv[7];
184  }
185 
186  /* name */
187  if (argv[8]) {
188  name = argv[8];
189  }
190 
191  radius = ::atoi(&argv[9][1]);
192  if (radius > 0) {
193  return;
194  }
195 
196  // Create node and link
197  if (uid.empty())
198  return;
199 
200  node_map_t::iterator node = m_graphNodes.find(uid);
201  if (node == m_graphNodes.end()) {
202  bool ok;
203  tie(node, ok) = m_graphNodes.insert(make_pair(uid, add_vertex(nodeProperty(uid), m_graph)));
204  NS_ASSERT(ok == true);
205 
206  put(vertex_index, m_graph, node->second, m_maxNodeId);
207  m_maxNodeId++;
208  }
209 
210  for (uint32_t i = 0; i < neigh_list.size(); ++i) {
211  nuid = neigh_list[i];
212 
213  if (nuid.empty()) {
214  continue;
215  }
216 
217  node_map_t::iterator otherNode = m_graphNodes.find(nuid);
218  if (otherNode == m_graphNodes.end()) {
219  bool ok;
220  tie(otherNode, ok) =
221  m_graphNodes.insert(make_pair(nuid, add_vertex(nodeProperty(nuid), m_graph)));
222  NS_ASSERT(ok == true);
223 
224  put(vertex_index, m_graph, otherNode->second, m_maxNodeId);
225  m_maxNodeId++;
226  }
227 
228  // cout << node->second << " <-> " << otherNode->second << endl;
229  // parallel edges are disabled in the graph, so no need to worry
230  add_edge(node->second, otherNode->second, m_graph);
231  }
232 }
233 
234 void
235 RocketfuelMapReader::assignGw(Traits::vertex_descriptor vertex, uint32_t degree,
236  node_type_t nodeType)
237 {
238  graph_traits<Graph>::adjacency_iterator u, endu;
239  for (tie(u, endu) = adjacent_vertices(vertex, m_graph); u != endu; u++) {
240  if (get(vertex_rank, m_graph, *u) != UNKNOWN)
241  continue;
242 
243  put(vertex_rank, m_graph, *u, nodeType);
244  put(vertex_color, m_graph, *u, "green");
245 
246  uint32_t u_degree = out_degree(*u, m_graph);
247  if (u_degree < degree)
248  assignGw(*u, degree, BACKBONE);
249  }
250 };
251 
252 void
253 RocketfuelMapReader::AssignClients(uint32_t clientDegree, uint32_t gwDegree)
254 {
255  graph_traits<Graph>::vertex_iterator v, endv;
256  for (tie(v, endv) = vertices(m_graph); v != endv; v++) {
257  uint32_t degree = out_degree(*v, m_graph);
258  if (degree == clientDegree) {
259  put(vertex_rank, m_graph, *v, CLIENT);
260  put(vertex_color, m_graph, *v, "red");
261 
262  assignGw(*v, gwDegree + 1, GATEWAY);
263  }
264  }
265 };
266 
267 NodeContainer
268 RocketfuelMapReader::Read(RocketfuelParams params, bool keepOneComponent /*=true*/,
269  bool connectBackbones /*=true*/)
270 {
271  m_maxNodeId = 0;
272 
273  ifstream topgen;
274  topgen.open(GetFileName().c_str());
275  // NodeContainer nodes;
276  UniformVariable var;
277 
278  istringstream lineBuffer;
279  string line;
280  int lineNumber = 0;
281  char errbuf[512];
282 
283  if (!topgen.is_open()) {
284  NS_LOG_WARN("Couldn't open the file " << GetFileName());
285  return m_nodes;
286  }
287 
288  while (!topgen.eof()) {
289  int ret;
290  int argc;
291  char* argv[REGMATCH_MAX];
292  char* buf;
293 
294  lineNumber++;
295  line.clear();
296  lineBuffer.clear();
297 
298  getline(topgen, line);
299  buf = (char*)line.c_str();
300 
301  regmatch_t regmatch[REGMATCH_MAX];
302  regex_t regex;
303 
304  ret = regcomp(&regex, ROCKETFUEL_MAPS_LINE, REG_EXTENDED | REG_NEWLINE);
305  if (ret != 0) {
306  regerror(ret, &regex, errbuf, sizeof(errbuf));
307  regfree(&regex);
308  continue;
309  }
310 
311  ret = regexec(&regex, buf, REGMATCH_MAX, regmatch, 0);
312  if (ret == REG_NOMATCH) {
313  NS_LOG_WARN("match failed (maps file): %s" << buf);
314  regfree(&regex);
315  continue;
316  }
317 
318  line = buf;
319  argc = 0;
320 
321  /* regmatch[0] is the entire strings that matched */
322  for (int i = 1; i < REGMATCH_MAX; i++) {
323  if (regmatch[i].rm_so == -1) {
324  argv[i - 1] = NULL;
325  }
326  else {
327  line[regmatch[i].rm_eo] = '\0';
328  argv[i - 1] = &line[regmatch[i].rm_so];
329  argc = i;
330  }
331  }
332 
333  GenerateFromMapsFile(argc, argv);
334  regfree(&regex);
335  }
336 
337  if (keepOneComponent) {
338  NS_LOG_DEBUG("Before eliminating disconnected nodes: " << num_vertices(m_graph));
339  KeepOnlyBiggestConnectedComponent();
340  NS_LOG_DEBUG("After eliminating disconnected nodes: " << num_vertices(m_graph));
341  }
342 
343  for (int clientDegree = 1; clientDegree <= params.clientNodeDegrees; clientDegree++) {
344  AssignClients(clientDegree, std::min(clientDegree, 3));
345  }
346 
347  graph_traits<Graph>::vertex_iterator v, endv;
348  for (tie(v, endv) = vertices(m_graph); v != endv; v++) {
349  node_type_t type = get(vertex_rank, m_graph, *v);
350  if (type == UNKNOWN) {
351  put(vertex_rank, m_graph, *v, BACKBONE);
352  put(vertex_color, m_graph, *v, "blue");
353  }
354  }
355 
356  if (connectBackbones) {
357  ConnectBackboneRouters();
358  }
359 
360  graph_traits<Graph>::edge_iterator e, ende;
361  for (tie(e, ende) = edges(m_graph); e != ende;) {
362  Traits::vertex_descriptor u = source(*e, m_graph), v = target(*e, m_graph);
363 
364  node_type_t u_type = get(vertex_rank, m_graph, u), v_type = get(vertex_rank, m_graph, v);
365 
366  if (u_type == BACKBONE && v_type == BACKBONE) {
367  // ok
368  }
369  else if ((u_type == GATEWAY && v_type == BACKBONE)
370  || (u_type == BACKBONE && v_type == GATEWAY)) {
371  // ok
372  }
373  else if (u_type == GATEWAY && v_type == GATEWAY) {
374  // ok
375  }
376  else if ((u_type == GATEWAY && v_type == CLIENT) || (u_type == CLIENT && v_type == GATEWAY)) {
377  // ok
378  }
379  else {
380  // not ok
381  NS_LOG_DEBUG("Wrong link type between nodes: " << u_type << " <-> " << v_type
382  << " (deleting the link)");
383 
384  graph_traits<Graph>::edge_iterator tmp = e;
385  tmp++;
386 
387  remove_edge(*e, m_graph);
388  e = tmp;
389  continue;
390  }
391  e++;
392  }
393 
394  if (keepOneComponent) {
395  NS_LOG_DEBUG("Before 2 eliminating disconnected nodes: " << num_vertices(m_graph));
396  KeepOnlyBiggestConnectedComponent();
397  NS_LOG_DEBUG("After 2 eliminating disconnected nodes: " << num_vertices(m_graph));
398  }
399 
400  for (tie(v, endv) = vertices(m_graph); v != endv; v++) {
401  string nodeName = get(vertex_name, m_graph, *v);
402  Ptr<Node> node = CreateNode(nodeName, 0);
403 
404  node_type_t type = get(vertex_rank, m_graph, *v);
405  switch (type) {
406  case BACKBONE:
407  Names::Rename(nodeName, "bb-" + nodeName);
408  put(vertex_name, m_graph, *v, "bb-" + nodeName);
409  m_backboneRouters.Add(node);
410  break;
411  case CLIENT:
412  Names::Rename(nodeName, "leaf-" + nodeName);
413  put(vertex_name, m_graph, *v, "leaf-" + nodeName);
414  m_customerRouters.Add(node);
415  break;
416  case GATEWAY:
417  Names::Rename(nodeName, "gw-" + nodeName);
418  put(vertex_name, m_graph, *v, "gw-" + nodeName);
419  m_gatewayRouters.Add(node);
420  break;
421  case UNKNOWN:
422  NS_FATAL_ERROR("Should not happen");
423  break;
424  }
425  }
426 
427  for (tie(e, ende) = edges(m_graph); e != ende; e++) {
428  Traits::vertex_descriptor u = source(*e, m_graph), v = target(*e, m_graph);
429 
430  node_type_t u_type = get(vertex_rank, m_graph, u), v_type = get(vertex_rank, m_graph, v);
431 
432  string u_name = get(vertex_name, m_graph, u), v_name = get(vertex_name, m_graph, v);
433 
434  if (u_type == BACKBONE && v_type == BACKBONE) {
435  CreateLink(u_name, v_name, params.averageRtt, params.minb2bBandwidth, params.maxb2bBandwidth,
436  params.minb2bDelay, params.maxb2bDelay);
437  }
438  else if ((u_type == GATEWAY && v_type == BACKBONE)
439  || (u_type == BACKBONE && v_type == GATEWAY)) {
440  CreateLink(u_name, v_name, params.averageRtt, params.minb2gBandwidth, params.maxb2gBandwidth,
441  params.minb2gDelay, params.maxb2gDelay);
442  }
443  else if (u_type == GATEWAY && v_type == GATEWAY) {
444  CreateLink(u_name, v_name, params.averageRtt, params.minb2gBandwidth, params.maxb2gBandwidth,
445  params.minb2gDelay, params.maxb2gDelay);
446  }
447  else if ((u_type == GATEWAY && v_type == CLIENT) || (u_type == CLIENT && v_type == GATEWAY)) {
448  CreateLink(u_name, v_name, params.averageRtt, params.ming2cBandwidth, params.maxg2cBandwidth,
449  params.ming2cDelay, params.maxg2cDelay);
450  }
451  else {
452  NS_FATAL_ERROR("Wrong link type between nodes: " << u_type << " <-> " << v_type);
453  }
454  }
455 
456  ApplySettings();
457 
458  NS_LOG_INFO("Clients: " << m_customerRouters.GetN());
459  NS_LOG_INFO("Gateways: " << m_gatewayRouters.GetN());
460  NS_LOG_INFO("Backbones: " << m_backboneRouters.GetN());
461  NS_LOG_INFO("Links: " << GetLinks().size());
462 
463  return m_nodes;
464 }
465 
466 const NodeContainer&
468 {
469  return m_backboneRouters;
470 }
471 
472 const NodeContainer&
474 {
475  return m_gatewayRouters;
476 }
477 
478 const NodeContainer&
480 {
481  return m_customerRouters;
482 }
483 
484 static void
485 nodeWriter(std::ostream& os, NodeContainer& m)
486 {
487  for (NodeContainer::Iterator node = m.Begin(); node != m.End(); node++) {
488  std::string name = Names::FindName(*node);
489 
490  os << name << "\t"
491  << "NA"
492  << "\t" << 0 << "\t" << 0 << "\n";
493  }
494 };
495 
496 void
497 RocketfuelMapReader::SaveTopology(const std::string& file)
498 {
499  ofstream os(file.c_str(), ios::trunc);
500  os << "# any empty lines and lines starting with '#' symbol is ignored\n"
501  << "\n"
502  << "# The file should contain exactly two sections: router and link, each starting with the "
503  "corresponding keyword\n"
504  << "\n"
505  << "# router section defines topology nodes and their relative positions (e.g., to use in "
506  "visualizer)\n"
507  << "router\n"
508  << "\n"
509  << "# each line in this section represents one router and should have the following data\n"
510  << "# node comment yPos xPos\n";
511 
512  nodeWriter(os, m_backboneRouters);
513  nodeWriter(os, m_gatewayRouters);
514  nodeWriter(os, m_customerRouters);
515 
516  os << "# link section defines point-to-point links between nodes and characteristics of these "
517  "links\n"
518  << "\n"
519  << "link\n"
520  << "\n"
521  << "# Each line should be in the following format (only first two are required, the rest can "
522  "be omitted)\n"
523  << "# srcNode dstNode bandwidth metric delay queue\n"
524  << "# bandwidth: link bandwidth\n"
525  << "# metric: routing metric\n"
526  << "# delay: link delay\n"
527  << "# queue: MaxPackets for transmission queue on the link (both directions)\n";
528 
529  for (std::list<Link>::iterator link = m_linksList.begin(); link != m_linksList.end(); link++) {
530  string src = Names::FindName(link->GetFromNode());
531  string dst = Names::FindName(link->GetToNode());
532  os << src << "\t";
533  os << dst << "\t";
534 
535  string tmp;
536  if (link->GetAttributeFailSafe("DataRate", tmp))
537  os << link->GetAttribute("DataRate") << "\t";
538  else
539  NS_FATAL_ERROR("DataRate must be specified for the link");
540 
541  if (link->GetAttributeFailSafe("OSPF", tmp))
542  os << link->GetAttribute("OSPF") << "\t";
543  else {
544  DataRate rate = boost::lexical_cast<DataRate>(link->GetAttribute("DataRate"));
545 
546  int32_t cost = std::max(1, static_cast<int32_t>(1.0 * m_referenceOspfRate.GetBitRate()
547  / rate.GetBitRate()));
548 
549  os << cost << "\t";
550  }
551 
552  if (link->GetAttributeFailSafe("Delay", tmp)) {
553  os << link->GetAttribute("Delay") << "\t";
554 
555  if (link->GetAttributeFailSafe("MaxPackets", tmp)) {
556  os << link->GetAttribute("MaxPackets") << "\t";
557  }
558  }
559  os << "\n";
560  }
561 }
562 
564 
565 template<class Names, class Colors>
566 class name_color_writer {
567 public:
568  name_color_writer(Names _names, Colors _colors)
569  : names(_names)
570  , colors(_colors)
571  {
572  }
573 
574  template<class VertexOrEdge>
575  void
576  operator()(std::ostream& out, const VertexOrEdge& v) const
577  {
578  // out << "[label=\"" << names[v] << "\",style=filled,fillcolor=\"" << colors[v] << "\"]";
579  out << "[shape=\"circle\",width=0.1,label=\"\",style=filled,fillcolor=\"" << colors[v] << "\"]";
580  }
581 
582 private:
583  Names names;
584  Colors colors;
585 };
586 
587 template<class Names, class Colors>
588 inline name_color_writer<Names, Colors>
589 make_name_color_writer(Names n, Colors c)
590 {
591  return name_color_writer<Names, Colors>(n, c);
592 }
593 
595 
596 void
597 RocketfuelMapReader::SaveGraphviz(const std::string& file)
598 {
599  ofstream of(file.c_str());
600  property_map<Graph, vertex_name_t>::type names = get(vertex_name, m_graph);
601  property_map<Graph, vertex_color_t>::type colors = get(vertex_color, m_graph);
602  write_graphviz(of, m_graph, make_name_color_writer(names, colors));
603 }
604 
605 void
606 RocketfuelMapReader::KeepOnlyBiggestConnectedComponent()
607 {
608  std::map<graph_traits<Graph>::vertex_descriptor, int> temp;
609  associative_property_map<std::map<graph_traits<Graph>::vertex_descriptor, int>> components(temp);
610 
611  // //check if topology has breaks in its structure and trim it if yes
612  // property_map<Graph, vertex_index1_t>::type components = get (vertex_index1, m_graph);
613 
614  int num = connected_components(m_graph, components);
615  NS_LOG_DEBUG("Topology has " << num << " components");
616 
617  vector<int> sizes(num, 0);
618 
619  graph_traits<Graph>::vertex_iterator v, endv;
620  for (tie(v, endv) = vertices(m_graph); v != endv; v++) {
621  sizes[get(components, *v)]++;
622  }
623  int largestComponent = max_element(sizes.begin(), sizes.end()) - sizes.begin();
624  // cout << "Largest: " << largestComponent << endl;
625 
626  // for (int i =0 ; i < num; i++) cout << sizes[i] << " ";
627  // cout << endl;
628 
630  // remove nodes and edges from smaller components //
632  for (tie(v, endv) = vertices(m_graph); v != endv; v++) {
633  if (get(components, *v) == largestComponent)
634  continue;
635 
636  clear_vertex(*v, m_graph);
637  }
638 
639  // this works only if vertices are organized in listS or setS (iterator is not invalidated on
640  // remove)
641  for (tie(v, endv) = vertices(m_graph); v != endv;) {
642  if (get(components, *v) == largestComponent) {
643  v++;
644  continue;
645  }
646 
647  graph_traits<Graph>::vertex_iterator tmp = v;
648  tmp++;
649 
650  remove_vertex(*v, m_graph);
651  v = tmp;
652  }
653 
654  int index = 0;
655  // renumber nodes
656  for (tie(v, endv) = vertices(m_graph); v != endv; v++) {
657  put(vertex_index, m_graph, *v, index++);
658  }
659 }
660 
661 void
662 RocketfuelMapReader::ConnectBackboneRouters()
663 {
664  // not the tricky part. we want backbone to be a fully connected component,
665  // so traffic doesn't bounce from backbone to gateway and back
666 
667  typedef adjacency_list<setS, setS, boost::undirectedS,
668  property<vertex_name_t, Traits::vertex_descriptor,
669  property<vertex_index_t, int, property<vertex_index1_t, int>>>>
670  BbGraph;
671  BbGraph bbGraph;
672  map<Traits::vertex_descriptor, graph_traits<BbGraph>::vertex_descriptor> nodeMap;
673 
674  int index = 0;
675 
676  graph_traits<Graph>::vertex_iterator v, endv;
677  for (tie(v, endv) = vertices(m_graph); v != endv; v++) {
678  node_type_t type = get(vertex_rank, m_graph, *v);
679  if (type == BACKBONE) {
680  graph_traits<BbGraph>::vertex_descriptor newv = add_vertex(*v, bbGraph);
681  put(vertex_index, bbGraph, newv, index++);
682  nodeMap[*v] = newv;
683  }
684  }
685 
686  graph_traits<BbGraph>::vertex_iterator bb, endBb;
687  for (tie(bb, endBb) = vertices(bbGraph); bb != endBb; bb++) {
688  Traits::vertex_descriptor actualVertex = get(vertex_name, bbGraph, *bb);
689 
690  graph_traits<Graph>::adjacency_iterator u, endu;
691  for (tie(u, endu) = adjacent_vertices(actualVertex, m_graph); u != endu; u++) {
692  if (nodeMap.find(*u) != nodeMap.end()) {
693  add_edge(nodeMap[actualVertex], nodeMap[*u], bbGraph);
694  }
695  }
696  }
697 
698  property_map<BbGraph, vertex_index1_t>::type components = get(vertex_index1, bbGraph);
699 
700  int num = connected_components(bbGraph, components);
701  NS_LOG_DEBUG("Backbone has " << num << " components");
702  if (num == 1)
703  return; // nothing to do
704 
705  vector<vector<graph_traits<BbGraph>::vertex_descriptor>> subgraphs(num);
706  for (tie(bb, endBb) = vertices(bbGraph); bb != endBb; bb++) {
707  int component = get(vertex_index1, bbGraph, *bb);
708  subgraphs[component].push_back(*bb);
709  }
710 
711  UniformVariable randVar;
712 
713  for (int i = 1; i < num; i++) {
714  int node1 = randVar.GetInteger(0, subgraphs[i - 1].size() - 1);
715  int node2 = randVar.GetInteger(0, subgraphs[i].size() - 1);
716 
717  Traits::vertex_descriptor v1 = get(vertex_name, bbGraph, subgraphs[i - 1][node1]),
718  v2 = get(vertex_name, bbGraph, subgraphs[i][node2]);
719 
720  NS_LOG_DEBUG("Connecting " << get(vertex_name, m_graph, v1) << "[" << node1 << "] with "
721  << get(vertex_name, m_graph, v2) << "[" << node2 << "]");
722 
723  add_edge(v1, v2, m_graph);
724  }
725 }
726 
727 } /* namespace ns3 */
This class reads annotated topology and apply settings to the corresponding nodes and links...
const NodeContainer & GetGatewayRouters() const
virtual void SaveGraphviz(const std::string &file)
Save topology in graphviz format (.dot file)
virtual void SaveTopology(const std::string &file)
Save positions (e.g., after manual modification using visualizer)
virtual const std::list< Link > & GetLinks() const
Get links read by the reader.
const NodeContainer & GetCustomerRouters() const
void ApplySettings()
This method applies setting to corresponding nodes and links NetDeviceContainer must be allocated Nod...
const NodeContainer & GetBackboneRouters() const
#define REGMATCH_MAX
virtual NodeContainer Read()
Deprecated call.
#define ROCKETFUEL_MAPS_LINE
static void nodeWriter(std::ostream &os, NodeContainer &m)
Ptr< Node > CreateNode(const std::string name, uint32_t systemId)