A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
topology-reader-helper.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2010 Universita' di Firenze, Italy
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
17 * Author: Tommaso Pecorella (tommaso.pecorella@unifi.it)
18 * Author: Valerio Sartini (valesar@gmail.com)
19 */
20
22
23#include "ns3/inet-topology-reader.h"
24#include "ns3/log.h"
25#include "ns3/object.h"
26#include "ns3/orbis-topology-reader.h"
27#include "ns3/rocketfuel-topology-reader.h"
28
29/**
30 * \file
31 * \ingroup topology
32 * ns3::TopologyHelper implementation.
33 */
34
35namespace ns3
36{
37
38NS_LOG_COMPONENT_DEFINE("TopologyReaderHelper");
39
41{
42 m_inputModel = nullptr;
43}
44
45void
46TopologyReaderHelper::SetFileName(const std::string fileName)
47{
48 m_fileName = fileName;
49}
50
51void
52TopologyReaderHelper::SetFileType(const std::string fileType)
53{
54 m_fileType = fileType;
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} // namespace ns3
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:77
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:86
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:202
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Definition: log.h:275
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::TopologyHelper declaration.