Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
db1236a9b68308d14c5d5d92c149a3a0e6eb7e47
[simgrid.git] / src / surf / ns3 / ns3_simulator.hpp
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 #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> ns3Node_;
24 };
25
26 XBT_PUBLIC void ns3_initialize(std::string TcpProtocol);
27 extern "C" {
28 XBT_PUBLIC void ns3_simulator(double maxSeconds);
29 XBT_PUBLIC void ns3_add_link(NetPointNs3* src, NetPointNs3* dst, double bw, double lat);
30 XBT_PUBLIC void ns3_add_cluster(const char* id, double bw, double lat);
31 }
32
33 class XBT_PRIVATE SgFlow {
34 public:
35   SgFlow(uint32_t totalBytes, simgrid::kernel::resource::NetworkNS3Action* action);
36
37   // private:
38   std::uint32_t bufferedBytes_ = 0;
39   std::uint32_t sentBytes_     = 0;
40   std::uint32_t remaining_;
41   std::uint32_t totalBytes_;
42   bool finished_ = false;
43   simgrid::kernel::resource::NetworkNS3Action* action_;
44 };
45
46 void StartFlow(ns3::Ptr<ns3::Socket> sock, const char* to, uint16_t port_number);
47
48 static inline std::string transformSocketPtr(ns3::Ptr<ns3::Socket> localSocket)
49 {
50   std::stringstream sstream;
51   sstream << localSocket;
52   return sstream.str();
53 }
54
55 #endif