Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[travis] detect linux as we should
[simgrid.git] / src / surf / surf_routing_generic.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 "surf_routing_none.hpp"
8
9 #ifndef SURF_ROUTING_GENERIC_HPP_
10 #define SURF_ROUTING_GENERIC_HPP_
11
12 class AsGeneric;
13
14 void generic_free_route(sg_platf_route_cbarg_t route);
15
16 class AsGeneric : public AsNone {
17 public:
18   AsGeneric();
19   ~AsGeneric();
20
21   virtual void getRouteAndLatency(RoutingEdge *src, RoutingEdge *dst, sg_platf_route_cbarg_t into, double *latency);
22   virtual xbt_dynar_t getOneLinkRoutes();
23   virtual void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges);
24   virtual sg_platf_route_cbarg_t getBypassRoute(RoutingEdge *src, RoutingEdge *dst, double *lat);
25
26   /* The parser calls the following functions to inform the routing models
27    * that a new element is added to the AS currently built.
28    *
29    * Of course, only the routing model of this AS is informed, not every ones */
30   virtual int parsePU(RoutingEdge *elm); /* A host or a router, whatever */
31   virtual int parseAS(RoutingEdge *elm);
32   virtual void parseRoute(sg_platf_route_cbarg_t route);
33   virtual void parseASroute(sg_platf_route_cbarg_t route);
34   virtual void parseBypassroute(sg_platf_route_cbarg_t e_route);
35
36   virtual sg_platf_route_cbarg_t newExtendedRoute(e_surf_routing_hierarchy_t hierarchy, sg_platf_route_cbarg_t routearg, int change_order);
37   virtual As *asExist(As *to_find);
38   virtual As *autonomousSystemExist(char *element);
39   virtual As *processingUnitsExist(char *element);
40   virtual void srcDstCheck(RoutingEdge *src, RoutingEdge *dst);
41 };
42
43 #endif /* SURF_ROUTING_GENERIC_HPP_ */