Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
continue emptying the surf_routing files
[simgrid.git] / src / kernel / routing / AsCluster.hpp
1 /* Copyright (c) 2013-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_ROUTING_CLUSTER_HPP_
7 #define SIMGRID_ROUTING_CLUSTER_HPP_
8
9 #include <unordered_map>
10
11 #include "src/kernel/routing/AsImpl.hpp"
12
13 namespace simgrid {
14 namespace kernel {
15 namespace routing {
16
17 class XBT_PRIVATE AsCluster: public AsImpl {
18 public:
19   explicit AsCluster(As* father, const char* name);
20
21   void getLocalRoute(NetCard* src, NetCard* dst, sg_platf_route_cbarg_t into, double* latency) override;
22   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
23
24   virtual void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position);
25   virtual void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster) {}
26
27   /* We use a map instead of a std::vector here because that's a sparse vector. Some values may not exist */
28   /* The pair is {linkUp, linkDown} */
29   std::unordered_map<unsigned int, std::pair<Link*, Link*>> privateLinks_;
30
31   Link* backbone_ = nullptr;
32   void *loopback_ = nullptr;
33   NetCard *router_ = nullptr;
34   bool hasLimiter_  = false;
35   bool hasLoopback_ = false;
36   unsigned int linkCountPerNode_ = 1; /* may be 1 (if only a private link), 2 or 3 (if limiter and loopback) */
37
38 };
39
40 }}} // namespace
41
42 #endif /* SIMGRID_ROUTING_CLUSTER_HPP_ */