67 #include "ns3/aodv-module.h"
68 #include "ns3/applications-module.h"
69 #include "ns3/core-module.h"
70 #include "ns3/dsdv-module.h"
71 #include "ns3/dsr-module.h"
72 #include "ns3/flow-monitor-module.h"
73 #include "ns3/internet-module.h"
74 #include "ns3/mobility-module.h"
75 #include "ns3/network-module.h"
76 #include "ns3/olsr-module.h"
77 #include "ns3/yans-wifi-helper.h"
106 void CommandSetup(
int argc,
char** argv);
124 void CheckThroughput();
127 uint32_t bytesTotal{0};
130 std::string m_CSVfileName{
"manet-routing.output.csv"};
132 std::string m_protocolName{
"AODV"};
134 bool m_traceMobility{
false};
135 bool m_flowMonitor{
false};
142 static inline std::string
145 std::ostringstream oss;
152 oss <<
" received one packet from " << addr.
GetIpv4();
156 oss <<
" received one packet!";
166 while ((packet = socket->
RecvFrom(senderAddress)))
168 bytesTotal += packet->
GetSize();
177 double kbs = (bytesTotal * 8.0) / 1000;
183 << m_nSinks <<
"," << m_protocolName <<
"," << m_txp <<
"" << std::endl;
206 cmd.AddValue(
"CSVfileName",
"The name of the CSV output file name", m_CSVfileName);
207 cmd.AddValue(
"traceMobility",
"Enable mobility tracing", m_traceMobility);
208 cmd.AddValue(
"protocol",
"Routing protocol (OLSR, AODV, DSDV, DSR)", m_protocolName);
209 cmd.AddValue(
"flowMonitor",
"enable FlowMonitor", m_flowMonitor);
210 cmd.Parse(argc, argv);
212 std::vector<std::string> allowedProtocols{
"OLSR",
"AODV",
"DSDV",
"DSR"};
214 if (std::find(std::begin(allowedProtocols), std::end(allowedProtocols), m_protocolName) ==
215 std::end(allowedProtocols))
222 main(
int argc,
char* argv[])
237 std::ofstream out(m_CSVfileName);
238 out <<
"SimulationSecond,"
240 <<
"PacketsReceived,"
242 <<
"RoutingProtocol,"
243 <<
"TransmissionPower" << std::endl;
248 double TotalTime = 200.0;
249 std::string rate(
"2048bps");
250 std::string phyMode(
"DsssRate11Mbps");
251 std::string tr_name(
"manet-routing-compare");
262 adhocNodes.
Create(nWifis);
276 wifi.SetRemoteStationManager(
"ns3::ConstantRateWifiManager",
285 wifiMac.
SetType(
"ns3::AdhocWifiMac");
289 int64_t streamIndex = 0;
292 pos.
SetTypeId(
"ns3::RandomRectanglePositionAllocator");
293 pos.
Set(
"X",
StringValue(
"ns3::UniformRandomVariable[Min=0.0|Max=300.0]"));
294 pos.
Set(
"Y",
StringValue(
"ns3::UniformRandomVariable[Min=0.0|Max=1500.0]"));
297 streamIndex += taPositionAlloc->AssignStreams(streamIndex);
299 std::stringstream ssSpeed;
300 ssSpeed <<
"ns3::UniformRandomVariable[Min=0.0|Max=" << nodeSpeed <<
"]";
301 std::stringstream ssPause;
302 ssPause <<
"ns3::ConstantRandomVariable[Constant=" << nodePause <<
"]";
311 mobilityAdhoc.
Install(adhocNodes);
312 streamIndex += mobilityAdhoc.
AssignStreams(adhocNodes, streamIndex);
322 if (m_protocolName ==
"OLSR")
328 else if (m_protocolName ==
"AODV")
334 else if (m_protocolName ==
"DSDV")
340 else if (m_protocolName ==
"DSR")
343 dsrMain.
Install(dsr, adhocNodes);
346 NS_FATAL_ERROR(
"Error: FlowMonitor does not work with DSR. Terminating.");
357 addressAdhoc.
SetBase(
"10.1.1.0",
"255.255.255.0");
359 adhocInterfaces = addressAdhoc.
Assign(adhocDevices);
365 for (
int i = 0; i < m_nSinks; i++)
378 std::stringstream ss;
380 std::string
nodes = ss.str();
382 std::stringstream ss2;
384 std::string sNodeSpeed = ss2.str();
386 std::stringstream ss3;
388 std::string sNodePause = ss3.str();
390 std::stringstream ss4;
392 std::string sRate = ss4.str();
420 flowmon->SerializeToXmlFile(tr_name +
".flowmon",
false,
false);
Ptr< Socket > SetupPacketReceive(Ptr< Node > node)
Create a socket and prepare it for packet reception.
Routing experiment class.
void Run()
Run the experiment.
void CommandSetup(int argc, char **argv)
Handles the command-line parameters.
void CheckThroughput()
Compute the throughput.
void ReceivePacket(Ptr< Socket > socket)
Receive a packet.
Ptr< Socket > SetupPacketReceive(Ipv4Address addr, Ptr< Node > node)
Setup the receiving socket in a Sink Node.
a polymophic address class
Helper class that adds AODV routing to nodes.
holds a vector of ns3::Application pointers.
void Start(Time start) const
Start all of the Applications in this container at the start time given as a parameter.
void Stop(Time stop) const
Arrange for all of the Applications in this container to Stop() at the Time given as a parameter.
Manage ASCII trace files for device models.
Ptr< OutputStreamWrapper > CreateFileStream(std::string filename, std::ios::openmode filemode=std::ios::out)
Create and initialize an output stream object we'll use to write the traced bits.
Parse command-line arguments.
This class can be used to hold variables of floating point type such as 'double' or 'float'.
Helper class that adds DSDV routing to nodes.
DSR helper class to manage creation of DSR routing instance and to insert it on a node as a sublayer ...
Helper class that adds DSR routing to nodes.
void Install(DsrHelper &dsrHelper, NodeContainer nodes)
Install routing to the nodes.
Helper to enable IP flow monitoring on a set of Nodes.
Ptr< FlowMonitor > InstallAll()
Enable flow monitoring on all nodes.
static bool IsMatchingType(const Address &address)
Ipv4Address GetIpv4() const
static InetSocketAddress ConvertFrom(const Address &address)
Returns an InetSocketAddress which corresponds to the input Address.
aggregate IP/TCP/UDP functionality to existing Nodes.
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
void SetBase(Ipv4Address network, Ipv4Mask mask, Ipv4Address base="0.0.0.1")
Set the base network number, network mask and base address.
Ipv4InterfaceContainer Assign(const NetDeviceContainer &c)
Assign IP addresses to the net devices specified in the container based on the current network prefix...
Ipv4 addresses are stored in host order in this class.
holds a vector of std::pair of Ptr<Ipv4> and interface index.
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const
Helper class that adds ns3::Ipv4ListRouting objects.
Helper class used to assign positions and mobility models to nodes.
int64_t AssignStreams(NodeContainer c, int64_t stream)
Assign a fixed random variable stream number to the random variables used by the mobility models on t...
static void EnableAsciiAll(Ptr< OutputStreamWrapper > stream)
void Install(Ptr< Node > node) const
"Layout" a single node according to the current position allocator type.
void SetMobilityModel(std::string type, Ts &&... args)
void SetPositionAllocator(Ptr< PositionAllocator > allocator)
Set the position allocator which will be used to allocate the initial position of every node initiali...
holds a vector of ns3::NetDevice pointers
keep track of a set of node pointers.
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
Ptr< Node > Get(uint32_t i) const
Get the Ptr<Node> stored in this container at a given index.
Instantiate subclasses of ns3::Object.
Ptr< Object > Create() const
Create an Object instance of the configured TypeId.
void Set(const std::string &name, const AttributeValue &value, Args &&... args)
Set an attribute to be set during construction.
void SetTypeId(TypeId tid)
Set the TypeId of the Objects to be created by this factory.
Ptr< T > GetObject() const
Get a pointer to the requested aggregated Object.
Helper class that adds OLSR routing to nodes.
A helper to make it easier to instantiate an ns3::OnOffApplication on a set of nodes.
ApplicationContainer Install(NodeContainer c) const
Install an ns3::OnOffApplication on each node of the input container configured with all the attribut...
void SetAttribute(std::string name, const AttributeValue &value)
Helper function used to set the underlying application attributes.
uint32_t GetSize() const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
static void EnablePrinting()
Enable printing packets metadata.
Hold objects of type Ptr<T>.
Allocate a set of positions.
static EventId Schedule(const Time &delay, FUNC f, Ts &&... args)
Schedule an event to expire after delay.
static void Destroy()
Execute the events scheduled with ScheduleDestroy().
static Time Now()
Return the current simulation virtual time.
static void Run()
Run the simulation.
static void Stop()
Tell the Simulator the calling event should be the last one executed.
virtual Ptr< Node > GetNode() const =0
Return the node this socket is associated with.
static Ptr< Socket > CreateSocket(Ptr< Node > node, TypeId tid)
This method wraps the creation of sockets that is performed on a given node by a SocketFactory specif...
virtual Ptr< Packet > RecvFrom(uint32_t maxSize, uint32_t flags, Address &fromAddress)=0
Read a single packet from the socket and retrieve the sender address.
Hold variables of type string.
double GetSeconds() const
Get an approximation of the time stored in this instance in the indicated unit.
a unique identifier for an interface.
static TypeId LookupByName(std::string name)
Get a TypeId by name.
helps to create WifiNetDevice objects
create MAC layers for a ns3::WifiNetDevice.
void SetType(std::string type, Args &&... args)
void Set(std::string name, const AttributeValue &v)
manage and create wifi channel objects for the YANS model.
void SetPropagationDelay(std::string name, Ts &&... args)
void AddPropagationLoss(std::string name, Ts &&... args)
Ptr< YansWifiChannel > Create() const
Make it easy to create and manage PHY objects for the YANS model.
void SetChannel(Ptr< YansWifiChannel > channel)
void experiment(std::string queue_disc_type)
void ReceivePacket(Ptr< Socket > socket)
void SetDefault(std::string name, const AttributeValue &value)
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
#define NS_LOG_UNCOND(msg)
Output the requested message unconditionally.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Time Seconds(double value)
Construct a Time in the indicated unit.
static std::string PrintReceivedPacket(Ptr< Socket > socket, Ptr< Packet > packet, Address senderAddress)
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Callback< R, Args... > MakeCallback(R(T::*memPtr)(Args...), OBJ objPtr)
Build Callbacks for class method members which take varying numbers of arguments and potentially retu...
std::map< Mac48Address, uint64_t > packetsReceived
Map that stores the total packets received per STA (and addressed to that STA)
Ptr< PacketSink > sink
Pointer to the packet sink application.