X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ecd5f7562caf1d443bf22788fa5f4fac408776ec..e95d2dda61913a92ff3a9d1b7c368ba6e1443b30:/src/kernel/routing/NetZoneImpl.cpp diff --git a/src/kernel/routing/NetZoneImpl.cpp b/src/kernel/routing/NetZoneImpl.cpp index 08b74dfc9e..f896d7a539 100644 --- a/src/kernel/routing/NetZoneImpl.cpp +++ b/src/kernel/routing/NetZoneImpl.cpp @@ -1,12 +1,12 @@ -/* Copyright (c) 2006-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-2018. 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 "src/kernel/routing/NetZoneImpl.hpp" +#include "simgrid/kernel/routing/NetZoneImpl.hpp" +#include "simgrid/kernel/routing/NetPoint.hpp" #include "simgrid/s4u/Engine.hpp" #include "simgrid/s4u/Host.hpp" -#include "src/kernel/routing/NetPoint.hpp" #include "src/surf/cpu_interface.hpp" #include "src/surf/network_interface.hpp" @@ -64,34 +64,33 @@ simgrid::s4u::Host* NetZoneImpl::createHost(const char* name, std::vector& link_list, bool symmetrical) { /* Argument validity checks */ - if (e_route->gw_dst) { - XBT_DEBUG("Load bypassNetzoneRoute from %s@%s to %s@%s", e_route->src->getCname(), e_route->gw_src->getCname(), - e_route->dst->getCname(), e_route->gw_dst->getCname()); - xbt_assert(not e_route->link_list.empty(), "Bypass route between %s@%s and %s@%s cannot be empty.", - e_route->src->getCname(), e_route->gw_src->getCname(), e_route->dst->getCname(), - e_route->gw_dst->getCname()); - 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->getCname(), - e_route->gw_src->getCname(), e_route->dst->getCname(), e_route->gw_dst->getCname()); + if (gw_dst) { + XBT_DEBUG("Load bypassNetzoneRoute from %s@%s to %s@%s", src->getCname(), gw_src->getCname(), dst->getCname(), + gw_dst->getCname()); + xbt_assert(not link_list.empty(), "Bypass route between %s@%s and %s@%s cannot be empty.", src->getCname(), + gw_src->getCname(), dst->getCname(), gw_dst->getCname()); + xbt_assert(bypassRoutes_.find({src, dst}) == bypassRoutes_.end(), + "The bypass route between %s@%s and %s@%s already exists.", src->getCname(), gw_src->getCname(), + dst->getCname(), gw_dst->getCname()); } else { - XBT_DEBUG("Load bypassRoute from %s to %s", e_route->src->getCname(), e_route->dst->getCname()); - xbt_assert(not e_route->link_list.empty(), "Bypass route between %s and %s cannot be empty.", - e_route->src->getCname(), e_route->dst->getCname()); - xbt_assert(bypassRoutes_.find({e_route->src, e_route->dst}) == bypassRoutes_.end(), - "The bypass route between %s and %s already exists.", e_route->src->getCname(), - e_route->dst->getCname()); + XBT_DEBUG("Load bypassRoute from %s to %s", src->getCname(), dst->getCname()); + xbt_assert(not link_list.empty(), "Bypass route between %s and %s cannot be empty.", src->getCname(), + dst->getCname()); + xbt_assert(bypassRoutes_.find({src, dst}) == bypassRoutes_.end(), + "The bypass route between %s and %s already exists.", src->getCname(), dst->getCname()); } /* 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 const& link : e_route->link_list) + kernel::routing::BypassRoute* newRoute = new kernel::routing::BypassRoute(gw_src, gw_dst); + for (auto const& link : link_list) newRoute->links.push_back(link); /* Store it */ - bypassRoutes_.insert({{e_route->src, e_route->dst}, newRoute}); + bypassRoutes_.insert({{src, dst}, newRoute}); } /** @brief Get the common ancestor and its first children in each line leading to src and dst @@ -315,7 +314,7 @@ bool NetZoneImpl::getBypassRoute(routing::NetPoint* src, routing::NetPoint* dst, void NetZoneImpl::getGlobalRoute(routing::NetPoint* src, routing::NetPoint* dst, /* OUT */ std::vector& links, double* latency) { - s_sg_platf_route_cbarg_t route; + RouteCreationArgs route; XBT_DEBUG("Resolve route from '%s' to '%s'", src->getCname(), dst->getCname());