X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4a6b0a991a67e6f2f67c03fed43529e078da7115..b51da37243dc16575499f4cb7729fe8bdd7fa514:/src/simdag/sd_workstation.cpp diff --git a/src/simdag/sd_workstation.cpp b/src/simdag/sd_workstation.cpp index 1c54dcd7c9..ceeb8c1334 100644 --- a/src/simdag/sd_workstation.cpp +++ b/src/simdag/sd_workstation.cpp @@ -4,14 +4,9 @@ /* 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/surf/host_interface.hpp" #include "src/simdag/simdag_private.h" -#include "simgrid/simdag.h" -#include "simgrid/host.h" -#include -#include "xbt/dict.h" -#include "xbt/lib.h" -#include "xbt/sysdep.h" +#include "simgrid/s4u/host.hpp" +#include "src/surf/HostImpl.hpp" #include "surf/surf.h" /** @brief Returns the route between two workstations @@ -25,14 +20,15 @@ */ SD_link_t *SD_route_get_list(sg_host_t src, sg_host_t dst) { - void *surf_link; - unsigned int cpt; - xbt_dynar_t surf_route = surf_host_model_get_route((surf_host_model_t)surf_host_model, src, dst); + std::vector *route = new std::vector(); + routing_platf->getRouteAndLatency(src->pimpl_netcard, dst->pimpl_netcard, route, nullptr); - SD_link_t *list = xbt_new(SD_link_t, xbt_dynar_length(surf_route)); - xbt_dynar_foreach(surf_route, cpt, surf_link) { - list[cpt] = (SD_link_t)surf_link; - } + int cpt=0; + SD_link_t *list = xbt_new(SD_link_t, route->size()); + for (auto link : *route) + list[cpt++] = link; + + delete route; return list; } @@ -46,7 +42,11 @@ SD_link_t *SD_route_get_list(sg_host_t src, sg_host_t dst) */ int SD_route_get_size(sg_host_t src, sg_host_t dst) { - return xbt_dynar_length(surf_host_model_get_route((surf_host_model_t)surf_host_model, src, dst)); + std::vector *route = new std::vector(); + routing_platf->getRouteAndLatency(src->pimpl_netcard, dst->pimpl_netcard, route, nullptr); + int size = route->size(); + delete route; + return size; } /** @@ -59,10 +59,10 @@ int SD_route_get_size(sg_host_t src, sg_host_t dst) */ double SD_route_get_latency(sg_host_t src, sg_host_t dst) { - xbt_dynar_t route = NULL; double latency = 0; - - routing_platf->getRouteAndLatency(src->pimpl_netcard, dst->pimpl_netcard, &route, &latency); + std::vector *route = new std::vector(); + routing_platf->getRouteAndLatency(src->pimpl_netcard, dst->pimpl_netcard, route, &latency); + delete route; return latency; } @@ -78,19 +78,17 @@ double SD_route_get_latency(sg_host_t src, sg_host_t dst) */ double SD_route_get_bandwidth(sg_host_t src, sg_host_t dst) { - xbt_dynar_t route = NULL; - unsigned int cpt; - double latency = 0; double min_bandwidth = -1.0; - SD_link_t link; - routing_platf->getRouteAndLatency(src->pimpl_netcard, dst->pimpl_netcard, &route, &latency); + std::vector *route = new std::vector(); + routing_platf->getRouteAndLatency(src->pimpl_netcard, dst->pimpl_netcard, route, nullptr); - xbt_dynar_foreach(route, cpt, link){ + for (auto link : *route) { double bandwidth = sg_link_bandwidth(link); if (bandwidth < min_bandwidth || min_bandwidth == -1.0) min_bandwidth = bandwidth; } + delete route; return min_bandwidth; }