Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / src / kernel / routing / WifiZone.cpp
1 /* Copyright (c) 2009-2022. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <simgrid/kernel/routing/NetPoint.hpp>
7 #include <simgrid/kernel/routing/WifiZone.hpp>
8
9 #include "src/kernel/resource/StandardLinkImpl.hpp"
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_wifi, surf, "Routing part of surf");
12
13 namespace simgrid {
14 namespace kernel {
15 namespace routing {
16
17 void WifiZone::do_seal()
18 {
19   const char* AP_name = get_property("access_point");
20   if (AP_name != nullptr) {
21     access_point_ = sg_netpoint_by_name_or_null(AP_name);
22     xbt_assert(access_point_ != nullptr, "Access point '%s' of WIFI zone '%s' does not exist: no such host or router.",
23                AP_name, get_cname());
24     xbt_assert(access_point_->is_host() || access_point_->is_router(),
25                "Access point '%s' of WIFI zone '%s' must be either a host or a router.", AP_name, get_cname());
26   }
27 }
28
29 void WifiZone::get_local_route(const NetPoint* src, const NetPoint* dst, Route* res, double* lat)
30 {
31   XBT_DEBUG("full getLocalRoute from %s[%lu] to %s[%lu]", src->get_cname(), src->id(), dst->get_cname(), dst->id());
32
33   if (wifi_link_ != nullptr) {
34     // If src and dst are nodes, not access_point, we need to traverse the link twice
35     // Otherwise (if src or dst is access_point), we need to traverse the link only once
36
37     if (src != access_point_) {
38       XBT_DEBUG("src %s is not our gateway", src->get_cname());
39       add_link_latency(res->link_list_, wifi_link_, lat);
40     }
41     if (dst != access_point_) {
42       XBT_DEBUG("dst %s is not our gateway", dst->get_cname());
43       add_link_latency(res->link_list_, wifi_link_, lat);
44     }
45   }
46 }
47
48 s4u::Link* WifiZone::create_link(const std::string& name, const std::vector<double>& bandwidths)
49 {
50   xbt_assert(wifi_link_ == nullptr,
51              "WIFI netzone %s contains more than one link. Please only declare one, the wifi link.", get_cname());
52
53   wifi_link_ = get_network_model()->create_wifi_link(name, bandwidths);
54   wifi_link_->set_sharing_policy(s4u::Link::SharingPolicy::WIFI, {});
55   return wifi_link_->get_iface();
56 }
57 } // namespace routing
58 } // namespace kernel
59
60 namespace s4u {
61 NetZone* create_wifi_zone(const std::string& name)
62 {
63   return (new kernel::routing::WifiZone(name))->get_iface();
64 }
65 } // namespace s4u
66
67 } // namespace simgrid