X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/acb292ef96c6533590b4adcfb7c6187f798f0f39..3b3874b095c1a645006649b8a7445f81d816f01d:/src/surf/ns3/ns3_simulator.hpp diff --git a/src/surf/ns3/ns3_simulator.hpp b/src/surf/ns3/ns3_simulator.hpp index f339e6468f..04944b13d1 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,38 +6,89 @@ #ifndef NS3_SIMULATOR_HPP #define NS3_SIMULATOR_HPP +#include "simgrid/s4u/Host.hpp" +#include "src/surf/network_ns3.hpp" + +#include +#include +#include "ns3/wifi-module.h" + #include -#include "ns3_interface.hpp" +class NetPointNs3 { +public: + static simgrid::xbt::Extension EXTENSION_ID; + + void set_name(std::string name) {name_ = name;} -#include -#include -#include -#include -#include -#include -#include + explicit NetPointNs3(); + std::string name_; + int node_num; + ns3::Ptr ns3_node_; + +}; -class SgFlow { +XBT_PUBLIC void ns3_initialize(std::string TcpProtocol); +XBT_PUBLIC void ns3_simulator(double max_seconds); +XBT_PUBLIC void ns3_add_direct_route(NetPointNs3* src, NetPointNs3* dst, double bw, double lat, std::string link_name, + simgrid::s4u::Link::SharingPolicy policy); +XBT_PUBLIC void ns3_add_cluster(const char* id, double bw, double lat); + +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); +void start_flow(ns3::Ptr sock, const char* to, uint16_t port_number); -static inline std::string transformSocketPtr(ns3::Ptr localSocket) +static inline std::string transform_socket_ptr(ns3::Ptr local_socket) { std::stringstream sstream; - sstream << localSocket; + sstream << local_socket; return sstream.str(); } +class XBT_PRIVATE WifiZone { +public: + WifiZone(std::string name_, simgrid::s4u::Host* host_, ns3::Ptr ap_node_, + ns3::Ptr channel_, int mcs_, int nss_, int network_, int link_); + + const char* get_cname() {return name.c_str();} + simgrid::s4u::Host* get_host(){return host;} + ns3::Ptr get_ap_node() {return ap_node;} + ns3::Ptr get_channel() {return channel;} + int get_mcs() {return mcs;} + int get_nss() {return nss;} + int get_network() {return network;} + int get_link() {return link;} + int get_n_sta_nodes() {return n_sta_nodes;} + + void set_network(int network_) {network = network_;} + void set_link(int link_) {link = link_;} + void add_sta_node() {n_sta_nodes++;} + + static bool is_ap(ns3::Ptr node); + static WifiZone* by_name(std::string name); + +private: + std::string name; + simgrid::s4u::Host* host; + ns3::Ptr ap_node; + ns3::Ptr channel; + int mcs; + int nss; + int network; + int link; + int n_sta_nodes = 0; + static std::unordered_map wifi_zones; +}; + #endif