24#include "ns3/mac48-address.h"
25#include "ns3/simulator.h"
44 "pos iterator does not point to the correct container queue");
47 it->second += item->GetSize();
49 return m_queues[queueId].emplace(pos, item);
63 NS_ASSERT(it->second >= pos->mpdu->GetSize());
64 it->second -= pos->mpdu->GetSize();
105 if (
auto it =
m_queues.find(queueId); it ==
m_queues.end() || it->second.empty())
112std::pair<WifiMacQueueContainer::iterator, WifiMacQueueContainer::iterator>
118std::pair<WifiMacQueueContainer::iterator, WifiMacQueueContainer::iterator>
121 iterator firstExpiredIt = queue.begin();
122 iterator lastExpiredIt = firstExpiredIt;
125 while (lastExpiredIt != queue.end() && lastExpiredIt->expiryTime <= now)
127 lastExpiredIt->expired =
true;
130 lastExpiredIt->deleter(lastExpiredIt->mpdu);
135 NS_ASSERT(it->second >= lastExpiredIt->mpdu->GetSize());
136 it->second -= lastExpiredIt->mpdu->GetSize();
141 if (lastExpiredIt != firstExpiredIt)
151std::pair<WifiMacQueueContainer::iterator, WifiMacQueueContainer::iterator>
163 firstExpiredIt = firstIt;
169std::pair<WifiMacQueueContainer::iterator, WifiMacQueueContainer::iterator>
191 std::string s(buffer, buffer + 8);
192 return std::hash<std::string>{}(s);
Smart pointer class similar to boost::intrusive_ptr.
static Time Now()
Return the current simulation virtual time.
Simulation virtual time values and global simulation resolution.
const ContainerQueue & GetQueue(const WifiContainerQueueId &queueId) const
Get a const reference to the container queue identified by the given QueueId.
void clear()
Erase all elements from the container.
static WifiContainerQueueId GetQueueId(Ptr< const WifiMpdu > mpdu)
Return the QueueId identifying the container queue in which the given MPDU is (or is to be) enqueued.
ContainerQueue::iterator iterator
iterator over elements in a container queue
std::unordered_map< WifiContainerQueueId, uint32_t > m_nBytesPerQueue
size in bytes of the container queues
uint32_t GetNBytes(const WifiContainerQueueId &queueId) const
Get the total size of the MPDUs stored in the queue identified by the given QueueId.
Ptr< WifiMpdu > GetItem(const const_iterator it) const
Return the WifiMpdu included in the element pointed to by the given iterator.
std::pair< iterator, iterator > ExtractAllExpiredMpdus() const
Transfer MPDUs with expired lifetime in all the container queues to the container queue storing MPDUs...
iterator insert(const_iterator pos, Ptr< WifiMpdu > item)
Insert the given item at the specified location in the container.
std::unordered_map< WifiContainerQueueId, ContainerQueue > m_queues
the container queues
std::list< WifiMacQueueElem > ContainerQueue
Type of a queue held by the container.
iterator erase(const_iterator pos)
Erase the specified elements from the container.
std::pair< iterator, iterator > GetAllExpiredMpdus() const
Get the range [first, last) of iterators pointing to all the MPDUs queued in the container queue stor...
ContainerQueue::const_iterator const_iterator
const iterator over elements in a container queue
ContainerQueue m_expiredQueue
queue storing MPDUs with expired lifetime
std::pair< iterator, iterator > ExtractExpiredMpdus(const WifiContainerQueueId &queueId) const
Transfer MPDUs with expired lifetime in the container queue identified by the given QueueId to the co...
std::pair< iterator, iterator > DoExtractExpiredMpdus(ContainerQueue &queue) const
Transfer MPDUs with expired lifetime in the given container queue to the container queue storing MPDU...
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
#define NS_ABORT_MSG_UNLESS(cond, msg)
Abnormal program termination if a condition is false, with a message.
#define NS_ABORT_IF(cond)
Abnormal program termination if a condition is true.
@ AC_UNDEF
Total number of ACs.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::tuple< WifiContainerQueueType, Mac48Address, uint8_t > WifiContainerQueueId
Tuple (queue type, Address, TID) identifying a container queue.
@ WIFI_QOSDATA_UNICAST_QUEUE
@ WIFI_QOSDATA_BROADCAST_QUEUE
#define WIFI_TID_UNDEFINED
std::size_t operator()(ns3::WifiContainerQueueId queueId) const
The functor.