11#include <ns3/config.h>
13#include <ns3/lte-enb-net-device.h>
14#include <ns3/lte-enb-rrc.h>
15#include <ns3/lte-ue-net-device.h>
16#include <ns3/lte-ue-rrc.h>
26 : m_dlOutputFilename(
""),
27 m_ulOutputFilename(
"")
117 std::string ueMapPath = path.substr(0, path.find(
"/DataRadioBearerMap"));
120 if (match.
GetN() != 0)
125 return ueInfo->GetObject<
UeManager>()->GetImsi();
142 std::string ueRlcPath = path.substr(0, path.find(
"/LteUePhy"));
143 ueRlcPath +=
"/LteUeRrc";
146 if (match.
GetN() != 0)
149 return ueRrc->GetObject<
LteUeRrc>()->GetImsi();
168 if (match.
GetN() != 0)
190 std::string enbNetDevicePath = path.substr(0, path.find(
"/LteEnbRrc"));
192 if (match.
GetN() != 0)
201 NS_FATAL_ERROR(
"Lookup " << enbNetDevicePath <<
" got no matches");
212 std::ostringstream oss;
213 std::string p = path.substr(0, path.find(
"/LteEnbMac"));
215 p +=
"/LteEnbRrc/UeMap/" + oss.str();
217 NS_LOG_LOGIC(
"FindImsiFromEnbMac: " << path <<
", " << rnti <<
", " << imsi);
226 std::ostringstream oss;
227 std::string p = path.substr(0, path.find(
"/LteEnbMac"));
229 p +=
"/LteEnbRrc/UeMap/" + oss.str();
231 NS_LOG_LOGIC(
"FindCellIdFromEnbMac: " << path <<
", " << rnti <<
", " << cellId);
240 if (path.find(
"/DlPhyTransmission"))
243 std::ostringstream oss;
244 std::string p = path.substr(0, path.find(
"/LteEnbPhy"));
246 p +=
"/LteEnbRrc/UeMap/" + oss.str();
248 NS_LOG_LOGIC(
"FindImsiForEnb[Tx]: " << path <<
", " << rnti <<
", " << imsi);
250 else if (path.find(
"/UlPhyReception"))
252 std::string p = path.substr(0, path.find(
"/LteUePhy"));
254 NS_LOG_LOGIC(
"FindImsiForEnb[Rx]: " << path <<
", " << rnti <<
", " << imsi);
264 if (path.find(
"/UlPhyTransmission"))
266 std::string p = path.substr(0, path.find(
"/LteUePhy"));
268 NS_LOG_LOGIC(
"FindImsiForUe[Tx]: " << path <<
", " << rnti <<
", " << imsi);
270 else if (path.find(
"/DlPhyReception"))
273 std::ostringstream oss;
274 std::string p = path.substr(0, path.find(
"/LteEnbPhy"));
276 p +=
"/LteEnbRrc/UeMap/" + oss.str();
278 NS_LOG_LOGIC(
"FindImsiForUe[Rx]: " << path <<
", " << rnti <<
", " << imsi);
hold a set of objects which match a specific search string.
Ptr< Object > Get(std::size_t i) const
The eNodeB device implementation.
uint16_t GetCellId() const
Base class for ***StatsCalculator classes.
void SetImsiPath(std::string path, uint64_t imsi)
Stores the (path, imsi) pairs in a map.
void SetCellIdPath(std::string path, uint16_t cellId)
Stores the (path, cellId) pairs in a map.
bool ExistsCellIdPath(std::string path)
Checks if there is an already stored cell id for the given path.
std::string m_ulOutputFilename
Name of the file where the uplink results will be saved.
std::string GetUlOutputFilename()
Get the name of the file where the uplink statistics will be stored.
void SetDlOutputFilename(std::string outputFilename)
Set the name of the file where the downlink statistics will be stored.
static uint64_t FindImsiFromEnbRlcPath(std::string path)
Retrieves IMSI from Enb RLC path in the attribute system.
static uint64_t FindImsiForUe(std::string path, uint16_t rnti)
Retrieves IMSI from path for Ue in the attribute system.
uint64_t GetImsiPath(std::string path)
Retrieves the imsi information for the given path.
~LteStatsCalculator() override
Destructor.
static uint64_t FindImsiFromUePhy(std::string path)
Retrieves IMSI from Ue PHY path in the attribute system.
std::map< std::string, uint64_t > m_pathImsiMap
List of IMSI by path in the attribute system.
void SetUlOutputFilename(std::string outputFilename)
Set the name of the file where the uplink statistics will be stored.
static TypeId GetTypeId()
Register this type.
std::map< std::string, uint16_t > m_pathCellIdMap
List of CellId by path in the attribute system.
LteStatsCalculator()
Constructor.
bool ExistsImsiPath(std::string path)
Checks if there is an already stored IMSI for the given path.
static uint16_t FindCellIdFromEnbRlcPath(std::string path)
Retrieves CellId from Enb RLC path in the attribute system.
std::string GetDlOutputFilename()
Get the name of the file where the downlink statistics will be stored.
static uint64_t FindImsiFromLteNetDevice(std::string path)
Retrieves IMSI from LteNetDevice path in the attribute system.
static uint16_t FindCellIdFromEnbMac(std::string path, uint16_t rnti)
Retrieves CellId from Enb MAC path in the attribute system.
uint16_t GetCellIdPath(std::string path)
Retrieves the cell id information for the given path.
std::string m_dlOutputFilename
Name of the file where the downlink results will be saved.
static uint64_t FindImsiFromEnbMac(std::string path, uint16_t rnti)
Retrieves IMSI from Enb MAC path in the attribute system.
static uint64_t FindImsiForEnb(std::string path, uint16_t rnti)
Retrieves IMSI from path for Enb in the attribute system.
The LteUeNetDevice class implements the UE net device.
uint64_t GetImsi() const
Get the IMSI.
A base class which provides memory management and object aggregation.
Smart pointer class similar to boost::intrusive_ptr.
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Manages all the radio bearer information possessed by the ENB RRC for a single UE.
MatchContainer LookupMatches(std::string path)
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#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_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.