X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7013392b1a0a3aed2219fa352e81826f8657fbe2..HEAD:/src/s4u/s4u_Mutex.cpp diff --git a/src/s4u/s4u_Mutex.cpp b/src/s4u/s4u_Mutex.cpp index 88a271b0e5..72c2481736 100644 --- a/src/s4u/s4u_Mutex.cpp +++ b/src/s4u/s4u_Mutex.cpp @@ -1,22 +1,34 @@ -/* Copyright (c) 2006-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-2023. 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 "simgrid/s4u/Mutex.hpp" +#include +#include +#include + #include "src/kernel/activity/MutexImpl.hpp" +#include "src/kernel/actor/SynchroObserver.hpp" +#include "src/mc/mc_replay.hpp" -namespace simgrid { -namespace s4u { +namespace simgrid::s4u { -Mutex::~Mutex() -{ - SIMIX_mutex_unref(pimpl_); -} /** @brief Blocks the calling actor until the mutex can be obtained */ void Mutex::lock() { - simcall_mutex_lock(pimpl_); + kernel::actor::ActorImpl* issuer = kernel::actor::ActorImpl::self(); + + if (MC_is_active() || MC_record_replay_is_active()) { // Split in 2 simcalls for transition persistency + kernel::actor::MutexObserver lock_observer{issuer, mc::Transition::Type::MUTEX_ASYNC_LOCK, pimpl_}; + auto acquisition = + kernel::actor::simcall_answered([issuer, this] { return pimpl_->lock_async(issuer); }, &lock_observer); + + kernel::actor::MutexObserver wait_observer{issuer, mc::Transition::Type::MUTEX_WAIT, pimpl_}; + kernel::actor::simcall_blocking([issuer, &acquisition] { acquisition->wait_for(issuer, -1); }, &wait_observer); + + } else { // Do it in one simcall only + kernel::actor::simcall_blocking([issuer, this] { pimpl_->lock_async(issuer)->wait_for(issuer, -1); }); + } } /** @brief Release the ownership of the mutex, unleashing a blocked actor (if any) @@ -25,35 +37,72 @@ void Mutex::lock() */ void Mutex::unlock() { - simcall_mutex_unlock(pimpl_); + kernel::actor::ActorImpl* issuer = kernel::actor::ActorImpl::self(); + kernel::actor::MutexObserver observer{issuer, mc::Transition::Type::MUTEX_UNLOCK, pimpl_}; + kernel::actor::simcall_answered([this, issuer] { this->pimpl_->unlock(issuer); }, &observer); } /** @brief Acquire the mutex if it's free, and return false (without blocking) if not */ bool Mutex::try_lock() { - return simcall_mutex_trylock(pimpl_); + kernel::actor::ActorImpl* issuer = kernel::actor::ActorImpl::self(); + kernel::actor::MutexObserver observer{issuer, mc::Transition::Type::MUTEX_TRYLOCK, pimpl_}; + return kernel::actor::simcall_answered([&observer] { return observer.get_mutex()->try_lock(observer.get_issuer()); }, + &observer); } /** @brief Create a new mutex * * See @ref s4u_raii. */ -MutexPtr Mutex::create() +MutexPtr Mutex::create(bool recursive) { - smx_mutex_t mutex = simcall_mutex_init(); - return MutexPtr(&mutex->mutex(), false); + auto* mutex = new kernel::activity::MutexImpl(recursive); + return MutexPtr(&mutex->get_iface(), false); +} + +Actor* Mutex::get_owner() +{ + auto* owner = pimpl_->get_owner(); + if (owner == nullptr) + return nullptr; + return owner->get_ciface(); } /* refcounting of the intrusive_ptr is delegated to the implementation object */ -void intrusive_ptr_add_ref(Mutex* mutex) +void intrusive_ptr_add_ref(const Mutex* mutex) +{ + intrusive_ptr_add_ref(mutex->pimpl_); +} +void intrusive_ptr_release(const Mutex* mutex) { - xbt_assert(mutex); - SIMIX_mutex_ref(mutex->pimpl_); + intrusive_ptr_release(mutex->pimpl_); } -void intrusive_ptr_release(Mutex* mutex) + +} // namespace simgrid::s4u + +/* **************************** Public C interface *************************** */ +sg_mutex_t sg_mutex_init() +{ + return simgrid::s4u::Mutex::create().detach(); +} + +void sg_mutex_lock(sg_mutex_t mutex) +{ + mutex->lock(); +} + +void sg_mutex_unlock(sg_mutex_t mutex) +{ + mutex->unlock(); +} + +int sg_mutex_try_lock(sg_mutex_t mutex) +{ + return mutex->try_lock(); +} + +void sg_mutex_destroy(const_sg_mutex_t mutex) { - xbt_assert(mutex); - SIMIX_mutex_unref(mutex->pimpl_); + intrusive_ptr_release(mutex); } -} // namespace s4u -} // namespace simgrid