24 #include "ns3/string.h"
25 #include <ns3/simulator.h>
35 : m_dlTxFirstWrite (true),
36 m_ulTxFirstWrite (true)
52 .AddConstructor<PhyTxStatsCalculator> ()
53 .AddAttribute (
"DlTxOutputFilename",
54 "Name of the file where the downlink results will be saved.",
58 .AddAttribute (
"UlTxOutputFilename",
59 "Name of the file where the uplink results will be saved.",
97 std::ofstream outFile;
101 if (!outFile.is_open ())
108 outFile <<
"% time\tcellId\tIMSI\tRNTI\tlayer\tmcs\tsize\trv\tndi";
109 outFile << std::endl;
114 if (!outFile.is_open ())
123 outFile << (uint32_t) params.
m_cellId <<
"\t";
124 outFile << params.
m_imsi <<
"\t";
125 outFile << params.
m_rnti <<
"\t";
127 outFile << (uint32_t) params.
m_layer <<
"\t";
128 outFile << (uint32_t) params.
m_mcs <<
"\t";
129 outFile << params.
m_size <<
"\t";
130 outFile << (uint32_t) params.
m_rv <<
"\t";
131 outFile << (uint32_t) params.
m_ndi << std::endl;
141 std::ofstream outFile;
145 if (!outFile.is_open ())
152 outFile <<
"% time\tcellId\tIMSI\tRNTI\tlayer\tmcs\tsize\trv\tndi";
153 outFile << std::endl;
158 if (!outFile.is_open ())
167 outFile << (uint32_t) params.
m_cellId <<
"\t";
168 outFile << params.
m_imsi <<
"\t";
169 outFile << params.
m_rnti <<
"\t";
171 outFile << (uint32_t) params.
m_layer <<
"\t";
172 outFile << (uint32_t) params.
m_mcs <<
"\t";
173 outFile << params.
m_size <<
"\t";
174 outFile << (uint32_t) params.
m_rv <<
"\t";
175 outFile << (uint32_t) params.
m_ndi << std::endl;
185 std::ostringstream pathAndRnti;
186 pathAndRnti << path <<
"/" << params.
m_rnti;
187 if (phyTxStats->ExistsImsiPath (pathAndRnti.str ()) ==
true)
189 imsi = phyTxStats->GetImsiPath (pathAndRnti.str ());
194 phyTxStats->SetImsiPath (pathAndRnti.str (), imsi);
198 phyTxStats->DlPhyTransmission (params);
207 std::ostringstream pathAndRnti;
208 pathAndRnti << path <<
"/" << params.
m_rnti;
209 if (phyTxStats->ExistsImsiPath (pathAndRnti.str ()) ==
true)
211 imsi = phyTxStats->GetImsiPath (pathAndRnti.str ());
216 phyTxStats->SetImsiPath (pathAndRnti.str (), imsi);
220 phyTxStats->UlPhyTransmission (params);
Ptr< const AttributeChecker > MakeStringChecker(void)
Base class for ***StatsCalculator classes.
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 "...
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Hold variables of type string.
bool m_dlTxFirstWrite
When writing DL TX PHY statistics first time to file, columns description is added.
PhyTxStatsCalculator()
Constructor.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
uint8_t m_rv
the redundancy version (HARQ)
void SetUlOutputFilename(std::string outputFilename)
Set the name of the file where the uplink statistics will be stored.
uint64_t m_imsi
IMSI of the scheduled UE.
static uint64_t FindImsiForEnb(std::string path, uint16_t rnti)
Retrieves IMSI from path for Enb in the attribute system.
void SetDlTxOutputFilename(std::string outputFilename)
Set the name of the file where the DL TX PHY statistics will be stored.
std::string GetDlTxOutputFilename(void)
Get the name of the file where the DL TX PHY statistics will be stored.
void DlPhyTransmission(PhyTransmissionStatParameters params)
Notifies the stats calculator that an downlink trasmission has occurred.
uint8_t m_mcs
MCS for transport block.
std::string GetUlTxOutputFilename(void)
Get the name of the file where the UL RX PHY statistics will be stored.
std::string GetUlOutputFilename(void)
Get the name of the file where the uplink statistics will be stored.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
bool m_ulTxFirstWrite
When writing UL TX PHY statistics first time to file, columns description is added.
static void DlPhyTransmissionCallback(Ptr< PhyTxStatsCalculator > phyTxStats, std::string path, PhyTransmissionStatParameters params)
trace sink
void SetDlOutputFilename(std::string outputFilename)
Set the name of the file where the downlink statistics will be stored.
static uint64_t FindImsiForUe(std::string path, uint16_t rnti)
Retrieves IMSI from path for Ue in the attribute system.
uint16_t m_size
Size of transport block.
virtual ~PhyTxStatsCalculator()
Destructor.
uint8_t m_ndi
new data indicator flag
static void UlPhyTransmissionCallback(Ptr< PhyTxStatsCalculator > phyTxStats, std::string path, PhyTransmissionStatParameters params)
trace sink
uint16_t m_cellId
Cell ID of the attached Enb.
uint8_t m_layer
the layer (cw) of the transmission
void SetUlTxOutputFilename(std::string outputFilename)
Set the name of the file where the UL Tx PHY statistics will be stored.
#define NS_LOG_ERROR(msg)
Use NS_LOG to output a message of level LOG_ERROR.
Ptr< const AttributeAccessor > MakeStringAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
uint16_t m_rnti
C-RNTI scheduled.
static TypeId GetTypeId(void)
Register this type.
void UlPhyTransmission(PhyTransmissionStatParameters params)
Notifies the stats calculator that an uplink trasmission has occurred.
std::string GetDlOutputFilename(void)
Get the name of the file where the downlink statistics will be stored.