Logo AND Algorithmique Numérique Distribuée

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