Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
damn!
[simgrid.git] / src / surf / surf_routing_RoutedGraph.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 #include "simgrid/s4u/as.hpp"
11
12 #ifndef SURF_ROUTING_GENERIC_HPP_
13 #define SURF_ROUTING_GENERIC_HPP_
14
15 namespace simgrid {
16 namespace surf {
17
18 class XBT_PRIVATE AsRoutedGraph;
19
20 class XBT_PRIVATE AsRoutedGraph : public s4u::As {
21 public:
22   AsRoutedGraph(const char*name);
23   ~AsRoutedGraph();
24
25   xbt_dynar_t getOneLinkRoutes() override;
26
27   virtual void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
28   virtual sg_platf_route_cbarg_t newExtendedRoute(s4u::As::RoutingKind hierarchy, sg_platf_route_cbarg_t routearg, int change_order);
29 protected:
30   void getRouteCheckParams(NetCard *src, NetCard *dst);
31   void addRouteCheckParams(sg_platf_route_cbarg_t route);
32 };
33
34 }
35 }
36
37 #endif /* SURF_ROUTING_GENERIC_HPP_ */