Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use get_cname() instead of name_.c_str().
[simgrid.git] / src / kernel / activity / ExecImpl.cpp
1 /* Copyright (c) 2007-2019. 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/modelchecker.h"
7 #include "src/mc/mc_replay.hpp"
8
9 #include "src/kernel/activity/ExecImpl.hpp"
10 #include "src/simix/smx_host_private.hpp"
11 #include "src/surf/surf_interface.hpp"
12 #include "src/surf/cpu_interface.hpp"
13
14 #include "simgrid/s4u/Host.hpp"
15
16 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_process);
17 namespace simgrid {
18 namespace kernel {
19 namespace activity {
20
21 ExecImpl::ExecImpl(std::string name, std::string tracing_category, resource::Action* timeout_detector, s4u::Host* host)
22     : ActivityImpl(std::move(name)), host_(host), timeout_detector_(timeout_detector)
23 {
24   this->state_ = SIMIX_RUNNING;
25   this->set_category(std::move(tracing_category));
26
27   if (timeout_detector != nullptr)
28     timeout_detector_->set_data(this);
29
30   XBT_DEBUG("Create exec %p", this);
31 }
32
33 ExecImpl::~ExecImpl()
34 {
35   if (surf_action_)
36     surf_action_->unref();
37   if (timeout_detector_)
38     timeout_detector_->unref();
39   XBT_DEBUG("Destroy exec %p", this);
40 }
41
42 ExecImpl* ExecImpl::start(double flops_amount, double priority, double bound)
43 {
44   if (not MC_is_active() && not MC_record_replay_is_active()) {
45     surf_action_ = host_->pimpl_cpu->execution_start(flops_amount);
46     surf_action_->set_data(this);
47     surf_action_->set_priority(priority);
48     if (bound > 0)
49       surf_action_->set_bound(bound);
50   }
51
52   XBT_DEBUG("Create execute synchro %p: %s", this, get_cname());
53   ExecImpl::on_creation(this);
54   return this;
55 }
56
57 void ExecImpl::cancel()
58 {
59   XBT_VERB("This exec %p is canceled", this);
60   if (surf_action_ != nullptr)
61     surf_action_->cancel();
62 }
63
64 double ExecImpl::get_remaining()
65 {
66   xbt_assert(host_ != nullptr, "Calling remains() on a parallel execution is not allowed. "
67                                "We would need to return a vector instead of a scalar. "
68                                "Did you mean remainingRatio() instead?");
69   return surf_action_ ? surf_action_->get_remains() : 0;
70 }
71
72 double ExecImpl::get_remaining_ratio()
73 {
74   if (host_ ==
75       nullptr) // parallel task: their remain is already between 0 and 1 (see comment in ExecImpl::get_remaining())
76     return (surf_action_ == nullptr) ? 0 : surf_action_->get_remains();
77   else // Actually compute the ratio for sequential tasks
78     return (surf_action_ == nullptr) ? 0 : surf_action_->get_remains() / surf_action_->get_cost();
79 }
80
81 void ExecImpl::set_bound(double bound)
82 {
83   if (surf_action_)
84     surf_action_->set_bound(bound);
85 }
86 void ExecImpl::set_priority(double priority)
87 {
88   if (surf_action_)
89     surf_action_->set_priority(priority);
90 }
91
92 void ExecImpl::post()
93 {
94   if (host_ && not host_->is_on()) { /* FIXME: handle resource failure for parallel tasks too */
95     /* If the host running the synchro failed, notice it. This way, the asking
96      * process can be killed if it runs on that host itself */
97     state_ = SIMIX_FAILED;
98   } else if (surf_action_ && surf_action_->get_state() == resource::Action::State::FAILED) {
99     /* If the host running the synchro didn't fail, then the synchro was canceled */
100     state_ = SIMIX_CANCELED;
101   } else if (timeout_detector_ && timeout_detector_->get_state() == resource::Action::State::FINISHED) {
102     state_ = SIMIX_TIMEOUT;
103   } else {
104     state_ = SIMIX_DONE;
105   }
106
107   on_completion(this);
108
109   if (surf_action_) {
110     surf_action_->unref();
111     surf_action_ = nullptr;
112   }
113   if (timeout_detector_) {
114     timeout_detector_->unref();
115     timeout_detector_ = nullptr;
116   }
117
118   /* If there are simcalls associated with the synchro, then answer them */
119   if (not simcalls_.empty())
120     SIMIX_execution_finish(this);
121 }
122
123 ActivityImpl* ExecImpl::migrate(simgrid::s4u::Host* to)
124 {
125   if (not MC_is_active() && not MC_record_replay_is_active()) {
126     resource::Action* old_action = this->surf_action_;
127     resource::Action* new_action = to->pimpl_cpu->execution_start(old_action->get_cost());
128     new_action->set_remains(old_action->get_remains());
129     new_action->set_data(this);
130     new_action->set_priority(old_action->get_priority());
131
132     // FIXME: the user-defined bound seem to not be kept by LMM, that seem to overwrite it for the multi-core modeling.
133     // I hope that the user did not provide any.
134
135     old_action->set_data(nullptr);
136     old_action->cancel();
137     old_action->unref();
138     this->surf_action_ = new_action;
139   }
140
141   on_migration(this, to);
142   return this;
143 }
144
145 /*************
146  * Callbacks *
147  *************/
148 xbt::signal<void(ExecImplPtr)> ExecImpl::on_creation;
149 xbt::signal<void(ExecImplPtr)> ExecImpl::on_completion;
150 xbt::signal<void(ExecImplPtr, s4u::Host*)> ExecImpl::on_migration;
151
152 } // namespace activity
153 } // namespace kernel
154 } // namespace simgrid