Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ac3a1f5edd35e4d5670ada7b6e8748298c95d330
[simgrid.git] / src / s4u / s4u_as.cpp
1 /* Copyright (c) 2006-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <xbt/log.h>
8
9 #include <simgrid/s4u/host.hpp>
10 #include <simgrid/s4u/As.hpp>
11
12 #include "src/kernel/routing/NetCard.hpp"
13 #include "src/surf/network_interface.hpp" // Link FIXME: move to proper header
14 #include "src/surf/surf_routing.hpp"
15
16 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_as,"S4U autonomous systems");
17
18 namespace simgrid {
19   namespace s4u {
20
21   simgrid::xbt::signal<void(bool symmetrical, kernel::routing::NetCard* src, kernel::routing::NetCard* dst,
22                             kernel::routing::NetCard* gw_src, kernel::routing::NetCard* gw_dst,
23                             std::vector<Link*>* link_list)>
24       As::onRouteCreation;
25
26   As::As(As* father, const char* name) : father_(father), name_(xbt_strdup(name))
27   {
28   }
29   void As::seal()
30   {
31     sealed_ = true;
32   }
33   As::~As()
34   {
35     xbt_dict_cursor_t cursor = nullptr;
36     char* key;
37     AS_t elem;
38     xbt_dict_foreach(children_, cursor, key, elem) { delete (As*)elem; }
39
40     xbt_dict_free(&children_);
41     for (auto& kv : bypassRoutes_)
42       delete kv.second;
43     xbt_free(name_);
44   }
45
46   xbt_dict_t As::children()
47   {
48     return children_;
49   }
50   char* As::name()
51   {
52     return name_;
53   }
54   As* As::father()
55   {
56     return father_;
57   }
58
59   xbt_dynar_t As::hosts()
60   {
61     xbt_dynar_t res = xbt_dynar_new(sizeof(sg_host_t), nullptr);
62
63     for (auto card : vertices_) {
64       s4u::Host* host = simgrid::s4u::Host::by_name_or_null(card->name());
65       if (host != nullptr)
66         xbt_dynar_push(res, &host);
67     }
68     return res;
69   }
70
71   int As::addComponent(kernel::routing::NetCard* elm)
72   {
73     vertices_.push_back(elm);
74     return vertices_.size() - 1; // The rank of the newly created object
75   }
76
77   void As::addRoute(sg_platf_route_cbarg_t /*route*/)
78   {
79     xbt_die("AS %s does not accept new routes (wrong class).", name_);
80   }
81
82   void As::addBypassRoute(sg_platf_route_cbarg_t e_route)
83   {
84     /* Argument validity checks */
85     if (e_route->gw_dst) {
86       XBT_DEBUG("Load bypassASroute from %s@%s to %s@%s", e_route->src->name().c_str(), e_route->gw_src->name().c_str(),
87                 e_route->dst->name().c_str(), e_route->gw_dst->name().c_str());
88       xbt_assert(!e_route->link_list->empty(), "Bypass route between %s@%s and %s@%s cannot be empty.",
89                  e_route->src->name().c_str(), e_route->gw_src->name().c_str(), e_route->dst->name().c_str(),
90                  e_route->gw_dst->name().c_str());
91       xbt_assert(bypassRoutes_.find({e_route->src, e_route->dst}) == bypassRoutes_.end(),
92                  "The bypass route between %s@%s and %s@%s already exists.", e_route->src->name().c_str(),
93                  e_route->gw_src->name().c_str(), e_route->dst->name().c_str(), e_route->gw_dst->name().c_str());
94     } else {
95       XBT_DEBUG("Load bypassRoute from %s to %s", e_route->src->name().c_str(), e_route->dst->name().c_str());
96       xbt_assert(!e_route->link_list->empty(), "Bypass route between %s and %s cannot be empty.",
97                  e_route->src->name().c_str(), e_route->dst->name().c_str());
98       xbt_assert(bypassRoutes_.find({e_route->src, e_route->dst}) == bypassRoutes_.end(),
99                  "The bypass route between %s and %s already exists.", e_route->src->name().c_str(),
100                  e_route->dst->name().c_str());
101     }
102
103     /* Build a copy that will be stored in the dict */
104     kernel::routing::AsRoute* newRoute = new kernel::routing::AsRoute(e_route->gw_src, e_route->gw_dst);
105     for (auto link : *e_route->link_list)
106       newRoute->links.push_back(link);
107
108     /* Store it */
109     bypassRoutes_.insert({{e_route->src, e_route->dst}, newRoute});
110   }
111 }  }; // namespace simgrid::s4u