Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'Adrien.Gougeon/simgrid-master'
[simgrid.git] / src / surf / ns3 / ns3_simulator.hpp
1 /* Copyright (c) 2007-2020. 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 #ifndef NS3_SIMULATOR_HPP
7 #define NS3_SIMULATOR_HPP
8
9 #include "simgrid/s4u/Host.hpp"
10 #include "src/surf/network_ns3.hpp"
11
12 #include "ns3/wifi-module.h"
13 #include <ns3/node.h>
14 #include <ns3/tcp-socket-factory.h>
15
16 #include <cstdint>
17
18 class XBT_PRIVATE NetPointNs3 {
19 public:
20   static simgrid::xbt::Extension<simgrid::kernel::routing::NetPoint, NetPointNs3> EXTENSION_ID;
21
22   explicit NetPointNs3();
23   ns3::Ptr<ns3::Node> ns3_node_;
24   std::string ipv4_address_;
25 };
26
27 XBT_PRIVATE void ns3_simulator(double max_seconds);
28 XBT_PRIVATE void ns3_add_direct_route(simgrid::kernel::routing::NetPoint* src, simgrid::kernel::routing::NetPoint* dst,
29                                       double bw, double lat, const std::string& link_name,
30                                       simgrid::s4u::Link::SharingPolicy policy);
31
32 class XBT_PRIVATE SgFlow {
33 public:
34   SgFlow(uint32_t total_bytes, simgrid::kernel::resource::NetworkNS3Action* action);
35
36   // private:
37   std::uint32_t buffered_bytes_ = 0;
38   std::uint32_t sent_bytes_     = 0;
39   std::uint32_t remaining_;
40   std::uint32_t total_bytes_;
41   bool finished_ = false;
42   simgrid::kernel::resource::NetworkNS3Action* action_;
43 };
44
45 XBT_PRIVATE void start_flow(ns3::Ptr<ns3::Socket> sock, const char* to, uint16_t port_number);
46
47 static inline std::string transform_socket_ptr(ns3::Ptr<ns3::Socket> local_socket)
48 {
49   std::stringstream sstream;
50   sstream << local_socket;
51   return sstream.str();
52 }
53
54 #endif