30 #include "ns3/uinteger.h"
31 #include "ns3/abort.h"
48 return (uint32_t)(((uint64_t)A * R) >> 32);
82 virtual void Print (std::ostream &os)
const;
103 .AddConstructor<CoDelTimestampTag> ()
104 .AddAttribute (
"CreationTime",
105 "The time at which the timestamp was created",
151 .SetGroupName (
"Internet")
153 .AddAttribute (
"Mode",
154 "Whether to use Bytes (see MaxBytes) or Packets (see MaxPackets) as the maximum queue size metric.",
159 .AddAttribute (
"MaxPackets",
160 "The maximum number of packets accepted by this CoDelQueue.",
163 MakeUintegerChecker<uint32_t> ())
164 .AddAttribute (
"MaxBytes",
165 "The maximum number of bytes accepted by this CoDelQueue.",
168 MakeUintegerChecker<uint32_t> ())
169 .AddAttribute (
"MinBytes",
170 "The CoDel algorithm minbytes parameter.",
173 MakeUintegerChecker<uint32_t> ())
174 .AddAttribute (
"Interval",
175 "The CoDel algorithm interval",
179 .AddAttribute (
"Target",
180 "The CoDel algorithm target queue delay",
184 .AddTraceSource (
"Count",
187 "ns3::TracedValue::Uint32Callback")
188 .AddTraceSource (
"DropCount",
191 "ns3::TracedValue::Uint32Callback")
192 .AddTraceSource (
"LastCount",
195 "ns3::TracedValue::Uint32Callback")
196 .AddTraceSource (
"DropState",
199 "ns3::TracedValue::BoolCallback")
200 .AddTraceSource (
"BytesInQueue",
201 "Number of bytes in the queue",
203 "ns3::TracedValue::Uint32Callback")
204 .AddTraceSource (
"Sojourn",
207 "ns3::Time::TracedValueCallback")
208 .AddTraceSource (
"DropNext",
209 "Time until next packet drop",
211 "ns3::TracedValue::Uint32Callback")
227 m_firstAboveTime (0),
249 uint32_t invsqrt2 = ((uint64_t) invsqrt * invsqrt) >> 32;
250 uint64_t val = (3ll << 32) - ((uint64_t)
m_count * invsqrt2);
253 val = (val * invsqrt) >> (32 - 2 + 1);
285 NS_LOG_LOGIC (
"Queue full (at max packets) -- droppping pkt");
293 NS_LOG_LOGIC (
"Queue full (packet would exceed max bytes) -- droppping pkt");
320 NS_ASSERT_MSG (found,
"found a packet without an input timestamp tag");
331 NS_LOG_LOGIC (
"Sojourn time is below target or number of bytes in queue is less than minBytes; packet should not be dropped");
341 NS_LOG_LOGIC (
"Sojourn time has just gone above target from below, need to stay above for at least q->interval before packet can be dropped. ");
347 NS_LOG_LOGIC (
"Sojourn time has been above target for at least q->interval; it's OK to (possibly) drop packet.");
382 NS_LOG_LOGIC (
"In dropping state, check if it's OK to leave or next drop should occur");
386 NS_LOG_LOGIC (
"Sojourn time goes below target, it's OK to leave dropping state.");
401 NS_LOG_LOGIC (
"Sojourn time is still above target and it's time for next drop; dropping " << p);
447 NS_LOG_LOGIC (
"Not in dropping state; decide if we have to enter the state and drop the first packet");
451 NS_LOG_LOGIC (
"Sojourn time goes above target, dropping the first packet " << p <<
" and entering the dropping state");
498 NS_LOG_LOGIC (
"Running ControlLaw for input now: " << (
double)now);
500 NS_LOG_LOGIC (
"Scheduled next drop at " << (
double)
m_dropNext / 1000000 <<
" now " << (
double)now / 1000000);
577 return ((
int)(a) - (
int)(b) > 0);
583 return ((
int)(a) - (
int)(b) >= 0);
589 return ((
int)(a) - (
int)(b) < 0);
595 return ((
int)(a) - (
int)(b) <= 0);
uint32_t GetDropOverLimit(void)
Get the number of packets dropped when packets arrive at a full queue and cannot be enqueued...
bool CoDelTimeAfter(uint32_t a, uint32_t b)
Check if CoDel time a is successive to b.
Simulation virtual time values and global simulation resolution.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
bool CoDelTimeAfterEq(uint32_t a, uint32_t b)
Check if CoDel time a is successive or equal to b.
Control the scheduling of simulation events.
#define NS_ABORT_MSG(msg)
Unconditional abnormal program termination with a message.
virtual bool DoEnqueue(Ptr< Packet > p)
Add a packet to the queue.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Hold variables of type string.
void WriteU64(uint64_t v)
uint32_t m_state1
Number of times packet sojourn goes above target for interval.
uint32_t m_minBytes
Minimum bytes in queue to allow a packet drop.
Use number of bytes for maximum queue size.
Ptr< const AttributeAccessor > MakeEnumAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
void AddPacketTag(const Tag &tag) const
Add a packet tag.
std::queue< Ptr< Packet > > m_packets
The packet queue.
TracedValue< uint32_t > m_dropNext
Time to drop next packet.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
TracedValue< uint32_t > m_lastCount
Last number of packets dropped since entering drop state.
TracedValue< bool > m_dropping
True if in dropping state.
uint32_t GetSize(void) const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
#define NS_UNUSED(x)
Mark a local variable as unused.
uint32_t m_states
Total number of times we are in state 1, state 2, or state 3.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
uint32_t GetDropCount(void)
Get the number of packets dropped according to CoDel algorithm.
uint32_t ControlLaw(uint32_t t)
Determine the time for next drop CoDel control law is t + m_interval/sqrt(m_count).
uint32_t m_nPackets
Number of packets in the queue.
uint32_t m_state2
Number of times we perform next drop while in dropping state.
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
Abstract base class for packet Queues.
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
uint16_t m_recInvSqrt
Reciprocal inverse square root.
Time m_interval
100 ms sliding minimum time window width
Time GetTarget(void)
Get the target queue delay.
double GetSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit.
virtual uint32_t GetSerializedSize(void) const
QueueMode
Enumeration of the modes supported in the class.
CoDelQueue::QueueMode GetMode(void)
Get the encapsulation mode of this device.
static TypeId GetTypeId(void)
Get the type ID.
bool OkToDrop(Ptr< Packet > p, uint32_t now)
Determine whether a packet is OK to be dropped.
Hold variables of type enum.
CoDel time stamp, used to carry CoDel time informations.
uint32_t GetQueueSize(void)
Get the current value of the queue in bytes or packets.
TracedValue< uint32_t > m_dropCount
Number of dropped packets according CoDel algorithm.
Hold an unsigned integer type.
#define DEFAULT_CODEL_LIMIT
bool CoDelTimeBefore(uint32_t a, uint32_t b)
Check if CoDel time a is preceding b.
virtual void Deserialize(TagBuffer i)
uint32_t m_dropOverLimit
The number of packets dropped due to full queue.
virtual void Serialize(TagBuffer i) const
uint32_t m_maxBytes
Max # of bytes accepted by the queue.
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
uint32_t m_nBytes
Number of bytes in the queue.
CoDelQueue()
CoDelQueue Constructor.
tag a set of bytes in a packet
uint32_t m_firstAboveTime
Time to declare sojourn time above target.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Time m_target
5 ms target queue delay
TracedCallback< Ptr< const Packet > > m_traceDequeue
Traced callback: fired when a packet is dequeued.
uint64_t m_creationTime
Tag creation time.
uint32_t m_maxPackets
Max # of packets accepted by the queue.
bool CoDelTimeBeforeEq(uint32_t a, uint32_t b)
Check if CoDel time a is preceding or equal to b.
Time TimeStep(uint64_t ts)
uint32_t GetDropNext(void)
Get the time for next packet drop while in the dropping state.
static const int CODEL_SHIFT
Number of bits discarded from the time representation.
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
static TypeId GetTypeId(void)
Get the type ID.
static Time Now(void)
Return the current simulation virtual time.
QueueMode m_mode
The operating mode (Bytes or packets)
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
void NewtonStep(void)
Calculate the reciprocal square root of m_count by using Newton's method http://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Iterative_methods_for_reciprocal_square_roots m_recInvSqrt (new) = (m_recInvSqrt (old) / 2) * (3 - m_count * m_recInvSqrt^2)
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
int64_t GetNanoSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit.
Ptr< const AttributeChecker > MakeEnumChecker(int v1, std::string n1, int v2, std::string n2, int v3, std::string n3, int v4, std::string n4, int v5, std::string n5, int v6, std::string n6, int v7, std::string n7, int v8, std::string n8, int v9, std::string n9, int v10, std::string n10, int v11, std::string n11, int v12, std::string n12, int v13, std::string n13, int v14, std::string n14, int v15, std::string n15, int v16, std::string n16, int v17, std::string n17, int v18, std::string n18, int v19, std::string n19, int v20, std::string n20, int v21, std::string n21, int v22, std::string n22)
Make an EnumChecker pre-configured with a set of allowed values by name.
static uint32_t ReciprocalDivide(uint32_t A, uint32_t R)
Performs a reciprocal divide, similar to the Linux kernel reciprocal_divide function.
void SetMode(CoDelQueue::QueueMode mode)
Set the operating mode of this device.
static uint32_t CoDelGetTime(void)
Returns the current time translated in CoDel time representation.
bool RemovePacketTag(Tag &tag)
Remove a packet tag.
uint32_t Time2CoDel(Time t)
returned unsigned 32-bit integer representation of the input Time object units are microseconds ...
virtual Ptr< const Packet > DoPeek(void) const
Peek the front packet in the queue.
virtual void Print(std::ostream &os) const
Time GetInterval(void)
Get the interval.
uint32_t m_state3
Number of times we enter drop state and drop the fist packet.
Time Now(void)
create an ns3::Time instance which contains the current simulation time.
Time GetTxTime(void) const
Gets the Tag creation time.
Use number of packets for maximum queue size.
TracedValue< uint32_t > m_bytesInQueue
The total number of bytes in queue.
TracedValue< uint32_t > m_count
Number of packets dropped since entering drop state.
virtual Ptr< Packet > DoDequeue(void)
Remove a packet from queue based on the current state If we are in dropping state, check if we could leave the dropping state or if we should perform next drop If we are not currently in dropping state, check if we need to enter the state and drop the first packet.
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
void Drop(Ptr< Packet > packet)
Drop a packet.
#define REC_INV_SQRT_SHIFT
TracedValue< Time > m_sojourn
Time in queue.