Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
wifi: make room for the ns3-wifi binding
[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/node.h>
13 #include <ns3/tcp-socket-factory.h>
14
15 #include <cstdint>
16
17 class NetPointNs3 {
18 public:
19   static simgrid::xbt::Extension<simgrid::kernel::routing::NetPoint, NetPointNs3> EXTENSION_ID;
20
21   explicit NetPointNs3();
22   int node_num;
23   ns3::Ptr<ns3::Node> ns3_node_;
24 };
25
26 XBT_PUBLIC void ns3_initialize(std::string TcpProtocol);
27 XBT_PUBLIC void ns3_simulator(double max_seconds);
28 XBT_PUBLIC void ns3_add_direct_route(NetPointNs3* src, NetPointNs3* dst, double bw, double lat,
29                                      simgrid::s4u::Link::SharingPolicy policy);
30 XBT_PUBLIC void ns3_add_cluster(const char* id, double bw, double lat);
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 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