Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
f4715b7b59b802c7e24d491f5a09aa7f13758e41
[simgrid.git] / src / kernel / routing / ClusterZone.cpp
1 /* Copyright (c) 2009-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/kernel/routing/ClusterZone.hpp"
7 #include "src/kernel/routing/NetCard.hpp"
8 #include "src/kernel/routing/RoutedZone.hpp"
9 #include "src/surf/network_interface.hpp"
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_cluster, surf, "Routing part of surf");
12
13 /* This routing is specifically setup to represent clusters, aka homogeneous sets of machines
14  * Note that a router is created, easing the interconnexion with the rest of the world. */
15
16 namespace simgrid {
17 namespace kernel {
18 namespace routing {
19 ClusterZone::ClusterZone(NetZone* father, const char* name) : NetZoneImpl(father, name)
20 {
21 }
22
23 void ClusterZone::getLocalRoute(NetCard* src, NetCard* dst, sg_platf_route_cbarg_t route, double* lat)
24 {
25   XBT_VERB("cluster getLocalRoute from '%s'[%d] to '%s'[%d]", src->cname(), src->id(), dst->cname(), dst->id());
26   xbt_assert(!privateLinks_.empty(),
27              "Cluster routing: no links attached to the source node - did you use host_link tag?");
28
29   if (!src->isRouter()) { // No specific link for router
30
31     if ((src->id() == dst->id()) && hasLoopback_) {
32       std::pair<Link*, Link*> info = privateLinks_.at(src->id() * linkCountPerNode_);
33       route->link_list->push_back(info.first);
34       if (lat)
35         *lat += info.first->latency();
36       return;
37     }
38
39     if (hasLimiter_) { // limiter for sender
40       std::pair<Link*, Link*> info = privateLinks_.at(src->id() * linkCountPerNode_ + (hasLoopback_ ? 1 : 0));
41       route->link_list->push_back(info.first);
42     }
43
44     std::pair<Link*, Link*> info =
45         privateLinks_.at(src->id() * linkCountPerNode_ + (hasLoopback_ ? 1 : 0) + (hasLimiter_ ? 1 : 0));
46     if (info.first) { // link up
47       route->link_list->push_back(info.first);
48       if (lat)
49         *lat += info.first->latency();
50     }
51   }
52
53   if (backbone_) {
54     route->link_list->push_back(backbone_);
55     if (lat)
56       *lat += backbone_->latency();
57   }
58
59   if (!dst->isRouter()) { // No specific link for router
60     std::pair<Link*, Link*> info = privateLinks_.at(dst->id() * linkCountPerNode_ + hasLoopback_ + hasLimiter_);
61
62     if (info.second) { // link down
63       route->link_list->push_back(info.second);
64       if (lat)
65         *lat += info.second->latency();
66     }
67     if (hasLimiter_) { // limiter for receiver
68       info = privateLinks_.at(dst->id() * linkCountPerNode_ + hasLoopback_);
69       route->link_list->push_back(info.first);
70     }
71   }
72 }
73
74 void ClusterZone::getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges)
75 {
76   xbt_assert(router_,
77              "Malformed cluster. This may be because your platform file is a hypergraph while it must be a graph.");
78
79   /* create the router */
80   xbt_node_t routerNode = new_xbt_graph_node(graph, router_->cname(), nodes);
81
82   xbt_node_t backboneNode = nullptr;
83   if (backbone_) {
84     backboneNode = new_xbt_graph_node(graph, backbone_->getName(), nodes);
85     new_xbt_graph_edge(graph, routerNode, backboneNode, edges);
86   }
87
88   for (auto src : vertices_) {
89     if (!src->isRouter()) {
90       xbt_node_t previous = new_xbt_graph_node(graph, src->cname(), nodes);
91
92       std::pair<Link*, Link*> info = privateLinks_.at(src->id());
93
94       if (info.first) { // link up
95         xbt_node_t current = new_xbt_graph_node(graph, info.first->getName(), nodes);
96         new_xbt_graph_edge(graph, previous, current, edges);
97
98         if (backbone_) {
99           new_xbt_graph_edge(graph, current, backboneNode, edges);
100         } else {
101           new_xbt_graph_edge(graph, current, routerNode, edges);
102         }
103       }
104
105       if (info.second) { // link down
106         xbt_node_t current = new_xbt_graph_node(graph, info.second->getName(), nodes);
107         new_xbt_graph_edge(graph, previous, current, edges);
108
109         if (backbone_) {
110           new_xbt_graph_edge(graph, current, backboneNode, edges);
111         } else {
112           new_xbt_graph_edge(graph, current, routerNode, edges);
113         }
114       }
115     }
116   }
117 }
118
119 void ClusterZone::create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int, int position)
120 {
121   char* link_id = bprintf("%s_link_%d", cluster->id, id);
122
123   s_sg_platf_link_cbarg_t link;
124   memset(&link, 0, sizeof(link));
125   link.id        = link_id;
126   link.bandwidth = cluster->bw;
127   link.latency   = cluster->lat;
128   link.policy    = cluster->sharing_policy;
129   sg_platf_new_link(&link);
130
131   Link *linkUp, *linkDown;
132   if (link.policy == SURF_LINK_FULLDUPLEX) {
133     char* tmp_link = bprintf("%s_UP", link_id);
134     linkUp         = Link::byName(tmp_link);
135     xbt_free(tmp_link);
136     tmp_link = bprintf("%s_DOWN", link_id);
137     linkDown = Link::byName(tmp_link);
138     xbt_free(tmp_link);
139   } else {
140     linkUp   = Link::byName(link_id);
141     linkDown = linkUp;
142   }
143   privateLinks_.insert({position, {linkUp, linkDown}});
144   xbt_free(link_id);
145 }
146 }
147 }
148 }