X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/376c276e460465f8c897215240fa7094a635fe7b..HEAD:/src/simix/libsmx.cpp diff --git a/src/simix/libsmx.cpp b/src/simix/libsmx.cpp deleted file mode 100644 index 1236119f41..0000000000 --- a/src/simix/libsmx.cpp +++ /dev/null @@ -1,192 +0,0 @@ -/* libsmx.c - public interface to simix */ -/* -------- */ -/* These functions are the only ones that are visible from the higher levels */ -/* (most of them simply add some documentation to the generated simcall body) */ -/* */ -/* This is somehow the "libc" of SimGrid */ - -/* Copyright (c) 2010-2022. 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 "src/kernel/activity/CommImpl.hpp" -#include "src/kernel/activity/ConditionVariableImpl.hpp" -#include "src/kernel/activity/MutexImpl.hpp" -#include "src/kernel/activity/SemaphoreImpl.hpp" -#include "src/kernel/actor/SimcallObserver.hpp" -#include "src/mc/mc_replay.hpp" -#include "xbt/random.hpp" - -#include "popping_bodies.cpp" - -#include -#include -#include - -/** - * @ingroup simix_comm_management - */ -void simcall_comm_send(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate, void* src_buff, - size_t src_buff_size, bool (*match_fun)(void*, void*, simgrid::kernel::activity::CommImpl*), - void (*copy_data_fun)(simgrid::kernel::activity::CommImpl*, void*, size_t), void* data, - double timeout) -{ - /* checking for infinite values */ - xbt_assert(std::isfinite(task_size), "task_size is not finite!"); - xbt_assert(std::isfinite(rate), "rate is not finite!"); - xbt_assert(std::isfinite(timeout), "timeout is not finite!"); - - xbt_assert(mbox, "No rendez-vous point defined for send"); - - if (MC_is_active() || MC_record_replay_is_active()) { - /* the model-checker wants two separate simcalls */ - simgrid::kernel::activity::ActivityImplPtr comm = - nullptr; /* MC needs the comm to be set to nullptr during the simcall */ - comm = simcall_comm_isend(sender, mbox, task_size, rate, src_buff, src_buff_size, match_fun, nullptr, copy_data_fun, - data, false); - simcall_comm_wait(comm.get(), timeout); - comm = nullptr; - } - else { - simcall_BODY_comm_send(sender, mbox, task_size, rate, static_cast(src_buff), src_buff_size, - match_fun, copy_data_fun, data, timeout); - } -} - -/** - * @ingroup simix_comm_management - */ -simgrid::kernel::activity::ActivityImplPtr -simcall_comm_isend(smx_actor_t sender, smx_mailbox_t mbox, double task_size, double rate, void* src_buff, - size_t src_buff_size, bool (*match_fun)(void*, void*, simgrid::kernel::activity::CommImpl*), - void (*clean_fun)(void*), void (*copy_data_fun)(simgrid::kernel::activity::CommImpl*, void*, size_t), - void* data, bool detached) -{ - /* checking for infinite values */ - xbt_assert(std::isfinite(task_size), "task_size is not finite!"); - xbt_assert(std::isfinite(rate), "rate is not finite!"); - - xbt_assert(mbox, "No rendez-vous point defined for isend"); - - return simcall_BODY_comm_isend(sender, mbox, task_size, rate, static_cast(src_buff), src_buff_size, - match_fun, clean_fun, copy_data_fun, data, detached); -} - -/** - * @ingroup simix_comm_management - */ -void simcall_comm_recv(smx_actor_t receiver, smx_mailbox_t mbox, void* dst_buff, size_t* dst_buff_size, - bool (*match_fun)(void*, void*, simgrid::kernel::activity::CommImpl*), - void (*copy_data_fun)(simgrid::kernel::activity::CommImpl*, void*, size_t), void* data, - double timeout, double rate) -{ - xbt_assert(std::isfinite(timeout), "timeout is not finite!"); - xbt_assert(mbox, "No rendez-vous point defined for recv"); - - if (MC_is_active() || MC_record_replay_is_active()) { - /* the model-checker wants two separate simcalls */ - simgrid::kernel::activity::ActivityImplPtr comm = - nullptr; /* MC needs the comm to be set to nullptr during the simcall */ - comm = simcall_comm_irecv(receiver, mbox, dst_buff, dst_buff_size, - match_fun, copy_data_fun, data, rate); - simcall_comm_wait(comm.get(), timeout); - comm = nullptr; - } - else { - simcall_BODY_comm_recv(receiver, mbox, static_cast(dst_buff), dst_buff_size, match_fun, - copy_data_fun, data, timeout, rate); - } -} -/** - * @ingroup simix_comm_management - */ -simgrid::kernel::activity::ActivityImplPtr -simcall_comm_irecv(smx_actor_t receiver, smx_mailbox_t mbox, void* dst_buff, size_t* dst_buff_size, - bool (*match_fun)(void*, void*, simgrid::kernel::activity::CommImpl*), - void (*copy_data_fun)(simgrid::kernel::activity::CommImpl*, void*, size_t), void* data, double rate) -{ - xbt_assert(mbox, "No rendez-vous point defined for irecv"); - - return simcall_BODY_comm_irecv(receiver, mbox, static_cast(dst_buff), dst_buff_size, match_fun, - copy_data_fun, data, rate); -} - -/** - * @ingroup simix_comm_management - */ -ssize_t simcall_comm_waitany(simgrid::kernel::activity::CommImpl* comms[], size_t count, double timeout) -{ - return simcall_BODY_comm_waitany(comms, count, timeout); -} - -/** - * @ingroup simix_comm_management - */ -ssize_t simcall_comm_testany(simgrid::kernel::activity::CommImpl* comms[], size_t count) -{ - if (count == 0) - return -1; - return simcall_BODY_comm_testany(comms, count); -} - -/** - * @ingroup simix_comm_management - */ -void simcall_comm_wait(simgrid::kernel::activity::ActivityImpl* comm, double timeout) -{ - xbt_assert(std::isfinite(timeout), "timeout is not finite!"); - simcall_BODY_comm_wait(static_cast(comm), timeout); -} - -/** - * @ingroup simix_comm_management - * - */ -bool simcall_comm_test(simgrid::kernel::activity::ActivityImpl* comm) -{ - return simcall_BODY_comm_test(static_cast(comm)); -} - -void simcall_run_kernel(std::function const& code, simgrid::kernel::actor::SimcallObserver* observer) -{ - simgrid::kernel::actor::ActorImpl::self()->simcall_.observer_ = observer; - simcall_BODY_run_kernel(&code); - simgrid::kernel::actor::ActorImpl::self()->simcall_.observer_ = nullptr; -} - -void simcall_run_blocking(std::function const& code, simgrid::kernel::actor::SimcallObserver* observer) -{ - simgrid::kernel::actor::ActorImpl::self()->simcall_.observer_ = observer; - simcall_BODY_run_blocking(&code); - simgrid::kernel::actor::ActorImpl::self()->simcall_.observer_ = nullptr; -} - -/* ************************************************************************** */ - -/** @brief returns a printable string representing a simcall */ -const char* SIMIX_simcall_name(const s_smx_simcall& simcall) -{ - if (simcall.observer_ != nullptr) { - static std::string name; - name = boost::core::demangle(typeid(*simcall.observer_).name()); - const char* cname = name.c_str(); - if (name.rfind("simgrid::kernel::", 0) == 0) - cname += 17; // strip prefix "simgrid::kernel::" - return cname; - } else { - return simcall_names[static_cast(simcall.call_)]; - } -} - -namespace simgrid { -namespace simix { - -void unblock(smx_actor_t actor) -{ - xbt_assert(s4u::Actor::is_maestro()); - actor->simcall_answer(); -} -} // namespace simix -} // namespace simgrid