Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
better leaking than segfaulting
[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 namespace simgrid {
15 namespace surf {
16
17 /***********
18  * Classes *
19  ***********/
20 class XBT_PRIVATE AsFull;
21
22 class AsFull: public AsGeneric {
23 public:
24   sg_platf_route_cbarg_t *p_routingTable;
25
26   AsFull();
27   ~AsFull();
28
29   void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency);
30   xbt_dynar_t getOneLinkRoutes();
31   void parseRoute(sg_platf_route_cbarg_t route);
32   void parseASroute(sg_platf_route_cbarg_t route);
33
34   //void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges);
35   //sg_platf_route_cbarg_t getBypassRoute(RoutingEdge *src, RoutingEdge *dst, double *lat);
36
37   /* The parser calls the following functions to inform the routing models
38    * that a new element is added to the AS currently built.
39    *
40    * Of course, only the routing model of this AS is informed, not every ones */
41   //virtual int parsePU(RoutingEdge *elm)=0; /* A host or a router, whatever */
42   //virtual int parseAS( RoutingEdge *elm)=0;
43
44   //virtual void parseBypassroute(sg_platf_route_cbarg_t e_route)=0;
45 };
46
47 }
48 }
49
50 #endif /* SURF_ROUTING_FULL_HPP_ */