Logo AND Algorithmique Numérique Distribuée

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