A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
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
35
namespace
ns3
{
36
37
NS_LOG_COMPONENT_DEFINE
(
"TopologyReaderHelper"
);
38
39
TopologyReaderHelper::TopologyReaderHelper
()
40
{
41
m_inputModel
= 0;
42
}
43
44
void
45
TopologyReaderHelper::SetFileName
(
const
std::string fileName)
46
{
47
m_fileName
= fileName;
48
}
49
50
void
51
TopologyReaderHelper::SetFileType
(
const
std::string fileType)
52
{
53
m_fileType
= fileType;
54
}
55
56
57
Ptr<TopologyReader>
58
TopologyReaderHelper::GetTopologyReader
()
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
ns3::Ptr
Smart pointer class similar to boost::intrusive_ptr.
Definition:
ptr.h:74
ns3::TopologyReaderHelper::m_fileName
std::string m_fileName
Name of the input file.
Definition:
topology-reader-helper.h:66
ns3::TopologyReaderHelper::SetFileType
void SetFileType(const std::string fileType)
Sets the input file type.
Definition:
topology-reader-helper.cc:51
ns3::TopologyReaderHelper::TopologyReaderHelper
TopologyReaderHelper()
Definition:
topology-reader-helper.cc:39
ns3::TopologyReaderHelper::m_inputModel
Ptr< TopologyReader > m_inputModel
Smart pointer to the actual topology model.
Definition:
topology-reader-helper.h:65
ns3::TopologyReaderHelper::GetTopologyReader
Ptr< TopologyReader > GetTopologyReader()
Gets a Ptr<TopologyReader> to the actual TopologyReader.
Definition:
topology-reader-helper.cc:58
ns3::TopologyReaderHelper::SetFileName
void SetFileName(const std::string fileName)
Sets the input file name.
Definition:
topology-reader-helper.cc:45
ns3::TopologyReaderHelper::m_fileType
std::string m_fileType
Type of the input file (e.g., "Inet", "Orbis", etc.).
Definition:
topology-reader-helper.h:67
NS_ASSERT_MSG
#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
NS_LOG_COMPONENT_DEFINE
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition:
log.h:205
NS_LOG_INFO
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Definition:
log.h:281
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
src
topology-read
helper
topology-reader-helper.cc
Generated on Tue Feb 6 2024 19:21:27 for ns-3 by
1.9.1