24 #include <ns3/lte-ue-mac.h>
159 static TypeId tid =
TypeId (
"ns3::SimpleUeComponentCarrierManager")
198 it->second->TransmitPdu (params);
211 for (std::map <uint8_t, std::map<uint8_t, LteMacSapProvider*> >::iterator ccLcMapIt =
m_componentCarrierLcMap.begin();
214 NS_LOG_DEBUG (
"BSR from RLC for CC id = "<< (uint16_t)ccLcMapIt->first);
215 std::map <uint8_t, LteMacSapProvider*>::iterator it = ccLcMapIt->second.find (params.
lcid);
216 if (it !=ccLcMapIt->second.end())
218 it->second->ReportBufferStatus (params);
234 std::map<uint8_t, LteMacSapUser*>::iterator lcidIt =
m_lcAttached.find (txOpParams.
lcid);
236 NS_LOG_DEBUG (
this <<
" lcid = " << (uint32_t) txOpParams.
lcid <<
" layer= "
237 << (uint16_t) txOpParams.
layer <<
" componentCarierId "
241 <<
" with lcid = " << (uint32_t) txOpParams.
lcid <<
" to transmit "<< txOpParams.
bytes<<
" bytes");
242 (*lcidIt).second->NotifyTxOpportunity (txOpParams);
248 std::map<uint8_t, LteMacSapUser*>::iterator lcidIt =
m_lcAttached.find (rxPduParams.
lcid);
252 (*lcidIt).second->ReceivePdu (rxPduParams);
259 std::vector<uint16_t>
263 std::vector<uint16_t> res;
270 std::map<uint8_t, LteMacSapProvider*>::iterator lcToRemove = it->second.find (lcid);
271 if (lcToRemove != it->second.end ())
273 res.insert (res.end (), it->first);
277 NS_ABORT_MSG_IF (res.size () == 0,
"LCID " << lcid <<
" not found in the ComponentCarrierManager map");
288 std::map<uint8_t, LteMacSapUser*>::iterator it =
m_lcAttached.begin ();
304 std::vector<LteUeCcmRrcSapProvider::LcsConfig>
308 std::vector<LteUeCcmRrcSapProvider::LcsConfig> res;
309 std::map<uint8_t, LteMacSapUser*>::iterator it =
m_lcAttached.find (lcId);
311 m_lcAttached.insert (std::pair<uint8_t, LteMacSapUser*> (lcId, msu));
313 std::map <uint8_t, std::map<uint8_t, LteMacSapProvider*> >::iterator ccLcMapIt;
319 res.insert (res.end (), elem);
324 ccLcMapIt->second.insert (std::pair <uint8_t, LteMacSapProvider*> (lcId,
m_macSapProvidersMap.at (ncc)));
328 std::map<uint8_t, LteMacSapProvider*>
empty;
329 std::pair <std::map <uint8_t, std::map<uint8_t, LteMacSapProvider*> >::iterator,
bool>
331 NS_ABORT_MSG_IF (!ret.second,
"element already present, ComponentCarrierId already exist");
333 ccLcMapIt->second.insert (std::pair <uint8_t, LteMacSapProvider*> (lcId,
m_macSapProvidersMap.at (ncc)));
344 std::map<uint8_t, LteMacSapUser*>::iterator it =
m_lcAttached.find (lcid);
349 m_lcAttached.insert (std::pair<uint8_t, LteMacSapUser*> (lcid, msu));
351 std::map <uint8_t, std::map<uint8_t, LteMacSapProvider*> >::iterator ccLcMapIt;
357 ccLcMapIt->second.insert (std::pair <uint8_t, LteMacSapProvider*> (lcid,
m_macSapProvidersMap.at (ncc)));
361 std::map<uint8_t, LteMacSapProvider*>
empty;
362 std::pair <std::map <uint8_t, std::map<uint8_t, LteMacSapProvider*> >::iterator,
bool>
364 NS_ABORT_MSG_IF (!ret.second,
"element already present, ComponentCarrierId already existed");
366 ccLcMapIt->second.insert (std::pair <uint8_t, LteMacSapProvider*> (lcid,
m_macSapProvidersMap.at (ncc)));
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...
The abstract base class of a Component Carrier Manager* for UE that operates using the component carr...
LteUeCcmRrcSapProvider * m_ccmRrcSapProvider
Receive API calls from the UE RRC instance.
std::map< uint8_t, LteMacSapUser * > m_lcAttached
Map of pointers to SAP interfaces of the RLC instance of the flows of this UE.
std::map< uint8_t, std::map< uint8_t, LteMacSapProvider * > > m_componentCarrierLcMap
Flow configuration per flow Id of this UE.
std::map< uint8_t, LteMacSapProvider * > m_macSapProvidersMap
Map of pointers to SAP to interfaces of the MAC instance if the flows of this UE.
uint8_t m_noOfComponentCarriers
The number of component carriers that this UE can support.
virtual void DoInitialize(void)
Initialize() implementation.
SimpleUeCcmMacSapProvider class.
virtual void TransmitPdu(LteMacSapProvider::TransmitPduParameters params)
send an RLC PDU to the MAC for transmission.
SimpleUeCcmMacSapProvider(SimpleUeComponentCarrierManager *mac)
Constructor.
virtual void ReportBufferStatus(LteMacSapProvider::ReportBufferStatusParameters params)
Report the RLC buffer status to the MAC.
SimpleUeComponentCarrierManager * m_mac
the component carrier manager
SimpleUeCcmMacSapUser class.
virtual void NotifyHarqDeliveryFailure()
Called by the MAC to notify the RLC that an HARQ process related to this RLC instance has failed.
SimpleUeCcmMacSapUser(SimpleUeComponentCarrierManager *mac)
Constructor.
virtual void NotifyTxOpportunity(LteMacSapUser::TxOpportunityParameters txOpParams)
Called by the MAC to notify the RLC that the scheduler granted a transmission opportunity to this RLC...
SimpleUeComponentCarrierManager * m_mac
the component carrier manager
virtual void ReceivePdu(LteMacSapUser::ReceivePduParameters rxPduParams)
Called by the MAC to notify the RLC of the reception of a new PDU.
Component carrier manager implementation which simply does nothing.
std::vector< uint16_t > DoRemoveLc(uint8_t lcid)
Remove LC function.
virtual void DoReportBufferStatus(LteMacSapProvider::ReportBufferStatusParameters params)
Report buffer status function.
LteMacSapUser * m_ccmMacSapUser
Interface to the UE RLC instance.
friend class SimpleUeCcmMacSapProvider
allow SimpleUeCcmMacSapProvider class friend access
void DoReportUeMeas(uint16_t rnti, LteRrcSap::MeasResults measResults)
Report Ue Measure function.
friend class SimpleUeCcmMacSapUser
allow SimpleUeCcmMacSapUser class friend access
static TypeId GetTypeId()
Get the type ID.
void DoTransmitPdu(LteMacSapProvider::TransmitPduParameters params)
Transmit PDU function.
virtual ~SimpleUeComponentCarrierManager()
void DoReset()
Reset LC map.
void DoNotifyHarqDeliveryFailure()
Notify HARQ deliver failure.
virtual void DoDispose()
Destructor implementation.
friend class MemberLteUeCcmRrcSapProvider< SimpleUeComponentCarrierManager >
let the forwarder class access the protected and private members
void DoNotifyTxOpportunity(LteMacSapUser::TxOpportunityParameters txOpParams)
Notify TX opportunity function.
virtual LteMacSapProvider * GetLteMacSapProvider()
Returns the MAC sap provider interface that if forwarding calls to the instance of the LteUeComponent...
virtual std::vector< LteUeCcmRrcSapProvider::LcsConfig > DoAddLc(uint8_t lcId, LteUeCmacSapProvider::LogicalChannelConfig lcConfig, LteMacSapUser *msu)
Add LC function.
virtual void DoInitialize()
Initialize() implementation.
SimpleUeComponentCarrierManager()
Creates a No-op CCS algorithm instance.
LteMacSapProvider * m_ccmMacSapProvider
Receive API calls from the UE RLC instance.
void DoReceivePdu(LteMacSapUser::ReceivePduParameters rxPduParams)
Receive PDU function.
virtual LteMacSapUser * DoConfigureSignalBearer(uint8_t lcId, LteUeCmacSapProvider::LogicalChannelConfig lcConfig, LteMacSapUser *msu)
Configure signal bearer function.
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
make Callback use a separate empty type
#define NS_ABORT_MSG_IF(cond, msg)
Abnormal program termination if a condition is true, with a message.
#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_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#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.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Parameters for LteMacSapProvider::ReportBufferStatus.
uint8_t lcid
the logical channel id corresponding to the sending RLC instance
Parameters for LteMacSapProvider::TransmitPdu.
uint8_t componentCarrierId
the component carrier id corresponding to the sending Mac istance
Parameters for LteMacSapUser::ReceivePdu.
uint8_t lcid
the logical channel id
Parameters for LteMacSapUser::NotifyTxOpportunity.
uint16_t rnti
the C-RNTI identifying the UE
uint32_t bytes
the number of bytes to transmit
uint8_t componentCarrierId
the component carrier id
uint8_t layer
the layer of transmission (MIMO)
uint8_t lcid
the logical channel id
uint8_t componentCarrierId
component carrier ID
LteUeCmacSapProvider::LogicalChannelConfig lcConfig
logical channel config
LogicalChannelConfig structure.