X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8a5a52c31203af9e7eb66dc1c1c8f4e6b14d0b70..dbfaf2c37c080ab6f6c41fb4d3d0d481db6b7780:/src/surf/ns3/ns3_simulator.h diff --git a/src/surf/ns3/ns3_simulator.h b/src/surf/ns3/ns3_simulator.h index 484a49fb66..89c10d2c01 100644 --- a/src/surf/ns3/ns3_simulator.h +++ b/src/surf/ns3/ns3_simulator.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team. +/* Copyright (c) 2007-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -9,25 +9,32 @@ #ifdef __cplusplus -#include "ns3/core-module.h" -#include "ns3/helper-module.h" -#include "ns3/simulator-module.h" -#include "ns3/node-module.h" -#include "ns3/helper-module.h" -#include "ns3/global-routing-module.h" -#include "ns3/tcp-socket-factory.h" - -using namespace ns3; -using namespace std; - -struct MySocket{ - uint32_t bufferedBytes; - uint32_t sentBytes; - uint32_t remaining; - uint32_t TotalBytes; - uint32_t last_amount_sent; - char finished; - void* action; +#include + +#include "ns3_interface.h" +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +class SgFlow { +public: + SgFlow(uint32_t totalBytes, simgrid::surf::NetworkNS3Action * action); + +//private: + std::uint32_t bufferedBytes_ = 0; + std::uint32_t sentBytes_ = 0; + std::uint32_t remaining_; + std::uint32_t totalBytes_; + bool finished_ = false; + simgrid::surf::NetworkNS3Action* action_; }; //Simulator s; @@ -36,22 +43,15 @@ class NS3Sim { private: public: - NS3Sim(); - ~NS3Sim(); - void create_flow_NS3(Ptr src, - Ptr dst, - uint16_t port_number, - double start, - const char *addr, - uint32_t TotalBytes, - void * action); - void simulator_stop(double min); - void simulator_start(void); - void* get_action_from_socket(void *socket); - double get_remains_from_socket(void *socket); - double get_last_amount_sent_from_socket(void *socket); - void reset_last_amount_sent_from_socket(void *socket); - char get_finished(void *socket); + NS3Sim(); + void create_flow_NS3(ns3::Ptr src, + ns3::Ptr dst, + std::uint16_t port_number, + double start, + const char *addr, + std::uint32_t TotalBytes, + simgrid::surf::NetworkNS3Action * action); + void simulator_start(double min); }; #endif /* __cplusplus */