Collects data. More...
#include "data-collector.h"
Public Member Functions | |
DataCollector () | |
~DataCollector () override | |
void | AddDataCalculator (Ptr< DataCalculator > datac) |
Add a DataCalculator object to the DataCollector. | |
void | AddMetadata (std::string key, double value) |
Add the key and the value as a pair of strings to the metadata list. | |
void | AddMetadata (std::string key, std::string value) |
Add the key and the value as a pair of strings to the metadata list. | |
void | AddMetadata (std::string key, uint32_t value) |
Add the key and the value as a pair of strings to the metadata list. | |
DataCalculatorList::iterator | DataCalculatorBegin () |
Returns an iterator to the beginning of the DataCalculator list. | |
DataCalculatorList::iterator | DataCalculatorEnd () |
Returns an iterator to the past-the-end of the DataCalculator list. | |
void | DescribeRun (std::string experiment, std::string strategy, std::string input, std::string runID, std::string description="") |
Provide specific parameters to the DataCollector. | |
std::string | GetDescription () const |
Return the description label. | |
std::string | GetExperimentLabel () const |
Return the experiment label. | |
std::string | GetInputLabel () const |
Return the input label. | |
std::string | GetRunLabel () const |
Return the runID label. | |
std::string | GetStrategyLabel () const |
Return the strategy label. | |
MetadataList::iterator | MetadataBegin () |
Returns an iterator to the beginning of the metadata list. | |
MetadataList::iterator | MetadataEnd () |
Returns an iterator to the past-the-end of the metadata list. | |
Public Member Functions inherited from ns3::Object | |
Object () | |
Constructor. | |
~Object () override | |
Destructor. | |
void | AggregateObject (Ptr< Object > other) |
Aggregate two Objects together. | |
void | Dispose () |
Dispose of this Object. | |
AggregateIterator | GetAggregateIterator () const |
Get an iterator to the Objects aggregated to this one. | |
TypeId | GetInstanceTypeId () const override |
Get the most derived TypeId for this Object. | |
template<typename T > | |
Ptr< T > | GetObject () const |
Get a pointer to the requested aggregated Object. | |
template<> | |
Ptr< Object > | GetObject () const |
Specialization of () for objects of type ns3::Object. | |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
Get a pointer to the requested aggregated Object by TypeId. | |
template<> | |
Ptr< Object > | GetObject (TypeId tid) const |
Specialization of (TypeId tid) for objects of type ns3::Object. | |
void | Initialize () |
Invoke DoInitialize on all Objects aggregated to this one. | |
bool | IsInitialized () const |
Check if the object has been initialized. | |
void | UnidirectionalAggregateObject (Ptr< Object > other) |
Aggregate an Object to another Object. | |
Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter > | |
SimpleRefCount () | |
Default constructor. | |
SimpleRefCount (const SimpleRefCount &o) | |
Copy constructor. | |
uint32_t | GetReferenceCount () const |
Get the reference count of the object. | |
SimpleRefCount & | operator= (const SimpleRefCount &o) |
Assignment operator. | |
void | Ref () const |
Increment the reference count. | |
void | Unref () const |
Decrement the reference count. | |
Public Member Functions inherited from ns3::ObjectBase | |
virtual | ~ObjectBase () |
Virtual destructor. | |
void | GetAttribute (std::string name, AttributeValue &value, bool permissive=false) const |
Get the value of an attribute, raising fatal errors if unsuccessful. | |
bool | GetAttributeFailSafe (std::string name, AttributeValue &value) const |
Get the value of an attribute without raising errors. | |
void | SetAttribute (std::string name, const AttributeValue &value) |
Set a single attribute, raising fatal errors if unsuccessful. | |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
Set a single attribute without raising errors. | |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
Connect a TraceSource to a Callback with a context. | |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
Connect a TraceSource to a Callback without a context. | |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected with a context. | |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected without a context. | |
Static Public Member Functions | |
static TypeId | GetTypeId () |
Register this type. | |
Static Public Member Functions inherited from ns3::Object | |
static TypeId | GetTypeId () |
Register this type. | |
Static Public Member Functions inherited from ns3::ObjectBase | |
static TypeId | GetTypeId () |
Get the type ID. | |
Protected Member Functions | |
void | DoDispose () override |
Destructor implementation. | |
Protected Member Functions inherited from ns3::Object | |
Object (const Object &o) | |
Copy an Object. | |
virtual void | DoInitialize () |
Initialize() implementation. | |
virtual void | NotifyNewAggregate () |
Notify all Objects aggregated to this one of a new Object being aggregated. | |
Protected Member Functions inherited from ns3::ObjectBase | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
Complete construction of ObjectBase; invoked by derived classes. | |
virtual void | NotifyConstructionCompleted () |
Notifier called once the ObjectBase is fully constructed. | |
Private Attributes | |
DataCalculatorList | m_calcList |
List of data calculators. | |
std::string | m_description |
Description label. | |
std::string | m_experimentLabel |
Experiment label. | |
std::string | m_inputLabel |
Input label. | |
MetadataList | m_metadata |
List of experiment metadata. | |
std::string | m_runLabel |
Run label. | |
std::string | m_strategyLabel |
Strategy label. | |
Additional Inherited Members | |
Related Symbols inherited from ns3::ObjectBase | |
static TypeId | GetObjectIid () |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. | |
Collects data.
Definition at line 38 of file data-collector.h.
DataCollector::DataCollector | ( | ) |
Definition at line 22 of file data-collector.cc.
References NS_LOG_FUNCTION.
|
override |
Definition at line 28 of file data-collector.cc.
References NS_LOG_FUNCTION.
void DataCollector::AddDataCalculator | ( | Ptr< DataCalculator > | datac | ) |
Add a DataCalculator object to the DataCollector.
datac | DataCalculator object to be added |
Definition at line 76 of file data-collector.cc.
References m_calcList, and NS_LOG_FUNCTION.
void DataCollector::AddMetadata | ( | std::string | key, |
double | value ) |
Add the key and the value as a pair of strings to the metadata list.
key | Key value to include |
value | Value to include of type double |
Definition at line 123 of file data-collector.cc.
References m_metadata, and NS_LOG_FUNCTION.
void DataCollector::AddMetadata | ( | std::string | key, |
std::string | value ) |
Add the key and the value as a pair of strings to the metadata list.
key | Key value to include |
value | Value to include of type string |
Definition at line 100 of file data-collector.cc.
References m_metadata, and NS_LOG_FUNCTION.
void DataCollector::AddMetadata | ( | std::string | key, |
uint32_t | value ) |
Add the key and the value as a pair of strings to the metadata list.
key | Key value to include |
value | Value to include of type uint32_t |
Definition at line 110 of file data-collector.cc.
References m_metadata, and NS_LOG_FUNCTION.
DataCalculatorList::iterator DataCollector::DataCalculatorBegin | ( | ) |
Returns an iterator to the beginning of the DataCalculator list.
Definition at line 86 of file data-collector.cc.
References m_calcList.
Referenced by ns3::OmnetDataOutput::Output(), and ns3::SqliteDataOutput::Output().
DataCalculatorList::iterator DataCollector::DataCalculatorEnd | ( | ) |
Returns an iterator to the past-the-end of the DataCalculator list.
Definition at line 93 of file data-collector.cc.
References m_calcList.
Referenced by ns3::OmnetDataOutput::Output(), and ns3::SqliteDataOutput::Output().
void DataCollector::DescribeRun | ( | std::string | experiment, |
std::string | strategy, | ||
std::string | input, | ||
std::string | runID, | ||
std::string | description = "" ) |
Provide specific parameters to the DataCollector.
experiment | Label for the experiment |
strategy | Label for the strategy |
input | Label for the input |
runID | Label for the runID |
description | Description |
Definition at line 58 of file data-collector.cc.
References experiment(), m_description, m_experimentLabel, m_inputLabel, m_runLabel, m_strategyLabel, and NS_LOG_FUNCTION.
|
overrideprotectedvirtual |
Destructor implementation.
This method is called by Dispose() or by the Object's destructor, whichever comes first.
Subclasses are expected to implement their real destruction code in an overridden version of this method and chain up to their parent's implementation once they are done. i.e, for simplicity, the destructor of every subclass should be empty and its content should be moved to the associated DoDispose() method.
It is safe to call GetObject() from within this method.
Reimplemented from ns3::Object.
Definition at line 46 of file data-collector.cc.
References ns3::Object::DoDispose(), m_calcList, m_metadata, and NS_LOG_FUNCTION.
|
inline |
Return the description label.
Definition at line 104 of file data-collector.h.
References m_description.
Referenced by ns3::OmnetDataOutput::Output(), and ns3::SqliteDataOutput::Output().
|
inline |
Return the experiment label.
Definition at line 68 of file data-collector.h.
References m_experimentLabel.
Referenced by ns3::OmnetDataOutput::Output(), and ns3::SqliteDataOutput::Output().
|
inline |
Return the input label.
Definition at line 86 of file data-collector.h.
References m_inputLabel.
Referenced by ns3::OmnetDataOutput::Output(), and ns3::SqliteDataOutput::Output().
|
inline |
Return the runID label.
Definition at line 95 of file data-collector.h.
References m_runLabel.
Referenced by ns3::OmnetDataOutput::Output(), and ns3::SqliteDataOutput::Output().
|
inline |
Return the strategy label.
Definition at line 77 of file data-collector.h.
References m_strategyLabel.
Referenced by ns3::OmnetDataOutput::Output(), and ns3::SqliteDataOutput::Output().
|
static |
Register this type.
Definition at line 36 of file data-collector.cc.
References ns3::TypeId::SetParent().
MetadataList::iterator DataCollector::MetadataBegin | ( | ) |
Returns an iterator to the beginning of the metadata list.
Definition at line 136 of file data-collector.cc.
References m_metadata.
Referenced by ns3::OmnetDataOutput::Output(), and ns3::SqliteDataOutput::Output().
MetadataList::iterator DataCollector::MetadataEnd | ( | ) |
Returns an iterator to the past-the-end of the metadata list.
Definition at line 143 of file data-collector.cc.
References m_metadata.
Referenced by ns3::OmnetDataOutput::Output(), and ns3::SqliteDataOutput::Output().
|
private |
List of data calculators.
Definition at line 165 of file data-collector.h.
Referenced by AddDataCalculator(), DataCalculatorBegin(), DataCalculatorEnd(), and DoDispose().
|
private |
Description label.
Definition at line 162 of file data-collector.h.
Referenced by DescribeRun(), and GetDescription().
|
private |
Experiment label.
Definition at line 158 of file data-collector.h.
Referenced by DescribeRun(), and GetExperimentLabel().
|
private |
Input label.
Definition at line 160 of file data-collector.h.
Referenced by DescribeRun(), and GetInputLabel().
|
private |
List of experiment metadata.
Definition at line 164 of file data-collector.h.
Referenced by AddMetadata(), AddMetadata(), AddMetadata(), DoDispose(), MetadataBegin(), and MetadataEnd().
|
private |
Run label.
Definition at line 161 of file data-collector.h.
Referenced by DescribeRun(), and GetRunLabel().
|
private |
Strategy label.
Definition at line 159 of file data-collector.h.
Referenced by DescribeRun(), and GetStrategyLabel().