A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
ns3::PacketBurst Class Reference

this class implement a burst as a list of packets More...

#include "packet-burst.h"

+ Inheritance diagram for ns3::PacketBurst:
+ Collaboration diagram for ns3::PacketBurst:

Public Types

typedef void(* TracedCallback) (Ptr< const PacketBurst > burst)
 TracedCallback signature for Ptr<PacketBurst>
 

Public Member Functions

 PacketBurst ()
 
 ~PacketBurst () override
 
void AddPacket (Ptr< Packet > packet)
 add a packet to the list of packet
 
std::list< Ptr< Packet > >::const_iterator Begin () const
 Returns an iterator to the begin of the burst.
 
Ptr< PacketBurstCopy () const
 
std::list< Ptr< Packet > >::const_iterator End () const
 Returns an iterator to the end of the burst.
 
uint32_t GetNPackets () const
 
std::list< Ptr< Packet > > GetPackets () const
 
uint32_t GetSize () const
 
- Public Member Functions inherited from ns3::Object
 Object ()
 Constructor.
 
 ~Object () override
 Destructor.
 
void AggregateObject (Ptr< Object > other)
 Aggregate two Objects together.
 
void Dispose ()
 Dispose of this Object.
 
AggregateIterator GetAggregateIterator () const
 Get an iterator to the Objects aggregated to this one.
 
TypeId GetInstanceTypeId () const override
 Get the most derived TypeId for this Object.
 
template<typename T >
Ptr< T > GetObject () const
 Get a pointer to the requested aggregated Object.
 
template<>
Ptr< ObjectGetObject () const
 Specialization of () for objects of type ns3::Object.
 
template<typename T >
Ptr< T > GetObject (TypeId tid) const
 Get a pointer to the requested aggregated Object by TypeId.
 
template<>
Ptr< ObjectGetObject (TypeId tid) const
 Specialization of (TypeId tid) for objects of type ns3::Object.
 
void Initialize ()
 Invoke DoInitialize on all Objects aggregated to this one.
 
bool IsInitialized () const
 Check if the object has been initialized.
 
void UnidirectionalAggregateObject (Ptr< Object > other)
 Aggregate an Object to another Object.
 
- Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter >
 SimpleRefCount ()
 Default constructor.
 
 SimpleRefCount (const SimpleRefCount &o)
 Copy constructor.
 
uint32_t GetReferenceCount () const
 Get the reference count of the object.
 
SimpleRefCountoperator= (const SimpleRefCount &o)
 Assignment operator.
 
void Ref () const
 Increment the reference count.
 
void Unref () const
 Decrement the reference count.
 
- Public Member Functions inherited from ns3::ObjectBase
virtual ~ObjectBase ()
 Virtual destructor.
 
void GetAttribute (std::string name, AttributeValue &value) const
 Get the value of an attribute, raising fatal errors if unsuccessful.
 
bool GetAttributeFailSafe (std::string name, AttributeValue &value) const
 Get the value of an attribute without raising errors.
 
virtual TypeId GetInstanceTypeId () const =0
 Get the most derived TypeId for this Object.
 
void SetAttribute (std::string name, const AttributeValue &value)
 Set a single attribute, raising fatal errors if unsuccessful.
 
bool SetAttributeFailSafe (std::string name, const AttributeValue &value)
 Set a single attribute without raising errors.
 
bool TraceConnect (std::string name, std::string context, const CallbackBase &cb)
 Connect a TraceSource to a Callback with a context.
 
bool TraceConnectWithoutContext (std::string name, const CallbackBase &cb)
 Connect a TraceSource to a Callback without a context.
 
bool TraceDisconnect (std::string name, std::string context, const CallbackBase &cb)
 Disconnect from a TraceSource a Callback previously connected with a context.
 
bool TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb)
 Disconnect from a TraceSource a Callback previously connected without a context.
 

Static Public Member Functions

static TypeId GetTypeId ()
 Get the type ID.
 
- Static Public Member Functions inherited from ns3::Object
static TypeId GetTypeId ()
 Register this type.
 
- Static Public Member Functions inherited from ns3::ObjectBase
static TypeId GetTypeId ()
 Get the type ID.
 

Private Member Functions

void DoDispose () override
 Destructor implementation.
 

Private Attributes

std::list< Ptr< Packet > > m_packets
 the list of packets in the burst
 

Additional Inherited Members

- Protected Member Functions inherited from ns3::Object
 Object (const Object &o)
 Copy an Object.
 
virtual void DoDispose ()
 Destructor implementation.
 
virtual void DoInitialize ()
 Initialize() implementation.
 
virtual void NotifyNewAggregate ()
 Notify all Objects aggregated to this one of a new Object being aggregated.
 
- Protected Member Functions inherited from ns3::ObjectBase
void ConstructSelf (const AttributeConstructionList &attributes)
 Complete construction of ObjectBase; invoked by derived classes.
 
virtual void NotifyConstructionCompleted ()
 Notifier called once the ObjectBase is fully constructed.
 

Detailed Description

this class implement a burst as a list of packets

Introspection did not find any typical Config paths.


No Attributes are defined for this type.
No TraceSources are defined for this type.
Size of this type is 72 bytes (on a 64-bit architecture).

Definition at line 36 of file packet-burst.h.

Member Typedef Documentation

◆ TracedCallback

typedef void(* ns3::PacketBurst::TracedCallback) (Ptr< const PacketBurst > burst)

TracedCallback signature for Ptr<PacketBurst>

Parameters
[in]burstThe PacketBurst

Definition at line 84 of file packet-burst.h.

Constructor & Destructor Documentation

◆ PacketBurst()

ns3::PacketBurst::PacketBurst ( )

Definition at line 45 of file packet-burst.cc.

References NS_LOG_FUNCTION.

◆ ~PacketBurst()

ns3::PacketBurst::~PacketBurst ( )
override

Definition at line 50 of file packet-burst.cc.

References m_packets, and NS_LOG_FUNCTION.

Member Function Documentation

◆ AddPacket()

void ns3::PacketBurst::AddPacket ( Ptr< Packet packet)

add a packet to the list of packet

Parameters
packetthe packet to add

Definition at line 81 of file packet-burst.cc.

References m_packets, and NS_LOG_FUNCTION.

◆ Begin()

std::list< Ptr< Packet > >::const_iterator ns3::PacketBurst::Begin ( ) const

Returns an iterator to the begin of the burst.

Returns
iterator to the burst list start

Definition at line 118 of file packet-burst.cc.

References m_packets, and NS_LOG_FUNCTION.

◆ Copy()

Ptr< PacketBurst > ns3::PacketBurst::Copy ( ) const
Returns
a copy the packetBurst

Definition at line 67 of file packet-burst.cc.

References m_packets, and NS_LOG_FUNCTION.

◆ DoDispose()

void ns3::PacketBurst::DoDispose ( )
overrideprivatevirtual

Destructor implementation.

This method is called by Dispose() or by the Object's destructor, whichever comes first.

Subclasses are expected to implement their real destruction code in an overridden 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::Object.

Definition at line 60 of file packet-burst.cc.

References m_packets, and NS_LOG_FUNCTION.

◆ End()

std::list< Ptr< Packet > >::const_iterator ns3::PacketBurst::End ( ) const

Returns an iterator to the end of the burst.

Returns
iterator to the burst list end

Definition at line 125 of file packet-burst.cc.

References m_packets, and NS_LOG_FUNCTION.

◆ GetNPackets()

uint32_t ns3::PacketBurst::GetNPackets ( ) const
Returns
the number of packet in the burst

Definition at line 98 of file packet-burst.cc.

References m_packets, and NS_LOG_FUNCTION.

◆ GetPackets()

std::list< Ptr< Packet > > ns3::PacketBurst::GetPackets ( ) const
Returns
the list of packet of this burst

Definition at line 91 of file packet-burst.cc.

References m_packets, and NS_LOG_FUNCTION.

◆ GetSize()

uint32_t ns3::PacketBurst::GetSize ( ) const
Returns
the size of the burst in byte (the size of all packets)

Definition at line 105 of file packet-burst.cc.

References m_packets, and NS_LOG_FUNCTION.

◆ GetTypeId()

TypeId ns3::PacketBurst::GetTypeId ( )
static

Get the type ID.

Returns
the object TypeId

Definition at line 36 of file packet-burst.cc.

References ns3::TypeId::SetParent().

+ Here is the call graph for this function:

Member Data Documentation

◆ m_packets

std::list<Ptr<Packet> > ns3::PacketBurst::m_packets
private

the list of packets in the burst

Definition at line 88 of file packet-burst.h.

Referenced by ~PacketBurst(), AddPacket(), Begin(), Copy(), DoDispose(), End(), GetNPackets(), GetPackets(), and GetSize().


The documentation for this class was generated from the following files: