18#include "ns3/packet-burst.h"
19#include "ns3/packet.h"
20#include "ns3/pointer.h"
21#include "ns3/random-variable-stream.h"
22#include "ns3/simulator.h"
52 void SetRnti(uint16_t rnti)
override;
53 void AddLc(uint8_t lcId,
56 void RemoveLc(uint8_t lcId)
override;
57 void Reset()
override;
59 void SetImsi(uint64_t imsi)
override;
219 .AddTraceSource(
"RaResponseTimeout",
220 "trace fired upon RA response timeout",
222 "ns3::LteUeMac::RaResponseTimeoutTracedCallback")
235 m_rachConfigured(
false),
236 m_waitingForRaResponse(
false)
313 params.pdu->AddPacketTag(
tag);
329 (*it).second = params;
334 std::pair<uint8_t, LteMacSapProvider::ReportBufferStatusParameters>(params.lcid,
361 std::vector<uint32_t> queue(4, 0);
364 uint8_t lcid =
it->first;
368 (((*it).second.txQueueSize == 0) && ((*it).second.retxQueueSize == 0) &&
369 ((*it).second.statusPduSize == 0)),
370 "BSR should not be used for LCID 0");
373 ((*it).second.txQueueSize + (*it).second.retxQueueSize + (*it).second.statusPduSize);
439 <<
", setting T-C-RNTI = " <<
raResponse.m_rnti);
456 "segmentation of Message 3 is not allowed");
488 NS_LOG_INFO(
"RAR timeout, preambleTransMax reached => giving up");
547 <<
", but only PRACH MASK = 0 is supported");
562 "cannot add channel because LCID " << (uint16_t)lcId <<
" is already present");
616 p->RemovePacketTag(
tag);
654 if (((*itBsr).second.statusPduSize > 0) || ((*itBsr).second.retxQueueSize > 0) ||
655 ((*itBsr).second.txQueueSize > 0))
658 if (((*itBsr).second.statusPduSize != 0) &&
671 NS_LOG_ERROR(
this <<
" No active flows for this UL-DCI");
680 NS_LOG_DEBUG(
this <<
" Reduced resource -> send only Status, b ytes "
684 NS_FATAL_ERROR(
"Insufficient Tx Opportunity for sending a status message");
689 <<
" bytes per active LC"
700 (((*itBsr).second.statusPduSize > 0) || ((*itBsr).second.retxQueueSize > 0) ||
701 ((*itBsr).second.txQueueSize > 0)))
705 txOpParams.bytes = (*itBsr).second.statusPduSize;
711 (*it).second.macSapUser->NotifyTxOpportunity(
txOpParams);
713 << (*itBsr).second.statusPduSize <<
" status bytes to LC "
714 << (
uint32_t)(*it).first <<
" statusQueue "
715 << (*itBsr).second.statusPduSize <<
" retxQueue"
716 << (*itBsr).second.retxQueueSize <<
" txQueue"
717 << (*itBsr).second.txQueueSize);
718 (*itBsr).second.statusPduSize = 0;
725 << (
uint32_t)(*it).first <<
" statusQueue "
726 << (*itBsr).second.statusPduSize <<
" retxQueue"
727 << (*itBsr).second.retxQueueSize <<
" txQueue"
728 << (*itBsr).second.txQueueSize);
729 if (((*itBsr).second.statusPduSize > 0) &&
732 txOpParams.bytes = (*itBsr).second.statusPduSize;
738 (*it).second.macSapUser->NotifyTxOpportunity(
txOpParams);
740 NS_LOG_DEBUG(
this <<
" serve STATUS " << (*itBsr).second.statusPduSize);
741 (*itBsr).second.statusPduSize = 0;
748 "Insufficient Tx Opportunity for sending a status message");
753 && (((*itBsr).second.retxQueueSize > 0) ||
754 ((*itBsr).second.txQueueSize > 0)))
756 if ((*itBsr).second.retxQueueSize > 0)
765 (*it).second.macSapUser->NotifyTxOpportunity(
txOpParams);
772 (*itBsr).second.retxQueueSize = 0;
775 else if ((*itBsr).second.txQueueSize > 0)
777 uint16_t lcid = (*it).first;
800 (*it).second.macSapUser->NotifyTxOpportunity(
txOpParams);
807 (*itBsr).second.txQueueSize = 0;
813 if (((*itBsr).second.retxQueueSize > 0) ||
814 ((*itBsr).second.txQueueSize > 0))
821 << (
uint32_t)(*it).first <<
" statusQueue "
822 << (*itBsr).second.statusPduSize <<
" retxQueue"
823 << (*itBsr).second.retxQueueSize <<
" txQueue"
824 << (*itBsr).second.txQueueSize);
834 for (
auto j = pb->Begin();
j != pb->End(); ++
j)
867 NS_LOG_WARN(
this <<
" LteControlMessage not recognized");
883 NS_LOG_INFO(
this <<
" HARQ Proc Id " <<
i <<
" packets buffer expired");
static uint8_t BufferSize2BsrId(uint32_t val)
Convert Buffer size to BSR ID.
void Cancel()
This method is syntactic sugar for the ns3::Simulator::Cancel method.
Service Access Point (SAP) offered by the MAC to the RLC See Femto Forum MAC Scheduler Interface Spec...
Service Access Point (SAP) offered by the MAC to the RLC See Femto Forum MAC Scheduler Interface Spec...
Tag used to define the RNTI and LC id for each MAC packet transmitted.
Service Access Point (SAP) offered by the UE MAC to the UE RRC.
Service Access Point (SAP) offered by the UE MAC to the UE RRC.
virtual void NotifyRandomAccessFailed()=0
Notify the RRC that the MAC Random Access procedure failed.
virtual void NotifyRandomAccessSuccessful()=0
Notify the RRC that the MAC Random Access procedure completed successfully.
virtual void SetTemporaryCellRnti(uint16_t rnti)=0
std::vector< Ptr< PacketBurst > > m_miUlHarqProcessesPacket
Packets under transmission of the UL HARQ processes.
LteUePhySapUser * m_uePhySapUser
UE Phy SAP user.
uint8_t m_componentCarrierId
component carrier Id --> used to address sap
void RaResponseTimeout(bool contention)
RA response timeout function.
LteUeCmacSapProvider::RachConfig m_rachConfig
RACH configuration.
uint32_t m_frameNo
frame number
void DoSubframeIndication(uint32_t frameNo, uint32_t subframeNo)
Forwarded from LteUePhySapUser: trigger the start from a new frame.
void SendReportBufferStatus()
Send report buffer status.
void DoReportBufferStatus(LteMacSapProvider::ReportBufferStatusParameters params)
Report buffers status function.
TracedCallback< uint64_t, bool, uint8_t, uint8_t > m_raResponseTimeoutTrace
The RaResponseTimeout trace source.
LteUePhySapProvider * m_uePhySapProvider
UE Phy SAP provider.
void SetLteUePhySapProvider(LteUePhySapProvider *s)
Set the PHY SAP Provider.
Time m_bsrPeriodicity
BSR periodicity.
void RefreshHarqProcessesPacketBuffer()
Refresh HARQ processes packet buffer function.
EventId m_noRaResponseReceivedEvent
no RA response received event ID
LteUeCmacSapProvider * m_cmacSapProvider
CMAC SAP provider.
uint8_t m_preambleTransmissionCounter
preamble tranamission counter
Ptr< UniformRandomVariable > m_raPreambleUniformVariable
RA preamble random variable.
void SetComponentCarrierId(uint8_t index)
Set the component carried ID.
int64_t AssignStreams(int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model.
void DoConfigureRach(LteUeCmacSapProvider::RachConfig rc)
Configure RACH function.
LteUePhySapUser * GetLteUePhySapUser()
Get the PHY SAP user.
friend class UeMemberLteUePhySapUser
allow UeMemberLteUePhySapUser class friend access
bool m_rachConfigured
is RACH configured?
void DoRemoveLc(uint8_t lcId)
Remove LC function.
void RecvRaResponse(BuildRarListElement_s raResponse)
Receive the RA response function.
void DoReceivePhyPdu(Ptr< Packet > p)
Receive Phy PDU function.
uint8_t m_raPreambleId
RA preamble ID.
void DoNotifyConnectionSuccessful()
Notify MAC about the successful RRC connection establishment.
friend class UeMemberLteUeCmacSapProvider
allow UeMemberLteUeCmacSapProvider class friend access
std::vector< uint8_t > m_miUlHarqProcessesPacketTimer
timer for packet life in the buffer
void DoReceiveLteControlMessage(Ptr< LteControlMessage > msg)
Receive LTE control message function.
static TypeId GetTypeId()
Get the type ID.
void DoTransmitPdu(LteMacSapProvider::TransmitPduParameters params)
Transmit PDU function.
uint32_t m_subframeNo
subframe number
std::map< uint8_t, LteMacSapProvider::ReportBufferStatusParameters > m_ulBsrReceived
BSR received from RLC (the last one)
void DoDispose() override
Destructor implementation.
void DoReset()
Reset function.
LteUeCmacSapUser * m_cmacSapUser
CMAC SAP user.
bool m_freshUlBsr
true when a BSR has been received in the last TTI
LteMacSapProvider * GetLteMacSapProvider()
Get the LTE MAC SAP provider.
void DoStartNonContentionBasedRandomAccessProcedure(uint16_t rnti, uint8_t rapId, uint8_t prachMask)
Start non contention based random access procedure function.
LteUeCmacSapProvider * GetLteUeCmacSapProvider()
Get the LTE CMAC SAP provider.
bool m_waitingForRaResponse
waiting for RA response
void DoAddLc(uint8_t lcId, LteUeCmacSapProvider::LogicalChannelConfig lcConfig, LteMacSapUser *msu)
Add LC function.
uint8_t m_harqProcessId
HARQ process ID.
friend class UeMemberLteMacSapProvider
allow UeMemberLteMacSapProvider class friend access
LteMacSapProvider * m_macSapProvider
MAC SAP provider.
void RandomlySelectAndSendRaPreamble()
Randomly select and send RA preamble function.
void DoStartContentionBasedRandomAccessProcedure()
Start contention based random access procedure function.
uint16_t m_backoffParameter
backoff parameter
void StartWaitingForRaResponse()
Start waiting for RA response function.
void DoSetRnti(uint16_t rnti)
Set RNTI.
void DoSetImsi(uint64_t imsi)
Set IMSI.
void SendRaPreamble(bool contention)
Send RA preamble function.
void SetLteUeCmacSapUser(LteUeCmacSapUser *s)
Set the LTE UE CMAC SAP user.
std::map< uint8_t, LcInfo > m_lcInfoMap
logical channel info map
Service Access Point (SAP) offered by the UE-PHY to the UE-MAC.
virtual void SendLteControlMessage(Ptr< LteControlMessage > msg)=0
Send SendLteControlMessage (PDCCH map, CQI feedbacks) using the ideal control channel.
virtual void SendRachPreamble(uint32_t prachId, uint32_t raRnti)=0
Send a preamble on the PRACH.
virtual void NotifyConnectionSuccessful()=0
Notify PHY about the successful RRC connection establishment.
virtual void SendMacPdu(Ptr< Packet > p)=0
Send the MAC PDU to the channel.
Service Access Point (SAP) offered by the PHY to the MAC.
A base class which provides memory management and object aggregation.
virtual void DoDispose()
Destructor implementation.
Smart pointer class similar to boost::intrusive_ptr.
static EventId Schedule(const Time &delay, FUNC f, Ts &&... args)
Schedule an event to expire after delay.
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.
UeMemberLteMacSapProvider class.
LteUeMac * m_mac
the UE MAC
void TransmitPdu(TransmitPduParameters params) override
send an RLC PDU to the MAC for transmission.
void ReportBufferStatus(ReportBufferStatusParameters params) override
Report the RLC buffer status to the MAC.
UeMemberLteMacSapProvider(LteUeMac *mac)
Constructor.
UeMemberLteUeCmacSapProvider class.
void StartNonContentionBasedRandomAccessProcedure(uint16_t rnti, uint8_t preambleId, uint8_t prachMask) override
tell the MAC to start a non-contention-based random access procedure, e.g., as a consequence of hando...
LteUeMac * m_mac
the UE MAC
void SetImsi(uint64_t imsi) override
A method call by UE RRC to communicate the IMSI to the UE MAC.
void Reset() override
reset the MAC
void StartContentionBasedRandomAccessProcedure() override
tell the MAC to start a contention-based random access procedure, e.g., to perform RRC connection est...
void AddLc(uint8_t lcId, LteUeCmacSapProvider::LogicalChannelConfig lcConfig, LteMacSapUser *msu) override
add a new Logical Channel (LC)
void RemoveLc(uint8_t lcId) override
remove an existing LC
void SetRnti(uint16_t rnti) override
void ConfigureRach(RachConfig rc) override
Configure RACH function.
void NotifyConnectionSuccessful() override
Notify MAC about the successful RRC connection establishment.
UeMemberLteUeCmacSapProvider(LteUeMac *mac)
Constructor.
UeMemberLteUePhySapUser(LteUeMac *mac)
Constructor.
LteUeMac * m_mac
the UE MAC
void ReceiveLteControlMessage(Ptr< LteControlMessage > msg) override
Receive SendLteControlMessage (PDCCH map, CQI feedbacks) using the ideal control channel.
void ReceivePhyPdu(Ptr< Packet > p) override
Receive Phy Pdu function.
void SubframeIndication(uint32_t frameNo, uint32_t subframeNo) override
Trigger the start from a new frame (input from Phy layer)
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
#define NS_LOG_ERROR(msg)
Use NS_LOG to output a message of level LOG_ERROR.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_LOG_WARN(msg)
Use NS_LOG to output a message of level LOG_WARN.
#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 MilliSeconds(uint64_t 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.
See section 4.3.10 buildRARListElement.
Parameters for LteMacSapProvider::ReportBufferStatus.
Parameters for LteMacSapProvider::TransmitPdu.
Parameters for LteMacSapUser::ReceivePdu.
Ptr< Packet > p
the RLC PDU to be received
Parameters for LteMacSapUser::NotifyTxOpportunity.
uint32_t bytes
the number of bytes to transmit
LogicalChannelConfig structure.
uint8_t raResponseWindowSize
RA response window size.
uint8_t preambleTransMax
preamble transmit maximum
uint8_t numberOfRaPreambles
number of RA preambles
LteUeCmacSapProvider::LogicalChannelConfig lcConfig
logical channel config
See section 4.3.14 macCEListElement.
See section 4.3.2 ulDciListElement.