Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make HostL07 behave more like the regular Host
[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 "xbt/swag.h"
8
9 #include "surf_routing_generic.hpp"
10
11 #ifndef SURF_ROUTING_VIVALDI_HPP_
12 #define SURF_ROUTING_VIVALDI_HPP_
13
14 /* ************************************************** */
15 /* **************  Vivaldi ROUTING   **************** */
16 XBT_PRIVATE AS_t model_vivaldi_create(void);      /* create structures for vivaldi routing model */
17 #define HOST_PEER(peername) bprintf("peer_%s", peername)
18 #define ROUTER_PEER(peername) bprintf("router_%s", peername)
19 #define LINK_PEER(peername) bprintf("link_%s", peername)
20
21 /***********
22  * Classes *
23  ***********/
24 class XBT_PRIVATE AsVivaldi;
25
26 class AsVivaldi: public AsGeneric {
27 public:
28   sg_platf_route_cbarg_t *p_routingTable;
29
30   AsVivaldi() : AsGeneric() {};
31   ~AsVivaldi() {};
32
33   void getRouteAndLatency(RoutingEdge *src, RoutingEdge *dst, sg_platf_route_cbarg_t into, double *latency);
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   int parsePU(RoutingEdge *elm); /* 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 #endif /* SURF_ROUTING_VIVALDI_HPP_ */