Generate traffic to a single destination according to an OnOff pattern. More...
#include <onoff-application.h>
Public Member Functions | |
OnOffApplication () | |
virtual | ~OnOffApplication () |
int64_t | AssignStreams (int64_t stream) |
Ptr< Socket > | GetSocket (void) const |
void | SetMaxBytes (uint32_t maxBytes) |
![]() | |
Application () | |
virtual | ~Application () |
Ptr< Node > | GetNode () const |
void | SetNode (Ptr< Node > node) |
void | SetStartTime (Time start) |
Specify application start time. More... | |
void | SetStopTime (Time stop) |
Specify application stop time. More... | |
![]() | |
Object () | |
virtual | ~Object () |
void | AggregateObject (Ptr< Object > other) |
void | Dispose (void) |
AggregateIterator | GetAggregateIterator (void) const |
virtual TypeId | GetInstanceTypeId (void) const |
template<typename T > | |
Ptr< T > | GetObject (void) const |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
void | Initialize (void) |
![]() | |
SimpleRefCount () | |
SimpleRefCount (const SimpleRefCount &o) | |
uint32_t | GetReferenceCount (void) const |
SimpleRefCount & | operator= (const SimpleRefCount &o) |
void | Ref (void) const |
void | Unref (void) const |
![]() | |
virtual | ~ObjectBase () |
void | GetAttribute (std::string name, AttributeValue &value) const |
bool | GetAttributeFailSafe (std::string name, AttributeValue &attribute) const |
void | SetAttribute (std::string name, const AttributeValue &value) |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Static Public Member Functions | |
static TypeId | GetTypeId (void) |
![]() | |
static TypeId | GetTypeId (void) |
![]() | |
static TypeId | GetTypeId (void) |
![]() | |
static void | Cleanup (void) |
![]() | |
static TypeId | GetTypeId (void) |
Protected Member Functions | |
virtual void | DoDispose (void) |
![]() | |
virtual void | DoInitialize (void) |
![]() | |
Object (const Object &o) | |
virtual void | NotifyNewAggregate (void) |
![]() | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
virtual void | NotifyConstructionCompleted (void) |
Private Member Functions | |
void | CancelEvents () |
void | ConnectionFailed (Ptr< Socket > socket) |
void | ConnectionSucceeded (Ptr< Socket > socket) |
void | Construct (Ptr< Node > n, const Address &remote, std::string tid, const RandomVariable &ontime, const RandomVariable &offtime, uint32_t size) |
void | ScheduleNextTx () |
void | ScheduleStartEvent () |
void | ScheduleStopEvent () |
void | SendPacket () |
virtual void | StartApplication (void) |
Application specific startup code. More... | |
void | StartSending () |
virtual void | StopApplication (void) |
Application specific shutdown code. More... | |
void | StopSending () |
Private Attributes | |
DataRate | m_cbrRate |
bool | m_connected |
Time | m_lastStartTime |
uint32_t | m_maxBytes |
Ptr< RandomVariableStream > | m_offTime |
Ptr< RandomVariableStream > | m_onTime |
Address | m_peer |
uint32_t | m_pktSize |
uint32_t | m_residualBits |
EventId | m_sendEvent |
bool | m_sending |
Ptr< Socket > | m_socket |
EventId | m_startStopEvent |
TypeId | m_tid |
uint32_t | m_totBytes |
TracedCallback< Ptr< const Packet > > | m_txTrace |
Additional Inherited Members | |
![]() | |
Ptr< Node > | m_node |
EventId | m_startEvent |
Time | m_startTime |
EventId | m_stopEvent |
Time | m_stopTime |
Generate traffic to a single destination according to an OnOff pattern.
This traffic generator follows an On/Off pattern: after Application::StartApplication is called, "On" and "Off" states alternate. The duration of each of these states is determined with the onTime and the offTime random variables. During the "Off" state, no traffic is generated. During the "On" state, cbr traffic is generated. This cbr traffic is characterized by the specified "data rate" and "packet size".
Note: When an application is started, the first packet transmission occurs after a delay equal to (packet size/bit rate). Note also, when an application transitions into an off state in between packet transmissions, the remaining time until when the next transmission would have occurred is cached and is used when the application starts up again. Example: packet size = 1000 bits, bit rate = 500 bits/sec. If the application is started at time 3 seconds, the first packet transmission will be scheduled for time 5 seconds (3 + 1000/500) and subsequent transmissions at 2 second intervals. If the above application were instead stopped at time 4 seconds, and restarted at time 5.5 seconds, then the first packet would be sent at time 6.5 seconds, because when it was stopped at 4 seconds, there was only 1 second remaining until the originally scheduled transmission, and this time remaining information is cached and used to schedule the next transmission upon restarting.
If the underlying socket type supports broadcast, this application will automatically enable the SetAllowBroadcast(true) socket option.
ns3::OnOffApplication is accessible through the following paths with Config::Set and Config::Connect:
Definition at line 86 of file onoff-application.h.
ns3::OnOffApplication::OnOffApplication | ( | ) |
Definition at line 95 of file onoff-application.cc.
References NS_LOG_FUNCTION.
|
virtual |
Definition at line 105 of file onoff-application.cc.
References NS_LOG_FUNCTION.
int64_t ns3::OnOffApplication::AssignStreams | ( | int64_t | stream | ) |
Assign a fixed random variable stream number to the random variables used by this model. Return the number of streams (possibly zero) that have been assigned.
stream | first stream index to use |
Definition at line 125 of file onoff-application.cc.
References m_offTime, m_onTime, NS_LOG_FUNCTION, and ns3::RandomVariableStream::SetStream().
|
private |
Definition at line 192 of file onoff-application.cc.
References ns3::Simulator::Cancel(), ns3::DataRate::GetBitRate(), ns3::EventId::IsRunning(), m_cbrRate, m_lastStartTime, m_residualBits, m_sendEvent, m_startStopEvent, ns3::Simulator::Now(), NS_LOG_FUNCTION, ns3::Time::S, and ns3::Time::To().
Referenced by StartApplication(), StopApplication(), and StopSending().
Definition at line 303 of file onoff-application.cc.
References NS_LOG_FUNCTION.
Referenced by StartApplication().
Definition at line 297 of file onoff-application.cc.
References m_connected, and NS_LOG_FUNCTION.
Referenced by StartApplication().
|
private |
|
protectedvirtual |
This method is called by Object::Dispose or by the object's destructor, whichever comes first.
Subclasses are expected to implement their real destruction code in an overriden version of this method and chain up to their parent's implementation once they are done. i.e., for simplicity, the destructor of every subclass should be empty and its content should be moved to the associated DoDispose method.
It is safe to call GetObject from within this method.
Reimplemented from ns3::Application.
Definition at line 134 of file onoff-application.cc.
References ns3::Application::DoDispose(), m_socket, and NS_LOG_FUNCTION.
Definition at line 118 of file onoff-application.cc.
References m_socket, and NS_LOG_FUNCTION.
|
static |
Definition at line 52 of file onoff-application.cc.
References ns3::UdpSocketFactory::GetTypeId(), m_cbrRate, m_maxBytes, m_offTime, m_onTime, m_peer, m_pktSize, m_tid, m_txTrace, ns3::MakeTraceSourceAccessor(), and ns3::TypeId::SetParent().
|
private |
Definition at line 225 of file onoff-application.cc.
References ns3::DataRate::GetBitRate(), m_cbrRate, m_maxBytes, m_pktSize, m_residualBits, m_sendEvent, m_totBytes, NS_LOG_FUNCTION, NS_LOG_LOGIC, ns3::Simulator::Schedule(), SendPacket(), and StopApplication().
Referenced by SendPacket(), and StartSending().
|
private |
Definition at line 245 of file onoff-application.cc.
References ns3::RandomVariableStream::GetValue(), m_offTime, m_startStopEvent, NS_LOG_FUNCTION, NS_LOG_LOGIC, ns3::Simulator::Schedule(), and StartSending().
Referenced by StartApplication(), and StopSending().
|
private |
Definition at line 254 of file onoff-application.cc.
References ns3::RandomVariableStream::GetValue(), m_onTime, m_startStopEvent, NS_LOG_FUNCTION, NS_LOG_LOGIC, ns3::Simulator::Schedule(), and StopSending().
Referenced by StartSending().
|
private |
Definition at line 264 of file onoff-application.cc.
References ns3::InetSocketAddress::ConvertFrom(), ns3::Inet6SocketAddress::ConvertFrom(), ns3::InetSocketAddress::GetIpv4(), ns3::Inet6SocketAddress::GetIpv6(), ns3::InetSocketAddress::GetPort(), ns3::Inet6SocketAddress::GetPort(), ns3::EventId::IsExpired(), ns3::InetSocketAddress::IsMatchingType(), ns3::Inet6SocketAddress::IsMatchingType(), m_lastStartTime, m_peer, m_pktSize, m_residualBits, m_sendEvent, m_socket, m_totBytes, m_txTrace, ns3::Simulator::Now(), NS_ASSERT, NS_LOG_FUNCTION, NS_LOG_INFO, ScheduleNextTx(), and ns3::Socket::Send().
Referenced by ScheduleNextTx().
void ns3::OnOffApplication::SetMaxBytes | ( | uint32_t | maxBytes | ) |
maxBytes | the total number of bytes to send |
Set the total number of bytes to send. Once these bytes are sent, no packet is sent again, even in on state. The value zero means that there is no limit.
Definition at line 111 of file onoff-application.cc.
References m_maxBytes, and NS_LOG_FUNCTION.
|
privatevirtual |
Application specific startup code.
The StartApplication method is called at the start time specified by Start This method should be overridden by all or most application subclasses.
Reimplemented from ns3::Application.
Definition at line 144 of file onoff-application.cc.
References ns3::Socket::Bind(), ns3::Socket::Bind6(), CancelEvents(), ns3::Socket::Connect(), ConnectionFailed(), ConnectionSucceeded(), ns3::Socket::CreateSocket(), ns3::Application::GetNode(), ns3::PacketSocketAddress::IsMatchingType(), ns3::InetSocketAddress::IsMatchingType(), ns3::Inet6SocketAddress::IsMatchingType(), m_peer, m_socket, m_tid, ns3::MakeCallback(), NS_LOG_FUNCTION, ScheduleStartEvent(), ns3::Socket::SetAllowBroadcast(), ns3::Socket::SetConnectCallback(), and ns3::Socket::ShutdownRecv().
|
private |
Definition at line 208 of file onoff-application.cc.
References m_lastStartTime, ns3::Simulator::Now(), NS_LOG_FUNCTION, ScheduleNextTx(), and ScheduleStopEvent().
Referenced by ScheduleStartEvent().
|
privatevirtual |
Application specific shutdown code.
The StopApplication method is called at the stop time specified by Stop This method should be overridden by all or most application subclasses.
Reimplemented from ns3::Application.
Definition at line 177 of file onoff-application.cc.
References CancelEvents(), ns3::Socket::Close(), m_socket, NS_LOG_FUNCTION, and NS_LOG_WARN.
Referenced by ScheduleNextTx().
|
private |
Definition at line 216 of file onoff-application.cc.
References CancelEvents(), NS_LOG_FUNCTION, and ScheduleStartEvent().
Referenced by ScheduleStopEvent().
|
private |
Definition at line 147 of file onoff-application.h.
Referenced by CancelEvents(), GetTypeId(), and ScheduleNextTx().
|
private |
Definition at line 144 of file onoff-application.h.
Referenced by ConnectionSucceeded().
|
private |
Definition at line 150 of file onoff-application.h.
Referenced by CancelEvents(), SendPacket(), and StartSending().
|
private |
Definition at line 151 of file onoff-application.h.
Referenced by GetTypeId(), ScheduleNextTx(), and SetMaxBytes().
|
private |
Definition at line 146 of file onoff-application.h.
Referenced by AssignStreams(), GetTypeId(), and ScheduleStartEvent().
|
private |
Definition at line 145 of file onoff-application.h.
Referenced by AssignStreams(), GetTypeId(), and ScheduleStopEvent().
|
private |
Definition at line 143 of file onoff-application.h.
Referenced by GetTypeId(), SendPacket(), and StartApplication().
|
private |
Definition at line 148 of file onoff-application.h.
Referenced by GetTypeId(), ScheduleNextTx(), and SendPacket().
|
private |
Definition at line 149 of file onoff-application.h.
Referenced by CancelEvents(), ScheduleNextTx(), and SendPacket().
|
private |
Definition at line 154 of file onoff-application.h.
Referenced by CancelEvents(), ScheduleNextTx(), and SendPacket().
|
private |
Definition at line 155 of file onoff-application.h.
Definition at line 142 of file onoff-application.h.
Referenced by DoDispose(), GetSocket(), SendPacket(), StartApplication(), and StopApplication().
|
private |
Definition at line 153 of file onoff-application.h.
Referenced by CancelEvents(), ScheduleStartEvent(), and ScheduleStopEvent().
|
private |
Definition at line 156 of file onoff-application.h.
Referenced by GetTypeId(), and StartApplication().
|
private |
Definition at line 152 of file onoff-application.h.
Referenced by ScheduleNextTx(), and SendPacket().
|
private |
Definition at line 157 of file onoff-application.h.
Referenced by GetTypeId(), and SendPacket().