24 #include <ns3/config.h>
25 #include <ns3/lte-enb-rrc.h>
26 #include <ns3/lte-ue-rrc.h>
27 #include <ns3/lte-enb-net-device.h>
28 #include <ns3/lte-ue-net-device.h>
37 : m_dlOutputFilename (
""),
38 m_ulOutputFilename (
"")
148 std::string ueMapPath = path.substr (0, path.find (
"/DataRadioBearerMap"));
151 if (match.
GetN () != 0)
172 std::string ueRlcPath = path.substr (0, path.find (
"/LteUePhy"));
173 ueRlcPath +=
"/LteUeRrc";
176 if (match.
GetN () != 0)
199 if (match.
GetN () != 0)
220 std::string enbNetDevicePath = path.substr (0, path.find (
"/LteEnbRrc"));
222 if (match.
GetN () != 0)
230 NS_FATAL_ERROR (
"Lookup " << enbNetDevicePath <<
" got no matches");
241 std::ostringstream oss;
242 std::string p = path.substr (0, path.find (
"/LteEnbMac"));
244 p +=
"/LteEnbRrc/UeMap/" + oss.str ();
246 NS_LOG_LOGIC (
"FindImsiFromEnbMac: " << path <<
", " << rnti <<
", " << imsi);
255 std::ostringstream oss;
256 std::string p = path.substr (0, path.find (
"/LteEnbMac"));
258 p +=
"/LteEnbRrc/UeMap/" + oss.str ();
260 NS_LOG_LOGIC (
"FindCellIdFromEnbMac: " << path <<
", "<< rnti <<
", " << cellId);
270 if (path.find (
"/DlPhyTransmission"))
273 std::ostringstream oss;
274 std::string p = path.substr (0, path.find (
"/LteEnbPhy"));
276 p +=
"/LteEnbRrc/UeMap/" + oss.str ();
278 NS_LOG_LOGIC (
"FindImsiForEnb[Tx]: " << path <<
", " << rnti <<
", " << imsi);
280 else if (path.find (
"/UlPhyReception"))
282 std::string p = path.substr (0, path.find (
"/LteUePhy"));
284 NS_LOG_LOGIC (
"FindImsiForEnb[Rx]: " << path <<
", " << rnti <<
", " << imsi);
295 if (path.find (
"/UlPhyTransmission"))
297 std::string p = path.substr (0, path.find (
"/LteUePhy"));
299 NS_LOG_LOGIC (
"FindImsiForUe[Tx]: " << path <<
", " << rnti <<
", " << imsi);
301 else if (path.find (
"/DlPhyReception"))
304 std::ostringstream oss;
305 std::string p = path.substr (0, path.find (
"/LteEnbPhy"));
307 p +=
"/LteEnbRrc/UeMap/" + oss.str ();
309 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
std::size_t GetN(void) 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.
std::string GetDlOutputFilename(void)
Get the name of the file where the downlink statistics will be stored.
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.
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.
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.
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.
virtual ~LteStatsCalculator()
Destructor.
std::string GetUlOutputFilename(void)
Get the name of the file where the uplink 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 TypeId GetTypeId(void)
Register this type.
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.
Ptr< T > GetObject(void) const
Get a pointer to the requested aggregated Object.
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.
uint64_t GetImsi(void) const
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.