Collects data about incoming packets. More...
#include "mpi-test-fixtures.h"
Static Public Member Functions | |
static std::string | FormatAddress (const ns3::Address address) |
Get the source address and port, as a formatted string. | |
static int | GetLineCount () |
Get current line count and increment it. | |
static int | GetWorldRank () |
Get the MPI rank in the world communicator. | |
static int | GetWorldSize () |
Get the MPI size of the world communicator. | |
static void | Init () |
PacketSink Init. | |
static void | SinkTrace (const ns3::Ptr< const ns3::Packet > packet, const ns3::Address &srcAddress, const ns3::Address &destAddress) |
PacketSink receive trace callback. | |
static void | Verify (unsigned long expectedCount) |
Verify the sink trace count observed matches the expected count. | |
Static Private Attributes | |
static unsigned long | m_line = 0 |
Current output line number for ordering output. | |
static unsigned long | m_sinkCount = 0 |
Running sum of number of SinkTrace calls observed. | |
static int | m_worldRank = -1 |
MPI CommWorld rank. | |
static int | m_worldSize = -1 |
MPI CommWorld size. | |
Collects data about incoming packets.
Definition at line 82 of file mpi-test-fixtures.h.
|
static |
Get the source address and port, as a formatted string.
[in] | address | The ns3::Address. |
Definition at line 68 of file mpi-test-fixtures.cc.
References ns3::Inet6SocketAddress::ConvertFrom(), ns3::InetSocketAddress::ConvertFrom(), ns3::InetSocketAddress::GetIpv4(), ns3::Inet6SocketAddress::GetIpv6(), ns3::Inet6SocketAddress::GetPort(), ns3::InetSocketAddress::GetPort(), ns3::Inet6SocketAddress::IsMatchingType(), and ns3::InetSocketAddress::IsMatchingType().
|
inlinestatic |
Get current line count and increment it.
Definition at line 138 of file mpi-test-fixtures.h.
References m_line.
|
inlinestatic |
Get the MPI rank in the world communicator.
Definition at line 119 of file mpi-test-fixtures.h.
References m_worldRank.
Referenced by ReportRank().
|
inlinestatic |
Get the MPI size of the world communicator.
Definition at line 129 of file mpi-test-fixtures.h.
References m_worldSize.
Referenced by ReportRank().
|
static |
PacketSink Init.
Definition at line 29 of file mpi-test-fixtures.cc.
References m_line, m_sinkCount, m_worldRank, and m_worldSize.
|
static |
PacketSink receive trace callback.
[in] | packet | The packet. |
[in] | srcAddress | The source address. |
[in] | destAddress | The destination address. |
Definition at line 38 of file mpi-test-fixtures.cc.
References m_sinkCount.
|
static |
Verify the sink trace count observed matches the expected count.
Prints message to std::cout indicating success or fail.
expectedCount | Expected number of packet received. |
Definition at line 46 of file mpi-test-fixtures.cc.
References m_sinkCount, and RANK0COUT.
|
staticprivate |
Current output line number for ordering output.
Definition at line 145 of file mpi-test-fixtures.h.
Referenced by GetLineCount(), and Init().
|
staticprivate |
Running sum of number of SinkTrace calls observed.
Definition at line 144 of file mpi-test-fixtures.h.
Referenced by Init(), SinkTrace(), and Verify().
|
staticprivate |
MPI CommWorld rank.
Definition at line 146 of file mpi-test-fixtures.h.
Referenced by GetWorldRank(), and Init().
|
staticprivate |
MPI CommWorld size.
Definition at line 147 of file mpi-test-fixtures.h.
Referenced by GetWorldSize(), and Init().