Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ecf6975e0638d5a6ad8084446afcd0d84581f648
[simgrid.git] / src / surf / surf_routing_generic.hpp
1 #include "surf_routing_none.hpp"
2
3 #ifndef SURF_ROUTING_GENERIC_HPP_
4 #define SURF_ROUTING_GENERIC_HPP_
5
6 class AsGeneric;
7 typedef AsGeneric *AsGenericPtr;
8
9 class AsGeneric : public AsNone {
10 public:
11   AsGeneric();
12   ~AsGeneric();
13   void getRouteAndLatency(RoutingEdgePtr src, RoutingEdgePtr dst, sg_platf_route_cbarg_t into, double *latency);
14   xbt_dynar_t getOneLinkRoutes();
15   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges);
16   sg_platf_route_cbarg_t getBypassRoute(RoutingEdgePtr src, RoutingEdgePtr dst, double *lat);
17   void finalize();
18
19   /* The parser calls the following functions to inform the routing models
20    * that a new element is added to the AS currently built.
21    *
22    * Of course, only the routing model of this AS is informed, not every ones */
23   int parsePU(RoutingEdgePtr elm); /* A host or a router, whatever */
24   int parseAS( RoutingEdgePtr elm);
25   void parseRoute(sg_platf_route_cbarg_t route);
26   void parseASroute(sg_platf_route_cbarg_t route);
27   void parseBypassroute(sg_platf_route_cbarg_t e_route);
28
29   xbt_dynar_t getOnelinkRoutes();
30   sg_platf_route_cbarg_t getBypassroute(RoutingEdgePtr src, RoutingEdgePtr dst, double *lat);
31   sg_platf_route_cbarg_t newExtendedRoute(e_surf_routing_hierarchy_t hierarchy, sg_platf_route_cbarg_t routearg, int change_order);
32   AsPtr asExist(AsPtr to_find);
33   AsPtr autonomousSystemExist(char *element);
34   AsPtr processingUnitsExist(char *element);
35   void srcDstCheck(RoutingEdgePtr src, RoutingEdgePtr dst);
36 };
37
38 #endif /* SURF_ROUTING_GENERIC_HPP_ */