A Discrete-Event Network Simulator
API
prio-queue-disc.cc
Go to the documentation of this file.
1/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2017 Universita' degli Studi di Napoli Federico II
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Authors: Stefano Avallone <stavallo@unina.it>
19 */
20
21#include "ns3/log.h"
22#include "ns3/pointer.h"
23#include "ns3/object-factory.h"
24#include "ns3/socket.h"
25#include "prio-queue-disc.h"
26#include <algorithm>
27#include <iterator>
28
29namespace ns3 {
30
31NS_LOG_COMPONENT_DEFINE ("PrioQueueDisc");
32
33NS_OBJECT_ENSURE_REGISTERED (PrioQueueDisc);
34
36
37std::ostream &
38operator << (std::ostream &os, const Priomap &priomap)
39{
40 std::copy (priomap.begin (), priomap.end ()-1, std::ostream_iterator<uint16_t>(os, " "));
41 os << priomap.back ();
42 return os;
43}
44
45std::istream &operator >> (std::istream &is, Priomap &priomap)
46{
47 for (int i = 0; i < 16; i++)
48 {
49 if (!(is >> priomap[i]))
50 {
51 NS_FATAL_ERROR ("Incomplete priomap specification (" << i << " values provided, 16 required)");
52 }
53 }
54 return is;
55}
56
58{
59 static TypeId tid = TypeId ("ns3::PrioQueueDisc")
61 .SetGroupName ("TrafficControl")
62 .AddConstructor<PrioQueueDisc> ()
63 .AddAttribute ("Priomap", "The priority to band mapping.",
64 PriomapValue (Priomap{{1, 2, 2, 2, 1, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1}}),
65 MakePriomapAccessor (&PrioQueueDisc::m_prio2band),
66 MakePriomapChecker ())
67 ;
68 return tid;
69}
70
73{
74 NS_LOG_FUNCTION (this);
75}
76
78{
79 NS_LOG_FUNCTION (this);
80}
81
82void
83PrioQueueDisc::SetBandForPriority (uint8_t prio, uint16_t band)
84{
85 NS_LOG_FUNCTION (this << prio << band);
86
87 NS_ASSERT_MSG (prio < 16, "Priority must be a value between 0 and 15");
88
89 m_prio2band[prio] = band;
90}
91
92uint16_t
94{
95 NS_LOG_FUNCTION (this << prio);
96
97 NS_ASSERT_MSG (prio < 16, "Priority must be a value between 0 and 15");
98
99 return m_prio2band[prio];
100}
101
102bool
104{
105 NS_LOG_FUNCTION (this << item);
106
107 uint32_t band = m_prio2band[0];
108
109 int32_t ret = Classify (item);
110
111 if (ret == PacketFilter::PF_NO_MATCH)
112 {
113 NS_LOG_DEBUG ("No filter has been able to classify this packet, using priomap.");
114
115 SocketPriorityTag priorityTag;
116 if (item->GetPacket ()->PeekPacketTag (priorityTag))
117 {
118 band = m_prio2band[priorityTag.GetPriority () & 0x0f];
119 }
120 }
121 else
122 {
123 NS_LOG_DEBUG ("Packet filters returned " << ret);
124
125 if (ret >= 0 && static_cast<uint32_t>(ret) < GetNQueueDiscClasses ())
126 {
127 band = ret;
128 }
129 }
130
131 NS_ASSERT_MSG (band < GetNQueueDiscClasses (), "Selected band out of range");
132 bool retval = GetQueueDiscClass (band)->GetQueueDisc ()->Enqueue (item);
133
134 // If Queue::Enqueue fails, QueueDisc::Drop is called by the child queue disc
135 // because QueueDisc::AddQueueDiscClass sets the drop callback
136
137 NS_LOG_LOGIC ("Number packets band " << band << ": " << GetQueueDiscClass (band)->GetQueueDisc ()->GetNPackets ());
138
139 return retval;
140}
141
144{
145 NS_LOG_FUNCTION (this);
146
148
149 for (uint32_t i = 0; i < GetNQueueDiscClasses (); i++)
150 {
151 if ((item = GetQueueDiscClass (i)->GetQueueDisc ()->Dequeue ()) != 0)
152 {
153 NS_LOG_LOGIC ("Popped from band " << i << ": " << item);
154 NS_LOG_LOGIC ("Number packets band " << i << ": " << GetQueueDiscClass (i)->GetQueueDisc ()->GetNPackets ());
155 return item;
156 }
157 }
158
159 NS_LOG_LOGIC ("Queue empty");
160 return item;
161}
162
165{
166 NS_LOG_FUNCTION (this);
167
169
170 for (uint32_t i = 0; i < GetNQueueDiscClasses (); i++)
171 {
172 if ((item = GetQueueDiscClass (i)->GetQueueDisc ()->Peek ()) != 0)
173 {
174 NS_LOG_LOGIC ("Peeked from band " << i << ": " << item);
175 NS_LOG_LOGIC ("Number packets band " << i << ": " << GetQueueDiscClass (i)->GetQueueDisc ()->GetNPackets ());
176 return item;
177 }
178 }
179
180 NS_LOG_LOGIC ("Queue empty");
181 return item;
182}
183
184bool
186{
187 NS_LOG_FUNCTION (this);
188 if (GetNInternalQueues () > 0)
189 {
190 NS_LOG_ERROR ("PrioQueueDisc cannot have internal queues");
191 return false;
192 }
193
194 if (GetNQueueDiscClasses () == 0)
195 {
196 // create 3 fifo queue discs
197 ObjectFactory factory;
198 factory.SetTypeId ("ns3::FifoQueueDisc");
199 for (uint8_t i = 0; i < 2; i++)
200 {
201 Ptr<QueueDisc> qd = factory.Create<QueueDisc> ();
202 qd->Initialize ();
203 Ptr<QueueDiscClass> c = CreateObject<QueueDiscClass> ();
204 c->SetQueueDisc (qd);
206 }
207 }
208
209 if (GetNQueueDiscClasses () < 2)
210 {
211 NS_LOG_ERROR ("PrioQueueDisc needs at least 2 classes");
212 return false;
213 }
214
215 return true;
216}
217
218void
220{
221 NS_LOG_FUNCTION (this);
222}
223
224} // namespace ns3
Instantiate subclasses of ns3::Object.
Ptr< Object > Create(void) const
Create an Object instance of the configured TypeId.
void SetTypeId(TypeId tid)
Set the TypeId of the Objects to be created by this factory.
void Initialize(void)
Invoke DoInitialize on all Objects aggregated to this one.
Definition: object.cc:183
static const int PF_NO_MATCH
Standard value used by packet filters to indicate that no match was possible.
Definition: packet-filter.h:48
The Prio qdisc is a simple classful queueing discipline that contains an arbitrary number of classes ...
void SetBandForPriority(uint8_t prio, uint16_t band)
Set the band (class) assigned to packets with specified priority.
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.
virtual Ptr< QueueDiscItem > DoDequeue(void)
This function actually extracts a packet from the queue disc.
virtual Ptr< const QueueDiscItem > DoPeek(void)
Return a copy of the next packet the queue disc will extract.
virtual bool DoEnqueue(Ptr< QueueDiscItem > item)
This function actually enqueues a packet into the queue disc.
uint16_t GetBandForPriority(uint8_t prio) const
Get the band (class) assigned to packets with specified priority.
PrioQueueDisc()
PrioQueueDisc constructor.
Priomap m_prio2band
Priority to band mapping.
static TypeId GetTypeId(void)
Get the type ID.
AttributeValue implementation for Priomap.
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:74
QueueDisc is an abstract base class providing the interface and implementing the operations common to...
Definition: queue-disc.h:181
void AddQueueDiscClass(Ptr< QueueDiscClass > qdClass)
Add a queue disc class to the tail of the list of classes.
Definition: queue-disc.cc:632
Ptr< const QueueDiscItem > Peek(void)
Get a copy of the next packet the queue discipline will extract.
Definition: queue-disc.cc:928
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...
Definition: queue-disc.cc:673
Ptr< QueueDiscItem > Dequeue(void)
Extract from the queue disc the packet that has been dequeued by calling Peek, if any,...
Definition: queue-disc.cc:894
uint32_t GetNPackets(void) const
Get the number of packets stored by the queue disc.
Definition: queue-disc.cc:438
Ptr< QueueDiscClass > GetQueueDiscClass(std::size_t i) const
Get the i-th queue disc class.
Definition: queue-disc.cc:660
std::size_t GetNQueueDiscClasses(void) const
Get the number of queue disc classes.
Definition: queue-disc.cc:667
std::size_t GetNInternalQueues(void) const
Get the number of internal queues.
Definition: queue-disc.cc:606
indicates whether the socket has a priority set.
Definition: socket.h:1309
uint8_t GetPriority(void) const
Get the tag's priority.
Definition: socket.cc:848
a unique identifier for an interface.
Definition: type-id.h:59
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition: type-id.cc:922
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
Definition: assert.h:88
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
Definition: fatal-error.h:165
#define NS_LOG_ERROR(msg)
Use NS_LOG to output a message of level LOG_ERROR.
Definition: log.h:257
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:205
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
Definition: log.h:273
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
Definition: log.h:289
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition: object-base.h:45
QueueDiscSizePolicy
Enumeration of the available policies to handle the queue disc size.
Definition: queue-disc.h:104
@ NO_LIMITS
Used by queue discs with unlimited size.
Definition: queue-disc.h:108
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::ostream & operator<<(std::ostream &os, const Angles &a)
Definition: angles.cc:139
ATTRIBUTE_HELPER_CPP(Length)
std::istream & operator>>(std::istream &is, Angles &a)
Definition: angles.cc:162
std::array< uint16_t, 16 > Priomap
Priority map.