Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[surf] Move some code in a simgrid::surf namespace
[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 namespace simgrid {
15 namespace surf {
16
17 class XBT_PRIVATE AsNone : public As {
18 public:
19   AsNone();
20   ~AsNone();
21
22   void getRouteAndLatency(RoutingEdge *src, RoutingEdge *dst, sg_platf_route_cbarg_t into, double *latency);
23   xbt_dynar_t getOneLinkRoutes();
24   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges);
25   sg_platf_route_cbarg_t getBypassRoute(RoutingEdge *src, RoutingEdge *dst, double *lat);
26
27   /* The parser calls the following functions to inform the routing models
28    * that a new element is added to the AS currently built.
29    *
30    * Of course, only the routing model of this AS is informed, not every ones */
31   int parsePU(RoutingEdge *elm); /* A host or a router, whatever */
32   int parseAS( RoutingEdge *elm);
33   void parseRoute(sg_platf_route_cbarg_t route);
34   void parseASroute(sg_platf_route_cbarg_t route);
35   void parseBypassroute(sg_platf_route_cbarg_t e_route);
36 };
37
38 }
39 }
40
41 #endif /* SURF_ROUTING_NONE_HPP_ */