20#ifndef DATA_COLLECTOR_H 
   21#define DATA_COLLECTOR_H 
   23#include "ns3/object.h" 
   42typedef std::list<std::pair<std::string, std::string>> 
MetadataList;
 
   73                     std::string description = 
"");
 
std::string m_strategyLabel
Strategy label.
 
void DoDispose() override
Destructor implementation.
 
static TypeId GetTypeId()
Register this type.
 
std::string GetExperimentLabel() const
Return the experiment label.
 
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.
 
std::string GetDescription() const
Return the description label.
 
std::string m_experimentLabel
Experiment label.
 
MetadataList::iterator MetadataBegin()
Returns an iterator to the beginning of the metadata list.
 
DataCalculatorList m_calcList
List of data calculators.
 
MetadataList::iterator MetadataEnd()
Returns an iterator to the past-the-end of the metadata list.
 
std::string m_description
Description label.
 
std::string GetStrategyLabel() const
Return the strategy label.
 
void AddMetadata(std::string key, std::string value)
Add the key and the value as a pair of strings to the metadata list.
 
std::string m_inputLabel
Input label.
 
std::string GetRunLabel() const
Return the runID label.
 
void AddDataCalculator(Ptr< DataCalculator > datac)
Add a DataCalculator object to the DataCollector.
 
~DataCollector() override
 
MetadataList m_metadata
List of experiment metadata.
 
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 m_runLabel
Run label.
 
std::string GetInputLabel() const
Return the input label.
 
A base class which provides memory management and object aggregation.
 
a unique identifier for an interface.
 
void experiment(std::string queue_disc_type)
 
Every class exported by the ns3 library is enclosed in the ns3 namespace.
 
std::list< Ptr< DataCalculator > > DataCalculatorList
List of Ptrs to DataCalculator objects.
 
std::list< std::pair< std::string, std::string > > MetadataList
List of pairs of strings representing metadata.