|
A Discrete-Event Network Simulator
|
API
|
Go to the documentation of this file.
23 #include "ns3/string.h"
24 #include "ns3/queue.h"
27 #include "ns3/net-device-queue-interface.h"
39 .SetGroupName (
"TrafficControl")
113 .SetGroupName (
"TrafficControl")
115 .AddAttribute (
"UseEcn",
116 "True to use ECN (packets are marked instead of being dropped)",
120 .AddAttribute (
"Interval",
121 "The CoDel algorithm interval for each FQCoDel queue",
125 .AddAttribute (
"Target",
126 "The CoDel algorithm target queue delay for each FQCoDel queue",
130 .AddAttribute (
"MaxSize",
131 "The maximum number of packets accepted by this queue disc",
136 .AddAttribute (
"Flows",
137 "The number of queues into which the incoming packets are classified",
140 MakeUintegerChecker<uint32_t> ())
141 .AddAttribute (
"DropBatchSize",
142 "The maximum number of packets dropped from the fat flow",
145 MakeUintegerChecker<uint32_t> ())
146 .AddAttribute (
"Perturbation",
147 "The salt used as an additional input to the hash function used to classify packets",
150 MakeUintegerChecker<uint32_t> ())
151 .AddAttribute (
"CeThreshold",
152 "The FqCoDel CE threshold for marking packets",
156 .AddAttribute (
"EnableSetAssociativeHash",
157 "Enable/Disable Set Associative Hash",
161 .AddAttribute (
"SetWays",
162 "The size of a set of queues (used by set associative hash)",
165 MakeUintegerChecker<uint32_t> ())
166 .AddAttribute (
"UseL4s",
167 "True to use L4S (only ECT1 packets are marked at CE threshold)",
205 uint32_t h = (flowHash %
m_flows);
207 uint32_t outerHash = h - innerHash;
209 for (uint32_t i = outerHash; i < outerHash +
m_setWays; i++)
225 m_tags[outerHash] = flowHash;
234 uint32_t flowHash, h;
246 flowHash =
static_cast<uint32_t
> (ret);
250 NS_LOG_ERROR (
"No filter has been able to classify this packet, drop it.");
268 NS_LOG_DEBUG (
"Creating a new flow queue with index " << h);
280 flow->SetQueueDisc (qd);
298 flow->GetQueueDisc ()->Enqueue (item);
327 if (flow->GetDeficit () <= 0)
329 NS_LOG_DEBUG (
"Increase deficit for new flow index " << flow->GetIndex ());
337 NS_LOG_DEBUG (
"Found a new flow " << flow->GetIndex () <<
" with positive deficit");
346 if (flow->GetDeficit () <= 0)
348 NS_LOG_DEBUG (
"Increase deficit for old flow index " << flow->GetIndex ());
355 NS_LOG_DEBUG (
"Found an old flow " << flow->GetIndex () <<
" with positive deficit");
366 item = flow->GetQueueDisc ()->Dequeue ();
370 NS_LOG_DEBUG (
"Could not get a packet from the selected flow queue");
385 NS_LOG_DEBUG (
"Dequeued packet " << item->GetPacket ());
389 flow->IncreaseDeficit (item->GetSize () * -1);
406 NS_LOG_ERROR (
"FqCoDelQueueDisc cannot have internal queues");
418 if (ndqi && (dev = ndqi->GetObject<
NetDevice> ()))
433 NS_LOG_ERROR (
"The number of queues must be an integer multiple of the size "
434 "of the set of queues used by set associative hash");
443 NS_LOG_WARN (
"Enabling ECN as L4S mode is enabled");
467 uint32_t maxBacklog = 0, index = 0;
475 if (bytes > maxBacklog)
483 uint32_t len = 0, count = 0, threshold = maxBacklog >> 1;
489 NS_LOG_DEBUG (
"Drop packet (overflow); count: " << count <<
" len: " << len <<
" threshold: " << threshold);
492 len += item->GetSize ();
a unique identifier for an interface.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
void SetDeficit(uint32_t deficit)
Set the deficit for this flow.
A FqCoDel packet queue disc.
QueueDiscSizePolicy
Enumeration of the available policies to handle the queue disc size.
@ MULTIPLE_QUEUES
Used by queue discs with multiple internal queues/child queue discs.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
AttributeValue implementation for Boolean.
int32_t GetDeficit(void) const
Get the deficit for this flow.
bool SetMaxSize(QueueSize size)
Set the maximum size of the queue disc.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
uint32_t GetQuantum(void) const
Get the quantum value.
A CoDel packet queue disc.
static constexpr const char * OVERLIMIT_DROP
Overlimit dropped packets.
QueueDisc is an abstract base class providing the interface and implementing the operations common to...
QueueSize GetMaxSize(void) const
Get the maximum size of the queue disc.
std::map< uint32_t, uint32_t > m_flowsIndices
Map with the index of class for each flow.
bool m_enableSetAssociativeHash
whether to enable set associative hash
Time m_ceThreshold
Threshold above which to CE mark.
Ptr< QueueDiscClass > GetQueueDiscClass(std::size_t i) const
Get the i-th queue disc class.
Ptr< const AttributeChecker > MakeQueueSizeChecker(void)
#define NS_LOG_WARN(msg)
Use NS_LOG to output a message of level LOG_WARN.
A flow queue used by the FqCoDel queue disc.
FlowStatus m_status
the status of this flow
std::list< Ptr< FqCoDelFlow > > m_newFlows
The list of new flows.
static constexpr const char * UNCLASSIFIED_DROP
No packet filter able to classify packet.
ObjectFactory m_flowFactory
Factory to create a new flow.
void SetStatus(FlowStatus status)
Set the status for this flow.
void SetAttribute(std::string name, const AttributeValue &value)
Set a single attribute, raising fatal errors if unsuccessful.
uint32_t GetNBytes(void) const
Get the amount of bytes stored by the queue disc.
@ PACKETS
Use number of packets for queue size.
void AddQueueDiscClass(Ptr< QueueDiscClass > qdClass)
Add a queue disc class to the tail of the list of classes.
virtual uint16_t GetMtu(void) const =0
FqCoDelFlow()
FqCoDelFlow constructor.
static TypeId GetTypeId(void)
Get the type ID.
Ptr< const AttributeAccessor > MakeBooleanAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
std::map< uint32_t, uint32_t > m_tags
Tags used by set associative hash.
std::size_t GetNPacketFilters(void) const
Get the number of packet filters.
FlowStatus
Used to determine the status of this flow queue.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
std::string m_target
CoDel target attribute.
void SetIndex(uint32_t index)
Set the index for this flow.
QueueDiscClass is the base class for classes that are included in a queue disc.
uint32_t m_quantum
Deficit assigned to flows at each round.
ObjectFactory m_queueDiscFactory
Factory to create a new queue.
Ptr< NetDeviceQueueInterface > GetNetDeviceQueueInterface(void) const
std::list< Ptr< FqCoDelFlow > > m_oldFlows
The list of old flows.
Smart pointer class similar to boost::intrusive_ptr.
bool m_useEcn
True if ECN is used (packets are marked instead of being dropped)
bool m_useL4s
True if L4S is used (ECT1 packets are marked at CE threshold)
uint32_t FqCoDelDrop(void)
Drop a packet from the head of the queue with the largest current byte count.
virtual bool DoEnqueue(Ptr< QueueDiscItem > item)
This function actually enqueues a packet into the queue disc.
static TypeId GetTypeId(void)
Get the type ID.
uint32_t GetIndex(void) const
Get the index of this flow.
uint32_t m_index
the index for this flow
static Time Max()
Maximum representable Time Not to be confused with Max(Time,Time).
Ptr< const AttributeChecker > MakeBooleanChecker(void)
std::size_t GetNInternalQueues(void) const
Get the number of internal queues.
QueueSize GetCurrentSize(void)
Get the current size of the queue disc in bytes, if operating in bytes mode, or packets,...
#define NS_ABORT_MSG_IF(cond, msg)
Abnormal program termination if a condition is true, with a message.
uint32_t m_dropBatchSize
Max number of packets dropped from the fat flow.
Hold variables of type string.
#define NS_LOG_ERROR(msg)
Use NS_LOG to output a message of level LOG_ERROR.
int32_t m_deficit
the deficit for this flow
uint32_t m_setWays
size of a set of queues (used by set associative hash)
uint32_t m_flows
Number of flow queues.
uint32_t m_perturbation
hash perturbation value
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
static const int PF_NO_MATCH
Standard value used by packet filters to indicate that no match was possible.
uint32_t SetAssociativeHash(uint32_t flowHash)
Compute the index of the queue for the flow having the given flowHash, according to the set associati...
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.
void Set(const std::string &name, const AttributeValue &value, Args &&... args)
Set an attribute to be set during construction.
@ INACTIVE
Inactive Period or unslotted CSMA-CA.
AttributeValue implementation for Time.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
void SetQuantum(uint32_t quantum)
Set the quantum value.
FlowStatus GetStatus(void) const
Get the status of this flow.
QueueSizeUnit
Enumeration of the operating modes of queues.
Ptr< const AttributeAccessor > MakeQueueSizeAccessor(T1 a1)
virtual ~FqCoDelQueueDisc()
Ptr< const AttributeChecker > MakeStringChecker(void)
void SetTypeId(TypeId tid)
Set the TypeId of the Objects to be created by this factory.
Hold an unsigned integer type.
Ptr< Object > Create(void) const
Create an Object instance of the configured TypeId.
FqCoDelQueueDisc()
FqCoDelQueueDisc constructor.
int32_t Classify(Ptr< QueueDiscItem > item)
Classify a packet by calling the packet filters, one at a time, until either a filter able to classif...
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
std::size_t GetNQueueDiscClasses(void) const
Get the number of queue disc classes.
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.
Ptr< InternalQueue > GetInternalQueue(std::size_t i) const
Get the i-th internal queue.
Class for representing queue sizes.
virtual bool CheckConfig(void)
Check whether the current configuration is correct.
virtual void InitializeParams(void)
Initialize parameters (if any) before the first packet is enqueued.
std::string m_interval
CoDel interval attribute.
virtual Ptr< QueueDiscItem > DoDequeue(void)
This function actually extracts a packet from the queue disc.
void IncreaseDeficit(int32_t deficit)
Increase the deficit for this flow.
Ptr< const AttributeAccessor > MakeStringAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Network layer to device interface.