Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move one method higher in As hierarchy
[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.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 As {
20 public:
21   AsGeneric(const char*name);
22   ~AsGeneric();
23
24   virtual void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
25   virtual sg_platf_route_cbarg_t getBypassRoute(NetCard *src, NetCard *dst, double *lat) override;
26
27   /* Add content to the AS, at parsing time */
28   virtual void parseBypassroute(sg_platf_route_cbarg_t e_route) override;
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 protected:
32   void getRouteCheckParams(NetCard *src, NetCard *dst);
33   void addRouteCheckParams(sg_platf_route_cbarg_t route);
34 private:
35   xbt_dict_t bypassRoutes_ = xbt_dict_new_homogeneous((void (*)(void *)) routing_route_free);
36 };
37
38 }
39 }
40
41 #endif /* SURF_ROUTING_GENERIC_HPP_ */