28 #include "ns3/unused.h"
39 static TypeId tid =
TypeId (
"ns3::RocketfuelTopologyReader")
41 .SetGroupName (
"TopologyReader")
61 #define REGMATCH_MAX 16
65 #define SPACE "[ \t]+"
66 #define MAYSPACE "[ \t]*"
68 #define ROCKETFUEL_MAPS_LINE \
69 START "(-*[0-9]+)" SPACE "(@[?A-Za-z0-9,+]+)" SPACE \
70 "(\\+)*" MAYSPACE "(bb)*" MAYSPACE \
71 "\\(([0-9]+)\\)" SPACE "(&[0-9]+)*" MAYSPACE \
72 "->" MAYSPACE "(<[0-9 \t<>]+>)*" MAYSPACE \
73 "(\\{-[0-9\\{\\} \t-]+\\})*" SPACE \
74 "=([A-Za-z0-9.!-]+)" SPACE "r([0-9])" \
77 #define ROCKETFUEL_WEIGHTS_LINE \
78 START "([^ \t]+)" SPACE "([^ \t]+)" SPACE "([0-9.]+)" MAYSPACE END
92 std::vector <std::string>::size_type neighListSize,
93 std::string & name,
int radius)
96 NS_LOG_INFO (
"Load Node[" << uid <<
"]: location: " << loc <<
" dns: " << dns
97 <<
" bb: " << bb <<
" neighbors: " << neighListSize
98 <<
"(" <<
"%d" <<
") externals: \"%s\"(%d) "
99 <<
"name: " << name <<
" radius: " << radius);
113 unsigned int num_neigh = 0;
115 std::vector <std::string> neigh_list;
131 num_neigh_s = ::atoi (argv[4]);
135 NS_LOG_WARN (
"Negative number of neighbors given");
139 num_neigh = num_neigh_s;
146 char *stringp = argv[6];
147 while ((nbr = strsep (&stringp,
" \t")) != NULL)
149 nbr[strlen (nbr) - 1] =
'\0';
150 neigh_list.push_back (nbr + 1);
153 if (num_neigh != neigh_list.size ())
155 NS_LOG_WARN (
"Given number of neighbors = " << num_neigh <<
" != size of neighbors list = " << neigh_list.size ());
170 radius = ::atoi (&argv[9][1]);
176 PrintNodeInfo (uid, loc, dns, bb, neigh_list.size (), name, radius);
183 Ptr<Node> tmpNode = CreateObject<Node> ();
189 for (uint32_t i = 0; i < neigh_list.size (); ++i)
191 nuid = neigh_list[i];
200 Ptr<Node> tmpNode = CreateObject<Node> ();
228 double v = strtod (argv[2], &endptr);
237 if (!sname.empty () && !tname.empty ())
241 Ptr<Node> tmpNode = CreateObject<Node> ();
249 Ptr<Node> tmpNode = CreateObject<Node> ();
259 if ((iter->GetFromNode () ==
m_nodeMap[tname])
260 && (iter->GetToNode () ==
m_nodeMap[sname]))
292 regerror (ret, ®ex, errbuf,
sizeof (errbuf));
295 ret = regexec (®ex, line,
REGMATCH_MAX, regmatch, 0);
296 if (ret != REG_NOMATCH)
307 regerror (ret, ®ex, errbuf,
sizeof (errbuf));
310 ret = regexec (®ex, line,
REGMATCH_MAX, regmatch, 0);
311 if (ret != REG_NOMATCH)
325 std::ifstream topgen;
329 std::istringstream lineBuffer;
335 if (!topgen.is_open ())
341 while (!topgen.eof ())
352 getline (topgen, line);
353 buf = (
char *)line.c_str ();
373 regerror (ret, ®ex, errbuf,
sizeof (errbuf));
379 if (ret == REG_NOMATCH)
381 NS_LOG_WARN (
"match failed (maps file): %s" << buf);
391 regerror (ret, ®ex, errbuf,
sizeof (errbuf));
397 if (ret == REG_NOMATCH)
399 NS_LOG_WARN (
"match failed (weights file): %s" << buf);
411 if (regmatch[i].rm_so == -1)
417 line[regmatch[i].rm_eo] =
'\0';
418 argv[i - 1] = &line[regmatch[i].rm_so];
433 NS_LOG_WARN (
"Unsupported file format (only Maps/Weights are supported)");
RocketfuelTopologyReader()
static TypeId GetTypeId(void)
Get the type ID.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
ConstLinksIterator LinksBegin(void) const
Returns an iterator to the the first link in this block.
std::string GetFileName(void) const
Returns the input file name.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define ROCKETFUEL_MAPS_LINE
#define NS_UNUSED(x)
Mark a local variable as unused.
NodeContainer GenerateFromMapsFile(int argc, char *argv[])
Topology read function from a file containing the nodes map.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
void AddLink(Link link)
Adds a link to the topology.
enum RF_FileType GetFileType(const char *)
Classifies the file type according to its content.
NodeContainer GenerateFromWeightsFile(int argc, char *argv[])
Topology read function from a file containing the nodes weights.
Inner class holding the details about a link between two nodes.
int m_nodesNumber
number of nodes
static void 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.
virtual ~RocketfuelTopologyReader()
#define ROCKETFUEL_WEIGHTS_LINE
std::map< std::string, Ptr< Node > > m_nodeMap
map of the nodes (name, node)
std::list< Link >::const_iterator ConstLinksIterator
Constant iterator to the list of the links.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
keep track of a set of node pointers.
int m_linksNumber
number of links
RF_FileType
Enum of the possible file types.
virtual NodeContainer Read(void)
Main topology reading function.
void Add(NodeContainer other)
Append the contents of another NodeContainer to the end of this container.
#define NS_LOG_WARN(msg)
Use NS_LOG to output a message of level LOG_WARN.
A base class which provides memory management and object aggregation.
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
ConstLinksIterator LinksEnd(void) const
Returns an iterator to the the last link in this block.