Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Weak attempt at fixing issue with recent ns3+gcc.
[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   void set_name(std::string name) { name_ = name; }
23
24   explicit NetPointNs3();
25   std::string name_;
26   ns3::Ptr<ns3::Node> ns3_node_;
27   std::string ipv4_address_;
28 };
29
30 XBT_PRIVATE void ns3_initialize(std::string TcpProtocol);
31 XBT_PRIVATE void ns3_simulator(double max_seconds);
32 XBT_PRIVATE void ns3_add_direct_route(simgrid::kernel::routing::NetPoint* src, simgrid::kernel::routing::NetPoint* dst,
33                                       double bw, double lat, const std::string& link_name,
34                                       simgrid::s4u::Link::SharingPolicy policy);
35
36 class XBT_PRIVATE SgFlow {
37 public:
38   SgFlow(uint32_t total_bytes, simgrid::kernel::resource::NetworkNS3Action* action);
39
40   // private:
41   std::uint32_t buffered_bytes_ = 0;
42   std::uint32_t sent_bytes_     = 0;
43   std::uint32_t remaining_;
44   std::uint32_t total_bytes_;
45   bool finished_ = false;
46   simgrid::kernel::resource::NetworkNS3Action* action_;
47 };
48
49 XBT_PRIVATE void start_flow(ns3::Ptr<ns3::Socket> sock, const char* to, uint16_t port_number);
50
51 static inline std::string transform_socket_ptr(ns3::Ptr<ns3::Socket> local_socket)
52 {
53   std::stringstream sstream;
54   sstream << local_socket;
55   return sstream.str();
56 }
57
58 class XBT_PRIVATE WifiZone {
59 public:
60   WifiZone(std::string name_, simgrid::s4u::Host* host_, ns3::Ptr<ns3::Node> ap_node_,
61            ns3::Ptr<ns3::YansWifiChannel> channel_, int mcs_, int nss_, int network_, int link_);
62
63   const char* get_cname() { return name.c_str(); }
64   simgrid::s4u::Host* get_host() { return host; }
65   ns3::Ptr<ns3::Node> get_ap_node() { return ap_node; }
66   ns3::Ptr<ns3::YansWifiChannel> get_channel() { return channel; }
67   int get_mcs() { return mcs; }
68   int get_nss() { return nss; }
69   int get_network() { return network; }
70   int get_link() { return link; }
71   int get_n_sta_nodes() { return n_sta_nodes; }
72
73   void set_network(int network_) { network = network_; }
74   void set_link(int link_) { link = link_; }
75   void add_sta_node() { n_sta_nodes++; }
76
77   static bool is_ap(ns3::Ptr<ns3::Node> node);
78   static WifiZone* by_name(std::string name);
79
80 private:
81   std::string name;
82   simgrid::s4u::Host* host;
83   ns3::Ptr<ns3::Node> ap_node;
84   ns3::Ptr<ns3::YansWifiChannel> channel;
85   int mcs;
86   int nss;
87   int network;
88   int link;
89   int n_sta_nodes = 0;
90   static std::unordered_map<std::string, WifiZone*> wifi_zones;
91 };
92
93 #endif