Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Implement a disk attachment check and add a tesh test to detect invalid platform...
[simgrid.git] / src / surf / surf_routing_generic.hpp
1 /* Copyright (c) 2013-2014. 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 typedef AsGeneric *AsGenericPtr;
14
15 void generic_free_route(sg_platf_route_cbarg_t route);
16
17 class AsGeneric : public AsNone {
18 public:
19   AsGeneric();
20   ~AsGeneric();
21
22   virtual void getRouteAndLatency(RoutingEdgePtr src, RoutingEdgePtr dst, sg_platf_route_cbarg_t into, double *latency);
23   virtual xbt_dynar_t getOneLinkRoutes();
24   virtual void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges);
25   virtual sg_platf_route_cbarg_t getBypassRoute(RoutingEdgePtr src, RoutingEdgePtr dst, double *lat);
26
27   /* The parser calls the following functions to inform the routing models
28    * that a new element is added to the AS currently built.
29    *
30    * Of course, only the routing model of this AS is informed, not every ones */
31   virtual int parsePU(RoutingEdgePtr elm); /* A host or a router, whatever */
32   virtual int parseAS( RoutingEdgePtr elm);
33   virtual void parseRoute(sg_platf_route_cbarg_t route);
34   virtual void parseASroute(sg_platf_route_cbarg_t route);
35   virtual void parseBypassroute(sg_platf_route_cbarg_t e_route);
36
37   virtual sg_platf_route_cbarg_t newExtendedRoute(e_surf_routing_hierarchy_t hierarchy, sg_platf_route_cbarg_t routearg, int change_order);
38   virtual AsPtr asExist(AsPtr to_find);
39   virtual AsPtr autonomousSystemExist(char *element);
40   virtual AsPtr processingUnitsExist(char *element);
41   virtual void srcDstCheck(RoutingEdgePtr src, RoutingEdgePtr dst);
42 };
43
44 #endif /* SURF_ROUTING_GENERIC_HPP_ */