Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
make As->father_ protected
[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(As* father, const char* name) : AsCluster(father, name)
52   {}
53
54 AsVivaldi::~AsVivaldi() {}
55
56 void AsVivaldi::getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t route, double *lat)
57 {
58   XBT_DEBUG("vivaldi_get_route_and_latency from '%s'[%d] '%s'[%d]", src->name(), src->id(), dst->name(), dst->id());
59
60   if(src->isAS()) {
61     char *src_name = bprintf("router_%s",src->name());
62     char *dst_name = bprintf("router_%s",dst->name());
63     route->gw_src = (sg_netcard_t) xbt_lib_get_or_null(as_router_lib, src_name, ROUTING_ASR_LEVEL);
64     route->gw_dst = (sg_netcard_t) xbt_lib_get_or_null(as_router_lib, dst_name, ROUTING_ASR_LEVEL);
65     xbt_free(src_name);
66     xbt_free(dst_name);
67   }
68
69   /* Retrieve the private links */
70   if (privateLinks_.size() > src->id()) {
71     s_surf_parsing_link_up_down_t info = privateLinks_.at(src->id());
72     if(info.linkUp) {
73       route->link_list->push_back(info.linkUp);
74       if (lat)
75         *lat += info.linkUp->getLatency();
76     }
77   }
78   if (privateLinks_.size() >dst->id()) {
79     s_surf_parsing_link_up_down_t info = privateLinks_.at(dst->id());
80     if(info.linkDown) {
81       route->link_list->push_back(info.linkDown);
82       if (lat)
83         *lat += info.linkDown->getLatency();
84     }
85   }
86
87   /* Compute the extra latency due to the euclidean distance if needed */
88   if (lat){
89     xbt_dynar_t srcCoords = getCoordsFromNetcard(src);
90     xbt_dynar_t dstCoords = getCoordsFromNetcard(dst);
91
92     double euclidean_dist = sqrt (euclidean_dist_comp(0,srcCoords,dstCoords)+euclidean_dist_comp(1,srcCoords,dstCoords))
93                               + fabs(xbt_dynar_get_as(srcCoords, 2, double))+fabs(xbt_dynar_get_as(dstCoords, 2, double));
94
95     XBT_DEBUG("Updating latency %f += %f",*lat,euclidean_dist);
96     *lat += euclidean_dist / 1000.0; //From .ms to .s
97   }
98 }
99
100 }}}