A Discrete-Event Network Simulator
API
udp-echo-client.cc
Go to the documentation of this file.
1/*
2 * Copyright 2007 University of Washington
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 */
17#include "udp-echo-client.h"
18
19#include "ns3/inet-socket-address.h"
20#include "ns3/inet6-socket-address.h"
21#include "ns3/ipv4-address.h"
22#include "ns3/ipv6-address.h"
23#include "ns3/log.h"
24#include "ns3/nstime.h"
25#include "ns3/packet.h"
26#include "ns3/simulator.h"
27#include "ns3/socket-factory.h"
28#include "ns3/socket.h"
29#include "ns3/trace-source-accessor.h"
30#include "ns3/uinteger.h"
31
32namespace ns3
33{
34
35NS_LOG_COMPONENT_DEFINE("UdpEchoClientApplication");
36
37NS_OBJECT_ENSURE_REGISTERED(UdpEchoClient);
38
39TypeId
41{
42 static TypeId tid =
43 TypeId("ns3::UdpEchoClient")
45 .SetGroupName("Applications")
46 .AddConstructor<UdpEchoClient>()
47 .AddAttribute("MaxPackets",
48 "The maximum number of packets the application will send",
49 UintegerValue(100),
51 MakeUintegerChecker<uint32_t>())
52 .AddAttribute("Interval",
53 "The time to wait between packets",
54 TimeValue(Seconds(1.0)),
57 .AddAttribute("RemoteAddress",
58 "The destination Address of the outbound packets",
60 MakeAddressAccessor(&UdpEchoClient::m_peerAddress),
61 MakeAddressChecker())
62 .AddAttribute("RemotePort",
63 "The destination port of the outbound packets",
66 MakeUintegerChecker<uint16_t>())
67 .AddAttribute(
68 "PacketSize",
69 "Size of echo data in outbound packets",
70 UintegerValue(100),
72 MakeUintegerChecker<uint32_t>())
73 .AddTraceSource("Tx",
74 "A new packet is created and is sent",
76 "ns3::Packet::TracedCallback")
77 .AddTraceSource("Rx",
78 "A packet has been received",
80 "ns3::Packet::TracedCallback")
81 .AddTraceSource("TxWithAddresses",
82 "A new packet is created and is sent",
84 "ns3::Packet::TwoAddressTracedCallback")
85 .AddTraceSource("RxWithAddresses",
86 "A packet has been received",
88 "ns3::Packet::TwoAddressTracedCallback");
89 return tid;
90}
91
93{
94 NS_LOG_FUNCTION(this);
95 m_sent = 0;
96 m_socket = nullptr;
98 m_data = nullptr;
99 m_dataSize = 0;
100}
101
103{
104 NS_LOG_FUNCTION(this);
105 m_socket = nullptr;
106
107 delete[] m_data;
108 m_data = nullptr;
109 m_dataSize = 0;
110}
111
112void
114{
115 NS_LOG_FUNCTION(this << ip << port);
116 m_peerAddress = ip;
118}
119
120void
122{
123 NS_LOG_FUNCTION(this << addr);
124 m_peerAddress = addr;
125}
126
127void
129{
130 NS_LOG_FUNCTION(this);
132}
133
134void
136{
137 NS_LOG_FUNCTION(this);
138
139 if (!m_socket)
140 {
141 TypeId tid = TypeId::LookupByName("ns3::UdpSocketFactory");
144 {
145 if (m_socket->Bind() == -1)
146 {
147 NS_FATAL_ERROR("Failed to bind socket");
148 }
151 }
153 {
154 if (m_socket->Bind6() == -1)
155 {
156 NS_FATAL_ERROR("Failed to bind socket");
157 }
160 }
162 {
163 if (m_socket->Bind() == -1)
164 {
165 NS_FATAL_ERROR("Failed to bind socket");
166 }
168 }
170 {
171 if (m_socket->Bind6() == -1)
172 {
173 NS_FATAL_ERROR("Failed to bind socket");
174 }
176 }
177 else
178 {
179 NS_ASSERT_MSG(false, "Incompatible address type: " << m_peerAddress);
180 }
181 }
182
186}
187
188void
190{
191 NS_LOG_FUNCTION(this);
192
193 if (m_socket)
194 {
195 m_socket->Close();
197 m_socket = nullptr;
198 }
199
201}
202
203void
205{
206 NS_LOG_FUNCTION(this << dataSize);
207
208 //
209 // If the client is setting the echo packet data size this way, we infer
210 // that she doesn't care about the contents of the packet at all, so
211 // neither will we.
212 //
213 delete[] m_data;
214 m_data = nullptr;
215 m_dataSize = 0;
216 m_size = dataSize;
217}
218
221{
222 NS_LOG_FUNCTION(this);
223 return m_size;
224}
225
226void
227UdpEchoClient::SetFill(std::string fill)
228{
229 NS_LOG_FUNCTION(this << fill);
230
231 uint32_t dataSize = fill.size() + 1;
232
233 if (dataSize != m_dataSize)
234 {
235 delete[] m_data;
236 m_data = new uint8_t[dataSize];
237 m_dataSize = dataSize;
238 }
239
240 memcpy(m_data, fill.c_str(), dataSize);
241
242 //
243 // Overwrite packet size attribute.
244 //
245 m_size = dataSize;
246}
247
248void
249UdpEchoClient::SetFill(uint8_t fill, uint32_t dataSize)
250{
251 NS_LOG_FUNCTION(this << fill << dataSize);
252 if (dataSize != m_dataSize)
253 {
254 delete[] m_data;
255 m_data = new uint8_t[dataSize];
256 m_dataSize = dataSize;
257 }
258
259 memset(m_data, fill, dataSize);
260
261 //
262 // Overwrite packet size attribute.
263 //
264 m_size = dataSize;
265}
266
267void
268UdpEchoClient::SetFill(uint8_t* fill, uint32_t fillSize, uint32_t dataSize)
269{
270 NS_LOG_FUNCTION(this << fill << fillSize << dataSize);
271 if (dataSize != m_dataSize)
272 {
273 delete[] m_data;
274 m_data = new uint8_t[dataSize];
275 m_dataSize = dataSize;
276 }
277
278 if (fillSize >= dataSize)
279 {
280 memcpy(m_data, fill, dataSize);
281 m_size = dataSize;
282 return;
283 }
284
285 //
286 // Do all but the final fill.
287 //
288 uint32_t filled = 0;
289 while (filled + fillSize < dataSize)
290 {
291 memcpy(&m_data[filled], fill, fillSize);
292 filled += fillSize;
293 }
294
295 //
296 // Last fill may be partial
297 //
298 memcpy(&m_data[filled], fill, dataSize - filled);
299
300 //
301 // Overwrite packet size attribute.
302 //
303 m_size = dataSize;
304}
305
306void
308{
309 NS_LOG_FUNCTION(this << dt);
311}
312
313void
315{
316 NS_LOG_FUNCTION(this);
317
319
320 Ptr<Packet> p;
321 if (m_dataSize)
322 {
323 //
324 // If m_dataSize is non-zero, we have a data buffer of the same size that we
325 // are expected to copy and send. This state of affairs is created if one of
326 // the Fill functions is called. In this case, m_size must have been set
327 // to agree with m_dataSize
328 //
330 "UdpEchoClient::Send(): m_size and m_dataSize inconsistent");
331 NS_ASSERT_MSG(m_data, "UdpEchoClient::Send(): m_dataSize but no m_data");
332 p = Create<Packet>(m_data, m_dataSize);
333 }
334 else
335 {
336 //
337 // If m_dataSize is zero, the client has indicated that it doesn't care
338 // about the data itself either by specifying the data size by setting
339 // the corresponding attribute or by not calling a SetFill function. In
340 // this case, we don't worry about it either. But we do allow m_size
341 // to have a value different from the (zero) m_dataSize.
342 //
343 p = Create<Packet>(m_size);
344 }
345 Address localAddress;
346 m_socket->GetSockName(localAddress);
347 // call to the trace sinks before the packet is actually sent,
348 // so that tags added to the packet can be sent as well
349 m_txTrace(p);
351 {
353 p,
354 localAddress,
356 }
358 {
360 p,
361 localAddress,
363 }
364 m_socket->Send(p);
365 ++m_sent;
366
368 {
369 NS_LOG_INFO("At time " << Simulator::Now().As(Time::S) << " client sent " << m_size
370 << " bytes to " << Ipv4Address::ConvertFrom(m_peerAddress)
371 << " port " << m_peerPort);
372 }
374 {
375 NS_LOG_INFO("At time " << Simulator::Now().As(Time::S) << " client sent " << m_size
376 << " bytes to " << Ipv6Address::ConvertFrom(m_peerAddress)
377 << " port " << m_peerPort);
378 }
380 {
382 "At time " << Simulator::Now().As(Time::S) << " client sent " << m_size << " bytes to "
383 << InetSocketAddress::ConvertFrom(m_peerAddress).GetIpv4() << " port "
385 }
387 {
389 "At time " << Simulator::Now().As(Time::S) << " client sent " << m_size << " bytes to "
390 << Inet6SocketAddress::ConvertFrom(m_peerAddress).GetIpv6() << " port "
392 }
393
394 if (m_sent < m_count)
395 {
397 }
398}
399
400void
402{
403 NS_LOG_FUNCTION(this << socket);
404 Ptr<Packet> packet;
405 Address from;
406 Address localAddress;
407 while ((packet = socket->RecvFrom(from)))
408 {
410 {
411 NS_LOG_INFO("At time " << Simulator::Now().As(Time::S) << " client received "
412 << packet->GetSize() << " bytes from "
413 << InetSocketAddress::ConvertFrom(from).GetIpv4() << " port "
415 }
417 {
418 NS_LOG_INFO("At time " << Simulator::Now().As(Time::S) << " client received "
419 << packet->GetSize() << " bytes from "
420 << Inet6SocketAddress::ConvertFrom(from).GetIpv6() << " port "
422 }
423 socket->GetSockName(localAddress);
424 m_rxTrace(packet);
425 m_rxTraceWithAddresses(packet, from, localAddress);
426 }
427}
428
429} // Namespace ns3
a polymophic address class
Definition: address.h:92
AttributeValue implementation for Address.
The base class for all ns3 applications.
Definition: application.h:61
void DoDispose() override
Destructor implementation.
Definition: application.cc:85
Ptr< Node > GetNode() const
Definition: application.cc:107
An identifier for simulation events.
Definition: event-id.h:55
bool IsExpired() const
This method is syntactic sugar for the ns3::Simulator::IsExpired method.
Definition: event-id.cc:69
An Inet6 address class.
static Inet6SocketAddress ConvertFrom(const Address &addr)
Convert the address to a InetSocketAddress.
uint16_t GetPort() const
Get the port.
static bool IsMatchingType(const Address &addr)
If the address match.
Ipv6Address GetIpv6() const
Get the IPv6 address.
an Inet address class
static bool IsMatchingType(const Address &address)
Ipv4Address GetIpv4() const
static InetSocketAddress ConvertFrom(const Address &address)
Returns an InetSocketAddress which corresponds to the input Address.
static Ipv4Address ConvertFrom(const Address &address)
static bool IsMatchingType(const Address &address)
static Ipv6Address ConvertFrom(const Address &address)
Convert the Address object into an Ipv6Address ones.
static bool IsMatchingType(const Address &address)
If the Address matches the type.
uint32_t GetSize() const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
Definition: packet.h:863
static EventId Schedule(const Time &delay, FUNC f, Ts &&... args)
Schedule an event to expire after delay.
Definition: simulator.h:568
static void Cancel(const EventId &id)
Set the cancel bit on this event: the event's associated function will not be invoked when it expires...
Definition: simulator.cc:276
static Time Now()
Return the current simulation virtual time.
Definition: simulator.cc:199
virtual int Send(Ptr< Packet > p, uint32_t flags)=0
Send data (or dummy data) to the remote host.
virtual Ptr< Packet > RecvFrom(uint32_t maxSize, uint32_t flags, Address &fromAddress)=0
Read a single packet from the socket and retrieve the sender address.
virtual bool SetAllowBroadcast(bool allowBroadcast)=0
Configure whether broadcast datagram transmissions are allowed.
virtual int Bind6()=0
Allocate a local IPv6 endpoint for this socket.
virtual int Connect(const Address &address)=0
Initiate a connection to a remote host.
virtual int GetSockName(Address &address) const =0
Get socket address.
void SetRecvCallback(Callback< void, Ptr< Socket > > receivedData)
Notify application when new data is available to be read.
Definition: socket.cc:126
static Ptr< Socket > CreateSocket(Ptr< Node > node, TypeId tid)
This method wraps the creation of sockets that is performed on a given node by a SocketFactory specif...
Definition: socket.cc:72
virtual int Close()=0
Close a socket.
virtual int Bind(const Address &address)=0
Allocate a local endpoint for this socket.
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:105
@ S
second
Definition: nstime.h:116
AttributeValue implementation for Time.
Definition: nstime.h:1425
a unique identifier for an interface.
Definition: type-id.h:60
static TypeId LookupByName(std::string name)
Get a TypeId by name.
Definition: type-id.cc:839
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition: type-id.cc:935
A Udp Echo client.
void SetFill(std::string fill)
Set the data fill of the packet (what is sent as data to the server) to the zero-terminated contents ...
Time m_interval
Packet inter-send time.
void DoDispose() override
Destructor implementation.
void Send()
Send a packet.
void StopApplication() override
Application specific shutdown code.
Ptr< Socket > m_socket
Socket.
void HandleRead(Ptr< Socket > socket)
Handle a packet reception.
EventId m_sendEvent
Event to send the next packet.
uint32_t m_size
Size of the sent packet.
uint32_t GetDataSize() const
Get the number of data bytes that will be sent to the server.
uint32_t m_count
Maximum number of packets the application will send.
static TypeId GetTypeId()
Get the type ID.
Address m_peerAddress
Remote peer address.
uint8_t * m_data
packet payload data
uint32_t m_sent
Counter for sent packets.
void StartApplication() override
Application specific startup code.
void ScheduleTransmit(Time dt)
Schedule the next packet transmission.
TracedCallback< Ptr< const Packet >, const Address &, const Address & > m_txTraceWithAddresses
Callbacks for tracing the packet Tx events, includes source and destination addresses.
TracedCallback< Ptr< const Packet > > m_txTrace
Callbacks for tracing the packet Tx events.
TracedCallback< Ptr< const Packet >, const Address &, const Address & > m_rxTraceWithAddresses
Callbacks for tracing the packet Rx events, includes source and destination addresses.
void SetDataSize(uint32_t dataSize)
Set the data size of the packet (the number of bytes that are sent as data to the server).
uint16_t m_peerPort
Remote peer port.
TracedCallback< Ptr< const Packet > > m_rxTrace
Callbacks for tracing the packet Rx events.
uint32_t m_dataSize
packet payload size (must be equal to m_size)
void SetRemote(Address ip, uint16_t port)
set the remote address and port
Hold an unsigned integer type.
Definition: uinteger.h:45
uint16_t port
Definition: dsdv-manet.cc:45
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
Definition: assert.h:66
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
Definition: assert.h:86
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Definition: nstime.h:1426
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Definition: uinteger.h:46
Callback< R, Args... > MakeNullCallback()
Definition: callback.h:734
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
Definition: fatal-error.h:160
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:202
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Definition: log.h:275
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition: object-base.h:45
Time Seconds(double value)
Construct a Time in the indicated unit.
Definition: nstime.h:1338
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Callback< R, Args... > MakeCallback(R(T::*memPtr)(Args...), OBJ objPtr)
Build Callbacks for class method members which take varying numbers of arguments and potentially retu...
Definition: callback.h:691
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
Definition: time.cc:535