Logo AND Algorithmique Numérique Distribuée

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