Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ea334139e2a3e41667d271d6e40465dedf433548
[simgrid.git] / src / kernel / routing / AsDijkstra.hpp
1 /* Copyright (c) 2013-2016. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SURF_ROUTING_DIJKSTRA_HPP_
7 #define SURF_ROUTING_DIJKSTRA_HPP_
8
9 #include "src/kernel/routing/AsRoutedGraph.hpp"
10
11 typedef struct graph_node_data {
12   int id;
13   int graph_id;                 /* used for caching internal graph id's */
14 } s_graph_node_data_t, *graph_node_data_t;
15
16 typedef struct graph_node_map_element {
17   xbt_node_t node;
18 } s_graph_node_map_element_t, *graph_node_map_element_t;
19
20 typedef struct route_cache_element {
21   int *pred_arr;
22   int size;
23 } s_route_cache_element_t, *route_cache_element_t;
24
25 namespace simgrid {
26 namespace kernel {
27 namespace routing {
28
29 /***********
30  * Classes *
31  ***********/
32
33 /** Dijkstra routing data: fast initialization, slow lookup, small memory requirements, shortest path routing only */
34 class XBT_PRIVATE AsDijkstra : public AsRoutedGraph {
35 public:
36   AsDijkstra(As* father, const char* name, bool cached);
37   void seal() override;
38
39   ~AsDijkstra() override;
40   xbt_node_t routeGraphNewNode(int id, int graph_id);
41   graph_node_map_element_t nodeMapSearch(int id);
42   void newRoute(int src_id, int dst_id, sg_platf_route_cbarg_t e_route);
43     /**
44      * For each vertex (node) already in the graph,
45      * make sure it also has a loopback link; this loopback
46      * can potentially already be in the graph, and in that
47      * case nothing will be done.
48      *
49      * If no loopback is specified for a node, we will use
50      * the loopback that is provided by the routing platform.
51      *
52      * After this function returns, any node in the graph
53      * will have a loopback attached to it.
54      */
55   void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t route, double *lat) override;
56   void addRoute(sg_platf_route_cbarg_t route) override;
57
58   xbt_graph_t routeGraph_ = nullptr;     /* xbt_graph */
59   xbt_dict_t graphNodeMap_ = nullptr;    /* map */
60   xbt_dict_t routeCache_ = nullptr;      /* use in cache mode */
61 };
62
63 }}} // namespaces
64
65 #endif /* SURF_ROUTING_DIJKSTRA_HPP_ */