Class to generate OMNeT output. More...
Public Member Functions | |
SqliteOutputCallback (const Ptr< SQLiteOutput > &db, std::string run) | |
Constructor. More... | |
~SqliteOutputCallback () override | |
Destructor. More... | |
void | OutputSingleton (std::string key, std::string variable, double val) override |
Generates a single data output. More... | |
void | OutputSingleton (std::string key, std::string variable, int val) override |
Generates a single data output. More... | |
void | OutputSingleton (std::string key, std::string variable, std::string val) override |
Generates a single data output. More... | |
void | OutputSingleton (std::string key, std::string variable, Time val) override |
Generates a single data output. More... | |
void | OutputSingleton (std::string key, std::string variable, uint32_t val) override |
Generates a single data output. More... | |
void | OutputStatistic (std::string key, std::string variable, const StatisticalSummary *statSum) override |
Generates data statistics. More... | |
Public Member Functions inherited from ns3::DataOutputCallback | |
virtual | ~DataOutputCallback () |
Destructor. More... | |
Private Attributes | |
Ptr< SQLiteOutput > | m_db |
Db. More... | |
sqlite3_stmt * | m_insertSingletonStatement |
Pointer to a Sqlite3 singleton statement. More... | |
std::string | m_runLabel |
Run label. More... | |
Class to generate OMNeT output.
Definition at line 61 of file sqlite-data-output.h.
ns3::SqliteDataOutput::SqliteOutputCallback::SqliteOutputCallback | ( | const Ptr< SQLiteOutput > & | db, |
std::string | run | ||
) |
Constructor.
db | pointer to the instance this object belongs to |
run | experiment descriptor |
Definition at line 142 of file sqlite-data-output.cc.
References m_db, m_insertSingletonStatement, m_runLabel, and NS_LOG_FUNCTION.
|
override |
Destructor.
Definition at line 159 of file sqlite-data-output.cc.
|
overridevirtual |
Generates a single data output.
key | the SQL key to use |
variable | the variable name |
val | the value |
Implements ns3::DataOutputCallback.
Definition at line 223 of file sqlite-data-output.cc.
References NS_LOG_FUNCTION, and anonymous_namespace{print-introspected-doxygen.cc}::variable.
|
overridevirtual |
Generates a single data output.
key | the SQL key to use |
variable | the variable name |
val | the value |
Implements ns3::DataOutputCallback.
Definition at line 195 of file sqlite-data-output.cc.
References NS_LOG_FUNCTION, and anonymous_namespace{print-introspected-doxygen.cc}::variable.
|
overridevirtual |
Generates a single data output.
key | the SQL key to use |
variable | the variable name |
val | the value |
Implements ns3::DataOutputCallback.
Definition at line 237 of file sqlite-data-output.cc.
References NS_LOG_FUNCTION, and anonymous_namespace{print-introspected-doxygen.cc}::variable.
|
overridevirtual |
Generates a single data output.
key | the SQL key to use |
variable | the variable name |
val | the value |
Implements ns3::DataOutputCallback.
Definition at line 251 of file sqlite-data-output.cc.
References ns3::Time::GetTimeStep(), NS_LOG_FUNCTION, and anonymous_namespace{print-introspected-doxygen.cc}::variable.
|
overridevirtual |
Generates a single data output.
key | the SQL key to use |
variable | the variable name |
val | the value |
Implements ns3::DataOutputCallback.
Definition at line 209 of file sqlite-data-output.cc.
References NS_LOG_FUNCTION, and anonymous_namespace{print-introspected-doxygen.cc}::variable.
|
overridevirtual |
Generates data statistics.
key | the SQL key to use |
variable | the variable name |
statSum | the stats to print |
Implements ns3::DataOutputCallback.
Definition at line 165 of file sqlite-data-output.cc.
References ns3::StatisticalSummary::getCount(), ns3::StatisticalSummary::getMax(), ns3::StatisticalSummary::getMin(), ns3::StatisticalSummary::getSqrSum(), ns3::StatisticalSummary::getStddev(), ns3::StatisticalSummary::getSum(), ns3::isNaN(), NS_LOG_FUNCTION, and anonymous_namespace{print-introspected-doxygen.cc}::variable.
|
private |
|
private |
Pointer to a Sqlite3 singleton statement.
Definition at line 131 of file sqlite-data-output.h.
Referenced by SqliteOutputCallback().
|
private |
Run label.
Definition at line 128 of file sqlite-data-output.h.
Referenced by SqliteOutputCallback().