X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e080adacaf1ba847ad467f5b8d21da385636ed3c..94a3decca9053fd7702ff17433ade8b68ea97673:/src/kernel/routing/RoutedZone.cpp diff --git a/src/kernel/routing/RoutedZone.cpp b/src/kernel/routing/RoutedZone.cpp index 7619377b18..4a07c1a847 100644 --- a/src/kernel/routing/RoutedZone.cpp +++ b/src/kernel/routing/RoutedZone.cpp @@ -1,23 +1,24 @@ -/* Copyright (c) 2009-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2009-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ +#include "simgrid/kernel/routing/RoutedZone.hpp" +#include "simgrid/kernel/routing/NetPoint.hpp" +#include "src/surf/network_interface.hpp" +#include "src/surf/xml/platf_private.hpp" #include "xbt/dict.h" #include "xbt/graph.h" #include "xbt/log.h" #include "xbt/sysdep.h" -#include "simgrid/kernel/routing/NetPoint.hpp" -#include "simgrid/kernel/routing/RoutedZone.hpp" -#include "src/surf/network_interface.hpp" -#include "src/surf/xml/platf_private.hpp" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_routing_generic, surf_route, "Generic implementation of the surf routing"); /* ***************************************************************** */ /* *********************** GENERIC METHODS ************************* */ -xbt_node_t new_xbt_graph_node(const s_xbt_graph_t* graph, const char* name, std::map* nodes) +xbt_node_t new_xbt_graph_node(const s_xbt_graph_t* graph, const char* name, + std::map>* nodes) { auto elm = nodes->find(name); if (elm == nodes->end()) { @@ -29,7 +30,7 @@ xbt_node_t new_xbt_graph_node(const s_xbt_graph_t* graph, const char* name, std: } xbt_edge_t new_xbt_graph_edge(const s_xbt_graph_t* graph, xbt_node_t s, xbt_node_t d, - std::map* edges) + std::map>* edges) { const auto* sn = static_cast(xbt_graph_node_get_data(s)); const auto* dn = static_cast(xbt_graph_node_get_data(d)); @@ -53,13 +54,10 @@ namespace simgrid { namespace kernel { namespace routing { -RoutedZone::RoutedZone(NetZoneImpl* father, const std::string& name, resource::NetworkModel* netmodel) - : NetZoneImpl(father, name, netmodel) -{ -} +RoutedZone::RoutedZone(const std::string& name) : NetZoneImpl(name) {} -void RoutedZone::get_graph(const s_xbt_graph_t* graph, std::map* nodes, - std::map* edges) +void RoutedZone::get_graph(const s_xbt_graph_t* graph, std::map>* nodes, + std::map>* edges) { std::vector vertices = get_vertices(); @@ -68,26 +66,26 @@ void RoutedZone::get_graph(const s_xbt_graph_t* graph, std::map %s", my_src->get_cname(), my_dst->get_cname()); xbt_node_t current; xbt_node_t previous; - const char *previous_name; - const char *current_name; + const char* previous_name; + const char* current_name; - if (route->gw_src) { - previous = new_xbt_graph_node(graph, route->gw_src->get_cname(), nodes); - previous_name = route->gw_src->get_cname(); + if (route.gw_src) { + previous = new_xbt_graph_node(graph, route.gw_src->get_cname(), nodes); + previous_name = route.gw_src->get_cname(); } else { previous = new_xbt_graph_node(graph, my_src->get_cname(), nodes); previous_name = my_src->get_cname(); } - for (auto const& link : route->link_list) { + for (auto const& link : route.link_list) { const char* link_name = link->get_cname(); current = new_xbt_graph_node(graph, link_name, nodes); current_name = link_name; @@ -97,17 +95,15 @@ void RoutedZone::get_graph(const s_xbt_graph_t* graph, std::mapgw_dst) { - current = new_xbt_graph_node(graph, route->gw_dst->get_cname(), nodes); - current_name = route->gw_dst->get_cname(); + if (route.gw_dst) { + current = new_xbt_graph_node(graph, route.gw_dst->get_cname(), nodes); + current_name = route.gw_dst->get_cname(); } else { current = new_xbt_graph_node(graph, my_dst->get_cname(), nodes); current_name = my_dst->get_cname(); } new_xbt_graph_edge(graph, previous, current, edges); XBT_DEBUG(" %s -> %s", previous_name, current_name); - - delete route; } } } @@ -121,9 +117,6 @@ RouteCreationArgs* RoutedZone::new_extended_route(RoutingMode hierarchy, NetPoin { auto* result = new RouteCreationArgs(); - xbt_assert(hierarchy == RoutingMode::base || hierarchy == RoutingMode::recursive, - "The hierarchy of this netzone is neither BASIC nor RECURSIVE, I'm lost here."); - if (hierarchy == RoutingMode::recursive) { xbt_assert(gw_src && gw_dst, "nullptr is obviously a deficient gateway"); @@ -174,6 +167,7 @@ void RoutedZone::add_route_check_params(NetPoint* src, NetPoint* dst, NetPoint* xbt_assert(not dst->is_netzone(), "When defining a route, dst cannot be a netzone such as '%s'. Did you meant to have a NetzoneRoute?", dstName); + s4u::NetZone::on_route_creation(symmetrical, src, dst, gw_src, gw_dst, link_list); } else { XBT_DEBUG("Load NetzoneRoute from %s@%s to %s@%s", srcName, gw_src->get_cname(), dstName, gw_dst->get_cname()); xbt_assert(src->is_netzone(), "When defining a NetzoneRoute, src must be a netzone but '%s' is not", srcName); @@ -192,9 +186,8 @@ void RoutedZone::add_route_check_params(NetPoint* src, NetPoint* dst, NetPoint* gw_dst->get_cname(), dstName); xbt_assert(not link_list.empty(), "Empty route (between %s@%s and %s@%s) forbidden.", srcName, gw_src->get_cname(), dstName, gw_dst->get_cname()); + s4u::NetZone::on_route_creation(symmetrical, gw_src, gw_dst, gw_src, gw_dst, link_list); } - - s4u::NetZone::on_route_creation(symmetrical, src, dst, gw_src, gw_dst, link_list); } } // namespace routing } // namespace kernel