Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
b3f283a8a49a763f9faa893ac49e2b23f3116a3e
[simgrid.git] / src / surf / surf_routing_cluster.hpp
1 /* Copyright (c) 2013-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef SURF_ROUTING_CLUSTER_HPP_
8 #define SURF_ROUTING_CLUSTER_HPP_
9
10 #include <xbt/base.h>
11
12 #include "surf_routing.hpp"
13 #include "network_interface.hpp"
14 #include "simgrid/s4u/as.hpp"
15
16 namespace simgrid {
17 namespace surf {
18
19 /***********
20  * Classes *
21  ***********/
22
23 class XBT_PRIVATE AsCluster;
24
25 /* ************************************************** */
26 /* **************  Cluster ROUTING   **************** */
27
28 class AsCluster: public s4u::As {
29 public:
30   AsCluster(const char*name);
31
32   virtual void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
33   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
34
35   virtual void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position);
36   virtual void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster) {}
37
38
39   Link* backbone_ = nullptr;
40   void *loopback_ = nullptr;
41   NetCard *router_ = nullptr;
42   int has_limiter_ = 0;
43   int has_loopback_ = 0;
44   int nb_links_per_node_ = 1;
45
46 };
47
48 }
49 }
50
51 #endif /* SURF_ROUTING_CLUSTER_HPP_ */