Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fat trees progress
[simgrid.git] / src / surf / surf_routing_vivaldi.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_VIVALDI_HPP_
10 #define SURF_ROUTING_VIVALDI_HPP_
11
12 /* ************************************************** */
13 /* **************  Vivaldi ROUTING   **************** */
14 AS_t model_vivaldi_create(void);      /* create structures for vivaldi routing model */
15 #define HOST_PEER(peername) bprintf("peer_%s", peername)
16 #define ROUTER_PEER(peername) bprintf("router_%s", peername)
17 #define LINK_PEER(peername) bprintf("link_%s", peername)
18
19 /***********
20  * Classes *
21  ***********/
22 class AsVivaldi;
23 typedef AsVivaldi *AsVivaldiPtr;
24
25 class AsVivaldi: public AsGeneric {
26 public:
27   sg_platf_route_cbarg_t *p_routingTable;
28
29   AsVivaldi() : AsGeneric() {};
30   ~AsVivaldi() {};
31
32   void getRouteAndLatency(RoutingEdgePtr src, RoutingEdgePtr dst, sg_platf_route_cbarg_t into, double *latency);
33   //void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges);
34   //sg_platf_route_cbarg_t getBypassRoute(RoutingEdgePtr src, RoutingEdgePtr dst, double *lat);
35
36   /* The parser calls the following functions to inform the routing models
37    * that a new element is added to the AS currently built.
38    *
39    * Of course, only the routing model of this AS is informed, not every ones */
40   int parsePU(RoutingEdgePtr elm); /* A host or a router, whatever */
41   //virtual int parseAS( RoutingEdgePtr elm)=0;
42
43   //virtual void parseBypassroute(sg_platf_route_cbarg_t e_route)=0;
44 };
45
46
47 #endif /* SURF_ROUTING_VIVALDI_HPP_ */