Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ns3: further cleanups
[simgrid.git] / src / surf / ns3 / ns3_simulator.h
1 /* Copyright (c) 2007-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef _NS3_SIM_H
8 #define _NS3_SIM_H
9
10 #ifdef __cplusplus
11
12 #include <cstdint>
13
14 #include "ns3_interface.h"
15 #include "ns3/core-module.h"
16 #include "my-point-to-point-helper.h"
17
18 #include "ns3/node.h"
19 #include "ns3/global-route-manager.h"
20 #include "ns3/csma-helper.h"
21 #include "ns3/internet-stack-helper.h"
22 #include "ns3/ipv4-address-helper.h"
23 #include "ns3/point-to-point-helper.h"
24 #include "ns3/packet-sink-helper.h"
25 #include "ns3/inet-socket-address.h"
26 #include "ns3/tcp-socket-factory.h"
27
28 class SgFlow {
29 public:
30   SgFlow(uint32_t totalBytes, simgrid::surf::NetworkNS3Action * action);
31
32 //private:
33   std::uint32_t bufferedBytes_ = 0;
34   std::uint32_t sentBytes_ = 0;
35   std::uint32_t remaining_;
36   std::uint32_t totalBytes_;
37   bool finished_ = false;
38   simgrid::surf::NetworkNS3Action* action_;
39 };
40
41 //Simulator s;
42 class NS3Sim {
43
44 private:
45
46 public:
47   NS3Sim();
48   void create_flow_NS3(ns3::Ptr<ns3::Node> src,
49             ns3::Ptr<ns3::Node> dst,
50             std::uint16_t port_number,
51             double start,
52             const char *addr,
53             std::uint32_t TotalBytes,
54             simgrid::surf::NetworkNS3Action * action);
55   void simulator_start(double min);
56 };
57
58 #endif                          /* __cplusplus */
59
60 #endif