22 #include "ns3/abort.h"
24 #include "ns3/config.h"
25 #include "ns3/string.h"
26 #include "ns3/uinteger.h"
27 #include "ns3/inet-socket-address.h"
28 #include "ns3/point-to-point-helper.h"
29 #include "ns3/internet-stack-helper.h"
30 #include "ns3/ipv4-address-helper.h"
31 #include "ns3/ipv4-header.h"
32 #include "ns3/packet-sink-helper.h"
33 #include "ns3/udp-client-server-helper.h"
34 #include "ns3/simulator.h"
35 #include "ns3/wimax-helper.h"
36 #include "ns3/mobility-helper.h"
38 #include "ns3/global-route-manager.h"
49 virtual void DoRun (
void);
55 :
TestCase (
"Test the 2 different schedulers")
72 ssDevs = wimax.
Install (ssNodes,
73 WimaxHelper::DEVICE_TYPE_SUBSCRIBER_STATION,
74 WimaxHelper::SIMPLE_PHY_TYPE_OFDM,
76 bsDevs = wimax.
Install (bsNodes, WimaxHelper::DEVICE_TYPE_BASE_STATION, WimaxHelper::SIMPLE_PHY_TYPE_OFDM, scheduler);
85 address.
SetBase (
"10.1.1.0",
"255.255.255.0");
97 serverApps = udpServer.
Install (ssNodes.
Get (0));
98 serverApps.
Start (Seconds (1));
99 serverApps.
Stop (Seconds (2));
105 clientApps = udpClient.
Install (ssNodes.
Get (1));
106 clientApps.
Start (Seconds (1));
107 clientApps.
Stop (Seconds (2));
109 Simulator::Stop (Seconds (2 + 0.1));
122 ServiceFlow::SF_TYPE_RTPS,
135 ServiceFlow::SF_TYPE_RTPS,
141 Simulator::Destroy ();
149 if (
DoRunOnce (WimaxHelper::SCHED_TYPE_SIMPLE) ==
true)
153 if (
DoRunOnce (WimaxHelper::SCHED_TYPE_RTPS) ==
true)
168 virtual void DoRun (
void);
174 :
TestCase (
"Test the service flow scheduling types")
191 ssDevs = wimax.
Install (ssNodes,
192 WimaxHelper::DEVICE_TYPE_SUBSCRIBER_STATION,
193 WimaxHelper::SIMPLE_PHY_TYPE_OFDM,
194 WimaxHelper::SCHED_TYPE_SIMPLE);
195 bsDevs = wimax.
Install (bsNodes,
196 WimaxHelper::DEVICE_TYPE_BASE_STATION,
197 WimaxHelper::SIMPLE_PHY_TYPE_OFDM,
198 WimaxHelper::SCHED_TYPE_SIMPLE);
207 address.
SetBase (
"10.1.1.0",
"255.255.255.0");
219 serverApps = udpServer.
Install (ssNodes.
Get (0));
220 serverApps.
Start (Seconds (1));
221 serverApps.
Stop (Seconds (2));
227 clientApps = udpClient.
Install (ssNodes.
Get (1));
228 clientApps.
Start (Seconds (1));
229 clientApps.
Stop (Seconds (2));
231 Simulator::Stop (Seconds (2 + 0.1));
259 Simulator::Destroy ();
267 if (
DoRunOnce (ServiceFlow::SF_TYPE_UGS) ==
true)
271 if (
DoRunOnce (ServiceFlow::SF_TYPE_RTPS) ==
true)
275 if (
DoRunOnce (ServiceFlow::SF_TYPE_BE) ==
true)
holds a vector of ns3::Application pointers.
holds a vector of std::pair of Ptr and interface index.
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr stored in this container at a given index.
a class to represent an Ipv4 address mask
SchedulerType
Scheduler Type Different implementations of uplink/downlink scheduler.
aggregate IP/TCP/UDP functionality to existing Nodes.
bool DoRunOnce(ServiceFlow::SchedulingType)
NetDeviceContainer Install(NodeContainer c, NetDeviceType type, PhyType phyType, SchedulerType schedulerType)
ApplicationContainer Install(NodeContainer c)
virtual ~Ns3WimaxSchedulingTestCase()
virtual void DoRun(void)
Implementation to actually run this TestCase.
Create a client application which sends UDP packets carrying a 32bit sequence number and a 64 bit tim...
hold objects of type ns3::Time
Hold an unsigned integer type.
holds a vector of ns3::NetDevice pointers
Create a server application which waits for input UDP packets and uses the information carried into t...
static Ns3WimaxQoSTestSuite ns3WimaxQoSTestSuite
void Start(Time start)
Arrange for all of the Applications in this container to Start() at the Time given as a parameter...
void SetAttribute(std::string name, const AttributeValue &value)
Record an attribute to be set in each Application after it is is created.
keep track of a set of node pointers.
void Install(std::string nodeName) const
Aggregate implementations of the ns3::Ipv4, ns3::Ipv6, ns3::Udp, and ns3::Tcp classes onto the provid...
virtual void DoRun(void)
Implementation to actually run this TestCase.
This class implements service flows as described by the IEEE-802.16 standard.
virtual ~Ns3WimaxSFTypeTestCase()
void AddTestCase(TestCase *testCase) NS_DEPRECATED
Add an individual child TestCase case to this TestCase.
bool DoRunOnce(WimaxHelper::SchedulerType scheduler)
Ipv4 addresses are stored in host order in this class.
void Stop(Time stop)
Arrange for all of the Applications in this container to Stop() at the Time given as a parameter...
Ipv4InterfaceContainer Assign(const NetDeviceContainer &c)
Assign IP addresses to the net devices specified in the container based on the current network prefix...
ApplicationContainer Install(NodeContainer c)
Create one UDP server application on each of the Nodes in the NodeContainer.
Ptr< Node > Get(uint32_t i) const
Get the Ptr stored in this container at a given index.
ServiceFlow CreateServiceFlow(ServiceFlow::Direction direction, ServiceFlow::SchedulingType schedulinType, IpcsClassifierRecord classifier)
Creates a transport service flow.
helps to manage and create WimaxNetDevice objects
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
Ns3WimaxSchedulingTestCase()
void SetBase(Ipv4Address network, Ipv4Mask mask, Ipv4Address base="0.0.0.1")
Set the base network number, network mask and base address.
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const