A Discrete-Event Network Simulator
API
fq-codel-queue-disc.h
Go to the documentation of this file.
1/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2016 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: Pasquale Imputato <p.imputato@gmail.com>
19 * Stefano Avallone <stefano.avallone@unina.it>
20 */
21
22#ifndef FQ_CODEL_QUEUE_DISC
23#define FQ_CODEL_QUEUE_DISC
24
25#include "ns3/queue-disc.h"
26#include "ns3/object-factory.h"
27#include <list>
28#include <map>
29
30namespace ns3 {
31
39public:
44 static TypeId GetTypeId (void);
48 FqCoDelFlow ();
49
50 virtual ~FqCoDelFlow ();
51
57 {
61 };
62
67 void SetDeficit (uint32_t deficit);
72 int32_t GetDeficit (void) const;
77 void IncreaseDeficit (int32_t deficit);
82 void SetStatus (FlowStatus status);
87 FlowStatus GetStatus (void) const;
92 void SetIndex (uint32_t index);
97 uint32_t GetIndex (void) const;
98
99private:
103};
104
105
113public:
118 static TypeId GetTypeId (void);
123
124 virtual ~FqCoDelQueueDisc ();
125
131 void SetQuantum (uint32_t quantum);
132
138 uint32_t GetQuantum (void) const;
139
140 // Reasons for dropping packets
141 static constexpr const char* UNCLASSIFIED_DROP = "Unclassified drop";
142 static constexpr const char* OVERLIMIT_DROP = "Overlimit drop";
143
144private:
145 virtual bool DoEnqueue (Ptr<QueueDiscItem> item);
146 virtual Ptr<QueueDiscItem> DoDequeue (void);
147 virtual bool CheckConfig (void);
148 virtual void InitializeParams (void);
149
154 uint32_t FqCoDelDrop (void);
155
156 bool m_useEcn;
165
166 std::string m_interval;
167 std::string m_target;
175 bool m_useL4s;
176
177 std::list<Ptr<FqCoDelFlow> > m_newFlows;
178 std::list<Ptr<FqCoDelFlow> > m_oldFlows;
179
180 std::map<uint32_t, uint32_t> m_flowsIndices;
181 std::map<uint32_t, uint32_t> m_tags;
182
185};
186
187} // namespace ns3
188
189#endif /* FQ_CODEL_QUEUE_DISC */
190
A flow queue used by the FqCoDel queue disc.
FqCoDelFlow()
FqCoDelFlow constructor.
static TypeId GetTypeId(void)
Get the type ID.
void SetIndex(uint32_t index)
Set the index for this flow.
int32_t GetDeficit(void) const
Get the deficit for this flow.
void SetDeficit(uint32_t deficit)
Set the deficit for this flow.
int32_t m_deficit
the deficit for this flow
uint32_t GetIndex(void) const
Get the index of this flow.
FlowStatus m_status
the status of this flow
FlowStatus GetStatus(void) const
Get the status of this flow.
uint32_t m_index
the index for this flow
void IncreaseDeficit(int32_t deficit)
Increase the deficit for this flow.
void SetStatus(FlowStatus status)
Set the status for this flow.
FlowStatus
Used to determine the status of this flow queue.
A FqCoDel packet queue disc.
std::list< Ptr< FqCoDelFlow > > m_oldFlows
The list of old flows.
Time m_ceThreshold
Threshold above which to CE mark.
virtual bool CheckConfig(void)
Check whether the current configuration is correct.
uint32_t m_setWays
size of a set of queues (used by set associative hash)
ObjectFactory m_queueDiscFactory
Factory to create a new queue.
static constexpr const char * UNCLASSIFIED_DROP
No packet filter able to classify packet.
virtual Ptr< QueueDiscItem > DoDequeue(void)
This function actually extracts a packet from the queue disc.
static constexpr const char * OVERLIMIT_DROP
Overlimit dropped packets.
ObjectFactory m_flowFactory
Factory to create a new flow.
void SetQuantum(uint32_t quantum)
Set the quantum value.
std::string m_interval
CoDel interval attribute.
uint32_t m_dropBatchSize
Max number of packets dropped from the fat flow.
uint32_t GetQuantum(void) const
Get the quantum value.
std::string m_target
CoDel target attribute.
bool m_useEcn
True if ECN is used (packets are marked instead of being dropped)
FqCoDelQueueDisc()
FqCoDelQueueDisc constructor.
uint32_t m_perturbation
hash perturbation value
std::map< uint32_t, uint32_t > m_flowsIndices
Map with the index of class for each flow.
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.
std::map< uint32_t, uint32_t > m_tags
Tags used by set associative hash.
uint32_t SetAssociativeHash(uint32_t flowHash)
Compute the index of the queue for the flow having the given flowHash, according to the set associati...
bool m_useL4s
True if L4S is used (ECT1 packets are marked at CE threshold)
static TypeId GetTypeId(void)
Get the type ID.
bool m_enableSetAssociativeHash
whether to enable set associative hash
uint32_t m_quantum
Deficit assigned to flows at each round.
std::list< Ptr< FqCoDelFlow > > m_newFlows
The list of new flows.
virtual void InitializeParams(void)
Initialize parameters (if any) before the first packet is enqueued.
uint32_t m_flows
Number of flow queues.
Instantiate subclasses of ns3::Object.
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:74
QueueDiscClass is the base class for classes that are included in a queue disc.
Definition: queue-disc.h:49
QueueDisc is an abstract base class providing the interface and implementing the operations common to...
Definition: queue-disc.h:181
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:103
a unique identifier for an interface.
Definition: type-id.h:59
Every class exported by the ns3 library is enclosed in the ns3 namespace.