Logo AND Algorithmique Numérique Distribuée

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