Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
routing: get rid of unused strings
[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 /** No specific routing. Mainly useful with the constant network model */
18 class XBT_PRIVATE AsNone : public As {
19 public:
20   AsNone() {}
21   void Seal() override {}; // nothing to do
22   ~AsNone() {}
23
24   void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
25   xbt_dynar_t getOneLinkRoutes() override;
26   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
27   sg_platf_route_cbarg_t getBypassRoute(NetCard *src, NetCard *dst, double *lat) override;
28
29   /* The parser calls the following functions to inform the routing models
30    * that a new element is added to the AS currently built.
31    *
32    * Of course, only the routing model of this AS is informed, not every ones */
33   int parsePU(NetCard *elm) override; /* A host or a router, whatever */
34   int parseAS( NetCard *elm) override;
35   void parseRoute(sg_platf_route_cbarg_t route) override;
36   void parseASroute(sg_platf_route_cbarg_t route) override;
37   void parseBypassroute(sg_platf_route_cbarg_t e_route) override;
38 };
39
40 }
41 }
42
43 #endif /* SURF_ROUTING_NONE_HPP_ */