30 #include <ns3/uinteger.h>
49 m_servingCellThreshold (30),
50 m_neighbourCellOffset (1),
51 m_handoverManagementSapUser (0)
67 static TypeId tid =
TypeId (
"ns3::A2A4RsrqHandoverAlgorithm")
69 .AddConstructor<A2A4RsrqHandoverAlgorithm> ()
70 .AddAttribute (
"ServingCellThreshold",
71 "If the RSRQ of the serving cell is worse than this threshold, "
72 "neighbour cells are consider for handover",
75 MakeUintegerChecker<uint8_t> (0, 34))
76 .AddAttribute (
"NeighbourCellOffset",
77 "Minimum offset between serving and best neighbour cell to trigger the Handover",
80 MakeUintegerChecker<uint8_t> ())
107 NS_LOG_LOGIC (
this <<
" requesting Event A2 measurements"
117 NS_LOG_LOGIC (
this <<
" requesting Event A4 measurements"
118 <<
" (threshold=0)");
148 "Invalid UE measurement report");
156 for (std::list <LteRrcSap::MeasResultEutra>::iterator it = measResults.
measResultListEutra.begin ();
161 "RSRQ measurement is missing from cellId " << it->physCellId);
167 NS_LOG_WARN (
this <<
" Event A4 received without measurement results from neighbouring cells");
180 uint8_t servingCellRsrq)
184 MeasurementTable_t::iterator it1;
189 NS_LOG_WARN (
"Skipping handover evaluation for RNTI " << rnti <<
" because neighbour cells information is not found");
194 NS_LOG_LOGIC (
"Number of neighbour cells = " << it1->second.size ());
195 uint16_t bestNeighbourCellId = 0;
196 uint8_t bestNeighbourRsrq = 0;
197 MeasurementRow_t::iterator it2;
198 for (it2 = it1->second.begin (); it2 != it1->second.end (); ++it2)
200 if ((it2->second->m_rsrq > bestNeighbourRsrq)
203 bestNeighbourCellId = it2->first;
204 bestNeighbourRsrq = it2->second->m_rsrq;
209 if (bestNeighbourCellId > 0)
211 NS_LOG_LOGIC (
"Best neighbour cellId " << bestNeighbourCellId);
215 NS_LOG_LOGIC (
"Trigger Handover to cellId " << bestNeighbourCellId);
216 NS_LOG_LOGIC (
"target cell RSRQ " << (uint16_t) bestNeighbourRsrq);
217 NS_LOG_LOGIC (
"serving cell RSRQ " << (uint16_t) servingCellRsrq);
221 bestNeighbourCellId);
251 MeasurementTable_t::iterator it1;
258 std::pair<MeasurementTable_t::iterator, bool> ret;
266 std::map<uint16_t, Ptr<UeMeasure> >::iterator it2;
267 it2 = it1->second.find (cellId);
269 if (it2 != it1->second.end ())
271 neighbourCellMeasures = it2->second;
272 neighbourCellMeasures->m_cellId = cellId;
273 neighbourCellMeasures->m_rsrp = 0;
274 neighbourCellMeasures->m_rsrq = rsrq;
279 neighbourCellMeasures = Create<UeMeasure> ();
280 neighbourCellMeasures->m_cellId = cellId;
281 neighbourCellMeasures->m_rsrp = 0;
282 neighbourCellMeasures->m_rsrq = rsrq;
283 it1->second[cellId] = neighbourCellMeasures;
smart pointer class similar to boost::intrusive_ptr
#define NS_LOG_FUNCTION(parameters)
The abstract base class of a handover algorithm that operates using the Handover Management SAP inter...
MeasurementTable_t m_neighbourCellMeasures
virtual void SetLteHandoverManagementSapUser(LteHandoverManagementSapUser *s)
Set the "user" part of the Handover Management SAP interface that this handover algorithm instance wi...
LteHandoverManagementSapProvider * m_handoverManagementSapProvider
enum ns3::LteRrcSap::ReportConfigEutra::@70 eventId
Choice of E-UTRA event triggered reporting criteria.
std::list< MeasResultEutra > measResultListEutra
ThresholdEutra threshold1
Threshold for event A1, A2, A4, and A5.
Specifies criteria for triggering of an E-UTRA measurement reporting event.
virtual LteHandoverManagementSapProvider * GetLteHandoverManagementSapProvider()
Export the "provider" part of the Handover Management SAP interface.
virtual void TriggerHandover(uint16_t rnti, uint16_t targetCellId)=0
Instruct the eNodeB RRC entity to prepare a handover.
#define NS_ASSERT(condition)
NS_OBJECT_ENSURE_REGISTERED(NullMessageSimulatorImpl)
A2A4RsrqHandoverAlgorithm()
Creates an A2-A4-RSRQ handover algorithm instance.
virtual ~A2A4RsrqHandoverAlgorithm()
NS_LOG_COMPONENT_DEFINE("A2A4RsrqHandoverAlgorithm")
uint8_t m_neighbourCellOffset
bool IsValidNeighbour(uint16_t cellId)
void DoReportUeMeas(uint16_t rnti, LteRrcSap::MeasResults measResults)
Implementation of LteHandoverManagementSapProvider::ReportUeMeas.
static TypeId GetTypeId()
LteHandoverManagementSapUser * m_handoverManagementSapUser
virtual void DoInitialize()
This method is called only once by Object::Initialize.
Hold an unsigned integer type.
Template for the implementation of the LteHandoverManagementSapProvider as a member of an owner class...
#define NS_LOG_LOGIC(msg)
uint8_t m_servingCellThreshold
Event A2: Serving becomes worse than absolute threshold.
bool haveMeasResultNeighCells
uint8_t range
Value range used in RSRP/RSRQ threshold.
Reference Signal Received Quality.
enum ns3::LteRrcSap::ReportConfigEutra::@72 triggerQuantity
The quantities used to evaluate the triggering condition for the event, see 3GPP TS 36...
#define NS_ASSERT_MSG(condition, message)
Service Access Point (SAP) offered by the handover algorithm instance to the eNodeB RRC instance...
enum ns3::LteRrcSap::ThresholdEutra::@68 choice
void UpdateNeighbourMeasurements(uint16_t rnti, uint16_t cellId, uint8_t rsrq)
enum ns3::LteRrcSap::ReportConfigEutra::@74 reportInterval
Indicates the interval between periodical reports.
virtual uint8_t AddUeMeasReportConfigForHandover(LteRrcSap::ReportConfigEutra reportConfig)=0
Request a certain reporting configuration to be fulfilled by the UEs attached to the eNodeB entity...
Event A4: Neighbour becomes better than absolute threshold.
std::map< uint16_t, Ptr< UeMeasure > > MeasurementRow_t
void EvaluateHandover(uint16_t rnti, uint8_t servingCellRsrq)
virtual void DoDispose()
This method is called by Object::Dispose or by the object's destructor, whichever comes first...
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
Service Access Point (SAP) offered by the eNodeB RRC instance to the handover algorithm instance...
virtual void DoInitialize(void)
This method is called only once by Object::Initialize.
RSRQ is used for the threshold.