25#include "ns3/packet.h"
26#include "ns3/simulator.h"
27#include "ns3/trace-source-accessor.h"
28#include "ns3/uinteger.h"
42 m_fragmentation(false),
55 m_timeStamp(timeStamp),
56 m_fragmentation(false),
65 uint32_t size = m_packet->GetSize() + m_hdrType.GetSerializedSize();
73 size += m_hdr.GetSerializedSize();
84 .SetGroupName(
"Wimax")
85 .AddAttribute(
"MaxSize",
90 MakeUintegerChecker<uint32_t>())
91 .AddTraceSource(
"Enqueue",
94 "ns3::Packet::TracedCallback")
95 .AddTraceSource(
"Dequeue",
98 "ns3::Packet::TracedCallback")
99 .AddTraceSource(
"Drop",
102 "ns3::Packet::TracedCallback");
115 : m_maxSize(maxSize),
118 m_nrRequestPackets(0)
178 "Can not enqueue more packets: no space left in the queue");
183 NS_LOG_INFO(
"Enqueued Packet IS A Request BW packet");
185 "Can not enqueue more packets: no space left in the queue");
193 NS_LOG_INFO(
"FRAG_DEBUG: Enqueued Packet IS NOT a fragment" << std::endl);
201 packet->AddHeader(element.
m_hdr);
214 NS_LOG_INFO(
"\t Enqueued Packet IS a fragment, add subhdr" << std::endl);
221 "\n\t\t fragmentOffset="
222 << fragmentOffset <<
"\n\t\t packetSize=" << element.
m_packet->
GetSize()
223 <<
"\n\t\t fragmentSize=" << fragmentSize << std::endl);
225 Ptr<Packet> fragment = packet->CreateFragment(fragmentOffset, fragmentSize);
229 fragmentSubhdr.
SetFc(2);
232 NS_LOG_INFO(
"\t FragmentSize=" << fragment->GetSize() << std::endl);
233 fragment->AddHeader(fragmentSubhdr);
249 fragment->AddHeader(element.
m_hdr);
266 NS_LOG_INFO(
"FRAG_DEBUG: Dequeue function" << std::endl);
273 uint32_t maxFragmentSize = availableByte - headerSize;
278 "\n\t\t availableByte="
279 << availableByte <<
"\n\t\t headerSize=" << headerSize
280 <<
"\n\t\t maxFragmentSize=" << maxFragmentSize
282 "\n\t\t fragmentOffset="
283 << fragmentOffset <<
"\n\t\t payloadSize=" << packet->GetSize() << std::endl);
284 Ptr<Packet> fragment = packet->CreateFragment(fragmentOffset, maxFragmentSize);
292 fragmentSubhdr.
SetFc(1);
297 fragmentSubhdr.
SetFc(3);
300 NS_LOG_INFO(
"\t FragmentSize=" << fragment->GetSize() << std::endl);
301 fragment->AddHeader(fragmentSubhdr);
320 fragment->AddHeader(element.
m_hdr);
340 packet->AddHeader(element.
m_hdr);
358 packet->AddHeader(element.
m_hdr);
379 packet->AddHeader(element.
m_hdr);
402 packet->AddHeader(element.
m_hdr);
441 for (std::deque<QueueElement>::const_iterator iter =
m_queue.begin(); iter !=
m_queue.end();
459 for (std::deque<QueueElement>::iterator iter =
m_queue.begin(); iter !=
m_queue.end(); ++iter)
501 for (std::deque<QueueElement>::const_iterator iter =
m_queue.begin(); iter !=
m_queue.end();
514 "\n\t\t m_fragmentation is true "
525 for (std::deque<QueueElement>::const_iterator iter =
m_queue.begin(); iter !=
m_queue.end();
562 for (std::deque<QueueElement>::const_iterator iter =
m_queue.begin(); iter !=
m_queue.end();
596 NS_LOG_INFO(
"\t Required Bytes = " << requiredByte << std::endl);
604 for (std::deque<QueueElement>::iterator iter =
m_queue.begin(); iter !=
m_queue.end(); ++iter)
606 if (iter->m_hdrType.GetType() == packetType)
608 iter->SetFragmentation();
617 for (std::deque<QueueElement>::iterator iter =
m_queue.begin(); iter !=
m_queue.end(); ++iter)
619 if (iter->m_hdrType.GetType() == packetType)
621 iter->SetFragmentNumber();
630 for (std::deque<QueueElement>::iterator iter =
m_queue.begin(); iter !=
m_queue.end(); ++iter)
632 if (iter->m_hdrType.GetType() == packetType)
634 iter->SetFragmentOffset(offset);
655 m_fragmentOffset += offset;
A base class which provides memory management and object aggregation.
uint32_t GetSize() const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
Ptr< Packet > Copy() const
performs a COW copy of the packet.
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.
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Hold an unsigned integer type.
std::deque< QueueElement > PacketQueue
PacketQueue typedef.
Ptr< Packet > Peek(GenericMacHeader &hdr) const
Exclusively for BS.
uint32_t GetFirstPacketPayloadSize(MacHeaderType::HeaderType packetType)
Get first packet payload size of the specified type.
WimaxMacQueue::QueueElement Front(MacHeaderType::HeaderType packetType) const
In the case of non-UGS service flows at the SS side the queue will store both data packets and bandwi...
void Pop(MacHeaderType::HeaderType packetType)
Pop function.
void SetMaxSize(uint32_t maxSize)
set the maximum queue size
TracedCallback< Ptr< const Packet > > m_traceDequeue
dequeue trace callback
uint32_t GetFirstPacketRequiredByte(MacHeaderType::HeaderType packetType)
Get required number of bytes to hold first packet of packetType.
Ptr< Packet > Dequeue(MacHeaderType::HeaderType packetType)
Dequeue a packet of type packetType from the queue.
TracedCallback< Ptr< const Packet > > m_traceEnqueue
enqueue trace callback
uint32_t GetNBytes() const
Get number of bytes in queue.
static TypeId GetTypeId()
Get the type ID.
~WimaxMacQueue() override
uint32_t GetFirstPacketHdrSize(MacHeaderType::HeaderType packetType)
Get first packet header size of the specified type.
void SetFragmentNumber(MacHeaderType::HeaderType packetType)
Set fragment number for first packet of type packetType.
void SetFragmentation(MacHeaderType::HeaderType packetType)
Set fragmentation function.
void SetFragmentOffset(MacHeaderType::HeaderType packetType, uint32_t offset)
Set fragment offset for first packet of type packetType.
bool CheckForFragmentation(MacHeaderType::HeaderType packetType)
Check for fragmentation of the first packet of the specified type.
uint32_t m_nrDataPackets
number data packets
uint32_t m_maxSize
maximum size
bool Enqueue(Ptr< Packet > packet, const MacHeaderType &hdrType, const GenericMacHeader &hdr)
Enqueue a packet.
PacketQueue m_queue
the queue
uint32_t m_nrRequestPackets
number request packets
uint32_t GetQueueLengthWithMACOverhead()
Get queue length considering also the MAC overhead.
bool IsEmpty() const
Check if queue is empty.
const WimaxMacQueue::PacketQueue & GetPacketQueue() const
Get packet queue function.
TracedCallback< Ptr< const Packet > > m_traceDrop
drop trace callback
uint32_t GetMaxSize() const
uint32_t GetSize() const
Get size of queue.
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Ptr< T > Create(Ts &&... args)
Create class instances by constructors with varying numbers of arguments and return them by Ptr.
Time Seconds(double value)
Construct a Time in the indicated unit.
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
uint32_t m_fragmentNumber
incremented when a new fragment is sent
uint32_t GetSize() const
Get size function.
Ptr< Packet > m_packet
packet
uint32_t m_fragmentOffset
tracks the start of the next fragment into the packet
bool m_fragmentation
To manage fragmentation feature, each QueueElement have 3 new fields: m_fragmentation that becomes tr...
void SetFragmentNumber()
Set fragment number.
Time m_timeStamp
timestamp
MacHeaderType m_hdrType
header type
GenericMacHeader m_hdr
header
void SetFragmentOffset(uint32_t offset)
Set fragment offset.
void SetFragmentation()
Set fragmentation.