Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
eradicate all remaining manual refcounting on ActivityImpl
[simgrid.git] / src / kernel / activity / ExecImpl.cpp
1 /* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/s4u/Host.hpp"
7
8 #include "src/kernel/activity/ExecImpl.hpp"
9 #include "src/simix/smx_host_private.h"
10 #include "src/surf/surf_interface.hpp"
11
12 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_process);
13
14 simgrid::kernel::activity::ExecImpl::ExecImpl(const char* name, sg_host_t host) : host_(host)
15 {
16   if (name)
17     this->name = name;
18   this->state  = SIMIX_RUNNING;
19   XBT_DEBUG("Create exec %p", this);
20 }
21
22 simgrid::kernel::activity::ExecImpl::~ExecImpl()
23 {
24   if (surf_exec)
25     surf_exec->unref();
26   if (timeoutDetector)
27     timeoutDetector->unref();
28   XBT_DEBUG("Destroy exec %p", this);
29 }
30 void simgrid::kernel::activity::ExecImpl::suspend()
31 {
32   XBT_VERB("This exec is suspended (remain: %f)", surf_exec->getRemains());
33   if (surf_exec)
34     surf_exec->suspend();
35 }
36
37 void simgrid::kernel::activity::ExecImpl::resume()
38 {
39   XBT_VERB("This exec is resumed (remain: %f)", surf_exec->getRemains());
40   if (surf_exec)
41     surf_exec->resume();
42 }
43
44 double simgrid::kernel::activity::ExecImpl::remains()
45 {
46   if (state == SIMIX_RUNNING)
47     return surf_exec->getRemains();
48
49   return 0;
50 }
51
52 void simgrid::kernel::activity::ExecImpl::post()
53 {
54   if (host_ && host_->isOff()) { /* FIXME: handle resource failure for parallel tasks too */
55                                  /* If the host running the synchro failed, notice it. This way, the asking
56                                   * process can be killed if it runs on that host itself */
57     state = SIMIX_FAILED;
58   } else if (surf_exec->getState() == simgrid::surf::Action::State::failed) {
59     /* If the host running the synchro didn't fail, then the synchro was canceled */
60     state = SIMIX_CANCELED;
61   } else if (timeoutDetector && timeoutDetector->getState() == simgrid::surf::Action::State::done) {
62     state = SIMIX_TIMEOUT;
63   } else {
64     state = SIMIX_DONE;
65   }
66
67   if (surf_exec) {
68     surf_exec->unref();
69     surf_exec = nullptr;
70   }
71   if (timeoutDetector) {
72     timeoutDetector->unref();
73     timeoutDetector = nullptr;
74   }
75
76   /* If there are simcalls associated with the synchro, then answer them */
77   if (not simcalls.empty())
78     SIMIX_execution_finish(this);
79 }