A Discrete-Event Network Simulator
API
topology-reader-helper.cc
Go to the documentation of this file.
1/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2010 Universita' di Firenze, Italy
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: Tommaso Pecorella (tommaso.pecorella@unifi.it)
19 * Author: Valerio Sartini (valesar@gmail.com)
20 */
21
22#include "ns3/object.h"
23#include "ns3/topology-reader-helper.h"
24#include "ns3/inet-topology-reader.h"
25#include "ns3/orbis-topology-reader.h"
26#include "ns3/rocketfuel-topology-reader.h"
27#include "ns3/log.h"
28
35namespace ns3 {
36
37NS_LOG_COMPONENT_DEFINE ("TopologyReaderHelper");
38
40{
41 m_inputModel = 0;
42}
43
44void
45TopologyReaderHelper::SetFileName (const std::string fileName)
46{
47 m_fileName = fileName;
48}
49
50void
51TopologyReaderHelper::SetFileType (const std::string fileType)
52{
53 m_fileType = fileType;
54}
55
56
59{
60 if (!m_inputModel)
61 {
62 NS_ASSERT_MSG (!m_fileType.empty (), "Missing File Type");
63 NS_ASSERT_MSG (!m_fileName.empty (), "Missing File Name");
64
65 if (m_fileType == "Orbis")
66 {
67 NS_LOG_INFO ("Creating Orbis formatted data input.");
68 m_inputModel = CreateObject<OrbisTopologyReader> ();
69 }
70 else if (m_fileType == "Inet")
71 {
72 NS_LOG_INFO ("Creating Inet formatted data input.");
73 m_inputModel = CreateObject<InetTopologyReader> ();
74 }
75 else if (m_fileType == "Rocketfuel")
76 {
77 NS_LOG_INFO ("Creating Rocketfuel formatted data input.");
78 m_inputModel = CreateObject<RocketfuelTopologyReader> ();
79 }
80 else
81 {
82 NS_ASSERT_MSG (false, "Wrong (unknown) File Type");
83 }
84
85 m_inputModel->SetFileName (m_fileName);
86 }
87 return m_inputModel;
88}
89
90
91
92} // namespace ns3
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:74
std::string m_fileName
Name of the input file.
void SetFileType(const std::string fileType)
Sets the input file type.
Ptr< TopologyReader > m_inputModel
Smart pointer to the actual topology model.
Ptr< TopologyReader > GetTopologyReader()
Gets a Ptr<TopologyReader> to the actual TopologyReader.
void SetFileName(const std::string fileName)
Sets the input file name.
std::string m_fileType
Type of the input file (e.g., "Inet", "Orbis", etc.).
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
Definition: assert.h:88
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:205
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Definition: log.h:281
Every class exported by the ns3 library is enclosed in the ns3 namespace.