Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into S4U
[simgrid.git] / src / surf / surf_routing_vivaldi.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 #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
24 class AsVivaldi: public AsGeneric {
25 public:
26   sg_platf_route_cbarg_t *p_routingTable;
27
28   AsVivaldi() : AsGeneric() {};
29   ~AsVivaldi() {};
30
31   void getRouteAndLatency(RoutingEdge *src, RoutingEdge *dst, sg_platf_route_cbarg_t into, double *latency);
32   //void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges);
33   //sg_platf_route_cbarg_t getBypassRoute(RoutingEdge *src, RoutingEdge *dst, double *lat);
34
35   /* The parser calls the following functions to inform the routing models
36    * that a new element is added to the AS currently built.
37    *
38    * Of course, only the routing model of this AS is informed, not every ones */
39   int parsePU(RoutingEdge *elm); /* A host or a router, whatever */
40   //virtual int parseAS( RoutingEdge *elm)=0;
41
42   //virtual void parseBypassroute(sg_platf_route_cbarg_t e_route)=0;
43 };
44
45
46 #endif /* SURF_ROUTING_VIVALDI_HPP_ */