X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/808bc801011b8291383a7fb87669eb67f46f3a07..19aa33ec87e87e1ed8f4742cc4dd60aedb837892:/src/kernel/activity/SynchroRaw.cpp diff --git a/src/kernel/activity/SynchroRaw.cpp b/src/kernel/activity/SynchroRaw.cpp index 0f9e29f30d..a54933725e 100644 --- a/src/kernel/activity/SynchroRaw.cpp +++ b/src/kernel/activity/SynchroRaw.cpp @@ -1,36 +1,90 @@ -/* Copyright (c) 2007-2016. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2021. 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/activity/SynchroRaw.hpp" +#include "simgrid/Exception.hpp" +#include "simgrid/kernel/resource/Action.hpp" +#include "src/kernel/activity/ConditionVariableImpl.hpp" +#include "src/kernel/activity/MutexImpl.hpp" +#include "src/kernel/activity/SemaphoreImpl.hpp" +#include "src/kernel/context/Context.hpp" +#include "src/surf/cpu_interface.hpp" #include "src/surf/surf_interface.hpp" -#include "src/simix/smx_synchro_private.h" +#include -XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_synchro); +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_synchro, simix, "SIMIX Synchronization (mutex, semaphores and conditions)"); -simgrid::kernel::activity::Raw::~Raw() +namespace simgrid { +namespace kernel { +namespace activity { + +RawImpl& RawImpl::set_host(s4u::Host* host) { - sleep->unref(); + host_ = host; + return *this; } -void simgrid::kernel::activity::Raw::suspend() +RawImpl& RawImpl::set_timeout(double timeout) +{ + timeout_ = timeout; + return *this; +} + +RawImpl* RawImpl::start() +{ + surf_action_ = host_->pimpl_cpu->sleep(timeout_); + surf_action_->set_activity(this); + return this; +} + +void RawImpl::suspend() { /* The suspension of raw synchros is delayed to when the process is rescheduled. */ } -void simgrid::kernel::activity::Raw::resume() +void RawImpl::resume() { /* I cannot resume raw synchros directly. This is delayed to when the process is rescheduled at * the end of the synchro. */ } -void simgrid::kernel::activity::Raw::post() + +void RawImpl::cancel() { - XBT_IN("(%p)",this); - if (sleep->getState() == simgrid::surf::Action::State::failed) - state = SIMIX_FAILED; - else if(sleep->getState() == simgrid::surf::Action::State::done) - state = SIMIX_SRC_TIMEOUT; + /* I cannot cancel raw synchros directly. */ +} - SIMIX_synchro_finish(this); - XBT_OUT(); +void RawImpl::post() +{ + if (surf_action_->get_state() == resource::Action::State::FAILED) { + state_ = State::FAILED; + } else if (surf_action_->get_state() == resource::Action::State::FINISHED) { + state_ = State::SRC_TIMEOUT; + } + + clean_action(); + /* Answer all simcalls associated with the synchro */ + finish(); +} + +void RawImpl::finish() +{ + smx_simcall_t simcall = simcalls_.front(); + simcalls_.pop_front(); + + if (state_ == State::FAILED) { + XBT_DEBUG("RawImpl::finish(): host '%s' failed", simcall->issuer_->get_host()->get_cname()); + simcall->issuer_->context_->set_wannadie(); + simcall->issuer_->exception_ = std::make_exception_ptr(HostFailureException(XBT_THROW_POINT, "Host failed")); + } else if (state_ != State::SRC_TIMEOUT) { + xbt_die("Internal error in RawImpl::finish() unexpected synchro state %d", static_cast(state_)); + } + + finish_callback_(); + simcall->issuer_->waiting_synchro_ = nullptr; + simcall->issuer_->simcall_answer(); } + +} // namespace activity +} // namespace kernel +} // namespace simgrid