X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/27f991037b8d3e6181741b3ca41df44b64b66d4d..7cf87212645141665f1b2d80208bcadf77bdc344:/src/s4u/s4u_Exec.cpp diff --git a/src/s4u/s4u_Exec.cpp b/src/s4u/s4u_Exec.cpp index 94e63f78ce..884433ac64 100644 --- a/src/s4u/s4u_Exec.cpp +++ b/src/s4u/s4u_Exec.cpp @@ -2,33 +2,45 @@ /* 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 "xbt/log.h" #include "simgrid/s4u/Actor.hpp" #include "simgrid/s4u/Exec.hpp" #include "src/kernel/activity/ExecImpl.hpp" +#include "xbt/log.h" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_exec, s4u_activity, "S4U asynchronous executions"); namespace simgrid { namespace s4u { +simgrid::xbt::signal s4u::Exec::on_start; +simgrid::xbt::signal s4u::Exec::on_completion; -Activity* Exec::start() +Exec* Exec::start() { - pimpl_ = simcall_execution_start(nullptr, flops_amount_, 1. / priority_, 0., host_); - boost::static_pointer_cast(pimpl_)->set_bound(bound_); + pimpl_ = simcall_execution_start(name_, tracing_category_, flops_amount_, 1. / priority_, bound_, host_); state_ = State::STARTED; + on_start(Actor::self()); + return this; +} + +Exec* Exec::cancel() +{ + simgrid::simix::simcall([this] { dynamic_cast(pimpl_.get())->cancel(); }); + state_ = State::CANCELED; return this; } -Activity* Exec::wait() +Exec* Exec::wait() { + if (state_ == State::INITED) + start(); simcall_execution_wait(pimpl_); state_ = State::FINISHED; + on_completion(Actor::self()); return this; } -Activity* Exec::wait(double timeout) +Exec* Exec::wait_for(double timeout) { THROW_UNIMPLEMENTED; return this; @@ -90,6 +102,20 @@ ExecPtr Exec::set_host(Host* host) return this; } +ExecPtr Exec::set_name(std::string name) +{ + xbt_assert(state_ == State::INITED, "Cannot change the name of an exec after its start"); + name_ = name; + return this; +} + +ExecPtr Exec::set_tracing_category(std::string category) +{ + xbt_assert(state_ == State::INITED, "Cannot change the tracing category of an exec after its start"); + tracing_category_ = category; + return this; +} + /** @brief Retrieve the host on which this activity takes place. */ Host* Exec::get_host() {