Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
c1962f0c28df94073d640bc889a7210da1eafd1e
[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() {}
30
31   virtual void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
32   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
33
34   int parsePU(NetCard *elm) override; /* A host or a router, whatever */
35   int parseAS(NetCard *elm) override;
36   virtual void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position);
37   virtual void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster) {}
38
39   Link* p_backbone = nullptr;
40   void *p_loopback = nullptr;
41   NetCard *p_router = nullptr;
42   int p_has_limiter = 0;
43   int p_has_loopback = 0;
44   int p_nb_links_per_node = 1;
45
46 };
47
48 }
49 }
50
51 #endif /* SURF_ROUTING_CLUSTER_HPP_ */