Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add VM energy extensions - Adrien
[simgrid.git] / src / surf / surf_routing_none.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 #include <xbt/base.h>
8
9 #include "surf_routing.hpp"
10
11 #ifndef SURF_ROUTING_NONE_HPP_
12 #define SURF_ROUTING_NONE_HPP_
13
14 class XBT_PRIVATE AsNone : public As {
15 public:
16   AsNone();
17   ~AsNone();
18
19   void getRouteAndLatency(RoutingEdge *src, RoutingEdge *dst, sg_platf_route_cbarg_t into, double *latency);
20   xbt_dynar_t getOneLinkRoutes();
21   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges);
22   sg_platf_route_cbarg_t getBypassRoute(RoutingEdge *src, RoutingEdge *dst, double *lat);
23
24   /* The parser calls the following functions to inform the routing models
25    * that a new element is added to the AS currently built.
26    *
27    * Of course, only the routing model of this AS is informed, not every ones */
28   int parsePU(RoutingEdge *elm); /* A host or a router, whatever */
29   int parseAS( RoutingEdge *elm);
30   void parseRoute(sg_platf_route_cbarg_t route);
31   void parseASroute(sg_platf_route_cbarg_t route);
32   void parseBypassroute(sg_platf_route_cbarg_t e_route);
33 };
34
35
36 #endif /* SURF_ROUTING_NONE_HPP_ */