X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e6f836d79ad3def5358ceafe9c4640fbf163cc42..fee678043c1ace05bae8ef3489bbbef2235dc596:/src/kernel/routing/RoutedZone.cpp diff --git a/src/kernel/routing/RoutedZone.cpp b/src/kernel/routing/RoutedZone.cpp index 2823682aa0..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(); @@ -76,8 +74,8 @@ void RoutedZone::get_graph(const s_xbt_graph_t* graph, std::mapget_cname(), nodes); @@ -119,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"); @@ -172,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); @@ -190,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