Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
pull up another (useless) method in the surf::Host hierarchy
[simgrid.git] / src / surf / surf_routing_dijkstra.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_generic.hpp"
10
11 #ifndef SURF_ROUTING_DIJKSTRA_HPP_
12 #define SURF_ROUTING_DIJKSTRA_HPP_
13
14 typedef struct graph_node_data {
15   int id;
16   int graph_id;                 /* used for caching internal graph id's */
17 } s_graph_node_data_t, *graph_node_data_t;
18
19 typedef struct graph_node_map_element {
20   xbt_node_t node;
21 } s_graph_node_map_element_t, *graph_node_map_element_t;
22
23 typedef struct route_cache_element {
24   int *pred_arr;
25   int size;
26 } s_route_cache_element_t, *route_cache_element_t;
27
28 namespace simgrid {
29 namespace surf {
30
31 /***********
32  * Classes *
33  ***********/
34
35 class XBT_PRIVATE AsDijkstra;
36
37 class AsDijkstra : public AsGeneric {
38 public:
39   AsDijkstra();
40   AsDijkstra(int cached);
41   ~AsDijkstra();
42         xbt_node_t routeGraphNewNode(int id, int graph_id);
43         graph_node_map_element_t nodeMapSearch(int id);
44         void newRoute(int src_id, int dst_id, sg_platf_route_cbarg_t e_route);
45     /**
46      * For each vertex (node) already in the graph,
47      * make sure it also has a loopback link; this loopback
48      * can potentially already be in the graph, and in that
49      * case nothing will be done.
50      *
51      * If no loopback is specified for a node, we will use
52      * the loopback that is provided by the routing platform.
53      *
54      * After this function returns, any node in the graph
55      * will have a loopback attached to it.
56      */
57         void addLoopback();
58         void getRouteAndLatency(RoutingEdge *src, RoutingEdge *dst, sg_platf_route_cbarg_t route, double *lat);
59         xbt_dynar_t getOnelinkRoutes();
60         void getRouteAndLatency(sg_platf_route_cbarg_t route, double *lat);
61         void parseASroute(sg_platf_route_cbarg_t route);
62         void parseRoute(sg_platf_route_cbarg_t route);
63         void end();
64
65   xbt_graph_t p_routeGraph;      /* xbt_graph */
66   xbt_dict_t p_graphNodeMap;    /* map */
67   xbt_dict_t p_routeCache;       /* use in cache mode */
68   int m_cached;
69 };
70
71 }
72 }
73
74 #endif /* SURF_ROUTING_DIJKSTRA_HPP_ */