QueueDisc is an abstract base class providing the interface and implementing the operations common to all the queueing disciplines. More...
#include "queue-disc.h"
Classes | |
struct | Stats |
Structure that keeps the queue disc statistics. More... | |
Public Types | |
typedef Queue< QueueDiscItem > | InternalQueue |
Internal queues store QueueDiscItem objects. More... | |
enum | WakeMode { WAKE_ROOT = 0x00, WAKE_CHILD = 0x01 } |
Used to determine whether the queue disc itself or its children must be activated when a netdevice wakes a transmission queue. More... | |
Public Member Functions | |
QueueDisc (QueueDiscSizePolicy policy=QueueDiscSizePolicy::SINGLE_INTERNAL_QUEUE) | |
Constructor. More... | |
QueueDisc (QueueDiscSizePolicy policy, QueueSizeUnit unit) | |
Constructor. More... | |
virtual | ~QueueDisc () |
void | AddInternalQueue (Ptr< InternalQueue > queue) |
Add an internal queue to the tail of the list of queues. More... | |
void | AddPacketFilter (Ptr< PacketFilter > filter) |
Add a packet filter to the tail of the list of filters used to classify packets. More... | |
void | AddQueueDiscClass (Ptr< QueueDiscClass > qdClass) |
Add a queue disc class to the tail of the list of classes. More... | |
int32_t | Classify (Ptr< QueueDiscItem > item) |
Classify a packet by calling the packet filters, one at a time, until either a filter able to classify the packet is found or all the filters have been processed. More... | |
Ptr< QueueDiscItem > | Dequeue (void) |
Extract from the queue disc the packet that has been dequeued by calling Peek, if any, or call the private DoDequeue method (which must be implemented by derived classes) to dequeue a packet, otherwise. More... | |
bool | Enqueue (Ptr< QueueDiscItem > item) |
Pass a packet to store to the queue discipline. More... | |
QueueSize | GetCurrentSize (void) |
Get the current size of the queue disc in bytes, if operating in bytes mode, or packets, otherwise. More... | |
Ptr< InternalQueue > | GetInternalQueue (std::size_t i) const |
Get the i-th internal queue. More... | |
QueueSize | GetMaxSize (void) const |
Get the maximum size of the queue disc. More... | |
uint32_t | GetNBytes (void) const |
Get the amount of bytes stored by the queue disc. More... | |
Ptr< NetDevice > | GetNetDevice (void) const |
Get the NetDevice on which this queue discipline is installed. More... | |
std::size_t | GetNInternalQueues (void) const |
Get the number of internal queues. More... | |
std::size_t | GetNPacketFilters (void) const |
Get the number of packet filters. More... | |
uint32_t | GetNPackets (void) const |
Get the number of packets stored by the queue disc. More... | |
std::size_t | GetNQueueDiscClasses (void) const |
Get the number of queue disc classes. More... | |
Ptr< PacketFilter > | GetPacketFilter (std::size_t i) const |
Get the i-th packet filter. More... | |
Ptr< QueueDiscClass > | GetQueueDiscClass (std::size_t i) const |
Get the i-th queue disc class. More... | |
virtual uint32_t | GetQuota (void) const |
Get the maximum number of dequeue operations following a packet enqueue. More... | |
const Stats & | GetStats (void) |
Retrieve all the collected statistics. More... | |
virtual WakeMode | GetWakeMode (void) const |
When setting up the wake callbacks on the netdevice queues, it is necessary to determine which queue disc (the root queue disc or one of its children) should be activated when the netdevice wakes one of its transmission queues. More... | |
Ptr< const QueueDiscItem > | Peek (void) |
Get a copy of the next packet the queue discipline will extract. More... | |
void | Run (void) |
Modelled after the Linux function __qdisc_run (net/sched/sch_generic.c) Dequeues multiple packets, until a quota is exceeded or sending a packet to the device failed. More... | |
bool | SetMaxSize (QueueSize size) |
Set the maximum size of the queue disc. More... | |
void | SetNetDevice (Ptr< NetDevice > device) |
Set the NetDevice on which this queue discipline is installed. More... | |
virtual void | SetQuota (const uint32_t quota) |
Set the maximum number of dequeue operations following a packet enqueue. More... | |
Public Member Functions inherited from ns3::Object | |
Object () | |
Constructor. More... | |
virtual | ~Object () |
Destructor. More... | |
void | AggregateObject (Ptr< Object > other) |
Aggregate two Objects together. More... | |
void | Dispose (void) |
Dispose of this Object. More... | |
AggregateIterator | GetAggregateIterator (void) const |
Get an iterator to the Objects aggregated to this one. More... | |
virtual TypeId | GetInstanceTypeId (void) const |
Get the most derived TypeId for this Object. More... | |
template<typename T > | |
Ptr< T > | GetObject (void) const |
Get a pointer to the requested aggregated Object. More... | |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
Get a pointer to the requested aggregated Object by TypeId. More... | |
void | Initialize (void) |
Invoke DoInitialize on all Objects aggregated to this one. More... | |
bool | IsInitialized (void) 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) | |
Copy constructor. More... | |
uint32_t | GetReferenceCount (void) const |
Get the reference count of the object. More... | |
SimpleRefCount & | operator= (const SimpleRefCount &o) |
Assignment operator. More... | |
void | Ref (void) const |
Increment the reference count. More... | |
void | Unref (void) 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 erros. 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 TypeId | GetTypeId (void) |
Get the type ID. More... | |
Static Public Member Functions inherited from ns3::Object | |
static TypeId | GetTypeId (void) |
Register this type. More... | |
Static Public Member Functions inherited from ns3::ObjectBase | |
static TypeId | GetTypeId (void) |
Get the type ID. More... | |
Static Public Attributes | |
static constexpr const char * | CHILD_QUEUE_DISC_DROP = "(Dropped by child queue disc) " |
Packet dropped by a child queue disc. More... | |
static constexpr const char * | INTERNAL_QUEUE_DROP = "Dropped by internal queue" |
Packet dropped by an internal queue. More... | |
Protected Member Functions | |
virtual void | DoDispose (void) |
Dispose of the object. More... | |
void | DoInitialize (void) |
Check whether the configuration is correct and initialize parameters. More... | |
void | DropAfterDequeue (Ptr< const QueueDiscItem > item, const char *reason) |
Perform the actions required when the queue disc is notified of a packet dropped after dequeue. More... | |
void | DropBeforeEnqueue (Ptr< const QueueDiscItem > item, const char *reason) |
Perform the actions required when the queue disc is notified of a packet dropped before enqueue. More... | |
bool | Mark (Ptr< QueueDiscItem > item, const char *reason) |
Marks the given packet and, if successful, updates the counters associated with the given reason. More... | |
Protected Member Functions inherited from ns3::Object | |
Object (const Object &o) | |
Copy an Object. More... | |
virtual void | NotifyNewAggregate (void) |
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 (void) |
Notifier called once the ObjectBase is fully constructed. More... | |
Private Types | |
typedef std::function< void(Ptr< const QueueDiscItem >, const char *)> | ChildQueueDiscDropFunctor |
Type for the function objects notifying that a packet has been dropped by a child queue disc. More... | |
typedef std::function< void(Ptr< const QueueDiscItem >)> | InternalQueueDropFunctor |
Type for the function objects notifying that a packet has been dropped by an internal queue. More... | |
Private Member Functions | |
QueueDisc (const QueueDisc &o) | |
Copy constructor. More... | |
virtual bool | CheckConfig (void)=0 |
Check whether the current configuration is correct. More... | |
Ptr< QueueDiscItem > | DequeuePacket (void) |
Modelled after the Linux function dequeue_skb (net/sched/sch_generic.c) More... | |
virtual Ptr< QueueDiscItem > | DoDequeue (void)=0 |
This function actually extracts a packet from the queue disc. More... | |
virtual bool | DoEnqueue (Ptr< QueueDiscItem > item)=0 |
This function actually enqueues a packet into the queue disc. More... | |
virtual Ptr< const QueueDiscItem > | DoPeek (void) |
Return a copy of the next packet the queue disc will extract. More... | |
virtual void | InitializeParams (void)=0 |
Initialize parameters (if any) before the first packet is enqueued. More... | |
QueueDisc & | operator= (const QueueDisc &o) |
Assignment operator. More... | |
void | PacketDequeued (Ptr< const QueueDiscItem > item) |
Perform the actions required when the queue disc is notified of a packet dequeue. More... | |
void | PacketEnqueued (Ptr< const QueueDiscItem > item) |
Perform the actions required when the queue disc is notified of a packet enqueue. More... | |
void | Requeue (Ptr< QueueDiscItem > item) |
Modelled after the Linux function dev_requeue_skb (net/sched/sch_generic.c) Requeues a packet whose transmission failed. More... | |
bool | Restart (void) |
Modelled after the Linux function qdisc_restart (net/sched/sch_generic.c) Dequeue a packet (by calling DequeuePacket) and send it to the device (by calling Transmit). More... | |
bool | RunBegin (void) |
Modelled after the Linux function qdisc_run_begin (include/net/sch_generic.h). More... | |
void | RunEnd (void) |
Modelled after the Linux function qdisc_run_end (include/net/sch_generic.h). More... | |
bool | Transmit (Ptr< QueueDiscItem > item) |
Modelled after the Linux function sch_direct_xmit (net/sched/sch_generic.c) Sends a packet to the device if the device queue is not stopped, and requeues it otherwise. More... | |
Private Attributes | |
ChildQueueDiscDropFunctor | m_childQueueDiscDadFunctor |
Function object called when a child queue disc dropped a packet after dequeue. More... | |
ChildQueueDiscDropFunctor | m_childQueueDiscDbeFunctor |
Function object called when a child queue disc dropped a packet before enqueue. More... | |
std::string | m_childQueueDiscDropMsg |
Reason why a packet was dropped by a child queue disc. More... | |
std::vector< Ptr< QueueDiscClass > > | m_classes |
Classes. More... | |
Ptr< NetDevice > | m_device |
The NetDevice on which this queue discipline is installed. More... | |
Ptr< NetDeviceQueueInterface > | m_devQueueIface |
NetDevice queue interface. More... | |
std::vector< Ptr< PacketFilter > > | m_filters |
Packet filters. More... | |
InternalQueueDropFunctor | m_internalQueueDadFunctor |
Function object called when an internal queue dropped a packet after dequeue. More... | |
InternalQueueDropFunctor | m_internalQueueDbeFunctor |
Function object called when an internal queue dropped a packet before enqueue. More... | |
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... | |
bool | m_peeked |
A packet was dequeued because Peek was called. More... | |
bool | m_prohibitChangeMode |
True if changing mode is prohibited. More... | |
std::vector< Ptr< InternalQueue > > | m_queues |
Internal queues. More... | |
uint32_t | m_quota |
Maximum number of packets dequeued in a qdisc run. More... | |
Ptr< QueueDiscItem > | m_requeued |
The last packet that failed to be transmitted. More... | |
bool | m_running |
The queue disc is performing multiple dequeue operations. More... | |
QueueDiscSizePolicy | m_sizePolicy |
The queue disc size policy. More... | |
TracedCallback< Time > | m_sojourn |
Sojourn time of the latest dequeued packet. More... | |
Stats | m_stats |
The collected statistics. More... | |
TracedCallback< Ptr< const QueueDiscItem > > | m_traceDequeue |
Traced callback: fired when a packet is dequeued. More... | |
TracedCallback< Ptr< const QueueDiscItem > > | m_traceDrop |
Traced callback: fired when a packet is dropped. More... | |
TracedCallback< Ptr< const QueueDiscItem >, const char *> | m_traceDropAfterDequeue |
Traced callback: fired when a packet is dropped after dequeue. More... | |
TracedCallback< Ptr< const QueueDiscItem >, const char *> | m_traceDropBeforeEnqueue |
Traced callback: fired when a packet is dropped before enqueue. More... | |
TracedCallback< Ptr< const QueueDiscItem > > | m_traceEnqueue |
Traced callback: fired when a packet is enqueued. More... | |
TracedCallback< Ptr< const QueueDiscItem >, const char *> | m_traceMark |
Traced callback: fired when a packet is marked. More... | |
TracedCallback< Ptr< const QueueDiscItem > > | m_traceRequeue |
Traced callback: fired when a packet is requeued. More... | |
Static Private Attributes | |
static const uint32_t | DEFAULT_QUOTA = 64 |
Default quota (as in /proc/sys/net/core/dev_weight) More... | |
Additional Inherited Members | |
Related Functions inherited from ns3::ObjectBase | |
static TypeId | GetObjectIid (void) |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. More... | |
QueueDisc is an abstract base class providing the interface and implementing the operations common to all the queueing disciplines.
Introspection did not find any typical Config paths.
Child classes need to implement the methods used to enqueue a packet (DoEnqueue), dequeue a single packet (DoDequeue), get a copy of the next packet to extract (DoPeek), check whether the current configuration is correct (CheckConfig).
As in Linux, a queue disc may contain distinct elements:
Notice that a child queue disc must be attached to every class and a packet filter is only able to classify packets of a single protocol. Also, while in Linux some queue discs (e.g., fq-codel) use an internal classifier and do not make use of packet filters, in ns-3 every queue disc including multiple queues or multiple classes needs an external filter to classify packets (this is to avoid having the traffic-control module depend on other modules such as internet).
Queue disc configuration vary from queue disc to queue disc. A typical taxonomy divides queue discs in classful (i.e., support classes) and classless (i.e., do not support classes). More recently, after the appearance of multi-queue devices (such as Wifi), some multi-queue aware queue discs have been introduced. Multi-queue aware queue discs handle as many queues (or queue discs – without using classes) as the number of transmission queues used by the device on which the queue disc is installed. An attempt is made, also, to enqueue each packet in the "same" queue both within the queue disc and within the device.
The traffic control layer interacts with a queue disc in a simple manner: after requesting to enqueue a packet, the traffic control layer requests the qdisc to "run", i.e., to dequeue a set of packets, until a predefined number ("quota") of packets is dequeued or the netdevice stops the queue disc. A netdevice shall stop the queue disc when its transmission queue does not have room for another packet. Also, a netdevice shall wake the queue disc when it detects that there is room for another packet in its transmission queue, but the transmission queue is stopped. Waking a queue disc is equivalent to make it run.
Every queue disc collects statistics about the total number of packets/bytes received from the upper layers (in case of root queue disc) or from the parent queue disc (in case of child queue disc), enqueued, dequeued, requeued, dropped, dropped before enqueue, dropped after dequeue, queued in the queue disc and sent to the netdevice or to the parent queue disc. Note that packets that are dequeued may be requeued, i.e., retained by the traffic control infrastructure, if the netdevice is not ready to receive them. Requeued packets are not part of the queue disc. The following identities hold:
Separate counters are also kept for each possible reason to drop a packet. When a packet is dropped by an internal queue, e.g., because the queue is full, the reason is "Dropped by internal queue". When a packet is dropped by a child queue disc, the reason is "(Dropped by child queue disc) " followed by the reason why the child queue disc dropped the packet.
The QueueDisc base class provides the SojournTime trace source, which provides the sojourn time of every packet dequeued from a queue disc, including packets that are dropped or requeued after being dequeued. The sojourn time is taken when the packet is dequeued from the queue disc, hence it does not account for the additional time the packet is retained within the traffic control infrastructure in case it is requeued.
The design and implementation of this class is heavily inspired by Linux. For more details, see the traffic-control model page.
Size of this type is 928 bytes (on a 64-bit architecture).
Definition at line 182 of file queue-disc.h.
|
private |
Type for the function objects notifying that a packet has been dropped by a child queue disc.
Definition at line 701 of file queue-disc.h.
Internal queues store QueueDiscItem objects.
Definition at line 400 of file queue-disc.h.
|
private |
Type for the function objects notifying that a packet has been dropped by an internal queue.
Definition at line 699 of file queue-disc.h.
Used to determine whether the queue disc itself or its children must be activated when a netdevice wakes a transmission queue.
Enumerator | |
---|---|
WAKE_ROOT | |
WAKE_CHILD |
Definition at line 474 of file queue-disc.h.
ns3::QueueDisc::QueueDisc | ( | QueueDiscSizePolicy | policy = QueueDiscSizePolicy::SINGLE_INTERNAL_QUEUE | ) |
Constructor.
policy | the policy to handle the queue disc size |
Definition at line 325 of file queue-disc.cc.
References CHILD_QUEUE_DISC_DROP, DropAfterDequeue(), DropBeforeEnqueue(), INTERNAL_QUEUE_DROP, m_childQueueDiscDadFunctor, m_childQueueDiscDbeFunctor, m_childQueueDiscDropMsg, m_internalQueueDadFunctor, m_internalQueueDbeFunctor, and NS_LOG_FUNCTION.
ns3::QueueDisc::QueueDisc | ( | QueueDiscSizePolicy | policy, |
QueueSizeUnit | unit | ||
) |
Constructor.
policy | the policy to handle the queue disc size |
unit | The fixed operating mode of this queue disc |
Definition at line 368 of file queue-disc.cc.
References m_maxSize, and m_prohibitChangeMode.
|
virtual |
Definition at line 375 of file queue-disc.cc.
References NS_LOG_FUNCTION.
|
private |
Copy constructor.
o | object to copy |
Defined and unimplemented to avoid misuse
void ns3::QueueDisc::AddInternalQueue | ( | Ptr< InternalQueue > | queue | ) |
Add an internal queue to the tail of the list of queues.
queue | the queue to be added |
Definition at line 567 of file queue-disc.cc.
References m_internalQueueDadFunctor, m_internalQueueDbeFunctor, m_queues, ns3::MakeCallback(), NS_LOG_FUNCTION, PacketDequeued(), and PacketEnqueued().
Referenced by ns3::FifoQueueDisc::CheckConfig(), ns3::PfifoFastQueueDisc::CheckConfig(), TestChildQueueDisc::CheckConfig(), ns3::PieQueueDisc::CheckConfig(), ns3::CoDelQueueDisc::CheckConfig(), ns3::RedQueueDisc::CheckConfig(), ns3::QueueDiscFactory::CreateQueueDisc(), PfifoFastQueueDiscTosPrioritization::DoRun(), PfifoFastQueueDiscDscpPrioritization::DoRun(), PfifoFastQueueDiscOverflow::DoRun(), PfifoFastQueueDiscNoPriority::DoRun(), and FifoQueueDiscTestCase::RunFifoTest().
void ns3::QueueDisc::AddPacketFilter | ( | Ptr< PacketFilter > | filter | ) |
Add a packet filter to the tail of the list of filters used to classify packets.
filter | the packet filter to be added |
Definition at line 600 of file queue-disc.cc.
References m_filters, and NS_LOG_FUNCTION.
Referenced by ns3::QueueDiscFactory::CreateQueueDisc(), FqCoDelQueueDiscNoSuitableFilter::DoRun(), and PrioQueueDiscTestCase::DoRun().
void ns3::QueueDisc::AddQueueDiscClass | ( | Ptr< QueueDiscClass > | qdClass | ) |
Add a queue disc class to the tail of the list of classes.
qdClass | the queue disc class to be added |
Definition at line 620 of file queue-disc.cc.
References m_childQueueDiscDadFunctor, m_childQueueDiscDbeFunctor, m_classes, ns3::MakeCallback(), NS_ABORT_MSG_IF, NS_LOG_FUNCTION, PacketDequeued(), PacketEnqueued(), and WAKE_CHILD.
Referenced by ns3::PrioQueueDisc::CheckConfig(), ns3::TbfQueueDisc::CheckConfig(), TestParentQueueDisc::CheckConfig(), ns3::QueueDiscFactory::CreateQueueDisc(), ns3::FqCoDelQueueDisc::DoEnqueue(), and PrioQueueDiscTestCase::DoRun().
|
privatepure virtual |
Check whether the current configuration is correct.
Default objects (such as internal queues) might be created by this method to ensure the configuration is correct.
Implemented in ns3::RedQueueDisc, TestParentQueueDisc, ns3::TbfQueueDisc, ns3::FqCoDelQueueDisc, ns3::CoDelQueueDisc, ns3::PieQueueDisc, TestChildQueueDisc, ns3::PrioQueueDisc, ns3::PfifoFastQueueDisc, ns3::MqQueueDisc, and ns3::FifoQueueDisc.
Referenced by DoInitialize().
int32_t ns3::QueueDisc::Classify | ( | Ptr< QueueDiscItem > | item | ) |
Classify a packet by calling the packet filters, one at a time, until either a filter able to classify the packet is found or all the filters have been processed.
item | item to classify |
Definition at line 658 of file queue-disc.cc.
References f(), m_filters, NS_LOG_FUNCTION, and ns3::PacketFilter::PF_NO_MATCH.
Referenced by ns3::PrioQueueDisc::DoEnqueue(), and ns3::FqCoDelQueueDisc::DoEnqueue().
Ptr< QueueDiscItem > ns3::QueueDisc::Dequeue | ( | void | ) |
Extract from the queue disc the packet that has been dequeued by calling Peek, if any, or call the private DoDequeue method (which must be implemented by derived classes) to dequeue a packet, otherwise.
Definition at line 879 of file queue-disc.cc.
References DoDequeue(), m_nBytes, m_nPackets, m_peeked, m_requeued, m_stats, NS_ASSERT, NS_LOG_FUNCTION, ns3::QueueDisc::Stats::nTotalDequeuedBytes, ns3::QueueDisc::Stats::nTotalDequeuedPackets, ns3::QueueDisc::Stats::nTotalEnqueuedBytes, ns3::QueueDisc::Stats::nTotalEnqueuedPackets, and PacketDequeued().
Referenced by PieQueueDiscTestCase::Dequeue(), CoDelQueueDiscBasicDrop::Dequeue(), TbfQueueDiscTestCase::DequeueAndCheck(), DequeuePacket(), ns3::PfifoFastQueueDisc::DoDequeue(), ns3::PrioQueueDisc::DoDequeue(), DoPeek(), CoDelQueueDiscBasicEnqueueDequeue::DoRun(), PrioQueueDiscTestCase::DoRun(), FqCoDelQueueDiscDeficit::DoRun(), QueueDiscTracesTestCase::DoRun(), FifoQueueDiscTestCase::DoRunFifoTest(), PieQueueDiscTestCase::RunPieTest(), RedQueueDiscTestCase::RunRedTest(), TbfQueueDiscTestCase::RunTbfTest(), PfifoFastQueueDiscDscpPrioritization::TestDscpValue(), and PfifoFastQueueDiscTosPrioritization::TestTosValue().
|
private |
Modelled after the Linux function dequeue_skb (net/sched/sch_generic.c)
Definition at line 993 of file queue-disc.cc.
References Dequeue(), m_devQueueIface, m_peeked, m_requeued, NS_ASSERT, NS_LOG_FUNCTION, and PacketDequeued().
Referenced by Restart().
|
privatepure virtual |
This function actually extracts a packet from the queue disc.
Implemented in ns3::RedQueueDisc, TestParentQueueDisc, ns3::TbfQueueDisc, ns3::FqCoDelQueueDisc, ns3::CoDelQueueDisc, ns3::PieQueueDisc, TestChildQueueDisc, ns3::PrioQueueDisc, ns3::PfifoFastQueueDisc, ns3::MqQueueDisc, and ns3::FifoQueueDisc.
Referenced by Dequeue().
|
protectedvirtual |
Dispose of the object.
Reimplemented from ns3::Object.
Reimplemented in ns3::RedQueueDisc, ns3::TbfQueueDisc, and ns3::PieQueueDisc.
Definition at line 381 of file queue-disc.cc.
References ns3::Object::DoDispose(), m_classes, m_device, m_devQueueIface, m_filters, m_queues, m_requeued, and NS_LOG_FUNCTION.
Referenced by ns3::PieQueueDisc::DoDispose(), ns3::TbfQueueDisc::DoDispose(), and ns3::RedQueueDisc::DoDispose().
|
privatepure virtual |
This function actually enqueues a packet into the queue disc.
item | item to enqueue |
Implemented in ns3::RedQueueDisc, TestParentQueueDisc, ns3::TbfQueueDisc, ns3::FqCoDelQueueDisc, ns3::CoDelQueueDisc, ns3::PieQueueDisc, TestChildQueueDisc, ns3::PrioQueueDisc, ns3::PfifoFastQueueDisc, ns3::MqQueueDisc, and ns3::FifoQueueDisc.
Referenced by Enqueue().
|
protectedvirtual |
Check whether the configuration is correct and initialize parameters.
This method is not virtual to prevent subclasses from redefining it. Subclasses must instead provide the implementation of the CheckConfig and InitializeParams methods (which are called by this method).
Reimplemented from ns3::Object.
Definition at line 394 of file queue-disc.cc.
References CheckConfig(), ns3::Object::DoInitialize(), InitializeParams(), m_classes, m_device, m_devQueueIface, NS_ASSERT_MSG(), NS_LOG_FUNCTION, and NS_UNUSED.
|
privatevirtual |
Return a copy of the next packet the queue disc will extract.
The implementation of this method is based on the qdisc_peek_dequeued function of the Linux kernel, which dequeues a packet and retains it in the queue disc as a requeued packet. The packet is not traced as requeued, nor is the total count of requeued packets increased. The packet is still considered to be part of the queue disc and the dequeue trace is fired when Dequeue is called and the packet is actually extracted from the queue disc.
This approach is especially recommended for queue discs for which it is not obvious what is the next packet that will be dequeued (e.g., queue discs having multiple internal queues or child queue discs or queue discs that drop packets after dequeue). Subclasses can however provide their own implementation of this method that overrides the default one.
Reimplemented in ns3::RedQueueDisc, ns3::PrioQueueDisc, ns3::PfifoFastQueueDisc, ns3::MqQueueDisc, and ns3::FifoQueueDisc.
Definition at line 920 of file queue-disc.cc.
References Dequeue(), m_peeked, m_requeued, and NS_LOG_FUNCTION.
Referenced by Peek().
|
protected |
Perform the actions required when the queue disc is notified of a packet dropped after dequeue.
item | item that was dropped |
reason | the reason why the item was dropped This method must be called by subclasses to record that a packet was dropped after dequeue for the specified reason |
Definition at line 751 of file queue-disc.cc.
References m_peeked, m_stats, m_traceDrop, m_traceDropAfterDequeue, ns3::QueueDisc::Stats::nDroppedBytesAfterDequeue, ns3::QueueDisc::Stats::nDroppedPacketsAfterDequeue, NS_LOG_DEBUG, NS_LOG_FUNCTION, NS_LOG_LOGIC(), ns3::QueueDisc::Stats::nTotalDroppedBytes, ns3::QueueDisc::Stats::nTotalDroppedBytesAfterDequeue, ns3::QueueDisc::Stats::nTotalDroppedPackets, ns3::QueueDisc::Stats::nTotalDroppedPacketsAfterDequeue, and PacketDequeued().
Referenced by TestChildQueueDisc::DoDequeue(), ns3::CoDelQueueDisc::DoDequeue(), ns3::FqCoDelQueueDisc::FqCoDelDrop(), and QueueDisc().
|
protected |
Perform the actions required when the queue disc is notified of a packet dropped before enqueue.
item | item that was dropped |
reason | the reason why the item was dropped This method must be called by subclasses to record that a packet was dropped before enqueue for the specified reason |
Definition at line 712 of file queue-disc.cc.
References m_stats, m_traceDrop, m_traceDropBeforeEnqueue, ns3::QueueDisc::Stats::nDroppedBytesBeforeEnqueue, ns3::QueueDisc::Stats::nDroppedPacketsBeforeEnqueue, NS_LOG_DEBUG, NS_LOG_FUNCTION, NS_LOG_LOGIC(), ns3::QueueDisc::Stats::nTotalDroppedBytes, ns3::QueueDisc::Stats::nTotalDroppedBytesBeforeEnqueue, ns3::QueueDisc::Stats::nTotalDroppedPackets, and ns3::QueueDisc::Stats::nTotalDroppedPacketsBeforeEnqueue.
Referenced by ns3::FifoQueueDisc::DoEnqueue(), ns3::PfifoFastQueueDisc::DoEnqueue(), TestChildQueueDisc::DoEnqueue(), ns3::PieQueueDisc::DoEnqueue(), ns3::CoDelQueueDisc::DoEnqueue(), ns3::FqCoDelQueueDisc::DoEnqueue(), ns3::RedQueueDisc::DoEnqueue(), and QueueDisc().
bool ns3::QueueDisc::Enqueue | ( | Ptr< QueueDiscItem > | item | ) |
Pass a packet to store to the queue discipline.
This function only updates the statistics and calls the (private) DoEnqueue function, which must be implemented by derived classes.
item | item to enqueue |
Definition at line 844 of file queue-disc.cc.
References DoEnqueue(), m_stats, ns3::Simulator::Now(), NS_ASSERT, NS_LOG_FUNCTION, ns3::QueueDisc::Stats::nTotalDroppedBytesBeforeEnqueue, ns3::QueueDisc::Stats::nTotalDroppedPacketsBeforeEnqueue, ns3::QueueDisc::Stats::nTotalEnqueuedBytes, ns3::QueueDisc::Stats::nTotalEnqueuedPackets, ns3::QueueDisc::Stats::nTotalReceivedBytes, and ns3::QueueDisc::Stats::nTotalReceivedPackets.
Referenced by FqCoDelQueueDiscIPFlowsSeparationAndPacketLimit::AddPacket(), PfifoFastQueueDiscOverflow::AddPacket(), FqCoDelQueueDiscDeficit::AddPacket(), FqCoDelQueueDiscTCPFlowsSeparation::AddPacket(), FqCoDelQueueDiscUDPFlowsSeparation::AddPacket(), FqCoDelQueueDiscNoSuitableFilter::DoRun(), CoDelQueueDiscBasicEnqueueDequeue::DoRun(), PrioQueueDiscTestCase::DoRun(), CoDelQueueDiscBasicOverflow::DoRun(), PfifoFastQueueDiscNoPriority::DoRun(), QueueDiscTracesTestCase::DoRun(), FifoQueueDiscTestCase::DoRunFifoTest(), PieQueueDiscTestCase::Enqueue(), AredQueueDiscTestCase::Enqueue(), TbfQueueDiscTestCase::Enqueue(), RedQueueDiscTestCase::Enqueue(), CoDelQueueDiscBasicOverflow::Enqueue(), CoDelQueueDiscBasicDrop::Enqueue(), PieQueueDiscTestCase::RunPieTest(), RedQueueDiscTestCase::RunRedTest(), TbfQueueDiscTestCase::RunTbfTest(), ns3::TrafficControlLayer::Send(), PfifoFastQueueDiscDscpPrioritization::TestDscpValue(), and PfifoFastQueueDiscTosPrioritization::TestTosValue().
QueueSize ns3::QueueDisc::GetCurrentSize | ( | void | ) |
Get the current size of the queue disc in bytes, if operating in bytes mode, or packets, otherwise.
Do not call this method if the queue disc size is not limited.
Definition at line 523 of file queue-disc.cc.
References ns3::BYTES, GetMaxSize(), m_nBytes, m_nPackets, NS_ABORT_MSG, NS_LOG_FUNCTION, and ns3::PACKETS.
Referenced by CheckQueueDiscSize(), CheckQueueSize(), CoDelQueueDiscBasicDrop::Dequeue(), ns3::FifoQueueDisc::DoEnqueue(), ns3::PfifoFastQueueDisc::DoEnqueue(), ns3::PieQueueDisc::DoEnqueue(), ns3::CoDelQueueDisc::DoEnqueue(), ns3::FqCoDelQueueDisc::DoEnqueue(), CoDelQueueDiscBasicEnqueueDequeue::DoRun(), CoDelQueueDiscBasicOverflow::DoRun(), CoDelQueueDiscBasicDrop::DoRun(), FifoQueueDiscTestCase::DoRunFifoTest(), PieQueueDiscTestCase::RunPieTest(), RedQueueDiscTestCase::RunRedTest(), and TbfQueueDiscTestCase::RunTbfTest().
Ptr< QueueDisc::InternalQueue > ns3::QueueDisc::GetInternalQueue | ( | std::size_t | i | ) | const |
Get the i-th internal queue.
i | the index of the queue |
Definition at line 587 of file queue-disc.cc.
References m_queues, and NS_ASSERT.
Referenced by ns3::PieQueueDisc::CalculateP(), ns3::PfifoFastQueueDisc::CheckConfig(), ns3::FifoQueueDisc::DoDequeue(), ns3::PfifoFastQueueDisc::DoDequeue(), TestChildQueueDisc::DoDequeue(), ns3::PieQueueDisc::DoDequeue(), ns3::CoDelQueueDisc::DoDequeue(), ns3::RedQueueDisc::DoDequeue(), ns3::FifoQueueDisc::DoEnqueue(), ns3::PfifoFastQueueDisc::DoEnqueue(), TestChildQueueDisc::DoEnqueue(), ns3::PieQueueDisc::DoEnqueue(), ns3::CoDelQueueDisc::DoEnqueue(), ns3::RedQueueDisc::DoEnqueue(), ns3::FifoQueueDisc::DoPeek(), ns3::PfifoFastQueueDisc::DoPeek(), ns3::RedQueueDisc::DoPeek(), PfifoFastQueueDiscTosPrioritization::DoRun(), PfifoFastQueueDiscDscpPrioritization::DoRun(), PfifoFastQueueDiscOverflow::DoRun(), PfifoFastQueueDiscNoPriority::DoRun(), ns3::FqCoDelQueueDisc::FqCoDelDrop(), GetMaxSize(), ns3::CoDelQueueDisc::OkToDrop(), FifoQueueDiscTestCase::RunFifoTest(), SetMaxSize(), PfifoFastQueueDiscDscpPrioritization::TestDscpValue(), and PfifoFastQueueDiscTosPrioritization::TestTosValue().
QueueSize ns3::QueueDisc::GetMaxSize | ( | void | ) | const |
Get the maximum size of the queue disc.
Definition at line 454 of file queue-disc.cc.
References GetInternalQueue(), GetNInternalQueues(), GetNQueueDiscClasses(), GetQueueDiscClass(), m_maxSize, m_sizePolicy, ns3::MULTIPLE_QUEUES, ns3::NO_LIMITS, NS_FATAL_ERROR, NS_LOG_FUNCTION, ns3::SINGLE_CHILD_QUEUE_DISC, and ns3::SINGLE_INTERNAL_QUEUE.
Referenced by ns3::FifoQueueDisc::CheckConfig(), ns3::PfifoFastQueueDisc::CheckConfig(), ns3::PieQueueDisc::CheckConfig(), ns3::CoDelQueueDisc::CheckConfig(), ns3::TbfQueueDisc::CheckConfig(), ns3::RedQueueDisc::CheckConfig(), ns3::FifoQueueDisc::DoEnqueue(), ns3::PfifoFastQueueDisc::DoEnqueue(), ns3::PieQueueDisc::DoEnqueue(), ns3::CoDelQueueDisc::DoEnqueue(), ns3::FqCoDelQueueDisc::DoEnqueue(), FifoQueueDiscTestCase::DoRunFifoTest(), ns3::PieQueueDisc::DropEarly(), GetCurrentSize(), ns3::FifoQueueDisc::GetTypeId(), ns3::PfifoFastQueueDisc::GetTypeId(), ns3::TbfQueueDisc::GetTypeId(), ns3::PieQueueDisc::GetTypeId(), ns3::CoDelQueueDisc::GetTypeId(), ns3::RedQueueDisc::GetTypeId(), ns3::FqCoDelQueueDisc::GetTypeId(), ns3::FqCoDelQueueDisc::InitializeParams(), ns3::RedQueueDisc::InitializeParams(), and ns3::RedQueueDisc::ModifyP().
uint32_t ns3::QueueDisc::GetNBytes | ( | void | ) | const |
Get the amount of bytes stored by the queue disc.
The requeued packet, if any, is counted.
Definition at line 447 of file queue-disc.cc.
References m_nBytes, and NS_LOG_FUNCTION.
Referenced by ns3::PieQueueDisc::CalculateP(), QueueDiscTracesTestCase::CheckQueued(), ns3::PieQueueDisc::DoDequeue(), ns3::CoDelQueueDisc::DoDequeue(), ns3::TbfQueueDisc::DoDequeue(), ns3::RedQueueDisc::DoDequeue(), ns3::FifoQueueDisc::DoEnqueue(), ns3::PieQueueDisc::DoEnqueue(), ns3::CoDelQueueDisc::DoEnqueue(), ns3::TbfQueueDisc::DoEnqueue(), ns3::RedQueueDisc::DoEnqueue(), ns3::RedQueueDisc::DoPeek(), ns3::FqCoDelQueueDisc::FqCoDelDrop(), and ns3::CoDelQueueDisc::OkToDrop().
Get the NetDevice on which this queue discipline is installed.
Definition at line 546 of file queue-disc.cc.
References m_device, and NS_LOG_FUNCTION.
Referenced by ns3::TbfQueueDisc::CheckConfig(), and ns3::FqCoDelQueueDisc::InitializeParams().
std::size_t ns3::QueueDisc::GetNInternalQueues | ( | void | ) | const |
Get the number of internal queues.
Definition at line 594 of file queue-disc.cc.
References m_queues.
Referenced by ns3::FifoQueueDisc::CheckConfig(), ns3::MqQueueDisc::CheckConfig(), ns3::PfifoFastQueueDisc::CheckConfig(), ns3::PrioQueueDisc::CheckConfig(), ns3::PieQueueDisc::CheckConfig(), ns3::CoDelQueueDisc::CheckConfig(), ns3::FqCoDelQueueDisc::CheckConfig(), ns3::TbfQueueDisc::CheckConfig(), ns3::RedQueueDisc::CheckConfig(), ns3::PfifoFastQueueDisc::DoDequeue(), ns3::PfifoFastQueueDisc::DoPeek(), GetMaxSize(), FifoQueueDiscTestCase::RunFifoTest(), and SetMaxSize().
std::size_t ns3::QueueDisc::GetNPacketFilters | ( | void | ) | const |
Get the number of packet filters.
Definition at line 614 of file queue-disc.cc.
References m_filters.
Referenced by ns3::FifoQueueDisc::CheckConfig(), ns3::MqQueueDisc::CheckConfig(), ns3::PfifoFastQueueDisc::CheckConfig(), ns3::PieQueueDisc::CheckConfig(), ns3::CoDelQueueDisc::CheckConfig(), ns3::TbfQueueDisc::CheckConfig(), ns3::RedQueueDisc::CheckConfig(), and ns3::FqCoDelQueueDisc::DoEnqueue().
uint32_t ns3::QueueDisc::GetNPackets | ( | void | ) | const |
Get the number of packets stored by the queue disc.
The requeued packet, if any, is counted.
Definition at line 440 of file queue-disc.cc.
References m_nPackets, and NS_LOG_FUNCTION.
Referenced by QueueDiscTracesTestCase::CheckQueued(), ns3::PfifoFastQueueDisc::DoDequeue(), ns3::PrioQueueDisc::DoDequeue(), TestChildQueueDisc::DoDequeue(), ns3::CoDelQueueDisc::DoDequeue(), ns3::TbfQueueDisc::DoDequeue(), ns3::RedQueueDisc::DoDequeue(), ns3::FifoQueueDisc::DoEnqueue(), ns3::PfifoFastQueueDisc::DoEnqueue(), ns3::PrioQueueDisc::DoEnqueue(), TestChildQueueDisc::DoEnqueue(), ns3::PieQueueDisc::DoEnqueue(), ns3::CoDelQueueDisc::DoEnqueue(), ns3::TbfQueueDisc::DoEnqueue(), ns3::RedQueueDisc::DoEnqueue(), ns3::PfifoFastQueueDisc::DoPeek(), ns3::PrioQueueDisc::DoPeek(), ns3::RedQueueDisc::DoPeek(), and Transmit().
std::size_t ns3::QueueDisc::GetNQueueDiscClasses | ( | void | ) | const |
Get the number of queue disc classes.
Definition at line 652 of file queue-disc.cc.
References m_classes.
Referenced by ns3::FifoQueueDisc::CheckConfig(), ns3::PfifoFastQueueDisc::CheckConfig(), ns3::PrioQueueDisc::CheckConfig(), ns3::PieQueueDisc::CheckConfig(), ns3::CoDelQueueDisc::CheckConfig(), ns3::FqCoDelQueueDisc::CheckConfig(), ns3::TbfQueueDisc::CheckConfig(), ns3::RedQueueDisc::CheckConfig(), ns3::PrioQueueDisc::DoDequeue(), ns3::PrioQueueDisc::DoEnqueue(), ns3::FqCoDelQueueDisc::DoEnqueue(), ns3::PrioQueueDisc::DoPeek(), WifiAcMappingTest::DoRun(), FqCoDelQueueDiscNoSuitableFilter::DoRun(), PrioQueueDiscTestCase::DoRun(), ns3::FqCoDelQueueDisc::FqCoDelDrop(), GetMaxSize(), and SetMaxSize().
Ptr< PacketFilter > ns3::QueueDisc::GetPacketFilter | ( | std::size_t | i | ) | const |
Get the i-th packet filter.
i | the index of the packet filter |
Definition at line 607 of file queue-disc.cc.
Ptr< QueueDiscClass > ns3::QueueDisc::GetQueueDiscClass | ( | std::size_t | i | ) | const |
Get the i-th queue disc class.
i | the index of the queue disc class |
Definition at line 645 of file queue-disc.cc.
References m_classes, and NS_ASSERT.
Referenced by ns3::PrioQueueDisc::DoDequeue(), ns3::TbfQueueDisc::DoDequeue(), TestParentQueueDisc::DoDequeue(), ns3::PrioQueueDisc::DoEnqueue(), ns3::FqCoDelQueueDisc::DoEnqueue(), ns3::TbfQueueDisc::DoEnqueue(), TestParentQueueDisc::DoEnqueue(), ns3::PrioQueueDisc::DoPeek(), WifiAcMappingTest::DoRun(), FqCoDelQueueDiscIPFlowsSeparationAndPacketLimit::DoRun(), PrioQueueDiscTestCase::DoRun(), FqCoDelQueueDiscDeficit::DoRun(), QueueDiscTracesTestCase::DoRun(), FqCoDelQueueDiscTCPFlowsSeparation::DoRun(), FqCoDelQueueDiscUDPFlowsSeparation::DoRun(), ns3::FqCoDelQueueDisc::FqCoDelDrop(), GetMaxSize(), and SetMaxSize().
|
virtual |
Get the maximum number of dequeue operations following a packet enqueue.
Definition at line 560 of file queue-disc.cc.
References m_quota, and NS_LOG_FUNCTION.
Referenced by GetTypeId().
const QueueDisc::Stats & ns3::QueueDisc::GetStats | ( | void | ) |
Retrieve all the collected statistics.
Definition at line 421 of file queue-disc.cc.
References m_requeued, m_stats, NS_ASSERT, ns3::QueueDisc::Stats::nTotalDequeuedBytes, ns3::QueueDisc::Stats::nTotalDequeuedPackets, ns3::QueueDisc::Stats::nTotalDroppedBytes, ns3::QueueDisc::Stats::nTotalDroppedBytesAfterDequeue, ns3::QueueDisc::Stats::nTotalDroppedBytesBeforeEnqueue, ns3::QueueDisc::Stats::nTotalDroppedPackets, ns3::QueueDisc::Stats::nTotalDroppedPacketsAfterDequeue, ns3::QueueDisc::Stats::nTotalDroppedPacketsBeforeEnqueue, ns3::QueueDisc::Stats::nTotalSentBytes, and ns3::QueueDisc::Stats::nTotalSentPackets.
Referenced by QueueDiscTracesTestCase::CheckDroppedAfterDequeue(), QueueDiscTracesTestCase::CheckDroppedBeforeEnqueue(), CoDelQueueDiscBasicDrop::Dequeue(), CoDelQueueDiscBasicEnqueueDequeue::DoRun(), CoDelQueueDiscBasicOverflow::DoRun(), AredQueueDiscTestCase::RunAredDiscTest(), PieQueueDiscTestCase::RunPieTest(), and RedQueueDiscTestCase::RunRedTest().
|
static |
Get the type ID.
Definition at line 266 of file queue-disc.cc.
References DEFAULT_QUOTA, GetQuota(), m_classes, m_filters, m_nBytes, m_nPackets, m_queues, m_sojourn, m_traceDequeue, m_traceDrop, m_traceDropAfterDequeue, m_traceDropBeforeEnqueue, m_traceEnqueue, m_traceMark, m_traceRequeue, ns3::MakeObjectVectorAccessor(), ns3::MakeTraceSourceAccessor(), ns3::MakeUintegerAccessor(), ns3::TypeId::SetParent(), and SetQuota().
|
virtual |
When setting up the wake callbacks on the netdevice queues, it is necessary to determine which queue disc (the root queue disc or one of its children) should be activated when the netdevice wakes one of its transmission queues.
The implementation of this method for the base class returns WAKE_ROOT, i.e., the root queue disc is activated. Subclasses implementing queue discs adopting a different strategy (e.g., multi-queue aware queue discs such as mq) have to redefine this method.
Reimplemented in ns3::MqQueueDisc.
Definition at line 672 of file queue-disc.cc.
References WAKE_ROOT.
|
privatepure virtual |
Initialize parameters (if any) before the first packet is enqueued.
Implemented in ns3::RedQueueDisc, ns3::CoDelQueueDisc, TestParentQueueDisc, ns3::TbfQueueDisc, ns3::FqCoDelQueueDisc, ns3::PieQueueDisc, TestChildQueueDisc, ns3::PrioQueueDisc, ns3::PfifoFastQueueDisc, ns3::MqQueueDisc, and ns3::FifoQueueDisc.
Referenced by DoInitialize().
|
protected |
Marks the given packet and, if successful, updates the counters associated with the given reason.
item | item that has to be marked |
reason | the reason why the item has to be marked |
Definition at line 801 of file queue-disc.cc.
References m_stats, m_traceMark, ns3::QueueDisc::Stats::nMarkedBytes, ns3::QueueDisc::Stats::nMarkedPackets, NS_LOG_DEBUG, NS_LOG_FUNCTION, ns3::QueueDisc::Stats::nTotalMarkedBytes, and ns3::QueueDisc::Stats::nTotalMarkedPackets.
Referenced by ns3::RedQueueDisc::DoEnqueue().
Assignment operator.
o | object to copy |
Defined and unimplemented to avoid misuse
|
private |
Perform the actions required when the queue disc is notified of a packet dequeue.
item | item that was dequeued |
Definition at line 690 of file queue-disc.cc.
References m_nBytes, m_nPackets, m_peeked, m_sojourn, m_stats, m_traceDequeue, ns3::Simulator::Now(), NS_LOG_LOGIC(), ns3::QueueDisc::Stats::nTotalDequeuedBytes, and ns3::QueueDisc::Stats::nTotalDequeuedPackets.
Referenced by AddInternalQueue(), AddQueueDiscClass(), Dequeue(), DequeuePacket(), and DropAfterDequeue().
|
private |
Perform the actions required when the queue disc is notified of a packet enqueue.
item | item that was enqueued |
Definition at line 678 of file queue-disc.cc.
References m_nBytes, m_nPackets, m_stats, m_traceEnqueue, NS_LOG_LOGIC(), ns3::QueueDisc::Stats::nTotalEnqueuedBytes, and ns3::QueueDisc::Stats::nTotalEnqueuedPackets.
Referenced by AddInternalQueue(), and AddQueueDiscClass().
Ptr< const QueueDiscItem > ns3::QueueDisc::Peek | ( | void | ) |
Get a copy of the next packet the queue discipline will extract.
This function only calls the (private) DoPeek function. This base class provides a default implementation of DoPeek, which dequeues the next packet but retains it into the queue disc.
Definition at line 913 of file queue-disc.cc.
References DoPeek(), and NS_LOG_FUNCTION.
Referenced by ns3::PfifoFastQueueDisc::DoPeek(), ns3::PrioQueueDisc::DoPeek(), and QueueDiscTracesTestCase::DoRun().
|
private |
Modelled after the Linux function dev_requeue_skb (net/sched/sch_generic.c) Requeues a packet whose transmission failed.
item | the packet to requeue |
Definition at line 1041 of file queue-disc.cc.
References m_requeued, m_stats, m_traceRequeue, NS_LOG_FUNCTION, NS_LOG_LOGIC(), ns3::QueueDisc::Stats::nTotalRequeuedBytes, and ns3::QueueDisc::Stats::nTotalRequeuedPackets.
Referenced by Transmit().
|
private |
Modelled after the Linux function qdisc_restart (net/sched/sch_generic.c) Dequeue a packet (by calling DequeuePacket) and send it to the device (by calling Transmit).
Definition at line 979 of file queue-disc.cc.
References DequeuePacket(), NS_LOG_FUNCTION, NS_LOG_LOGIC(), and Transmit().
Referenced by Run().
void ns3::QueueDisc::Run | ( | void | ) |
Modelled after the Linux function __qdisc_run (net/sched/sch_generic.c) Dequeues multiple packets, until a quota is exceeded or sending a packet to the device failed.
Definition at line 938 of file queue-disc.cc.
References m_quota, NS_LOG_FUNCTION, Restart(), RunBegin(), and RunEnd().
Referenced by ns3::TbfQueueDisc::DoDequeue(), ns3::TrafficControlLayer::DoInitialize(), and ns3::TrafficControlLayer::Send().
|
private |
Modelled after the Linux function qdisc_run_begin (include/net/sch_generic.h).
Definition at line 959 of file queue-disc.cc.
References m_running, and NS_LOG_FUNCTION.
Referenced by Run().
|
private |
Modelled after the Linux function qdisc_run_end (include/net/sch_generic.h).
Set the qdisc as not running.
Definition at line 972 of file queue-disc.cc.
References m_running, and NS_LOG_FUNCTION.
Referenced by Run().
bool ns3::QueueDisc::SetMaxSize | ( | QueueSize | size | ) |
Set the maximum size of the queue disc.
Trying to set a null size has no effect.
size | the maximum size. |
Definition at line 482 of file queue-disc.cc.
References GetInternalQueue(), GetNInternalQueues(), GetNQueueDiscClasses(), GetQueueDiscClass(), ns3::QueueSize::GetUnit(), ns3::QueueSize::GetValue(), m_maxSize, m_prohibitChangeMode, m_sizePolicy, ns3::MULTIPLE_QUEUES, ns3::NO_LIMITS, NS_FATAL_ERROR, NS_LOG_DEBUG, NS_LOG_FUNCTION, ns3::SINGLE_CHILD_QUEUE_DISC, and ns3::SINGLE_INTERNAL_QUEUE.
Referenced by ns3::TbfQueueDisc::CheckConfig(), ns3::FifoQueueDisc::GetTypeId(), ns3::PfifoFastQueueDisc::GetTypeId(), ns3::TbfQueueDisc::GetTypeId(), ns3::PieQueueDisc::GetTypeId(), ns3::CoDelQueueDisc::GetTypeId(), ns3::RedQueueDisc::GetTypeId(), ns3::FqCoDelQueueDisc::GetTypeId(), and RedQueueDiscTestCase::RunRedTest().
Set the NetDevice on which this queue discipline is installed.
device | the NetDevice on which this queue discipline is installed. |
Definition at line 539 of file queue-disc.cc.
References m_device, and NS_LOG_FUNCTION.
Referenced by ns3::TrafficControlHelper::Install(), and TbfQueueDiscTestCase::RunTbfTest().
|
virtual |
Set the maximum number of dequeue operations following a packet enqueue.
quota | the maximum number of dequeue operations following a packet enqueue. |
Definition at line 553 of file queue-disc.cc.
References m_quota, and NS_LOG_FUNCTION.
Referenced by GetTypeId().
|
private |
Modelled after the Linux function sch_direct_xmit (net/sched/sch_generic.c) Sends a packet to the device if the device queue is not stopped, and requeues it otherwise.
item | the packet to transmit |
Definition at line 1055 of file queue-disc.cc.
References GetNPackets(), m_device, m_devQueueIface, NS_ASSERT, NS_LOG_FUNCTION, and Requeue().
Referenced by Restart().
|
static |
Packet dropped by a child queue disc.
Definition at line 495 of file queue-disc.h.
Referenced by QueueDisc().
|
staticprivate |
Default quota (as in /proc/sys/net/core/dev_weight)
Definition at line 661 of file queue-disc.h.
Referenced by GetTypeId().
|
static |
Packet dropped by an internal queue.
Definition at line 494 of file queue-disc.h.
Referenced by QueueDisc().
|
private |
Function object called when a child queue disc dropped a packet after dequeue.
Definition at line 710 of file queue-disc.h.
Referenced by AddQueueDiscClass(), and QueueDisc().
|
private |
Function object called when a child queue disc dropped a packet before enqueue.
Definition at line 708 of file queue-disc.h.
Referenced by AddQueueDiscClass(), and QueueDisc().
|
private |
Reason why a packet was dropped by a child queue disc.
Definition at line 679 of file queue-disc.h.
Referenced by QueueDisc().
|
private |
Classes.
Definition at line 665 of file queue-disc.h.
Referenced by AddQueueDiscClass(), DoDispose(), DoInitialize(), GetNQueueDiscClasses(), GetQueueDiscClass(), and GetTypeId().
The NetDevice on which this queue discipline is installed.
Definition at line 674 of file queue-disc.h.
Referenced by DoDispose(), DoInitialize(), GetNetDevice(), SetNetDevice(), and Transmit().
|
private |
NetDevice queue interface.
Definition at line 675 of file queue-disc.h.
Referenced by DequeuePacket(), DoDispose(), DoInitialize(), and Transmit().
|
private |
Packet filters.
Definition at line 664 of file queue-disc.h.
Referenced by AddPacketFilter(), Classify(), DoDispose(), GetNPacketFilters(), GetPacketFilter(), and GetTypeId().
|
private |
Function object called when an internal queue dropped a packet after dequeue.
Definition at line 706 of file queue-disc.h.
Referenced by AddInternalQueue(), and QueueDisc().
|
private |
Function object called when an internal queue dropped a packet before enqueue.
Definition at line 704 of file queue-disc.h.
Referenced by AddInternalQueue(), and QueueDisc().
|
private |
max queue size
Definition at line 670 of file queue-disc.h.
Referenced by GetMaxSize(), QueueDisc(), and SetMaxSize().
|
private |
Number of bytes in the queue.
Definition at line 668 of file queue-disc.h.
Referenced by Dequeue(), GetCurrentSize(), GetNBytes(), GetTypeId(), PacketDequeued(), and PacketEnqueued().
|
private |
Number of packets in the queue.
Definition at line 667 of file queue-disc.h.
Referenced by Dequeue(), GetCurrentSize(), GetNPackets(), GetTypeId(), PacketDequeued(), and PacketEnqueued().
|
private |
A packet was dequeued because Peek was called.
Definition at line 678 of file queue-disc.h.
Referenced by Dequeue(), DequeuePacket(), DoPeek(), DropAfterDequeue(), and PacketDequeued().
|
private |
True if changing mode is prohibited.
Definition at line 681 of file queue-disc.h.
Referenced by QueueDisc(), and SetMaxSize().
|
private |
Internal queues.
Definition at line 663 of file queue-disc.h.
Referenced by AddInternalQueue(), DoDispose(), GetInternalQueue(), GetNInternalQueues(), and GetTypeId().
|
private |
Maximum number of packets dequeued in a qdisc run.
Definition at line 673 of file queue-disc.h.
Referenced by GetQuota(), Run(), and SetQuota().
|
private |
The last packet that failed to be transmitted.
Definition at line 677 of file queue-disc.h.
Referenced by Dequeue(), DequeuePacket(), DoDispose(), DoPeek(), GetStats(), and Requeue().
|
private |
The queue disc is performing multiple dequeue operations.
Definition at line 676 of file queue-disc.h.
Referenced by RunBegin(), and RunEnd().
|
private |
The queue disc size policy.
Definition at line 680 of file queue-disc.h.
Referenced by GetMaxSize(), and SetMaxSize().
|
private |
Sojourn time of the latest dequeued packet.
Definition at line 669 of file queue-disc.h.
Referenced by GetTypeId(), and PacketDequeued().
|
private |
The collected statistics.
Definition at line 672 of file queue-disc.h.
Referenced by Dequeue(), DropAfterDequeue(), DropBeforeEnqueue(), Enqueue(), GetStats(), Mark(), PacketDequeued(), PacketEnqueued(), and Requeue().
|
private |
Traced callback: fired when a packet is dequeued.
Definition at line 686 of file queue-disc.h.
Referenced by GetTypeId(), and PacketDequeued().
|
private |
Traced callback: fired when a packet is dropped.
Definition at line 690 of file queue-disc.h.
Referenced by DropAfterDequeue(), DropBeforeEnqueue(), and GetTypeId().
|
private |
Traced callback: fired when a packet is dropped after dequeue.
Definition at line 694 of file queue-disc.h.
Referenced by DropAfterDequeue(), and GetTypeId().
|
private |
Traced callback: fired when a packet is dropped before enqueue.
Definition at line 692 of file queue-disc.h.
Referenced by DropBeforeEnqueue(), and GetTypeId().
|
private |
Traced callback: fired when a packet is enqueued.
Definition at line 684 of file queue-disc.h.
Referenced by GetTypeId(), and PacketEnqueued().
|
private |
Traced callback: fired when a packet is marked.
Definition at line 696 of file queue-disc.h.
Referenced by GetTypeId(), and Mark().
|
private |
Traced callback: fired when a packet is requeued.
Definition at line 688 of file queue-disc.h.
Referenced by GetTypeId(), and Requeue().