Logo AND Algorithmique Numérique Distribuée

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