X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d098dd9e12ee321b061421f535b2b56ce7691673..c46aba70aa4ccf22cc19fac31d451c7158e922dd:/src/mc/mc_smx.cpp diff --git a/src/mc/mc_smx.cpp b/src/mc/mc_smx.cpp index 9e95602299..205fcf7ed3 100644 --- a/src/mc/mc_smx.cpp +++ b/src/mc/mc_smx.cpp @@ -4,14 +4,18 @@ /* 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 +#include +#include #include +#include +#include +#include #include "src/simix/smx_private.h" #include "src/mc/mc_smx.h" -#include "ModelChecker.hpp" +#include "src/mc/ModelChecker.hpp" using simgrid::mc::remote; @@ -20,9 +24,9 @@ extern "C" { static void MC_smx_process_info_clear(mc_smx_process_info_t p) { - p->hostname = NULL; - free(p->name); - p->name = NULL; + p->hostname = nullptr; + std::free(p->name); + p->name = nullptr; } xbt_dynar_t MC_smx_process_info_list_new(void) @@ -73,8 +77,8 @@ static void MC_process_refresh_simix_process_list( s_mc_smx_process_info_t info; info.address = p; - info.name = NULL; - info.hostname = NULL; + info.name = nullptr; + info.hostname = nullptr; process->read_bytes(&info.copy, sizeof(info.copy), remote(p)); xbt_dynar_push(target, &info); @@ -145,7 +149,7 @@ smx_process_t MC_smx_simcall_get_issuer(smx_simcall_t req) smx_process_t MC_smx_resolve_process(smx_process_t process_remote_address) { if (!process_remote_address) - return NULL; + return nullptr; if (mc_mode == MC_MODE_CLIENT) return process_remote_address; @@ -153,7 +157,7 @@ smx_process_t MC_smx_resolve_process(smx_process_t process_remote_address) if (process_info) return &process_info->copy; else - return NULL; + return nullptr; } mc_smx_process_info_t MC_smx_resolve_process_info(smx_process_t process_remote_address) @@ -175,24 +179,37 @@ mc_smx_process_info_t MC_smx_resolve_process_info(smx_process_t process_remote_a const char* MC_smx_process_get_host_name(smx_process_t p) { if (mc_mode == MC_MODE_CLIENT) - return SIMIX_host_get_name(p->host); + return sg_host_get_name(p->host); simgrid::mc::Process* process = &mc_model_checker->process(); - // Currently, smx_host_t = xbt_dictelm_t. - // TODO, add an static_assert on this if switching to C++ - // The host name is host->key and the host->key_len==strlen(host->key). - s_xbt_dictelm_t host_copy; + /* Horrible hack to find the offset of the id in the simgrid::s4u::Host. + + Offsetof is not supported for non-POD types but this should + work in pratice for the targets currently supported by the MC + as long as we do not add funny features to the Host class + (such as virtual base). + + We are using a (C++11) unrestricted union in order to avoid + any construction/destruction of the simgrid::s4u::Host. + */ + union fake_host { + simgrid::s4u::Host host; + fake_host() {} + ~fake_host() {} + }; + fake_host foo; + const size_t offset = (char*) &foo.host.name() - (char*) &foo.host; + + // Read the simgrid::xbt::string in the MCed process: mc_smx_process_info_t info = MC_smx_process_get_info(p); - if (!info->hostname) { - - // Read the hostname from the MCed process: - process->read_bytes(&host_copy, sizeof(host_copy), remote(p->host)); - int len = host_copy.key_len + 1; - char hostname[len]; - process->read_bytes(hostname, len, remote(host_copy.key)); - info->hostname = mc_model_checker->get_host_name(hostname); - } + simgrid::xbt::string_data remote_string; + auto remote_string_address = remote( + (simgrid::xbt::string_data*) ((char*) p->host + offset)); + process->read_bytes(&remote_string, sizeof(remote_string), remote_string_address); + char hostname[remote_string.len]; + process->read_bytes(hostname, remote_string.len + 1, remote(remote_string.data)); + info->hostname = mc_model_checker->get_host_name(hostname); return info->hostname; } @@ -202,7 +219,7 @@ const char* MC_smx_process_get_name(smx_process_t p) if (mc_mode == MC_MODE_CLIENT) return p->name; if (!p->name) - return NULL; + return nullptr; mc_smx_process_info_t info = MC_smx_process_get_info(p); if (!info->name) {