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