Abstract base class for packet Queues. More...
#include "queue.h"
Public Member Functions | |
QueueBase () | |
~QueueBase () override | |
QueueSize | GetCurrentSize () const |
QueueSize | GetMaxSize () const |
uint32_t | GetNBytes () const |
uint32_t | GetNPackets () const |
uint32_t | GetTotalDroppedBytes () const |
uint32_t | GetTotalDroppedBytesAfterDequeue () const |
uint32_t | GetTotalDroppedBytesBeforeEnqueue () const |
uint32_t | GetTotalDroppedPackets () const |
uint32_t | GetTotalDroppedPacketsAfterDequeue () const |
uint32_t | GetTotalDroppedPacketsBeforeEnqueue () const |
uint32_t | GetTotalReceivedBytes () const |
uint32_t | GetTotalReceivedPackets () const |
bool | IsEmpty () const |
void | ResetStatistics () |
Resets the counts for dropped packets, dropped bytes, received packets, and received bytes. More... | |
void | SetMaxSize (QueueSize size) |
Set the maximum size of this queue. More... | |
bool | WouldOverflow (uint32_t nPackets, uint32_t nBytes) const |
Check if the queue would overflow with additional bytes or packets Note: the check is performed according to the queue's operating mode (bytes or packets). More... | |
Public Member Functions inherited from ns3::Object | |
Object () | |
Constructor. More... | |
~Object () override | |
Destructor. More... | |
void | AggregateObject (Ptr< Object > other) |
Aggregate two Objects together. More... | |
void | Dispose () |
Dispose of this Object. More... | |
AggregateIterator | GetAggregateIterator () const |
Get an iterator to the Objects aggregated to this one. More... | |
TypeId | GetInstanceTypeId () const override |
Get the most derived TypeId for this Object. More... | |
template<typename T > | |
Ptr< T > | GetObject () const |
Get a pointer to the requested aggregated Object. More... | |
template<> | |
Ptr< Object > | GetObject () const |
Specialization of () for objects of type ns3::Object. More... | |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
Get a pointer to the requested aggregated Object by TypeId. More... | |
template<> | |
Ptr< Object > | GetObject (TypeId tid) const |
Specialization of (TypeId tid) for objects of type ns3::Object. More... | |
void | Initialize () |
Invoke DoInitialize on all Objects aggregated to this one. More... | |
bool | IsInitialized () const |
Check if the object has been initialized. More... | |
Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter > | |
SimpleRefCount () | |
Default constructor. More... | |
SimpleRefCount (const SimpleRefCount &o[[maybe_unused]]) | |
Copy constructor. More... | |
uint32_t | GetReferenceCount () const |
Get the reference count of the object. More... | |
SimpleRefCount & | operator= (const SimpleRefCount &o[[maybe_unused]]) |
Assignment operator. More... | |
void | Ref () const |
Increment the reference count. More... | |
void | Unref () const |
Decrement the reference count. More... | |
Public Member Functions inherited from ns3::ObjectBase | |
virtual | ~ObjectBase () |
Virtual destructor. More... | |
void | GetAttribute (std::string name, AttributeValue &value) const |
Get the value of an attribute, raising fatal errors if unsuccessful. More... | |
bool | GetAttributeFailSafe (std::string name, AttributeValue &value) const |
Get the value of an attribute without raising errors. More... | |
void | SetAttribute (std::string name, const AttributeValue &value) |
Set a single attribute, raising fatal errors if unsuccessful. More... | |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
Set a single attribute without raising errors. More... | |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
Connect a TraceSource to a Callback with a context. More... | |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
Connect a TraceSource to a Callback without a context. More... | |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected with a context. More... | |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected without a context. More... | |
Static Public Member Functions | |
static void | AppendItemTypeIfNotPresent (std::string &typeId, const std::string &itemType) |
Append the item type to the provided type ID if the latter does not end with '>'. More... | |
static TypeId | GetTypeId () |
Get the type ID. More... | |
Static Public Member Functions inherited from ns3::Object | |
static TypeId | GetTypeId () |
Register this type. More... | |
Static Public Member Functions inherited from ns3::ObjectBase | |
static TypeId | GetTypeId () |
Get the type ID. More... | |
Protected Attributes | |
QueueSize | m_maxSize |
max queue size More... | |
TracedValue< uint32_t > | m_nBytes |
Number of bytes in the queue. More... | |
TracedValue< uint32_t > | m_nPackets |
Number of packets in the queue. More... | |
uint32_t | m_nTotalDroppedBytes |
Total dropped bytes. More... | |
uint32_t | m_nTotalDroppedBytesAfterDequeue |
Total dropped bytes after dequeue. More... | |
uint32_t | m_nTotalDroppedBytesBeforeEnqueue |
Total dropped bytes before enqueue. More... | |
uint32_t | m_nTotalDroppedPackets |
Total dropped packets. More... | |
uint32_t | m_nTotalDroppedPacketsAfterDequeue |
Total dropped packets after dequeue. More... | |
uint32_t | m_nTotalDroppedPacketsBeforeEnqueue |
Total dropped packets before enqueue. More... | |
uint32_t | m_nTotalReceivedBytes |
Total received bytes. More... | |
uint32_t | m_nTotalReceivedPackets |
Total received packets. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from ns3::Object | |
Object (const Object &o) | |
Copy an Object. More... | |
virtual void | DoDispose () |
Destructor implementation. More... | |
virtual void | DoInitialize () |
Initialize() implementation. More... | |
virtual void | NotifyNewAggregate () |
Notify all Objects aggregated to this one of a new Object being aggregated. More... | |
Protected Member Functions inherited from ns3::ObjectBase | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
Complete construction of ObjectBase; invoked by derived classes. More... | |
virtual void | NotifyConstructionCompleted () |
Notifier called once the ObjectBase is fully constructed. More... | |
Related Functions inherited from ns3::ObjectBase | |
static TypeId | GetObjectIid () |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. More... | |
Abstract base class for packet Queues.
This class defines the subset of the base APIs for packet queues in the ns-3 system that is independent of the type of enqueued objects
ns3::QueueBase::QueueBase | ( | ) |
Definition at line 51 of file queue.cc.
References m_maxSize, max, NS_LOG_FUNCTION, and ns3::PACKETS.
|
override |
Definition at line 67 of file queue.cc.
References NS_LOG_FUNCTION.
|
static |
Append the item type to the provided type ID if the latter does not end with '>'.
typeId | the type ID |
itemType | the item type |
This method is meant to be invoked by helpers to save users from specifying the type of items stored in a queue. For instance, PointToPointHelper::SetQueue calls
where type specifies the queue type (e.g., "ns3::DropTailQueue"). This allows users to call SetQueue ("ns3::DropTailQueue") instead of SetQueue ("ns3::DropTailQueue<Packet>")
Definition at line 73 of file queue.cc.
Referenced by ns3::TrafficControlHelper::AddInternalQueues(), ns3::CsmaHelper::SetQueue(), ns3::SimpleNetDeviceHelper::SetQueue(), and ns3::PointToPointHelper::SetQueue().
QueueSize ns3::QueueBase::GetCurrentSize | ( | ) | const |
Definition at line 106 of file queue.cc.
References ns3::BYTES, ns3::QueueSize::GetUnit(), m_maxSize, m_nBytes, m_nPackets, NS_ABORT_MSG, NS_LOG_FUNCTION, and ns3::PACKETS.
Referenced by SetMaxSize().
QueueSize ns3::QueueBase::GetMaxSize | ( | ) | const |
Definition at line 217 of file queue.cc.
References m_maxSize, and NS_LOG_FUNCTION.
Referenced by ns3::WifiMacQueue::DoDequeue(), ns3::WifiMacQueue::DoEnqueue(), ns3::WifiMacQueue::DoRemove(), ns3::DropTailQueue< Item >::GetTypeId(), ns3::WifiMacQueue::GetTypeId(), and ns3::WifiMacQueue::Insert().
uint32_t ns3::QueueBase::GetNBytes | ( | ) | const |
Definition at line 98 of file queue.cc.
References m_nBytes, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
uint32_t ns3::QueueBase::GetNPackets | ( | ) | const |
Definition at line 90 of file queue.cc.
References m_nPackets, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
Referenced by ns3::WifiMacQueue::Insert().
uint32_t ns3::QueueBase::GetTotalDroppedBytes | ( | ) | const |
Definition at line 138 of file queue.cc.
References m_nTotalDroppedBytes, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
uint32_t ns3::QueueBase::GetTotalDroppedBytesAfterDequeue | ( | ) | const |
Definition at line 154 of file queue.cc.
References m_nTotalDroppedBytesAfterDequeue, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
uint32_t ns3::QueueBase::GetTotalDroppedBytesBeforeEnqueue | ( | ) | const |
Definition at line 146 of file queue.cc.
References m_nTotalDroppedBytesBeforeEnqueue, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
uint32_t ns3::QueueBase::GetTotalDroppedPackets | ( | ) | const |
Definition at line 162 of file queue.cc.
References m_nTotalDroppedPackets, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
uint32_t ns3::QueueBase::GetTotalDroppedPacketsAfterDequeue | ( | ) | const |
Definition at line 178 of file queue.cc.
References m_nTotalDroppedPacketsAfterDequeue, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
uint32_t ns3::QueueBase::GetTotalDroppedPacketsBeforeEnqueue | ( | ) | const |
Definition at line 170 of file queue.cc.
References m_nTotalDroppedPacketsBeforeEnqueue, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
uint32_t ns3::QueueBase::GetTotalReceivedBytes | ( | ) | const |
Definition at line 122 of file queue.cc.
References m_nTotalReceivedBytes, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
uint32_t ns3::QueueBase::GetTotalReceivedPackets | ( | ) | const |
Definition at line 130 of file queue.cc.
References m_nTotalReceivedPackets, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
|
static |
Get the type ID.
Definition at line 35 of file queue.cc.
References m_nBytes, m_nPackets, ns3::MakeTraceSourceAccessor(), and ns3::TypeId::SetParent().
bool ns3::QueueBase::IsEmpty | ( | ) | const |
Definition at line 82 of file queue.cc.
References ns3::TracedValue< T >::Get(), m_nPackets, NS_LOG_FUNCTION, and NS_LOG_LOGIC.
void ns3::QueueBase::ResetStatistics | ( | ) |
Resets the counts for dropped packets, dropped bytes, received packets, and received bytes.
Definition at line 186 of file queue.cc.
References m_nTotalDroppedBytes, m_nTotalDroppedBytesAfterDequeue, m_nTotalDroppedBytesBeforeEnqueue, m_nTotalDroppedPackets, m_nTotalDroppedPacketsAfterDequeue, m_nTotalDroppedPacketsBeforeEnqueue, m_nTotalReceivedBytes, m_nTotalReceivedPackets, and NS_LOG_FUNCTION.
void ns3::QueueBase::SetMaxSize | ( | QueueSize | size | ) |
Set the maximum size of this queue.
Trying to set a null size has no effect.
size | the maximum size |
Definition at line 200 of file queue.cc.
References GetCurrentSize(), ns3::QueueSize::GetValue(), m_maxSize, NS_ABORT_MSG_IF, and NS_LOG_FUNCTION.
Referenced by ns3::WifiMacQueue::DoDequeue(), ns3::WifiMacQueue::DoEnqueue(), ns3::WifiMacQueue::DoRemove(), ns3::DropTailQueue< Item >::GetTypeId(), and ns3::WifiMacQueue::GetTypeId().
bool ns3::QueueBase::WouldOverflow | ( | uint32_t | nPackets, |
uint32_t | nBytes | ||
) | const |
Check if the queue would overflow with additional bytes or packets Note: the check is performed according to the queue's operating mode (bytes or packets).
nPackets | number of additional packets |
nBytes | number of additional bytes |
Definition at line 224 of file queue.cc.
References ns3::QueueSize::GetUnit(), ns3::QueueSize::GetValue(), m_maxSize, m_nBytes, m_nPackets, and ns3::PACKETS.
|
protected |
max queue size
Definition at line 229 of file queue.h.
Referenced by QueueBase(), GetCurrentSize(), GetMaxSize(), SetMaxSize(), and WouldOverflow().
|
protected |
Number of bytes in the queue.
Definition at line 218 of file queue.h.
Referenced by GetCurrentSize(), GetNBytes(), GetTypeId(), and WouldOverflow().
|
protected |
Number of packets in the queue.
Definition at line 220 of file queue.h.
Referenced by GetCurrentSize(), GetNPackets(), GetTypeId(), IsEmpty(), and WouldOverflow().
|
protected |
Total dropped bytes.
Definition at line 222 of file queue.h.
Referenced by GetTotalDroppedBytes(), and ResetStatistics().
|
protected |
Total dropped bytes after dequeue.
Definition at line 224 of file queue.h.
Referenced by GetTotalDroppedBytesAfterDequeue(), and ResetStatistics().
|
protected |
Total dropped bytes before enqueue.
Definition at line 223 of file queue.h.
Referenced by GetTotalDroppedBytesBeforeEnqueue(), and ResetStatistics().
|
protected |
Total dropped packets.
Definition at line 225 of file queue.h.
Referenced by GetTotalDroppedPackets(), and ResetStatistics().
|
protected |
Total dropped packets after dequeue.
Definition at line 227 of file queue.h.
Referenced by GetTotalDroppedPacketsAfterDequeue(), and ResetStatistics().
|
protected |
Total dropped packets before enqueue.
Definition at line 226 of file queue.h.
Referenced by GetTotalDroppedPacketsBeforeEnqueue(), and ResetStatistics().
|
protected |
Total received bytes.
Definition at line 219 of file queue.h.
Referenced by GetTotalReceivedBytes(), and ResetStatistics().
|
protected |
Total received packets.
Definition at line 221 of file queue.h.
Referenced by GetTotalReceivedPackets(), and ResetStatistics().