X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a827700e9c5f30942eb18fa38a0d0ebb84c4406d..fa900b346af7c55195fd90c3345cc4107c2afc6d:/src/msg/msg_io.cpp diff --git a/src/msg/msg_io.cpp b/src/msg/msg_io.cpp index cb3b97d284..a013379644 100644 --- a/src/msg/msg_io.cpp +++ b/src/msg/msg_io.cpp @@ -5,6 +5,7 @@ #include "simgrid/s4u/host.hpp" #include "src/msg/msg_private.h" +#include "src/surf/storage_interface.hpp" #include XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_io, msg, "Logging specific to MSG (io)"); @@ -446,8 +447,8 @@ msg_storage_t __MSG_storage_create(smx_storage_t storage) msg_storage_priv_t storage_private = xbt_new0(s_msg_storage_priv_t, 1); storage_private->name = SIMIX_storage_get_name(storage); - storage_private->hostname = SIMIX_storage_get_host(storage); - storage_private->size = SIMIX_storage_get_size(storage); + storage_private->hostname = surf_storage_get_host(storage); + storage_private->size = surf_storage_get_size(storage); xbt_lib_set(storage_lib, storage_private->name, MSG_STORAGE_LEVEL, storage_private); return xbt_lib_get_elm_or_null(storage_lib, storage_private->name); @@ -586,7 +587,14 @@ void *MSG_storage_get_data(msg_storage_t storage) */ xbt_dict_t MSG_storage_get_content(msg_storage_t storage) { - return SIMIX_storage_get_content(storage); + std::map* content = + static_cast(surf_storage_resource_priv(storage))->getContent(); + xbt_dict_t content_dict = xbt_dict_new_homogeneous(nullptr); + + for (auto entry : *content) { + xbt_dict_set(content_dict, entry.first.c_str(), entry.second, nullptr); + } + return content_dict; } /** \ingroup msg_storage_management