Logo AND Algorithmique Numérique Distribuée

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