Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[sonar] Inheriting constructors should be used.
[simgrid.git] / include / simgrid / kernel / routing / EmptyZone.hpp
1 /* Copyright (c) 2013-2021. 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 #ifndef SURF_ROUTING_NONE_HPP_
7 #define SURF_ROUTING_NONE_HPP_
8
9 #include <simgrid/kernel/routing/NetZoneImpl.hpp>
10
11 namespace simgrid {
12 namespace kernel {
13 namespace routing {
14
15 /** @ingroup ROUTING_API
16  *  @brief NetZone with no routing, useful with the constant network model
17  *
18  *  Such netzones never contain any link, and the latency is always left unchanged:
19  *  the constant time network model computes this latency externally.
20  */
21
22 class XBT_PRIVATE EmptyZone : public NetZoneImpl {
23 public:
24   explicit EmptyZone(const std::string& name) : NetZoneImpl(name) {}
25
26   void get_local_route(NetPoint* src, NetPoint* dst, RouteCreationArgs* into, double* latency) override
27   {
28     /* There can't be route in an Empty zone */
29   }
30
31   void get_graph(const s_xbt_graph_t* graph, std::map<std::string, xbt_node_t, std::less<>>* /*nodes*/,
32                  std::map<std::string, xbt_edge_t, std::less<>>* /*edges*/) override;
33 };
34 } // namespace routing
35 } // namespace kernel
36 } // namespace simgrid
37
38 #endif /* SURF_ROUTING_NONE_HPP_ */