30 #include <ns3/uinteger.h>
47 m_servingCellThreshold (30),
48 m_neighbourCellOffset (1),
49 m_handoverManagementSapUser (0)
65 static TypeId tid =
TypeId (
"ns3::A2A4RsrqHandoverAlgorithm")
67 .AddConstructor<A2A4RsrqHandoverAlgorithm> ()
68 .AddAttribute (
"ServingCellThreshold",
69 "If the RSRQ of the serving cell is worse than this "
70 "threshold, neighbour cells are consider for handover. "
71 "Expressed in quantized range of [0..34] as per Section "
72 "9.1.7 of 3GPP TS 36.133.",
75 MakeUintegerChecker<uint8_t> (0, 34))
76 .AddAttribute (
"NeighbourCellOffset",
77 "Minimum offset between the serving and the best neighbour "
78 "cell to trigger the handover. Expressed in quantized "
79 "range of [0..34] as per Section 9.1.7 of 3GPP TS 36.133.",
82 MakeUintegerChecker<uint8_t> ())
109 NS_LOG_LOGIC (
this <<
" requesting Event A2 measurements"
119 NS_LOG_LOGIC (
this <<
" requesting Event A4 measurements"
120 <<
" (threshold=0)");
150 "Invalid UE measurement report");
158 for (std::list <LteRrcSap::MeasResultEutra>::iterator it = measResults.
measResultListEutra.begin ();
163 "RSRQ measurement is missing from cellId " << it->physCellId);
169 NS_LOG_WARN (
this <<
" Event A4 received without measurement results from neighbouring cells");
182 uint8_t servingCellRsrq)
186 MeasurementTable_t::iterator it1;
191 NS_LOG_WARN (
"Skipping handover evaluation for RNTI " << rnti <<
" because neighbour cells information is not found");
196 NS_LOG_LOGIC (
"Number of neighbour cells = " << it1->second.size ());
197 uint16_t bestNeighbourCellId = 0;
198 uint8_t bestNeighbourRsrq = 0;
199 MeasurementRow_t::iterator it2;
200 for (it2 = it1->second.begin (); it2 != it1->second.end (); ++it2)
202 if ((it2->second->m_rsrq > bestNeighbourRsrq)
205 bestNeighbourCellId = it2->first;
206 bestNeighbourRsrq = it2->second->m_rsrq;
211 if (bestNeighbourCellId > 0)
213 NS_LOG_LOGIC (
"Best neighbour cellId " << bestNeighbourCellId);
217 NS_LOG_LOGIC (
"Trigger Handover to cellId " << bestNeighbourCellId);
218 NS_LOG_LOGIC (
"target cell RSRQ " << (uint16_t) bestNeighbourRsrq);
219 NS_LOG_LOGIC (
"serving cell RSRQ " << (uint16_t) servingCellRsrq);
223 bestNeighbourCellId);
253 MeasurementTable_t::iterator it1;
260 std::pair<MeasurementTable_t::iterator, bool> ret;
268 std::map<uint16_t, Ptr<UeMeasure> >::iterator it2;
269 it2 = it1->second.find (cellId);
271 if (it2 != it1->second.end ())
273 neighbourCellMeasures = it2->second;
274 neighbourCellMeasures->m_cellId = cellId;
275 neighbourCellMeasures->m_rsrp = 0;
276 neighbourCellMeasures->m_rsrq = rsrq;
281 neighbourCellMeasures = Create<UeMeasure> ();
282 neighbourCellMeasures->m_cellId = cellId;
283 neighbourCellMeasures->m_rsrp = 0;
284 neighbourCellMeasures->m_rsrq = rsrq;
285 it1->second[cellId] = neighbourCellMeasures;
Smart pointer class similar to boost::intrusive_ptr.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
The abstract base class of a handover algorithm that operates using the Handover Management SAP inter...
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
MeasurementTable_t m_neighbourCellMeasures
Table of measurement reports from all UEs.
virtual void SetLteHandoverManagementSapUser(LteHandoverManagementSapUser *s)
Set the "user" part of the Handover Management SAP interface that this handover algorithm instance wi...
LteHandoverManagementSapProvider * m_handoverManagementSapProvider
Receive API calls from the eNodeB RRC instance.
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.
enum ns3::LteRrcSap::ReportConfigEutra::@72 eventId
Choice of E-UTRA event triggered reporting criteria.
virtual void TriggerHandover(uint16_t rnti, uint16_t targetCellId)=0
Instruct the eNodeB RRC entity to prepare a handover.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
A2A4RsrqHandoverAlgorithm()
Creates an A2-A4-RSRQ handover algorithm instance.
enum ns3::LteRrcSap::ReportConfigEutra::@76 reportInterval
Indicates the interval between periodical reports.
Event A2: Serving becomes worse than absolute threshold.
virtual ~A2A4RsrqHandoverAlgorithm()
RSRQ is used for the threshold.
uint8_t m_neighbourCellOffset
The NeighbourCellOffset attribute.
bool IsValidNeighbour(uint16_t cellId)
Determines if a neighbour cell is a valid destination for handover.
void DoReportUeMeas(uint16_t rnti, LteRrcSap::MeasResults measResults)
Implementation of LteHandoverManagementSapProvider::ReportUeMeas.
Reference Signal Received Quality.
static TypeId GetTypeId()
LteHandoverManagementSapUser * m_handoverManagementSapUser
Interface to the eNodeB RRC instance.
virtual void DoInitialize()
Initialize() implementation.
Hold an unsigned integer type.
Event A4: Neighbour becomes better than absolute threshold.
Template for the implementation of the LteHandoverManagementSapProvider as a member of an owner class...
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
uint8_t m_servingCellThreshold
The ServingCellThreshold attribute.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
enum ns3::LteRrcSap::ThresholdEutra::@70 choice
bool haveMeasResultNeighCells
uint8_t range
Value range used in RSRP/RSRQ threshold.
uint8_t m_a2MeasId
The expected measurement identity for A2 measurements.
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
enum ns3::LteRrcSap::ReportConfigEutra::@74 triggerQuantity
The quantities used to evaluate the triggering condition for the event, see 3GPP TS 36...
#define NS_LOG_WARN(msg)
Use NS_LOG to output a message of level LOG_WARN.
Service Access Point (SAP) offered by the handover algorithm instance to the eNodeB RRC instance...
void UpdateNeighbourMeasurements(uint16_t rnti, uint16_t cellId, uint8_t rsrq)
Called when Event A4 is reported, then update the measurements table.
virtual uint8_t AddUeMeasReportConfigForHandover(LteRrcSap::ReportConfigEutra reportConfig)=0
Request a certain reporting configuration to be fulfilled by the UEs attached to the eNodeB entity...
std::map< uint16_t, Ptr< UeMeasure > > MeasurementRow_t
Measurements reported by a UE for several cells.
void EvaluateHandover(uint16_t rnti, uint8_t servingCellRsrq)
Called when Event A2 is detected, then trigger a handover if needed.
uint8_t m_a4MeasId
The expected measurement identity for A4 measurements.
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
virtual void DoDispose()
Destructor implementation.
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)
Initialize() implementation.