Logo AND Algorithmique Numérique Distribuée

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