Manage ASCII trace files for device models. More...
#include "trace-helper.h"
Public Member Functions | |
AsciiTraceHelper () | |
Create an ascii trace helper. | |
~AsciiTraceHelper () | |
Destroy an ascii trace helper. | |
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. | |
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. | |
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. | |
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. | |
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. | |
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. | |
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. | |
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. | |
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. | |
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. | |
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. | |
Static Public Member Functions | |
static void | DefaultDequeueSinkWithContext (Ptr< OutputStreamWrapper > file, std::string context, Ptr< const Packet > p) |
Basic Dequeue default trace sink. | |
static void | DefaultDequeueSinkWithoutContext (Ptr< OutputStreamWrapper > file, Ptr< const Packet > p) |
Basic Dequeue default trace sink. | |
static void | DefaultDropSinkWithContext (Ptr< OutputStreamWrapper > file, std::string context, Ptr< const Packet > p) |
Basic Drop default trace sink. | |
static void | DefaultDropSinkWithoutContext (Ptr< OutputStreamWrapper > file, Ptr< const Packet > p) |
Basic Drop default trace sink. | |
static void | DefaultEnqueueSinkWithContext (Ptr< OutputStreamWrapper > file, std::string context, Ptr< const Packet > p) |
Basic Enqueue default trace sink. | |
static void | DefaultEnqueueSinkWithoutContext (Ptr< OutputStreamWrapper > file, Ptr< const Packet > p) |
Basic Enqueue default trace sink. | |
static void | DefaultReceiveSinkWithContext (Ptr< OutputStreamWrapper > file, std::string context, Ptr< const Packet > p) |
Basic Receive default trace sink. | |
static void | DefaultReceiveSinkWithoutContext (Ptr< OutputStreamWrapper > file, Ptr< const Packet > p) |
Basic Receive default trace sink. | |
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 162 of file trace-helper.h.
ns3::AsciiTraceHelper::AsciiTraceHelper | ( | ) |
Create an ascii trace helper.
Definition at line 171 of file trace-helper.cc.
ns3::AsciiTraceHelper::~AsciiTraceHelper | ( | ) |
Destroy an ascii trace helper.
Definition at line 176 of file trace-helper.cc.
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 182 of file trace-helper.cc.
Referenced by DsdvManetExample::CreateDevices(), MeshTest::CreateNodes(), MobilityTraceTestCase::DoRun(), Ns3TcpLossTestCase::DoRun(), ns3::CsmaHelper::EnableAsciiInternal(), ns3::FdNetDeviceHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), ns3::PointToPointHelper::EnableAsciiInternal(), ns3::WifiPhyHelper::EnableAsciiInternal(), ns3::WimaxHelper::EnableAsciiInternal(), ns3::ClickInternetStackHelper::EnableAsciiIpv4Internal(), ns3::InternetStackHelper::EnableAsciiIpv4Internal(), ns3::InternetStackHelper::EnableAsciiIpv6Internal(), ns3::SpectrumAnalyzerHelper::Install(), Experiment::Run(), NeighborCacheExample::Run(), RoutingExperiment::Run(), TraceCwnd(), TraceCwnd(), TraceCwnd(), TraceCwnd(), 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 371 of file trace-helper.cc.
Referenced by ns3::WimaxHelper::EnableAsciiForConnection(), ns3::CsmaHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), ns3::PointToPointHelper::EnableAsciiInternal(), ns3::WimaxHelper::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.
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 340 of file trace-helper.cc.
Referenced by ns3::WimaxHelper::EnableAsciiForConnection(), ns3::CsmaHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), ns3::PointToPointHelper::EnableAsciiInternal(), ns3::WimaxHelper::EnableAsciiInternal(), ns3::ClickInternetStackHelper::EnableAsciiIpv4Internal(), 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 332 of file trace-helper.cc.
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 310 of file trace-helper.cc.
Referenced by ns3::WimaxHelper::EnableAsciiForConnection(), ns3::CsmaHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), ns3::PointToPointHelper::EnableAsciiInternal(), ns3::WimaxHelper::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 302 of file trace-helper.cc.
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 399 of file trace-helper.cc.
Referenced by ns3::CsmaHelper::EnableAsciiInternal(), ns3::FdNetDeviceHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), ns3::PointToPointHelper::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 391 of file trace-helper.cc.
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 203 of file trace-helper.cc.
Referenced by ns3::CsmaHelper::EnableAsciiInternal(), ns3::FdNetDeviceHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), ns3::PointToPointHelper::EnableAsciiInternal(), ns3::WifiPhyHelper::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 250 of file trace-helper.cc.
Referenced by ns3::ClickInternetStackHelper::EnableAsciiIpv4Internal(), 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 566 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 552 of file trace-helper.h.
References DefaultDequeueSinkWithoutContext(), ns3::MakeBoundCallback(), and NS_ASSERT_MSG.
Referenced by ns3::CsmaHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), and ns3::PointToPointHelper::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 537 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 523 of file trace-helper.h.
References DefaultDropSinkWithoutContext(), ns3::MakeBoundCallback(), and NS_ASSERT_MSG.
Referenced by ns3::CsmaHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), ns3::PointToPointHelper::EnableAsciiInternal(), ns3::ClickInternetStackHelper::EnableAsciiIpv4Internal(), 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 508 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 494 of file trace-helper.h.
References DefaultEnqueueSinkWithoutContext(), ns3::MakeBoundCallback(), and NS_ASSERT_MSG.
Referenced by ns3::CsmaHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), and ns3::PointToPointHelper::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 595 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 581 of file trace-helper.h.
References DefaultReceiveSinkWithoutContext(), ns3::MakeBoundCallback(), and NS_ASSERT_MSG.
Referenced by ns3::CsmaHelper::EnableAsciiInternal(), ns3::FdNetDeviceHelper::EnableAsciiInternal(), ns3::LrWpanHelper::EnableAsciiInternal(), and ns3::PointToPointHelper::EnableAsciiInternal().