Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make a proper extension out of the Vivaldi coordinates
[simgrid.git] / src / kernel / routing / AsVivaldi.hpp
1 /* Copyright (c) 2013-2016. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SURF_ROUTING_VIVALDI_HPP_
7 #define SURF_ROUTING_VIVALDI_HPP_
8
9 #include "src/kernel/routing/AsCluster.hpp"
10
11 namespace simgrid {
12 namespace kernel {
13 namespace routing {
14
15 /* This extends cluster because each host has a private link */
16 class XBT_PRIVATE AsVivaldi: public AsCluster {
17 public:
18   explicit AsVivaldi(As* father, const char* name);
19   ~AsVivaldi() override;
20
21   xbt_dynar_t getOneLinkRoutes() override {return nullptr;};
22   void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
23 };
24
25 namespace vivaldi {
26 class XBT_PRIVATE Coords {
27 public:
28   static simgrid::xbt::Extension<simgrid::s4u::Host, Coords> EXTENSION_ID;
29   explicit Coords(s4u::Host* host, const char* str);
30   virtual ~Coords();
31
32   xbt_dynar_t coords;
33 };
34 }
35 }
36 }
37 } // namespace
38
39 #endif /* SURF_ROUTING_VIVALDI_HPP_ */