Logo AND Algorithmique Numérique Distribuée

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