Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reduce the amount of (protected) multiple includes
[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 "surf_routing_none.hpp"
11 #include "network_interface.hpp"
12
13 /***********
14  * Classes *
15  ***********/
16 class AsCluster;
17
18
19 /* ************************************************** */
20 /* **************  Cluster ROUTING   **************** */
21
22 class AsCluster: public AsNone {
23 public:
24   AsCluster();
25
26   virtual void getRouteAndLatency(RoutingEdge *src, RoutingEdge *dst, sg_platf_route_cbarg_t into, double *latency);
27   //xbt_dynar_t getOneLinkRoutes();
28   //void parseRoute(sg_platf_route_cbarg_t route);
29   //void parseASroute(sg_platf_route_cbarg_t route);
30
31   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges);
32   //sg_platf_route_cbarg_t getBypassRoute(RoutingEdge *src, RoutingEdge *dst, double *lat);
33
34   /* The parser calls the following functions to inform the routing models
35    * that a new element is added to the AS currently built.
36    *
37    * Of course, only the routing model of this AS is informed, not every ones */
38   int parsePU(RoutingEdge *elm); /* A host or a router, whatever */
39   int parseAS(RoutingEdge *elm);
40   virtual void create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position);
41   Link* p_backbone;
42   void *p_loopback;
43   RoutingEdge *p_router;
44   int p_has_limiter;
45   int p_has_loopback;
46   int p_nb_links_per_node;
47
48 };
49
50
51 #endif /* SURF_ROUTING_CLUSTER_HPP_ */