21#include "ns3/assert.h"
22#include "ns3/net-device-container.h"
23#include "ns3/node-container.h"
24#include "ns3/output-stream-wrapper.h"
25#include "ns3/pcap-file-wrapper.h"
26#include "ns3/simulator.h"
86 bool useObjectNames =
true);
101 bool useObjectNames =
true);
114 std::ios::openmode filemode,
116 uint32_t snapLen = std::numeric_limits<uint32_t>::max(),
125 template <
typename T>
162 "PcapHelper::HookDefaultSink(): Unable to hook \"" << tracename <<
"\"");
196 bool useObjectNames =
true);
211 bool useObjectNames =
true);
238 std::ios::openmode filemode = std::ios::out);
248 template <
typename T>
250 std::string traceName,
262 template <
typename T>
265 std::string traceName,
276 template <
typename T>
278 std::string traceName,
290 template <
typename T>
293 std::string traceName,
304 template <
typename T>
306 std::string traceName,
318 template <
typename T>
321 std::string traceName,
332 template <
typename T>
334 std::string traceName,
346 template <
typename T>
349 std::string traceName,
505 std::string tracename,
508 bool result =
object->TraceConnectWithoutContext(
512 "AsciiTraceHelper::HookDefaultEnqueueSinkWithoutContext(): Unable to hook \""
513 << tracename <<
"\"");
520 std::string tracename,
523 bool result =
object->TraceConnect(tracename,
527 "AsciiTraceHelper::HookDefaultEnqueueSinkWithContext(): Unable to hook \""
528 << tracename <<
"\"");
534 std::string tracename,
538 object->TraceConnectWithoutContext(tracename,
541 "AsciiTraceHelper::HookDefaultDropSinkWithoutContext(): Unable to hook \""
542 << tracename <<
"\"");
549 std::string tracename,
552 bool result =
object->TraceConnect(tracename,
556 "AsciiTraceHelper::HookDefaultDropSinkWithContext(): Unable to hook \""
557 << tracename <<
"\"");
563 std::string tracename,
566 bool result =
object->TraceConnectWithoutContext(
570 "AsciiTraceHelper::HookDefaultDequeueSinkWithoutContext(): Unable to hook \""
571 << tracename <<
"\"");
578 std::string tracename,
581 bool result =
object->TraceConnect(tracename,
585 "AsciiTraceHelper::HookDefaultDequeueSinkWithContext(): Unable to hook \""
586 << tracename <<
"\"");
592 std::string tracename,
595 bool result =
object->TraceConnectWithoutContext(
599 "AsciiTraceHelper::HookDefaultReceiveSinkWithoutContext(): Unable to hook \""
600 << tracename <<
"\"");
607 std::string tracename,
610 bool result =
object->TraceConnect(tracename,
614 "AsciiTraceHelper::HookDefaultReceiveSinkWithContext(): Unable to hook \""
615 << tracename <<
"\"");
650 bool explicitFilename) = 0;
662 bool promiscuous =
false,
663 bool explicitFilename =
false);
676 bool promiscuous =
false,
677 bool explicitFilename =
false);
711 bool promiscuous =
false);
720 void EnablePcapAll(std::string prefix,
bool promiscuous =
false);
770 bool explicitFilename) = 0;
798 void EnableAscii(std::string prefix, std::string ndName,
bool explicitFilename =
false);
910 bool explicitFilename);
947 bool explicitFilename);
961 bool explicitFilename);
Base class providing common user-level ascii trace operations for helpers representing net devices.
virtual ~AsciiTraceHelperForDevice()
Destroy an AsciiTraceHelperForDevice.
void EnableAsciiImpl(Ptr< OutputStreamWrapper > stream, std::string prefix, uint32_t nodeid, uint32_t deviceid, bool explicitFilename)
Enable ascii trace output on the device specified by a global node-id (of a previously created node) ...
void EnableAscii(std::string prefix, Ptr< NetDevice > nd, bool explicitFilename=false)
Enable ascii trace output on the indicated net device.
void EnableAsciiAll(std::string prefix)
Enable ascii trace output on each device (which is of the appropriate type) in the set of all nodes c...
AsciiTraceHelperForDevice()
Construct an AsciiTraceHelperForDevice.
virtual void EnableAsciiInternal(Ptr< OutputStreamWrapper > stream, std::string prefix, Ptr< NetDevice > nd, bool explicitFilename)=0
Enable ascii trace output on the indicated net device.
void EnableAsciiImpl(Ptr< OutputStreamWrapper > stream, std::string prefix, Ptr< NetDevice > nd, bool explicitFilename)
Enable ascii trace output the indicated net device (implementation).
Manage ASCII trace files for device models.
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 con...
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...
static void DefaultDropSinkWithContext(Ptr< OutputStreamWrapper > file, std::string context, Ptr< const Packet > p)
Basic Drop default trace sink.
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...
static void DefaultReceiveSinkWithContext(Ptr< OutputStreamWrapper > file, std::string context, Ptr< const Packet > p)
Basic Receive default trace sink.
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 cont...
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.
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 ...
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 cont...
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 cont...
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 ...
AsciiTraceHelper()
Create an ascii trace helper.
static void DefaultDequeueSinkWithoutContext(Ptr< OutputStreamWrapper > file, Ptr< const Packet > p)
Basic Dequeue default trace sink.
static void DefaultEnqueueSinkWithContext(Ptr< OutputStreamWrapper > file, std::string context, Ptr< const Packet > p)
Basic Enqueue default trace sink.
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 ...
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...
static void DefaultDropSinkWithoutContext(Ptr< OutputStreamWrapper > file, Ptr< const Packet > p)
Basic Drop default trace sink.
static void DefaultDequeueSinkWithContext(Ptr< OutputStreamWrapper > file, std::string context, Ptr< const Packet > p)
Basic Dequeue default trace sink.
static void DefaultEnqueueSinkWithoutContext(Ptr< OutputStreamWrapper > file, Ptr< const Packet > p)
Basic Enqueue default trace sink.
~AsciiTraceHelper()
Destroy an ascii trace helper.
static void DefaultReceiveSinkWithoutContext(Ptr< OutputStreamWrapper > file, Ptr< const Packet > p)
Basic Receive default trace sink.
holds a vector of ns3::NetDevice pointers
keep track of a set of node pointers.
Base class providing common user-level pcap operations for helpers representing net devices.
void EnablePcapAll(std::string prefix, bool promiscuous=false)
Enable pcap output on each device (which is of the appropriate type) in the set of all nodes created ...
void EnablePcap(std::string prefix, Ptr< NetDevice > nd, bool promiscuous=false, bool explicitFilename=false)
Enable pcap output the indicated net device.
virtual void EnablePcapInternal(std::string prefix, Ptr< NetDevice > nd, bool promiscuous, bool explicitFilename)=0
Enable pcap output the indicated net device.
virtual ~PcapHelperForDevice()
Destroy a PcapHelperForDevice.
PcapHelperForDevice()
Construct a PcapHelperForDevice.
Manage pcap files for device models.
std::string GetFilenameFromDevice(std::string prefix, Ptr< NetDevice > device, bool useObjectNames=true)
Let the pcap helper figure out a reasonable filename to use for a pcap file associated with a device.
Ptr< PcapFileWrapper > CreateFile(std::string filename, std::ios::openmode filemode, DataLinkType dataLinkType, uint32_t snapLen=std::numeric_limits< uint32_t >::max(), int32_t tzCorrection=0)
Create and initialize a pcap file.
DataLinkType
This enumeration holds the data link types that will be written to the pcap file.
static void SinkWithHeader(Ptr< PcapFileWrapper > file, const Header &header, Ptr< const Packet > p)
This trace sink passes a header separately from the packet to prevent creating a new packet (for perf...
void HookDefaultSink(Ptr< T > object, std::string traceName, Ptr< PcapFileWrapper > file)
Hook a trace source to the default trace sink.
std::string GetFilenameFromInterfacePair(std::string prefix, Ptr< Object > object, uint32_t interface, bool useObjectNames=true)
Let the pcap helper figure out a reasonable filename to use for the pcap file associated with a node.
~PcapHelper()
Destroy a pcap helper.
static void DefaultSink(Ptr< PcapFileWrapper > file, Ptr< const Packet > p)
The basic default trace sink.
PcapHelper()
Create a pcap helper.
Smart pointer class similar to boost::intrusive_ptr.
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
auto MakeBoundCallback(R(*fnPtr)(Args...), BArgs &&... bargs)
Make Callbacks with varying number of bound arguments.
Every class exported by the ns3 library is enclosed in the ns3 namespace.