X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d20f024dba9ff1e9c8822237caaf963b9e913889..4be6dd7de645a17a97f373b2495061b54082b450:/src/surf/ns3/ns3_simulator.hpp diff --git a/src/surf/ns3/ns3_simulator.hpp b/src/surf/ns3/ns3_simulator.hpp index c007c2592d..e22cb6ddf0 100644 --- a/src/surf/ns3/ns3_simulator.hpp +++ b/src/surf/ns3/ns3_simulator.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -6,41 +6,48 @@ #ifndef NS3_SIMULATOR_HPP #define NS3_SIMULATOR_HPP +#include "simgrid/s4u/Host.hpp" +#include "src/surf/network_ns3.hpp" + +#include +#include + #include -#include "ns3_interface.hpp" +class XBT_PRIVATE NetPointNs3 { +public: + static simgrid::xbt::Extension EXTENSION_ID; + + explicit NetPointNs3(); + ns3::Ptr ns3_node_; + std::string ipv4_address_; +}; -#include -#include -#include -#include -#include -#include -#include +XBT_PRIVATE void ns3_initialize(std::string TcpProtocol); +XBT_PRIVATE void ns3_simulator(double max_seconds); +XBT_PRIVATE void ns3_add_direct_route(simgrid::kernel::routing::NetPoint* src, simgrid::kernel::routing::NetPoint* dst, + double bw, double lat, simgrid::s4u::Link::SharingPolicy policy); -class SgFlow { +class XBT_PRIVATE SgFlow { public: - SgFlow(uint32_t totalBytes, simgrid::surf::NetworkNS3Action* action); + SgFlow(uint32_t total_bytes, simgrid::kernel::resource::NetworkNS3Action* action); // private: - std::uint32_t bufferedBytes_ = 0; - std::uint32_t sentBytes_ = 0; + std::uint32_t buffered_bytes_ = 0; + std::uint32_t sent_bytes_ = 0; std::uint32_t remaining_; - std::uint32_t totalBytes_; + std::uint32_t total_bytes_; bool finished_ = false; - simgrid::surf::NetworkNS3Action* action_; + simgrid::kernel::resource::NetworkNS3Action* action_; }; -void StartFlow(ns3::Ptr sock, const char* to, uint16_t port_number); +XBT_PRIVATE void start_flow(ns3::Ptr sock, const char* to, uint16_t port_number); -static inline const char* transformSocketPtr(ns3::Ptr localSocket) +static inline std::string transform_socket_ptr(ns3::Ptr local_socket) { - static char key[24]; std::stringstream sstream; - sstream << localSocket; - snprintf(key, 24, "%s", sstream.str().c_str()); - - return key; + sstream << local_socket; + return sstream.str(); } #endif