Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / kernel / routing / AsVivaldi.cpp
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 #include <xbt/dynar.h>
7
8 #include <simgrid/s4u/host.hpp>
9
10 #include "src/kernel/routing/AsVivaldi.hpp"
11 #include "src/surf/network_interface.hpp"
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_vivaldi, surf, "Routing part of surf");
14
15 namespace simgrid {
16 namespace kernel {
17 namespace routing {
18   static inline double euclidean_dist_comp(int index, xbt_dynar_t src, xbt_dynar_t dst) {
19     double src_coord = xbt_dynar_get_as(src, index, double);
20     double dst_coord = xbt_dynar_get_as(dst, index, double);
21
22     return (src_coord-dst_coord)*(src_coord-dst_coord);
23   }
24
25   static xbt_dynar_t getCoordsFromNetcard(NetCard *nc)
26   {
27     xbt_dynar_t res = nullptr;
28     char *tmp_name;
29
30     if(nc->isHost()){
31       tmp_name = bprintf("peer_%s", nc->name());
32       simgrid::s4u::Host *host = simgrid::s4u::Host::by_name_or_null(tmp_name);
33       if (host == nullptr)
34         host = simgrid::s4u::Host::by_name_or_null(nc->name());
35       if (host != nullptr)
36         res = (xbt_dynar_t) host->extension(COORD_HOST_LEVEL);
37     }
38     else if(nc->isRouter() || nc->isAS()){
39       tmp_name = bprintf("router_%s", nc->name());
40       res = (xbt_dynar_t) xbt_lib_get_or_null(as_router_lib, tmp_name, COORD_ASR_LEVEL);
41     }
42     else{
43       THROW_IMPOSSIBLE;
44     }
45
46     xbt_assert(res,"No coordinate found for element '%s'",tmp_name);
47     free(tmp_name);
48
49     return res;
50   }
51   AsVivaldi::AsVivaldi(const char *name)
52     : AsCluster(name)
53   {}
54
55 AsVivaldi::~AsVivaldi() {}
56
57 void AsVivaldi::getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t route, double *lat)
58 {
59   XBT_DEBUG("vivaldi_get_route_and_latency from '%s'[%d] '%s'[%d]", src->name(), src->id(), dst->name(), dst->id());
60
61   if(src->isAS()) {
62     char *src_name = bprintf("router_%s",src->name());
63     char *dst_name = bprintf("router_%s",dst->name());
64     route->gw_src = (sg_netcard_t) xbt_lib_get_or_null(as_router_lib, src_name, ROUTING_ASR_LEVEL);
65     route->gw_dst = (sg_netcard_t) xbt_lib_get_or_null(as_router_lib, dst_name, ROUTING_ASR_LEVEL);
66     xbt_free(src_name);
67     xbt_free(dst_name);
68   }
69
70   /* Retrieve the private links */
71   if (static_cast<int>(privateLinks_.size()) > src->id()) {
72     s_surf_parsing_link_up_down_t info = privateLinks_.at(src->id());
73     if(info.linkUp) {
74       route->link_list->push_back(info.linkUp);
75       if (lat)
76         *lat += info.linkUp->getLatency();
77     }
78   }
79   if (static_cast<int>(privateLinks_.size()) >dst->id()) {
80     s_surf_parsing_link_up_down_t info = privateLinks_.at(dst->id());
81     if(info.linkDown) {
82       route->link_list->push_back(info.linkDown);
83       if (lat)
84         *lat += info.linkDown->getLatency();
85     }
86   }
87
88   /* Compute the extra latency due to the euclidean distance if needed */
89   if (lat){
90     xbt_dynar_t srcCoords = getCoordsFromNetcard(src);
91     xbt_dynar_t dstCoords = getCoordsFromNetcard(dst);
92
93     double euclidean_dist = sqrt (euclidean_dist_comp(0,srcCoords,dstCoords)+euclidean_dist_comp(1,srcCoords,dstCoords))
94                               + fabs(xbt_dynar_get_as(srcCoords, 2, double))+fabs(xbt_dynar_get_as(dstCoords, 2, double));
95
96     XBT_DEBUG("Updating latency %f += %f",*lat,euclidean_dist);
97     *lat += euclidean_dist / 1000.0; //From .ms to .s
98   }
99 }
100
101 }}}