Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
592e0d5f2479b31599a04460fd47760b4b21b270
[simgrid.git] / src / surf / surf_routing_floyd.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
8 #ifndef SURF_ROUTING_FLOYD_HPP_
9 #define SURF_ROUTING_FLOYD_HPP_
10
11 #include <xbt/base.h>
12
13 #include "surf_routing_generic.hpp"
14
15 /***********
16  * Classes *
17  ***********/
18 class XBT_PRIVATE AsFloyd;
19
20 class AsFloyd: public AsGeneric {
21 public:
22   AsFloyd();
23   ~AsFloyd();
24
25   void getRouteAndLatency(RoutingEdge *src, RoutingEdge *dst, sg_platf_route_cbarg_t into, double *latency);
26   xbt_dynar_t getOneLinkRoutes();
27   void parseASroute(sg_platf_route_cbarg_t route);
28   void parseRoute(sg_platf_route_cbarg_t route);
29   void end();
30   //void parseASroute(sg_platf_route_cbarg_t route);
31
32   //void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges);
33   //sg_platf_route_cbarg_t getBypassRoute(RoutingEdge *src, RoutingEdge *dst, double *lat);
34
35   /* The parser calls the following functions to inform the routing models
36    * that a new element is added to the AS currently built.
37    *
38    * Of course, only the routing model of this AS is informed, not every ones */
39   //int parsePU(RoutingEdge *elm); /* A host or a router, whatever */
40   //int parseAS(RoutingEdge *elm);
41
42   //virtual void parseBypassroute(sg_platf_route_cbarg_t e_route)=0;
43
44   /* vars for calculate the floyd algorith. */
45   int *p_predecessorTable;
46   double *p_costTable;
47   sg_platf_route_cbarg_t *p_linkTable;
48 };
49
50
51
52 #endif /* SURF_ROUTING_FLOYD_HPP_ */