Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2cf77e72430d4807c082e0c29869b380f3d0abe0
[simgrid.git] / include / simgrid / kernel / routing / FullZone.hpp
1 /* Copyright (c) 2013-2019. 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 SIMGRID_ROUTING_FULL_HPP_
7 #define SIMGRID_ROUTING_FULL_HPP_
8
9 #include <simgrid/kernel/routing/RoutedZone.hpp>
10
11 namespace simgrid {
12 namespace kernel {
13 namespace routing {
14
15 /** @ingroup ROUTING_API
16  *  @brief NetZone with an explicit routing provided by the user
17  *
18  *  The full communication matrix is provided at creation, so this model has the highest expressive power and the lowest
19  *  computational requirements, but also the highest memory requirements (both in platform file and in memory).
20  */
21 class XBT_PRIVATE FullZone : public RoutedZone {
22 public:
23   explicit FullZone(NetZoneImpl* father, std::string name, resource::NetworkModel* netmodel);
24   FullZone(const FullZone&) = delete;
25   FullZone& operator=(const FullZone) = delete;
26   ~FullZone() override;
27
28   void seal() override;
29   void get_local_route(NetPoint* src, NetPoint* dst, RouteCreationArgs* into, double* latency) override;
30   void add_route(NetPoint* src, NetPoint* dst, NetPoint* gw_src, NetPoint* gw_dst,
31                  std::vector<resource::LinkImpl*>& link_list, bool symmetrical) override;
32
33 private:
34   RouteCreationArgs** routing_table_ = nullptr;
35 };
36 } // namespace routing
37 } // namespace kernel
38 } // namespace simgrid
39
40 #endif /* SIMGRID_ROUTING_FULL_HPP_ */