This queue implements the timeout procedure described in (Section 9.19.2.6 "Retransmit procedures" paragraph 6; IEEE 802.11-2012). More...
#include "wifi-mac-queue.h"
Public Types | |
enum | DropPolicy { DROP_NEWEST, DROP_OLDEST } |
drop policy More... | |
Public Member Functions | |
WifiMacQueue () | |
~WifiMacQueue () | |
Ptr< WifiMacQueueItem > | Dequeue (void) |
Dequeue the packet in the front of the queue. More... | |
Ptr< WifiMacQueueItem > | DequeueByAddress (Mac48Address dest) |
Search and return, if present in the queue, the first packet having the address indicated by type equal to addr. More... | |
Ptr< WifiMacQueueItem > | DequeueByTidAndAddress (uint8_t tid, Mac48Address dest) |
Search and return, if present in the queue, the first packet having the address indicated by type equal to addr, and tid equal to tid. More... | |
Ptr< WifiMacQueueItem > | DequeueFirstAvailable (const Ptr< QosBlockedDestinations > blockedPackets) |
Return first available packet for transmission. More... | |
bool | Enqueue (Ptr< WifiMacQueueItem > item) |
Enqueue the given Wifi MAC queue item at the end of the queue. More... | |
Time | GetMaxDelay (void) const |
Return the maximum delay before the packet is discarded. More... | |
uint32_t | GetNBytes (void) |
uint32_t | GetNPackets (void) |
uint32_t | GetNPacketsByAddress (Mac48Address dest) |
Return the number of packets having destination address specified by dest. More... | |
uint32_t | GetNPacketsByTidAndAddress (uint8_t tid, Mac48Address dest) |
Return the number of QoS packets having tid equal to tid and destination address equal to dest. More... | |
bool | IsEmpty (void) |
Ptr< const WifiMacQueueItem > | Peek (void) const |
Peek the packet in the front of the queue. More... | |
Ptr< const WifiMacQueueItem > | PeekByTidAndAddress (uint8_t tid, Mac48Address dest) |
Search and return, if present in the queue, the first packet having the address indicated by type equal to addr, and tid equal to tid. More... | |
Ptr< const WifiMacQueueItem > | PeekFirstAvailable (const Ptr< QosBlockedDestinations > blockedPackets) |
Return first available packet for transmission. More... | |
bool | PushFront (Ptr< WifiMacQueueItem > item) |
Enqueue the given Wifi MAC queue item at the front of the queue. More... | |
Ptr< WifiMacQueueItem > | Remove (void) |
Remove the packet in the front of the queue. More... | |
bool | Remove (Ptr< const Packet > packet) |
If exists, removes packet from queue and returns true. More... | |
void | SetMaxDelay (Time delay) |
Set the maximum delay before the packet is discarded. More... | |
Static Public Member Functions | |
static TypeId | GetTypeId (void) |
Get the type ID. More... | |
Private Member Functions | |
bool | TtlExceeded (ConstIterator &it) |
Remove the item pointed to by the iterator it if it has been in the queue for too long. More... | |
Private Attributes | |
DropPolicy | m_dropPolicy |
Drop behavior of queue. More... | |
Time | m_maxDelay |
Time to live for packets in the queue. More... | |
NS_LOG_TEMPLATE_DECLARE | |
redefinition of the log component More... | |
This queue implements the timeout procedure described in (Section 9.19.2.6 "Retransmit procedures" paragraph 6; IEEE 802.11-2012).
When a packet is received by the MAC, to be sent to the PHY, it is queued in the internal queue after being tagged by the current time.
When a packet is dequeued, the queue checks its timestamp to verify whether or not it should be dropped. If dot11EDCATableMSDULifetime has elapsed, it is dropped. Otherwise, it is returned to the caller.
ns3::WifiMacQueue is accessible through the following paths with Config::Set and Config::Connect:
No TraceSources are defined for this type.
Size of this type is 320 bytes (on a 64-bit architecture).
Definition at line 48 of file wifi-mac-queue.h.
ns3::WifiMacQueue::WifiMacQueue | ( | ) |
Definition at line 54 of file wifi-mac-queue.cc.
ns3::WifiMacQueue::~WifiMacQueue | ( | ) |
Definition at line 59 of file wifi-mac-queue.cc.
References NS_LOG_FUNCTION_NOARGS.
Ptr< WifiMacQueueItem > ns3::WifiMacQueue::Dequeue | ( | void | ) |
Dequeue the packet in the front of the queue.
Definition at line 148 of file wifi-mac-queue.cc.
References NS_LOG_DEBUG, NS_LOG_FUNCTION, and TtlExceeded().
Ptr< WifiMacQueueItem > ns3::WifiMacQueue::DequeueByAddress | ( | Mac48Address | dest | ) |
Search and return, if present in the queue, the first packet having the address indicated by type equal to addr.
This method removes the packet from the queue. It is typically used by ns3::Txop during the CF period.
dest | the given destination |
Definition at line 163 of file wifi-mac-queue.cc.
References NS_LOG_DEBUG, NS_LOG_FUNCTION, and TtlExceeded().
Ptr< WifiMacQueueItem > ns3::WifiMacQueue::DequeueByTidAndAddress | ( | uint8_t | tid, |
Mac48Address | dest | ||
) |
Search and return, if present in the queue, the first packet having the address indicated by type equal to addr, and tid equal to tid.
This method removes the packet from the queue. It is typically used by ns3::QosTxop in order to perform correct MSDU aggregation (A-MSDU).
tid | the given TID |
dest | the given destination |
Definition at line 184 of file wifi-mac-queue.cc.
References NS_LOG_DEBUG, NS_LOG_FUNCTION, and TtlExceeded().
Ptr< WifiMacQueueItem > ns3::WifiMacQueue::DequeueFirstAvailable | ( | const Ptr< QosBlockedDestinations > | blockedPackets | ) |
Return first available packet for transmission.
A packet could be no available if it is a QoS packet with a tid and an address1 fields equal to tid and addr respectively that index a pending agreement in the BlockAckManager object. So that packet must not be transmitted until reception of an ADDBA response frame from station addressed by addr. This method removes the packet from queue.
blockedPackets |
Definition at line 205 of file wifi-mac-queue.cc.
References NS_LOG_DEBUG, NS_LOG_FUNCTION, and TtlExceeded().
bool ns3::WifiMacQueue::Enqueue | ( | Ptr< WifiMacQueueItem > | item | ) |
Enqueue the given Wifi MAC queue item at the end of the queue.
item | the Wifi MAC queue item to be enqueued at the end |
Definition at line 94 of file wifi-mac-queue.cc.
References DROP_OLDEST, ns3::QueueBase::GetNPackets(), m_dropPolicy, NS_ASSERT_MSG(), NS_LOG_DEBUG, NS_LOG_FUNCTION, ns3::PACKETS, and TtlExceeded().
Time ns3::WifiMacQueue::GetMaxDelay | ( | void | ) | const |
Return the maximum delay before the packet is discarded.
Definition at line 72 of file wifi-mac-queue.cc.
References m_maxDelay.
uint32_t ns3::WifiMacQueue::GetNBytes | ( | void | ) |
Overrides the GetNBytes method provided by QueueBase
Definition at line 398 of file wifi-mac-queue.cc.
References ns3::QueueBase::GetNBytes(), NS_LOG_FUNCTION, and TtlExceeded().
uint32_t ns3::WifiMacQueue::GetNPackets | ( | void | ) |
Overrides the GetNPackets method provided by QueueBase
Definition at line 383 of file wifi-mac-queue.cc.
References ns3::QueueBase::GetNPackets(), NS_LOG_FUNCTION, and TtlExceeded().
uint32_t ns3::WifiMacQueue::GetNPacketsByAddress | ( | Mac48Address | dest | ) |
Return the number of packets having destination address specified by dest.
dest | the given destination |
Definition at line 322 of file wifi-mac-queue.cc.
References NS_LOG_DEBUG, NS_LOG_FUNCTION, and TtlExceeded().
uint32_t ns3::WifiMacQueue::GetNPacketsByTidAndAddress | ( | uint8_t | tid, |
Mac48Address | dest | ||
) |
Return the number of QoS packets having tid equal to tid and destination address equal to dest.
tid | the given TID |
dest | the given destination |
Definition at line 345 of file wifi-mac-queue.cc.
References NS_LOG_DEBUG, NS_LOG_FUNCTION, and TtlExceeded().
|
static |
Get the type ID.
Definition at line 35 of file wifi-mac-queue.cc.
References DROP_NEWEST, DROP_OLDEST, m_dropPolicy, ns3::MakeEnumAccessor(), ns3::MakeEnumChecker(), ns3::MakeTimeAccessor(), ns3::MakeTimeChecker(), ns3::MilliSeconds(), SetMaxDelay(), and ns3::TypeId::SetParent().
bool ns3::WifiMacQueue::IsEmpty | ( | void | ) |
Overrides the IsEmpty method provided by QueueBase
Definition at line 367 of file wifi-mac-queue.cc.
References NS_LOG_DEBUG, NS_LOG_FUNCTION, and TtlExceeded().
Ptr< const WifiMacQueueItem > ns3::WifiMacQueue::Peek | ( | void | ) | const |
Peek the packet in the front of the queue.
The packet is not removed.
Definition at line 226 of file wifi-mac-queue.cc.
References m_maxDelay, ns3::Simulator::Now(), NS_LOG_DEBUG, and NS_LOG_FUNCTION.
Ptr< const WifiMacQueueItem > ns3::WifiMacQueue::PeekByTidAndAddress | ( | uint8_t | tid, |
Mac48Address | dest | ||
) |
Search and return, if present in the queue, the first packet having the address indicated by type equal to addr, and tid equal to tid.
This method does not remove the packet from the queue. It is typically used by ns3::QosTxop in order to perform correct MSDU aggregation (A-MSDU).
tid | the given TID |
dest | the given destination |
Definition at line 243 of file wifi-mac-queue.cc.
References NS_LOG_DEBUG, NS_LOG_FUNCTION, and TtlExceeded().
Ptr< const WifiMacQueueItem > ns3::WifiMacQueue::PeekFirstAvailable | ( | const Ptr< QosBlockedDestinations > | blockedPackets | ) |
Return first available packet for transmission.
The packet is not removed from queue.
blockedPackets |
Definition at line 264 of file wifi-mac-queue.cc.
References NS_LOG_DEBUG, NS_LOG_FUNCTION, and TtlExceeded().
bool ns3::WifiMacQueue::PushFront | ( | Ptr< WifiMacQueueItem > | item | ) |
Enqueue the given Wifi MAC queue item at the front of the queue.
item | the Wifi MAC queue item to be enqueued at the front |
Definition at line 121 of file wifi-mac-queue.cc.
References DROP_OLDEST, ns3::QueueBase::GetNPackets(), m_dropPolicy, NS_ASSERT_MSG(), NS_LOG_DEBUG, NS_LOG_FUNCTION, ns3::PACKETS, and TtlExceeded().
Ptr< WifiMacQueueItem > ns3::WifiMacQueue::Remove | ( | void | ) |
Remove the packet in the front of the queue.
Definition at line 285 of file wifi-mac-queue.cc.
References NS_LOG_DEBUG, NS_LOG_FUNCTION, and TtlExceeded().
If exists, removes packet from queue and returns true.
Otherwise it takes no effects and return false. Deletion of the packet is performed in linear time (O(n)).
packet | the packet to be removed |
Definition at line 301 of file wifi-mac-queue.cc.
References NS_LOG_DEBUG, NS_LOG_FUNCTION, and TtlExceeded().
void ns3::WifiMacQueue::SetMaxDelay | ( | Time | delay | ) |
Set the maximum delay before the packet is discarded.
delay | the maximum delay |
Definition at line 65 of file wifi-mac-queue.cc.
References m_maxDelay, and NS_LOG_FUNCTION.
Referenced by GetTypeId().
|
private |
Remove the item pointed to by the iterator it if it has been in the queue for too long.
If the item is removed, the iterator is updated to point to the item that followed the erased one.
it | an iterator pointing to the item |
Definition at line 78 of file wifi-mac-queue.cc.
References m_maxDelay, ns3::Simulator::Now(), NS_LOG_DEBUG, and NS_LOG_FUNCTION.
Referenced by Dequeue(), DequeueByAddress(), DequeueByTidAndAddress(), DequeueFirstAvailable(), Enqueue(), GetNBytes(), GetNPackets(), GetNPacketsByAddress(), GetNPacketsByTidAndAddress(), IsEmpty(), PeekByTidAndAddress(), PeekFirstAvailable(), PushFront(), and Remove().
|
private |
Drop behavior of queue.
Definition at line 233 of file wifi-mac-queue.h.
Referenced by Enqueue(), GetTypeId(), and PushFront().
|
private |
Time to live for packets in the queue.
Definition at line 232 of file wifi-mac-queue.h.
Referenced by GetMaxDelay(), Peek(), SetMaxDelay(), and TtlExceeded().
|
private |
redefinition of the log component
Definition at line 235 of file wifi-mac-queue.h.