Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[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   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   int parsePU(NetCard *elm) override; /* A host or a router, whatever */
36   int parseAS(NetCard *elm) override;
37   virtual void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position);
38   virtual void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster) {}
39
40
41   Link* p_backbone = nullptr;
42   void *p_loopback = nullptr;
43   NetCard *p_router = nullptr;
44   int p_has_limiter = 0;
45   int p_has_loopback = 0;
46   int p_nb_links_per_node = 1;
47
48 };
49
50 }
51 }
52
53 #endif /* SURF_ROUTING_CLUSTER_HPP_ */