X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2d2995483b57463581ffdc4365fe1999ddc306c2..83f28c874af4faaeaaa19571afc2cd52c801da39:/src/simix/smx_io.cpp diff --git a/src/simix/smx_io.cpp b/src/simix/smx_io.cpp index f210733aa6..bb18ed00fb 100644 --- a/src/simix/smx_io.cpp +++ b/src/simix/smx_io.cpp @@ -1,59 +1,39 @@ -/* Copyright (c) 2007-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2019. 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 "mc/mc.h" +#include "simgrid/Exception.hpp" #include "simgrid/s4u/Host.hpp" -#include "xbt/ex.hpp" +#include "simgrid/s4u/Io.hpp" #include "smx_private.hpp" #include "src/kernel/activity/IoImpl.hpp" +#include "src/mc/mc_replay.hpp" #include "src/simix/smx_io_private.hpp" #include "src/surf/StorageImpl.hpp" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_io, simix, "Logging specific to SIMIX (io)"); -void simcall_HANDLER_storage_read(smx_simcall_t simcall, surf_storage_t st, sg_size_t size) +void simcall_HANDLER_io_wait(smx_simcall_t simcall, smx_activity_t synchro) { - smx_activity_t synchro = SIMIX_storage_read(st, size); - synchro->simcalls_.push_back(simcall); - simcall->issuer->waiting_synchro = synchro; -} - -smx_activity_t SIMIX_storage_read(surf_storage_t st, sg_size_t size) -{ - simgrid::kernel::activity::IoImpl* synchro = new simgrid::kernel::activity::IoImpl(); - synchro->surf_action_ = st->read(size); + XBT_DEBUG("Wait for execution of synchro %p, state %d", synchro.get(), (int)synchro->state_); - synchro->surf_action_->set_data(synchro); - XBT_DEBUG("Create io synchro %p", synchro); - - return synchro; -} - -void simcall_HANDLER_storage_write(smx_simcall_t simcall, surf_storage_t st, sg_size_t size) -{ - smx_activity_t synchro = SIMIX_storage_write(st, size); + /* Associate this simcall to the synchro */ synchro->simcalls_.push_back(simcall); simcall->issuer->waiting_synchro = synchro; -} -smx_activity_t SIMIX_storage_write(surf_storage_t st, sg_size_t size) -{ - simgrid::kernel::activity::IoImpl* synchro = new simgrid::kernel::activity::IoImpl(); - synchro->surf_action_ = st->write(size); - synchro->surf_action_->set_data(synchro); - XBT_DEBUG("Create io synchro %p", synchro); + /* set surf's synchro */ + if (MC_is_active() || MC_record_replay_is_active()) { + synchro->state_ = SIMIX_DONE; + SIMIX_io_finish(synchro); + return; + } - return synchro; -} - -void SIMIX_io_destroy(smx_activity_t synchro) -{ - simgrid::kernel::activity::IoImplPtr io = boost::static_pointer_cast(synchro); - XBT_DEBUG("Destroy synchro %p", synchro.get()); - if (io->surf_action_) - io->surf_action_->unref(); + /* If the synchro is already finished then perform the error handling */ + if (synchro->state_ != SIMIX_RUNNING) + SIMIX_io_finish(synchro); } void SIMIX_io_finish(smx_activity_t synchro) @@ -73,14 +53,10 @@ void SIMIX_io_finish(smx_activity_t synchro) xbt_die("Internal error in SIMIX_io_finish: unexpected synchro state %d", static_cast(synchro->state_)); } - if (simcall->issuer->host_->is_off()) { - simcall->issuer->context_->iwannadie = 1; - } - simcall->issuer->waiting_synchro = nullptr; - SIMIX_simcall_answer(simcall); + if (simcall->issuer->host_->is_on()) + SIMIX_simcall_answer(simcall); + else + simcall->issuer->context_->iwannadie = true; } - - /* We no longer need it */ - SIMIX_io_destroy(synchro); }