X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d785a64b1830b6a5d05561316ef7161ee1c67671..455435b8a7cc8d84037aa66104a73d4760d9666f:/src/s4u/s4u_as.cpp diff --git a/src/s4u/s4u_as.cpp b/src/s4u/s4u_as.cpp index 56864b5f47..1a8587b16d 100644 --- a/src/s4u/s4u_as.cpp +++ b/src/s4u/s4u_as.cpp @@ -9,101 +9,104 @@ #include #include -#include "src/surf/surf_routing.hpp" +#include "src/kernel/routing/BypassRoute.hpp" +#include "src/kernel/routing/NetCard.hpp" #include "src/surf/network_interface.hpp" // Link FIXME: move to proper header +#include "src/surf/surf_routing.hpp" XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_as,"S4U autonomous systems"); namespace simgrid { namespace s4u { - As::As(const char *name) - : name_(xbt_strdup(name)) - { - } - void As::seal() - { - sealed_ = true; - } - As::~As() - { - xbt_dict_cursor_t cursor = nullptr; - char *key; - AS_t elem; - xbt_dict_foreach(children_, cursor, key, elem) { - delete (As*)elem; - } - - - xbt_dict_free(&children_); - xbt_dynar_free(&vertices_); - for (auto &kv : bypassRoutes_) - delete kv.second; - xbt_free(name_); - } - - xbt_dict_t As::children() - { - return children_; - } - char *As::name() - { - return name_; - } - As *As::father() { - return father_; - } - - xbt_dynar_t As::hosts() - { - xbt_dynar_t res = xbt_dynar_new(sizeof(sg_host_t), nullptr); - - for (unsigned int index = 0; index < xbt_dynar_length(vertices_); index++) { - kernel::routing::NetCard *card = xbt_dynar_get_as(vertices_, index, kernel::routing::NetCard*); - s4u::Host *host = simgrid::s4u::Host::by_name_or_null(card->name()); - if (host!=nullptr) - xbt_dynar_push(res, &host); - } - return res; + simgrid::xbt::signal* link_list)> + As::onRouteCreation; + + As::As(As* father, const char* name) : father_(father), name_(xbt_strdup(name)) + { + } + void As::seal() + { + sealed_ = true; + } + As::~As() + { + xbt_dict_cursor_t cursor = nullptr; + char* key; + AS_t elem; + xbt_dict_foreach(children_, cursor, key, elem) { delete (As*)elem; } + + xbt_dict_free(&children_); + for (auto& kv : bypassRoutes_) + delete kv.second; + xbt_free(name_); + } + + xbt_dict_t As::children() + { + return children_; + } + char* As::name() + { + return name_; + } + As* As::father() + { + return father_; + } + + xbt_dynar_t As::hosts() + { + xbt_dynar_t res = xbt_dynar_new(sizeof(sg_host_t), nullptr); + + for (auto card : vertices_) { + s4u::Host* host = simgrid::s4u::Host::by_name_or_null(card->name()); + if (host != nullptr) + xbt_dynar_push(res, &host); } - - int As::addComponent(kernel::routing::NetCard *elm) { - xbt_dynar_push_as(vertices_, kernel::routing::NetCard*, elm); - return xbt_dynar_length(vertices_)-1; + return res; + } + + int As::addComponent(kernel::routing::NetCard* elm) + { + vertices_.push_back(elm); + return vertices_.size() - 1; // The rank of the newly created object + } + + void As::addRoute(sg_platf_route_cbarg_t /*route*/) + { + xbt_die("AS %s does not accept new routes (wrong class).", name_); + } + + void As::addBypassRoute(sg_platf_route_cbarg_t e_route) + { + /* Argument validity checks */ + if (e_route->gw_dst) { + XBT_DEBUG("Load bypassASroute from %s@%s to %s@%s", e_route->src->name().c_str(), e_route->gw_src->name().c_str(), + e_route->dst->name().c_str(), e_route->gw_dst->name().c_str()); + xbt_assert(!e_route->link_list->empty(), "Bypass route between %s@%s and %s@%s cannot be empty.", + e_route->src->name().c_str(), e_route->gw_src->name().c_str(), e_route->dst->name().c_str(), + e_route->gw_dst->name().c_str()); + xbt_assert(bypassRoutes_.find({e_route->src, e_route->dst}) == bypassRoutes_.end(), + "The bypass route between %s@%s and %s@%s already exists.", e_route->src->name().c_str(), + e_route->gw_src->name().c_str(), e_route->dst->name().c_str(), e_route->gw_dst->name().c_str()); + } else { + XBT_DEBUG("Load bypassRoute from %s to %s", e_route->src->name().c_str(), e_route->dst->name().c_str()); + xbt_assert(!e_route->link_list->empty(), "Bypass route between %s and %s cannot be empty.", + e_route->src->name().c_str(), e_route->dst->name().c_str()); + xbt_assert(bypassRoutes_.find({e_route->src, e_route->dst}) == bypassRoutes_.end(), + "The bypass route between %s and %s already exists.", e_route->src->name().c_str(), + e_route->dst->name().c_str()); } - void As::addRoute(sg_platf_route_cbarg_t /*route*/){ - xbt_die("AS %s does not accept new routes (wrong class).",name_); - } - - void As::addBypassRoute(sg_platf_route_cbarg_t e_route){ - /* Argument validity checks */ - if (e_route->gw_dst) { - XBT_DEBUG("Load bypassASroute from %s@%s to %s@%s", - e_route->src->name(), e_route->gw_src->name(), - e_route->dst->name(), e_route->gw_dst->name()); - xbt_assert(!e_route->link_list->empty(), "Bypass route between %s@%s and %s@%s cannot be empty.", - e_route->src->name(), e_route->gw_src->name(), - e_route->dst->name(), e_route->gw_dst->name()); - xbt_assert(bypassRoutes_.find({e_route->src->name(),e_route->dst->name()}) == bypassRoutes_.end(), - "The bypass route between %s@%s and %s@%s already exists.", - e_route->src->name(), e_route->gw_src->name(), e_route->dst->name(), e_route->gw_dst->name()); - } else { - XBT_DEBUG("Load bypassRoute from %s to %s", e_route->src->name(), e_route->dst->name()); - xbt_assert(!e_route->link_list->empty(), "Bypass route between %s and %s cannot be empty.", - e_route->src->name(), e_route->dst->name()); - xbt_assert(bypassRoutes_.find({e_route->src->name(),e_route->dst->name()}) == bypassRoutes_.end(), - "The bypass route between %s and %s already exists.", - e_route->src->name(), e_route->dst->name()); - } - - /* Build a copy that will be stored in the dict */ - std::vector *newRoute = new std::vector(); - for (auto link: *e_route->link_list) - newRoute->push_back(link); - - /* Store it */ - bypassRoutes_.insert({{e_route->src->name(),e_route->dst->name()}, newRoute}); - } + /* Build a copy that will be stored in the dict */ + kernel::routing::BypassRoute* newRoute = new kernel::routing::BypassRoute(e_route->gw_src, e_route->gw_dst); + for (auto link : *e_route->link_list) + newRoute->links.push_back(link); + /* Store it */ + bypassRoutes_.insert({{e_route->src, e_route->dst}, newRoute}); + } } }; // namespace simgrid::s4u