Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Give a p_netcard to simgrid::Host instead of relying on extensions for that
[simgrid.git] / src / surf / surf_routing_generic.hpp
1 /* Copyright (c) 2013-2015. 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 <xbt/base.h>
8
9 #include "surf_routing_none.hpp"
10
11 #ifndef SURF_ROUTING_GENERIC_HPP_
12 #define SURF_ROUTING_GENERIC_HPP_
13
14 namespace simgrid {
15 namespace surf {
16
17 class XBT_PRIVATE AsGeneric;
18
19 class XBT_PRIVATE AsGeneric : public AsNone {
20 public:
21   AsGeneric();
22   ~AsGeneric();
23
24   virtual void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency);
25   virtual xbt_dynar_t getOneLinkRoutes();
26   virtual void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges);
27   virtual sg_platf_route_cbarg_t getBypassRoute(NetCard *src, NetCard *dst, double *lat);
28
29   /* The parser calls the following functions to inform the routing models
30    * that a new element is added to the AS currently built.
31    *
32    * Of course, only the routing model of this AS is informed, not every ones */
33   virtual int parsePU(NetCard *elm); /* A host or a router, whatever */
34   virtual int parseAS(NetCard *elm);
35   virtual void parseRoute(sg_platf_route_cbarg_t route);
36   virtual void parseASroute(sg_platf_route_cbarg_t route);
37   virtual void parseBypassroute(sg_platf_route_cbarg_t e_route);
38
39   virtual sg_platf_route_cbarg_t newExtendedRoute(e_surf_routing_hierarchy_t hierarchy, sg_platf_route_cbarg_t routearg, int change_order);
40   virtual As *asExist(As *to_find);
41   virtual As *autonomousSystemExist(char *element);
42   virtual As *processingUnitsExist(char *element);
43   virtual void srcDstCheck(NetCard *src, NetCard *dst);
44 };
45
46 }
47 }
48
49 #endif /* SURF_ROUTING_GENERIC_HPP_ */