Manage ASCII trace files for device models. More...
#include "trace-helper.h"
Public Member Functions | |
AsciiTraceHelper () | |
Create an ascii trace helper. More... | |
~AsciiTraceHelper () | |
Destroy an ascii trace helper. More... | |
Ptr< OutputStreamWrapper > | CreateFileStream (std::string filename, std::ios::openmode filemode=std::ios::out) |
Create and initialize an output stream object we'll use to write the traced bits. More... | |
std::string | GetFilenameFromDevice (std::string prefix, Ptr< NetDevice > device, bool useObjectNames=true) |
Let the ascii trace helper figure out a reasonable filename to use for an ascii trace file associated with a device. More... | |
std::string | GetFilenameFromInterfacePair (std::string prefix, Ptr< Object > object, uint32_t interface, bool useObjectNames=true) |
Let the ascii trace helper figure out a reasonable filename to use for an ascii trace file associated with a node. More... | |
template<typename T > | |
void | HookDefaultDequeueSinkWithContext (Ptr< T > object, std::string context, std::string traceName, Ptr< OutputStreamWrapper > stream) |
Hook a trace source to the default dequeue operation trace sink that does accept and log a trace context. More... | |
template<typename T > | |
void | HookDefaultDequeueSinkWithoutContext (Ptr< T > object, std::string traceName, Ptr< OutputStreamWrapper > stream) |
Hook a trace source to the default dequeue operation trace sink that does not accept nor log a trace context. More... | |
template<typename T > | |
void | HookDefaultDropSinkWithContext (Ptr< T > object, std::string context, std::string traceName, Ptr< OutputStreamWrapper > stream) |
Hook a trace source to the default drop operation trace sink that does accept and log a trace context. More... | |
template<typename T > | |
void | HookDefaultDropSinkWithoutContext (Ptr< T > object, std::string traceName, Ptr< OutputStreamWrapper > stream) |
Hook a trace source to the default drop operation trace sink that does not accept nor log a trace context. More... | |
template<typename T > | |
void | HookDefaultEnqueueSinkWithContext (Ptr< T > object, std::string context, std::string traceName, Ptr< OutputStreamWrapper > stream) |
Hook a trace source to the default enqueue operation trace sink that does accept and log a trace context. More... | |
template<typename T > | |
void | HookDefaultEnqueueSinkWithoutContext (Ptr< T > object, std::string traceName, Ptr< OutputStreamWrapper > stream) |
Hook a trace source to the default enqueue operation trace sink that does not accept nor log a trace context. More... | |
template<typename T > | |
void | HookDefaultReceiveSinkWithContext (Ptr< T > object, std::string context, std::string traceName, Ptr< OutputStreamWrapper > stream) |
Hook a trace source to the default receive operation trace sink that does accept and log a trace context. More... | |
template<typename T > | |
void | HookDefaultReceiveSinkWithoutContext (Ptr< T > object, std::string traceName, Ptr< OutputStreamWrapper > stream) |
Hook a trace source to the default receive operation trace sink that does not accept nor log a trace context. More... | |
Static Public Member Functions | |
static void | DefaultDequeueSinkWithContext (Ptr< OutputStreamWrapper > file, std::string context, Ptr< const Packet > p) |
Basic Dequeue default trace sink. More... | |
static void | DefaultDequeueSinkWithoutContext (Ptr< OutputStreamWrapper > file, Ptr< const Packet > p) |
Basic Dequeue default trace sink. More... | |
static void | DefaultDropSinkWithContext (Ptr< OutputStreamWrapper > file, std::string context, Ptr< const Packet > p) |
Basic Drop default trace sink. More... | |
static void | DefaultDropSinkWithoutContext (Ptr< OutputStreamWrapper > file, Ptr< const Packet > p) |
Basic Drop default trace sink. More... | |
static void | DefaultEnqueueSinkWithContext (Ptr< OutputStreamWrapper > file, std::string context, Ptr< const Packet > p) |
Basic Enqueue default trace sink. More... | |
static void | DefaultEnqueueSinkWithoutContext (Ptr< OutputStreamWrapper > file, Ptr< const Packet > p) |
Basic Enqueue default trace sink. More... | |
static void | DefaultReceiveSinkWithContext (Ptr< OutputStreamWrapper > file, std::string context, Ptr< const Packet > p) |
Basic Receive default trace sink. More... | |
static void | DefaultReceiveSinkWithoutContext (Ptr< OutputStreamWrapper > file, Ptr< const Packet > p) |
Basic Receive default trace sink. More... | |
Manage ASCII trace files for device models.
Handling ascii trace files is a common operation for ns-3 devices. It is useful to provide a common base class for dealing with these ops.
Definition at line 161 of file trace-helper.h.
ns3::AsciiTraceHelper::AsciiTraceHelper | ( | ) |
Create an ascii trace helper.
Definition at line 180 of file trace-helper.cc.
References NS_LOG_FUNCTION_NOARGS.
ns3::AsciiTraceHelper::~AsciiTraceHelper | ( | ) |
Destroy an ascii trace helper.
Definition at line 185 of file trace-helper.cc.
References NS_LOG_FUNCTION_NOARGS.
Ptr< OutputStreamWrapper > ns3::AsciiTraceHelper::CreateFileStream | ( | std::string | filename, |
std::ios::openmode | filemode = std::ios::out |
||
) |
Create and initialize an output stream object we'll use to write the traced bits.
One of the common issues users run into when trying to use tracing in ns-3 is actually a design decision made in the C++ stream library. It is not widely known that copy and assignment of iostreams is forbidden by std::basic_ios<>. This is because it is not possible to predict the semantics of the stream desired by a user.
The tempting ns-3 idiom when tracing to a file is to create a bound callback with an ofstream as the bound object. Unfortunately, this implies a copy construction in order to get the ofstream object into the callback. This operation, as mentioned above, is forbidden by the STL. You could use a global ostream and pass a pointer to it, but that is pretty ugly. You could create an ostream on the stack and pass a pointer to it, but you may run into object lifetime issues. Ns-3 has a nice reference counted object that can solve the problem so we use one of those to carry the stream around and deal with the lifetime issues.
filename | file name |
filemode | file mode |
Definition at line 191 of file trace-helper.cc.
References NS_LOG_FUNCTION.
Referenced by VanetRoutingExperiment::ConfigureTracing(), DsdvManetExample::CreateDevices(), MeshTest::CreateNodes(), MobilityTraceTestCase::DoRun(), Ns3TcpLossTestCase::DoRun(), ns3::YansWavePhyHelper::EnableAsciiInternal(), ns3::FdNetDeviceHelper::EnableAsciiInternal(), ns3::PointToPointHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), ns3::WifiPhyHelper::EnableAsciiInternal(), ns3::CsmaHelper::EnableAsciiInternal(), ns3::WimaxHelper::EnableAsciiInternal(), ns3::InternetStackHelper::EnableAsciiIpv4Internal(), ns3::InternetStackHelper::EnableAsciiIpv6Internal(), ns3::SpectrumAnalyzerHelper::Install(), Experiment::Run(), RoutingExperiment::Run(), VanetRoutingExperiment::SetupAdhocDevices(), RoutingHelper::SetupRoutingProtocol(), TraceCwnd(), TraceDroppingState(), TraceEveryDrop(), TraceInFlight(), TraceNextRx(), TraceNextTx(), TraceQueueLength(), TraceRto(), TraceRtt(), TraceSojourn(), and TraceSsThresh().
|
static |
Basic Dequeue default trace sink.
When a packet has been sent to a device for transmission, the device is expected to place the packet onto a transmit queue even if it does not have to delay the packet at all. The device removes the packet from the transmit queue when the packet is ready to send, and this dequeue will fire a corresponding event. This event will eventually translate into a '-' operation in the trace file.
This is typically implemented by hooking the "TxQueue/Dequeue" trace hook in the device (actually the Queue in the device).
file | the output file |
context | the context |
p | the packet |
Definition at line 370 of file trace-helper.cc.
References ns3::Time::GetSeconds(), ns3::OutputStreamWrapper::GetStream(), ns3::Simulator::Now(), and NS_LOG_FUNCTION.
Referenced by ns3::WimaxHelper::EnableAsciiForConnection(), ns3::PointToPointHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), ns3::CsmaHelper::EnableAsciiInternal(), and HookDefaultDequeueSinkWithContext().
|
static |
Basic Dequeue default trace sink.
When a packet has been sent to a device for transmission, the device is expected to place the packet onto a transmit queue even if it does not have to delay the packet at all. The device removes the packet from the transmit queue when the packet is ready to send, and this dequeue will fire a corresponding event. This event will eventually translate into a '-' operation in the trace file.
This is typically implemented by hooking the "TxQueue/Dequeue" trace hook in the device (actually the Queue in the device).
file | the output file |
p | the packet |
Definition at line 363 of file trace-helper.cc.
References ns3::Time::GetSeconds(), ns3::OutputStreamWrapper::GetStream(), ns3::Simulator::Now(), and NS_LOG_FUNCTION.
Referenced by HookDefaultDequeueSinkWithoutContext().
|
static |
Basic Drop default trace sink.
When a packet has been sent to a device for transmission, the device is expected to place the packet onto a transmit queue. If this queue is full the packet will be dropped. The device is expected to trigger an event to indicate that an outbound packet is being dropped. This event will eventually translate into a 'd' operation in the trace file.
This is typically implemented by hooking the "TxQueue/Drop" trace hook in the device (actually the Queue in the device).
file | the output file |
context | the context |
p | the packet |
Definition at line 343 of file trace-helper.cc.
References ns3::Time::GetSeconds(), ns3::OutputStreamWrapper::GetStream(), ns3::Simulator::Now(), and NS_LOG_FUNCTION.
Referenced by ns3::WimaxHelper::EnableAsciiForConnection(), ns3::PointToPointHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), ns3::CsmaHelper::EnableAsciiInternal(), ns3::InternetStackHelper::EnableAsciiIpv4Internal(), and HookDefaultDropSinkWithContext().
|
static |
Basic Drop default trace sink.
When a packet has been sent to a device for transmission, the device is expected to place the packet onto a transmit queue. If this queue is full the packet will be dropped. The device is expected to trigger an event to indicate that an outbound packet is being dropped. This event will eventually translate into a 'd' operation in the trace file.
This is typically implemented by hooking the "TxQueue/Drop" trace hook in the device (actually the Queue in the device).
file | the output file |
p | the packet |
Definition at line 336 of file trace-helper.cc.
References ns3::Time::GetSeconds(), ns3::OutputStreamWrapper::GetStream(), ns3::Simulator::Now(), and NS_LOG_FUNCTION.
Referenced by HookDefaultDropSinkWithoutContext().
|
static |
Basic Enqueue default trace sink.
When a packet has been sent to a device for transmission, the device is expected to place the packet onto a transmit queue even if it does not have to delay the packet at all, if only to trigger this event. This event will eventually translate into a '+' operation in the trace file.
This is typically implemented by hooking the "TxQueue/Enqueue" trace hook in the device (actually the Queue in the device).
file | the output file |
context | the context |
p | the packet |
Definition at line 317 of file trace-helper.cc.
References ns3::Time::GetSeconds(), ns3::OutputStreamWrapper::GetStream(), ns3::Simulator::Now(), and NS_LOG_FUNCTION.
Referenced by ns3::WimaxHelper::EnableAsciiForConnection(), ns3::PointToPointHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), ns3::CsmaHelper::EnableAsciiInternal(), and HookDefaultEnqueueSinkWithContext().
|
static |
Basic Enqueue default trace sink.
When a packet has been sent to a device for transmission, the device is expected to place the packet onto a transmit queue even if it does not have to delay the packet at all, if only to trigger this event. This event will eventually translate into a '+' operation in the trace file.
This is typically implemented by hooking the "TxQueue/Enqueue" trace hook in the device (actually the Queue in the device).
file | the output file |
p | the packet |
Definition at line 310 of file trace-helper.cc.
References ns3::Time::GetSeconds(), ns3::OutputStreamWrapper::GetStream(), ns3::Simulator::Now(), and NS_LOG_FUNCTION.
Referenced by HookDefaultEnqueueSinkWithoutContext().
|
static |
Basic Receive default trace sink.
When a packet is received by a device for transmission, the device is expected to trigger this event to indicate the reception has occurred. This event will eventually translate into an 'r' operation in the trace file.
This is typically implemented by hooking the "MacRx" trace hook in the device.
file | the output file |
context | the context |
p | the packet |
Definition at line 394 of file trace-helper.cc.
References ns3::Time::GetSeconds(), ns3::OutputStreamWrapper::GetStream(), ns3::Simulator::Now(), and NS_LOG_FUNCTION.
Referenced by ns3::FdNetDeviceHelper::EnableAsciiInternal(), ns3::PointToPointHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), ns3::CsmaHelper::EnableAsciiInternal(), and HookDefaultReceiveSinkWithContext().
|
static |
Basic Receive default trace sink.
When a packet is received by a device for transmission, the device is expected to trigger this event to indicate the reception has occurred. This event will eventually translate into an 'r' operation in the trace file.
This is typically implemented by hooking the "MacRx" trace hook in the device.
file | the output file |
p | the packet |
Definition at line 387 of file trace-helper.cc.
References ns3::Time::GetSeconds(), ns3::OutputStreamWrapper::GetStream(), ns3::Simulator::Now(), and NS_LOG_FUNCTION.
Referenced by HookDefaultReceiveSinkWithoutContext().
std::string ns3::AsciiTraceHelper::GetFilenameFromDevice | ( | std::string | prefix, |
Ptr< NetDevice > | device, | ||
bool | useObjectNames = true |
||
) |
Let the ascii trace helper figure out a reasonable filename to use for an ascii trace file associated with a device.
prefix | prefix string |
device | NetDevice |
useObjectNames | use node and device names instead of indexes |
Definition at line 212 of file trace-helper.cc.
References ns3::Names::FindName(), ns3::Node::GetId(), NS_ABORT_MSG_UNLESS, and NS_LOG_FUNCTION.
Referenced by ns3::YansWavePhyHelper::EnableAsciiInternal(), ns3::FdNetDeviceHelper::EnableAsciiInternal(), ns3::PointToPointHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), ns3::WifiPhyHelper::EnableAsciiInternal(), ns3::CsmaHelper::EnableAsciiInternal(), ns3::WimaxHelper::EnableAsciiInternal(), and ns3::SpectrumAnalyzerHelper::Install().
std::string ns3::AsciiTraceHelper::GetFilenameFromInterfacePair | ( | std::string | prefix, |
Ptr< Object > | object, | ||
uint32_t | interface, | ||
bool | useObjectNames = true |
||
) |
Let the ascii trace helper figure out a reasonable filename to use for an ascii trace file associated with a node.
prefix | prefix string |
object | interface (such as Ipv4Interface or Ipv6Interface) |
interface | interface id |
useObjectNames | use node and device names instead of indexes |
Definition at line 257 of file trace-helper.cc.
References ns3::Names::FindName(), ns3::Node::GetId(), ns3::Object::GetObject(), NS_ABORT_MSG_UNLESS, and NS_LOG_FUNCTION.
Referenced by ns3::InternetStackHelper::EnableAsciiIpv4Internal(), and ns3::InternetStackHelper::EnableAsciiIpv6Internal().
void ns3::AsciiTraceHelper::HookDefaultDequeueSinkWithContext | ( | Ptr< T > | object, |
std::string | context, | ||
std::string | traceName, | ||
Ptr< OutputStreamWrapper > | stream | ||
) |
Hook a trace source to the default dequeue operation trace sink that does accept and log a trace context.
object | object |
context | context string |
traceName | trace source name |
stream | output stream wrapper |
Definition at line 514 of file trace-helper.h.
References DefaultDequeueSinkWithContext(), ns3::MakeBoundCallback(), and NS_ASSERT_MSG().
void ns3::AsciiTraceHelper::HookDefaultDequeueSinkWithoutContext | ( | Ptr< T > | object, |
std::string | traceName, | ||
Ptr< OutputStreamWrapper > | stream | ||
) |
Hook a trace source to the default dequeue operation trace sink that does not accept nor log a trace context.
object | object |
traceName | trace source name |
stream | output stream wrapper |
Definition at line 505 of file trace-helper.h.
References DefaultDequeueSinkWithoutContext(), anonymous_namespace{print-introspected-doxygen.cc}::file, ns3::MakeBoundCallback(), and NS_ASSERT_MSG().
Referenced by ns3::PointToPointHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), and ns3::CsmaHelper::EnableAsciiInternal().
void ns3::AsciiTraceHelper::HookDefaultDropSinkWithContext | ( | Ptr< T > | object, |
std::string | context, | ||
std::string | traceName, | ||
Ptr< OutputStreamWrapper > | stream | ||
) |
Hook a trace source to the default drop operation trace sink that does accept and log a trace context.
object | object |
context | context string |
traceName | trace source name |
stream | output stream wrapper |
Definition at line 492 of file trace-helper.h.
References DefaultDropSinkWithContext(), ns3::MakeBoundCallback(), and NS_ASSERT_MSG().
void ns3::AsciiTraceHelper::HookDefaultDropSinkWithoutContext | ( | Ptr< T > | object, |
std::string | traceName, | ||
Ptr< OutputStreamWrapper > | stream | ||
) |
Hook a trace source to the default drop operation trace sink that does not accept nor log a trace context.
object | object |
traceName | trace source name |
stream | output stream wrapper |
Definition at line 483 of file trace-helper.h.
References DefaultDropSinkWithoutContext(), anonymous_namespace{print-introspected-doxygen.cc}::file, ns3::MakeBoundCallback(), and NS_ASSERT_MSG().
Referenced by ns3::PointToPointHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), ns3::CsmaHelper::EnableAsciiInternal(), and ns3::InternetStackHelper::EnableAsciiIpv4Internal().
void ns3::AsciiTraceHelper::HookDefaultEnqueueSinkWithContext | ( | Ptr< T > | object, |
std::string | context, | ||
std::string | traceName, | ||
Ptr< OutputStreamWrapper > | stream | ||
) |
Hook a trace source to the default enqueue operation trace sink that does accept and log a trace context.
object | object |
context | context string |
traceName | trace source name |
stream | output stream wrapper |
Definition at line 470 of file trace-helper.h.
References DefaultEnqueueSinkWithContext(), ns3::MakeBoundCallback(), and NS_ASSERT_MSG().
void ns3::AsciiTraceHelper::HookDefaultEnqueueSinkWithoutContext | ( | Ptr< T > | object, |
std::string | traceName, | ||
Ptr< OutputStreamWrapper > | stream | ||
) |
Hook a trace source to the default enqueue operation trace sink that does not accept nor log a trace context.
object | object |
traceName | trace source name |
stream | output stream wrapper |
Definition at line 461 of file trace-helper.h.
References DefaultEnqueueSinkWithoutContext(), anonymous_namespace{print-introspected-doxygen.cc}::file, ns3::MakeBoundCallback(), and NS_ASSERT_MSG().
Referenced by ns3::PointToPointHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), and ns3::CsmaHelper::EnableAsciiInternal().
void ns3::AsciiTraceHelper::HookDefaultReceiveSinkWithContext | ( | Ptr< T > | object, |
std::string | context, | ||
std::string | traceName, | ||
Ptr< OutputStreamWrapper > | stream | ||
) |
Hook a trace source to the default receive operation trace sink that does accept and log a trace context.
object | object |
context | context string |
traceName | trace source name |
stream | output stream wrapper |
Definition at line 536 of file trace-helper.h.
References DefaultReceiveSinkWithContext(), ns3::MakeBoundCallback(), and NS_ASSERT_MSG().
void ns3::AsciiTraceHelper::HookDefaultReceiveSinkWithoutContext | ( | Ptr< T > | object, |
std::string | traceName, | ||
Ptr< OutputStreamWrapper > | stream | ||
) |
Hook a trace source to the default receive operation trace sink that does not accept nor log a trace context.
object | object |
traceName | trace source name |
stream | output stream wrapper |
Definition at line 527 of file trace-helper.h.
References DefaultReceiveSinkWithoutContext(), anonymous_namespace{print-introspected-doxygen.cc}::file, ns3::MakeBoundCallback(), and NS_ASSERT_MSG().
Referenced by ns3::FdNetDeviceHelper::EnableAsciiInternal(), ns3::PointToPointHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), and ns3::CsmaHelper::EnableAsciiInternal().