Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix msg-start-kill-time
[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
14   virtual void getRouteAndLatency(RoutingEdgePtr src, RoutingEdgePtr dst, sg_platf_route_cbarg_t into, double *latency);
15   virtual xbt_dynar_t getOneLinkRoutes();
16   virtual void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges);
17   virtual sg_platf_route_cbarg_t getBypassRoute(RoutingEdgePtr src, RoutingEdgePtr dst, double *lat);
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   virtual int parsePU(RoutingEdgePtr elm); /* A host or a router, whatever */
24   virtual int parseAS( RoutingEdgePtr elm);
25   virtual void parseRoute(sg_platf_route_cbarg_t route);
26   virtual void parseASroute(sg_platf_route_cbarg_t route);
27   virtual void parseBypassroute(sg_platf_route_cbarg_t e_route);
28
29   virtual sg_platf_route_cbarg_t newExtendedRoute(e_surf_routing_hierarchy_t hierarchy, sg_platf_route_cbarg_t routearg, int change_order);
30   virtual AsPtr asExist(AsPtr to_find);
31   virtual AsPtr autonomousSystemExist(char *element);
32   virtual AsPtr processingUnitsExist(char *element);
33   virtual void srcDstCheck(RoutingEdgePtr src, RoutingEdgePtr dst);
34 };
35
36 #endif /* SURF_ROUTING_GENERIC_HPP_ */