Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Normalize virtual/override usage
[simgrid.git] / src / surf / AsImpl.hpp
1 /* Copyright (c) 2016. 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_SURF_AS_HPP
7 #define SIMGRID_SURF_AS_HPP
8
9 #include "xbt/graph.h"
10
11 #include "simgrid/s4u/forward.hpp"
12 #include "simgrid/s4u/As.hpp"
13
14 #include "src/surf/xml/platf_private.hpp" // FIXME: kill sg_platf_route_cbarg_t to remove that UGLY include
15
16 namespace simgrid {
17 namespace surf {
18   class Link;
19   class NetCard;
20   class RoutingPlatf; // FIXME: KILLME
21
22 /** @brief Autonomous Systems
23  *
24  * An AS is a network container, in charge of routing information between elements (hosts) and to the nearby ASes.
25  * In SimGrid, there is a hierarchy of ASes, with a unique root AS (that you can retrieve from the s4u::Engine).
26  */
27 XBT_PUBLIC_CLASS AsImpl : public s4u::As {
28   friend simgrid::surf::RoutingPlatf;
29 protected:
30   explicit AsImpl(const char *name);
31   ~AsImpl() override;
32   
33 public:
34   /**
35    * @brief Probe the routing path between two points
36    *
37    * The networking model uses this function when creating a communication
38    * to retrieve both the list of links that the create communication will use,
39    * and the summed latency that these links represent.
40    *
41    * The network could recompute the latency by itself from the list, but it would
42    * require an additional link set traversal. This operation being on the critical
43    * path of SimGrid, the routing computes the latency in behalf of the network.
44    *
45    * Things are rather complex here because we have to find the path from ASes to ASes, and within each.
46    * In addition, the different ASes may use differing routing models.
47    * Some ASes may be routed in full, others may have only some connection information and use a shortest path on top of that, and so on.
48    * Some ASes may even not have any predefined links and use only coordinate information to compute the latency.
49    *
50    * So, the path is constructed recursively, with each traversed AS adding its information to the set.
51    * The algorithm for that is explained in http://hal.inria.fr/hal-00650233/
52    *
53    * @param src Initial point of the routing path
54    * @param dst Final point of the routing path
55    * @param into Container into which the traversed links should be pushed
56    * @param latency Accumulator in which the latencies should be added (caller must set it to 0)
57    */
58   virtual void getRouteAndLatency(surf::NetCard *src, surf::NetCard *dst, sg_platf_route_cbarg_t into, double *latency)=0;
59   /** @brief retrieves the list of all routes of size 1 (of type src x dst x Link) */
60   virtual xbt_dynar_t getOneLinkRoutes();
61   std::vector<surf::Link*> *getBypassRoute(surf::NetCard *src, surf::NetCard *dst);
62
63   virtual void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges)=0;
64   static void getRouteRecursive(surf::NetCard *src, surf::NetCard *dst, /* OUT */ std::vector<surf::Link*> * links, double *latency);
65
66
67   enum class RoutingMode {
68     unset = 0,  /**< Undefined type                                   */
69     base,       /**< Base case: use simple link lists for routing     */
70     recursive   /**< Recursive case: also return gateway information  */
71   };
72   /* FIXME: protect the following fields once the construction madness is sorted out */
73   RoutingMode hierarchy_ = RoutingMode::unset;
74   surf::NetCard *netcard_ = nullptr; // Our representative in the father AS
75 };
76
77 }}; // Namespace simgrid::s4u
78
79 #endif /* SIMGRID_SURF_AS_HPP */