X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c283778f5efa5126febb356da7609cf6230a6067..19e1048a7009c4144b0f361ad85fb9dff44761ea:/src/surf/network_wifi.hpp diff --git a/src/surf/network_wifi.hpp b/src/surf/network_wifi.hpp index f0d2cce6c0..6f5ad3596f 100644 --- a/src/surf/network_wifi.hpp +++ b/src/surf/network_wifi.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2019-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2019-2021. 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. */ @@ -25,7 +25,7 @@ class NetworkWifiLink : public LinkImpl { /** @brief Hold every rates association between host and links (host name, rates id) */ std::map host_rates_; - /** @brief A link can have several bandwith attach to it (mostly use by wifi model) */ + /** @brief A link can have several bandwidths attached to it (mostly use by wifi model) */ std::vector bandwidths_; /** @brief Should we use the decay model ? */ @@ -42,19 +42,19 @@ class NetworkWifiLink : public LinkImpl { std::vector decay_bandwidths_; public: - NetworkWifiLink(NetworkCm02Model* model, const std::string& name, std::vector bandwidths, - lmm::System* system); + NetworkWifiLink(const std::string& name, std::vector bandwidths, lmm::System* system); void set_host_rate(const s4u::Host* host, int rate_level); /** @brief Get the AP rate associated to the host (or -1 if not associated to the AP) */ - double get_host_rate(const s4u::Host* host); + double get_host_rate(const s4u::Host* host) const; - s4u::Link::SharingPolicy get_sharing_policy() override; + s4u::Link::SharingPolicy get_sharing_policy() const override; void apply_event(kernel::profile::Event*, double) override { THROW_UNIMPLEMENTED; } void set_bandwidth(double) override { THROW_UNIMPLEMENTED; } - void set_latency(double) override { THROW_UNIMPLEMENTED; } + void set_latency(double) override; void refresh_decay_bandwidths(); bool toggle_decay_model(); + int get_host_count() const; }; class NetworkWifiAction : public NetworkCm02Action { @@ -62,6 +62,7 @@ class NetworkWifiAction : public NetworkCm02Action { NetworkWifiLink* dst_wifi_link_; public: + NetworkWifiAction() = delete; NetworkWifiAction(Model* model, s4u::Host& src, s4u::Host& dst, double cost, bool failed, NetworkWifiLink* src_wifi_link, NetworkWifiLink* dst_wifi_link) : NetworkCm02Action(model, src, dst, cost, failed)