X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96cedde3cdbc0b8ffc3f096a1b65d021b0226f99..4b0fa756ae6e58a74c374a519389ecb9e8b6a4d9:/src/s4u/s4u_Activity.cpp diff --git a/src/s4u/s4u_Activity.cpp b/src/s4u/s4u_Activity.cpp index 2d3f344302..18d27cf4c4 100644 --- a/src/s4u/s4u_Activity.cpp +++ b/src/s4u/s4u_Activity.cpp @@ -1,13 +1,13 @@ -/* Copyright (c) 2006-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-2020. 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 "xbt/asserts.h" #include "xbt/log.h" #include "simgrid/s4u/Activity.hpp" #include "simgrid/s4u/Engine.hpp" +#include "src/kernel/activity/ActivityImpl.hpp" XBT_LOG_EXTERNAL_CATEGORY(s4u); XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_activity, s4u, "S4U activities"); @@ -22,9 +22,55 @@ void Activity::wait_until(double time_limit) wait_for(time_limit - now); } -double Activity::get_remaining() +bool Activity::test() { - return remains_; + xbt_assert(state_ == State::INITED || state_ == State::STARTED || state_ == State::STARTING || + state_ == State::CANCELED || state_ == State::FINISHED); + + if (state_ == State::CANCELED || state_ == State::FINISHED) + return true; + + if (state_ == State::INITED || state_ == State::STARTING) + this->vetoable_start(); + + if (kernel::actor::simcall([this] { return this->get_impl()->test(); })) { + state_ = State::FINISHED; + this->release_dependencies(); + return true; + } + + return false; +} + +Activity* Activity::suspend() +{ + if (suspended_) + return this; // Already suspended + suspended_ = true; + + if (state_ == State::STARTED) + pimpl_->suspend(); + + return this; +} + +Activity* Activity::resume() +{ + if (not suspended_) + return this; // nothing to restore when it's not suspended + + if (state_ == State::STARTED) + pimpl_->resume(); + + return this; +} + +double Activity::get_remaining() const +{ + if (state_ == State::INITED || state_ == State::STARTING) + return remains_; + else + return pimpl_->get_remaining(); } Activity* Activity::set_remaining(double remains)