ns3::RocketfuelTopologyReader implementation. More...
#include <fstream>
#include <cstdlib>
#include <iostream>
#include <sstream>
#include <regex.h>
#include "ns3/log.h"
#include "ns3/node-container.h"
#include "rocketfuel-topology-reader.h"
Go to the source code of this file.
Namespaces | |
ns3 | |
Every class exported by the ns3 library is enclosed in the ns3 namespace. | |
Macros | |
#define | END "$" |
End of a line. More... | |
#define | MAYSPACE "[ \t]*" |
Zero or more spaces. More... | |
#define | REGMATCH_MAX 16 |
Maximum nuber of matches in a regex query. More... | |
#define | ROCKETFUEL_MAPS_LINE |
Regex expression matching a MAP line. More... | |
#define | ROCKETFUEL_WEIGHTS_LINE START "([^ \t]+)" SPACE "([^ \t]+)" SPACE "([0-9.]+)" MAYSPACE END |
Regex expression matching a WEIGHT line. More... | |
#define | SPACE "[ \t]+" |
One or more spaces. More... | |
#define | START "^" |
Start of a line. More... | |
Functions | |
static void | ns3::PrintNodeInfo (std::string &uid, std::string &loc, bool dns, bool bb, std::vector< std::string >::size_type neighListSize, std::string &name, int radius) |
Print node info. More... | |
ns3::RocketfuelTopologyReader implementation.
Definition in file rocketfuel-topology-reader.cc.
#define END "$" |
End of a line.
Definition at line 73 of file rocketfuel-topology-reader.cc.
#define MAYSPACE "[ \t]*" |
Zero or more spaces.
Definition at line 77 of file rocketfuel-topology-reader.cc.
#define REGMATCH_MAX 16 |
Maximum nuber of matches in a regex query.
Definition at line 68 of file rocketfuel-topology-reader.cc.
#define ROCKETFUEL_MAPS_LINE |
Regex expression matching a MAP line.
Definition at line 80 of file rocketfuel-topology-reader.cc.
Regex expression matching a WEIGHT line.
Definition at line 90 of file rocketfuel-topology-reader.cc.
#define SPACE "[ \t]+" |
One or more spaces.
Definition at line 75 of file rocketfuel-topology-reader.cc.
#define START "^" |
Start of a line.
Definition at line 71 of file rocketfuel-topology-reader.cc.