X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/80386efc9eca69ba59f5bf527a716c8ed4d20f9d..453ce02e0133358ef34d58e920521b6a29fe2283:/src/simix/ActorImpl.cpp diff --git a/src/simix/ActorImpl.cpp b/src/simix/ActorImpl.cpp index 07e515a0e0..b83645a3d7 100644 --- a/src/simix/ActorImpl.cpp +++ b/src/simix/ActorImpl.cpp @@ -5,8 +5,8 @@ #include "mc/mc.h" #include "smx_private.hpp" +#include "src/kernel/activity/IoImpl.hpp" #include "src/kernel/activity/SleepImpl.hpp" -#include "src/kernel/activity/SynchroIo.hpp" #include "src/kernel/activity/SynchroRaw.hpp" #include "src/mc/mc_replay.hpp" #include "src/mc/remote/Client.hpp" @@ -80,11 +80,11 @@ void SIMIX_process_cleanup(smx_actor_t process) if (comm->src_proc == process) { XBT_DEBUG("Found an unfinished send comm %p (detached = %d), state %d, src = %p, dst = %p", comm.get(), - comm->detached, (int)comm->state, comm->src_proc, comm->dst_proc); + comm->detached, (int)comm->state_, comm->src_proc, comm->dst_proc); comm->src_proc = nullptr; } else if (comm->dst_proc == process) { - XBT_DEBUG("Found an unfinished recv comm %p, state %d, src = %p, dst = %p", comm.get(), (int)comm->state, + XBT_DEBUG("Found an unfinished recv comm %p, state %d, src = %p, dst = %p", comm.get(), (int)comm->state_, comm->src_proc, comm->dst_proc); comm->dst_proc = nullptr; @@ -141,7 +141,7 @@ ActorImpl::~ActorImpl() delete this->context; } -static int dying_daemon(void* exit_status, void* data) +static void dying_daemon(int /*exit_status*/, void* data) { std::vector* vect = &simix_global->daemons; @@ -151,9 +151,8 @@ static int dying_daemon(void* exit_status, void* data) /* Don't move the whole content since we don't really care about the order */ std::swap(*it, vect->back()); vect->pop_back(); - - return 0; } + /** This process will be terminated automatically when the last non-daemon process finishes */ void ActorImpl::daemonize() { @@ -236,7 +235,7 @@ void ActorImpl::resume() smx_activity_t ActorImpl::sleep(double duration) { - if (host->isOff()) + if (host->is_off()) THROWF(host_error, 0, "Host %s failed, you cannot sleep there.", host->get_cname()); simgrid::kernel::activity::SleepImpl* synchro = new simgrid::kernel::activity::SleepImpl(); @@ -294,7 +293,7 @@ smx_actor_t SIMIX_process_create(const char* name, std::function code, v XBT_DEBUG("Start process %s on host '%s'", name, host->get_cname()); - if (host->isOff()) { + if (host->is_off()) { XBT_WARN("Cannot launch process '%s' on failed host '%s'", name, host->get_cname()); return nullptr; } @@ -321,7 +320,7 @@ smx_actor_t SIMIX_process_create(const char* name, std::function code, v /* Add properties */ if (properties != nullptr) for (auto const& kv : *properties) - process->setProperty(kv.first, kv.second); + process->set_property(kv.first, kv.second); /* Make sure that the process is initialized for simix, in case we are called from the Host::onCreation signal */ if (host->extension() == nullptr) @@ -354,7 +353,7 @@ smx_actor_t SIMIX_process_attach(const char* name, void* data, const char* hostn sg_host_t host = sg_host_by_name(hostname); XBT_DEBUG("Attach process %s on host '%s'", name, hostname); - if (host->isOff()) { + if (host->is_off()) { XBT_WARN("Cannot launch process '%s' on failed host '%s'", name, hostname); return nullptr; } @@ -382,7 +381,7 @@ smx_actor_t SIMIX_process_attach(const char* name, void* data, const char* hostn /* Add properties */ if (properties != nullptr) for (auto const& kv : *properties) - process->setProperty(kv.first, kv.second); + process->set_property(kv.first, kv.second); /* Add the process to it's host process list */ host->extension()->process_list.push_back(*process); @@ -475,18 +474,18 @@ void SIMIX_process_kill(smx_actor_t process, smx_actor_t issuer) { boost::dynamic_pointer_cast(process->waiting_synchro); if (exec != nullptr) { - if (exec->surfAction_) { - exec->surfAction_->cancel(); - exec->surfAction_->unref(); - exec->surfAction_ = nullptr; + if (exec->surf_action_) { + exec->surf_action_->cancel(); + exec->surf_action_->unref(); + exec->surf_action_ = nullptr; } } else if (comm != nullptr) { process->comms.remove(process->waiting_synchro); comm->cancel(); // Remove first occurrence of &process->simcall: - auto i = boost::range::find(process->waiting_synchro->simcalls, &process->simcall); - if (i != process->waiting_synchro->simcalls.end()) - process->waiting_synchro->simcalls.remove(&process->simcall); + auto i = boost::range::find(process->waiting_synchro->simcalls_, &process->simcall); + if (i != process->waiting_synchro->simcalls_.end()) + process->waiting_synchro->simcalls_.remove(&process->simcall); } else if (sleep != nullptr) { SIMIX_process_sleep_destroy(process->waiting_synchro); @@ -527,8 +526,8 @@ void SIMIX_process_throw(smx_actor_t process, xbt_errcat_t cat, int value, const simgrid::kernel::activity::ExecImplPtr exec = boost::dynamic_pointer_cast(process->waiting_synchro); - if (exec != nullptr && exec->surfAction_) - exec->surfAction_->cancel(); + if (exec != nullptr && exec->surf_action_) + exec->surf_action_->cancel(); simgrid::kernel::activity::CommImplPtr comm = boost::dynamic_pointer_cast(process->waiting_synchro); @@ -591,7 +590,7 @@ void simcall_HANDLER_process_suspend(smx_simcall_t simcall, smx_actor_t process) if (process != simcall->issuer) { SIMIX_simcall_answer(simcall); } else { - sync_suspend->simcalls.push_back(simcall); + sync_suspend->simcalls_.push_back(simcall); process->waiting_synchro = sync_suspend; process->waiting_synchro->suspend(); } @@ -643,7 +642,7 @@ void simcall_HANDLER_process_join(smx_simcall_t simcall, smx_actor_t process, do return; } smx_activity_t sync = SIMIX_process_join(simcall->issuer, process, timeout); - sync->simcalls.push_back(simcall); + sync->simcalls_.push_back(simcall); simcall->issuer->waiting_synchro = sync; } @@ -652,12 +651,11 @@ smx_activity_t SIMIX_process_join(smx_actor_t issuer, smx_actor_t process, doubl smx_activity_t res = issuer->sleep(timeout); intrusive_ptr_add_ref(res.get()); SIMIX_process_on_exit(process, - [](void*, void* arg) { + [](int, void* arg) { auto sleep = static_cast(arg); if (sleep->surf_sleep) - sleep->surf_sleep->finish(simgrid::kernel::resource::Action::State::done); + sleep->surf_sleep->finish(simgrid::kernel::resource::Action::State::FINISHED); intrusive_ptr_release(sleep); - return 0; }, res.get()); return res; @@ -672,7 +670,7 @@ void simcall_HANDLER_process_sleep(smx_simcall_t simcall, double duration) return; } smx_activity_t sync = simcall->issuer->sleep(duration); - sync->simcalls.push_back(simcall); + sync->simcalls_.push_back(simcall); simcall->issuer->waiting_synchro = sync; } @@ -711,9 +709,9 @@ void SIMIX_process_yield(smx_actor_t self) /* execute the on_exit functions */ SIMIX_process_on_exit_runall(self); /* Add the process to the list of process to restart, only if the host is down */ - if (self->auto_restart && self->host->isOff()) { + if (self->auto_restart && self->host->is_off()) { SIMIX_host_add_auto_restart_process(self->host, self->get_cname(), self->code, self->getUserData(), - SIMIX_timer_get_date(self->kill_timer), self->getProperties(), + SIMIX_timer_get_date(self->kill_timer), self->get_properties(), self->auto_restart); } XBT_DEBUG("Process %s@%s is dead", self->get_cname(), self->host->get_cname()); @@ -758,16 +756,20 @@ void SIMIX_process_on_exit_runall(smx_actor_t process) { while (not process->on_exit.empty()) { s_smx_process_exit_fun_t exit_fun = process->on_exit.back(); process->on_exit.pop_back(); - (exit_fun.fun)((void*)exit_status, exit_fun.arg); + (exit_fun.fun)(exit_status, exit_fun.arg); } } -void SIMIX_process_on_exit(smx_actor_t process, int_f_pvoid_pvoid_t fun, void *data) { - xbt_assert(process, "current process not found: are you in maestro context ?"); +void SIMIX_process_on_exit(smx_actor_t process, int_f_pvoid_pvoid_t fun, void* data) +{ + SIMIX_process_on_exit(process, [fun](int a, void* b) { fun((void*)(intptr_t)a, b); }, data); +} - s_smx_process_exit_fun_t exit_fun = {fun, data}; +void SIMIX_process_on_exit(smx_actor_t process, std::function fun, void* data) +{ + xbt_assert(process, "current process not found: are you in maestro context ?"); - process->on_exit.push_back(exit_fun); + process->on_exit.emplace_back(s_smx_process_exit_fun_t{fun, data}); } /** @@ -814,7 +816,7 @@ smx_actor_t simcall_process_create(const char* name, std::function code, if (name == nullptr) name = ""; smx_actor_t self = SIMIX_process_self(); - return simgrid::simix::kernelImmediate([name, code, data, host, properties, self] { + return simgrid::simix::simcall([name, code, data, host, properties, self] { return SIMIX_process_create(name, std::move(code), data, host, properties, self); }); }