24 #include "ns3/application-packet-probe.h"
25 #include "ns3/object.h"
27 #include "ns3/names.h"
28 #include "ns3/config.h"
29 #include "ns3/trace-source-accessor.h"
40 static TypeId tid =
TypeId (
"ns3::ApplicationPacketProbe")
42 .AddConstructor<ApplicationPacketProbe> ()
43 .AddTraceSource (
"Output",
44 "The packet plus its socket address that serve "
45 "as the output for this probe",
47 "ns3::Packet::PacketAddressTracedCallback")
48 .AddTraceSource (
"OutputBytes",
49 "The number of bytes in the packet",
51 "ns3::Packet::PacketSizeTracedCallback")
75 uint32_t packetSizeNew = packet->
GetSize ();
85 NS_ASSERT_MSG (probe,
"Error: Can't find probe for path " << path);
86 probe->SetValue (packet, address);
102 NS_LOG_DEBUG (
"Name of probe to search for in config database: " << path);
116 uint32_t packetSizeNew = packet->
GetSize ();
void TraceSink(Ptr< const Packet > packet, const Address &address)
Method to connect to an underlying ns3::TraceSource with arguments of type Ptr and cons...
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
virtual bool ConnectByObject(std::string traceSource, Ptr< Object > obj)
connect to a trace source attribute provided by a given object
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
virtual void ConnectByPath(std::string path)
connect to a trace source provided by a config path
static void SetValueByPath(std::string path, Ptr< const Packet > packet, const Address &address)
Set a probe value by its name in the Config system.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
uint32_t GetSize(void) const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
a polymophic address class
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
static TypeId GetTypeId()
Get the type ID.
uint32_t m_packetSizeOld
The size of the traced packet.
TracedCallback< Ptr< const Packet >, const Address & > m_output
Output trace, packet and source address.
Callback< R > MakeCallback(R(T::*memPtr)(void), OBJ objPtr)
bool TraceConnectWithoutContext(std::string name, const CallbackBase &cb)
Connect a TraceSource to a Callback without a context.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
static std::string FindPath(Ptr< Object > object)
Given a pointer to an object, look to see if that object has a name associated with it and return the...
Address m_address
The socket address for the traced packet.
void SetValue(Ptr< const Packet > packet, const Address &address)
Set a probe value.
virtual ~ApplicationPacketProbe()
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
TracedCallback< uint32_t, uint32_t > m_outputBytes
Output trace, previous packet size and current packet size.
virtual bool IsEnabled(void) const
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
void ConnectWithoutContext(std::string path, const CallbackBase &cb)
Ptr< const Packet > m_packet
The traced packet.