Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
routing: rename all fields, and less void*
[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_none.hpp"
13 #include "network_interface.hpp"
14
15 namespace simgrid {
16 namespace surf {
17
18 /***********
19  * Classes *
20  ***********/
21
22 class XBT_PRIVATE AsCluster;
23
24 /* ************************************************** */
25 /* **************  Cluster ROUTING   **************** */
26
27 class AsCluster: public AsNone {
28 public:
29   AsCluster(const char*name);
30   void Seal() override {}; // nothing to do
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_ */