Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ns3: cleanups in the headers
[simgrid.git] / src / surf / ns3 / ns3_simulator.cpp
1 /* Copyright (c) 2007-2018. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "src/surf/ns3/ns3_simulator.hpp"
7 #include "xbt/log.h"
8 #include "xbt/sysdep.h"
9
10 #include <ns3/ipv4-address-helper.h>
11 #include <ns3/point-to-point-helper.h>
12
13 #include <algorithm>
14
15 std::map<std::string, SgFlow*> flowFromSock; // ns3::sock -> SgFlow
16
17 static void receive_callback(ns3::Ptr<ns3::Socket> socket);
18 static void datasent_cb(ns3::Ptr<ns3::Socket> socket, uint32_t dataSent);
19
20 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(ns3);
21
22 SgFlow::SgFlow(uint32_t totalBytes, simgrid::surf::NetworkNS3Action* action)
23 {
24   totalBytes_ = totalBytes;
25   remaining_  = totalBytes;
26   action_     = action;
27 }
28
29 static SgFlow* getFlowFromSocket(ns3::Ptr<ns3::Socket> socket)
30 {
31   auto it = flowFromSock.find(transformSocketPtr(socket));
32   return (it == flowFromSock.end()) ? nullptr : it->second;
33 }
34
35 static void receive_callback(ns3::Ptr<ns3::Socket> socket)
36 {
37   SgFlow* flow = getFlowFromSocket(socket);
38   XBT_DEBUG("received on F[%p, total: %u, remain: %u]", flow, flow->totalBytes_, flow->remaining_);
39
40   if (flow->finished_ == false) {
41     flow->finished_ = true;
42     XBT_DEBUG("recv_cb of F[%p, %p, %u]", flow, flow->action_, flow->totalBytes_);
43     XBT_DEBUG("Stop simulator at %f seconds", ns3::Simulator::Now().GetSeconds());
44     ns3::Simulator::Stop(ns3::Seconds(0.0));
45     ns3::Simulator::Run();
46   }
47 }
48
49 static void send_cb(ns3::Ptr<ns3::Socket> sock, uint32_t txSpace)
50 {
51   SgFlow* flow = getFlowFromSocket(sock);
52   XBT_DEBUG("Asked to write on F[%p, total: %u, remain: %u]", flow, flow->totalBytes_, flow->remaining_);
53
54   if (flow->remaining_ == 0) // all data was already buffered (and socket was already closed)
55     return;
56
57   /* While not all is buffered and there remain space in the buffers */
58   while (flow->bufferedBytes_ < flow->totalBytes_ && sock->GetTxAvailable() > 0) {
59
60     uint32_t toWrite = std::min({flow->remaining_, sock->GetTxAvailable()});
61     if (toWrite == 0) { // buffer full
62       XBT_DEBUG("%f: buffer full on flow %p (still %u to go)", ns3::Simulator::Now().GetSeconds(), flow,
63                 flow->remaining_);
64       return;
65     }
66     int amountSent = sock->Send(0, toWrite, 0);
67
68     xbt_assert(amountSent > 0, "Since TxAvailable>0, amountSent should also >0");
69     flow->bufferedBytes_ += amountSent;
70     flow->remaining_ -= amountSent;
71
72     XBT_DEBUG("%f: sent %d bytes over flow %p (still %u to go)", ns3::Simulator::Now().GetSeconds(), amountSent, flow,
73               flow->remaining_);
74   }
75
76   if (flow->bufferedBytes_ >= flow->totalBytes_)
77     sock->Close();
78 }
79
80 static void datasent_cb(ns3::Ptr<ns3::Socket> socket, uint32_t dataSent)
81 {
82   /* The tracing wants to know */
83   SgFlow* flow = getFlowFromSocket(socket);
84   flow->sentBytes_ += dataSent;
85   XBT_DEBUG("datasent_cb of F[%p, %p, %u] %u sent (%u total)", flow, flow->action_, flow->totalBytes_, dataSent,
86             flow->sentBytes_);
87 }
88
89 static void normalClose_callback(ns3::Ptr<ns3::Socket> socket)
90 {
91   SgFlow* flow = getFlowFromSocket(socket);
92   XBT_DEBUG("normalClose_cb of F[%p, %p, %u]", flow, flow->action_, flow->totalBytes_);
93   receive_callback(socket);
94 }
95
96 static void errorClose_callback(ns3::Ptr<ns3::Socket> socket)
97 {
98   SgFlow* flow = getFlowFromSocket(socket);
99   XBT_DEBUG("errorClose_cb of F[%p, %p, %u]", flow, flow->action_, flow->totalBytes_);
100   xbt_die("NS3: a socket was closed anormally");
101 }
102
103 static void succeededConnect_callback(ns3::Ptr<ns3::Socket> socket)
104 {
105   SgFlow* flow = getFlowFromSocket(socket);
106   XBT_DEBUG("succeededConnect_cb of F[%p, %p, %u]", flow, flow->action_, flow->totalBytes_);
107 }
108
109 static void failedConnect_callback(ns3::Ptr<ns3::Socket> socket)
110 {
111   SgFlow* mysocket = getFlowFromSocket(socket);
112   XBT_DEBUG("failedConnect_cb of F[%p, %p, %u]", mysocket, mysocket->action_, mysocket->totalBytes_);
113   xbt_die("NS3: a socket failed to connect");
114 }
115
116 void StartFlow(ns3::Ptr<ns3::Socket> sock, const char* to, uint16_t port_number)
117 {
118   SgFlow* flow = getFlowFromSocket(sock);
119   ns3::InetSocketAddress serverAddr(to, port_number);
120
121   sock->Connect(serverAddr);
122   // tell the tcp implementation to call send_cb again
123   // if we blocked and new tx buffer space becomes available
124   sock->SetSendCallback(MakeCallback(&send_cb));
125   // Notice when the send is over
126   sock->SetRecvCallback(MakeCallback(&receive_callback));
127   // Notice when we actually sent some data (mostly for the TRACING module)
128   sock->SetDataSentCallback(MakeCallback(&datasent_cb));
129
130   XBT_DEBUG("startFlow of F[%p, %p, %u] dest=%s port=%d", flow, flow->action_, flow->totalBytes_, to, port_number);
131
132   sock->SetConnectCallback(MakeCallback(&succeededConnect_callback), MakeCallback(&failedConnect_callback));
133   sock->SetCloseCallbacks(MakeCallback(&normalClose_callback), MakeCallback(&errorClose_callback));
134 }