Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove a useless dirty hack for SMPI+MSG
[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 "src/kernel/routing/AsImpl.hpp"
10
11 namespace simgrid {
12 namespace kernel {
13 namespace routing {
14
15 class XBT_PRIVATE AsCluster: public AsImpl {
16 public:
17   explicit AsCluster(const char*name);
18   ~AsCluster() override;
19
20   void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
21   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
22
23   virtual void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position);
24   virtual void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster) {}
25
26   xbt_dynar_t privateLinks_ = xbt_dynar_new(sizeof(s_surf_parsing_link_up_down_t),nullptr);
27
28   Link* backbone_ = nullptr;
29   void *loopback_ = nullptr;
30   NetCard *router_ = nullptr;
31   bool hasLimiter_  = false;
32   bool hasLoopback_ = false;
33   int linkCountPerNode_ = 1; /* may be 1 (if only a private link), 2 or 3 (if limiter and loopback) */
34
35 };
36
37 }}} // namespace
38
39 #endif /* SIMGRID_ROUTING_CLUSTER_HPP_ */