Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of framagit.org:simgrid/simgrid
[simgrid.git] / src / kernel / activity / IoImpl.cpp
1 /* Copyright (c) 2007-2022. 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/Exception.hpp>
7 #include <simgrid/kernel/routing/NetPoint.hpp>
8 #include <simgrid/s4u/Engine.hpp>
9 #include <simgrid/s4u/Host.hpp>
10
11 #include "mc/mc.h"
12 #include "src/kernel/activity/IoImpl.hpp"
13 #include "src/kernel/actor/ActorImpl.hpp"
14 #include "src/kernel/actor/SimcallObserver.hpp"
15 #include "src/kernel/resource/CpuImpl.hpp"
16 #include "src/kernel/resource/DiskImpl.hpp"
17 #include "src/mc/mc_replay.hpp"
18 #include "src/surf/HostImpl.hpp"
19
20 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ker_io, kernel, "Kernel io-related synchronization");
21
22 namespace simgrid::kernel::activity {
23
24 IoImpl::IoImpl()
25 {
26   piface_ = new s4u::Io(this);
27   actor::ActorImpl* self = actor::ActorImpl::self();
28   if (self) {
29     set_actor(self);
30     self->activities_.emplace_back(this);
31   }
32 }
33
34 IoImpl& IoImpl::set_sharing_penalty(double sharing_penalty)
35 {
36   sharing_penalty_ = sharing_penalty;
37   return *this;
38 }
39
40 IoImpl& IoImpl::update_sharing_penalty(double sharing_penalty)
41 {
42   sharing_penalty_ = sharing_penalty;
43   surf_action_->set_sharing_penalty(sharing_penalty);
44   return *this;
45 }
46
47 IoImpl& IoImpl::set_timeout(double timeout)
48 {
49   const s4u::Host* host = get_disk()->get_host();
50   timeout_detector_     = host->get_cpu()->sleep(timeout);
51   timeout_detector_->set_activity(this);
52   return *this;
53 }
54
55 IoImpl& IoImpl::set_type(s4u::Io::OpType type)
56 {
57   type_ = type;
58   return *this;
59 }
60
61 IoImpl& IoImpl::set_size(sg_size_t size)
62 {
63   size_ = size;
64   return *this;
65 }
66
67 IoImpl& IoImpl::set_disk(resource::DiskImpl* disk)
68 {
69   disk_ = disk;
70   return *this;
71 }
72
73 IoImpl& IoImpl::set_host(s4u::Host* host)
74 {
75   host_ = host;
76   return *this;
77 }
78
79 IoImpl& IoImpl::set_dst_disk(resource::DiskImpl* disk)
80 {
81   dst_disk_ = disk;
82   return *this;
83 }
84
85 IoImpl& IoImpl::set_dst_host(s4u::Host* host)
86 {
87   dst_host_ = host;
88   return *this;
89 }
90
91 IoImpl* IoImpl::start()
92 {
93   set_state(State::RUNNING);
94   if (dst_host_ == nullptr) {
95     XBT_DEBUG("Starting regular I/O");
96     surf_action_ = disk_->io_start(size_, type_);
97     surf_action_->set_sharing_penalty(sharing_penalty_);
98   } else {
99     XBT_DEBUG("Starting streaming I/O");
100     auto host_model = dst_host_->get_netpoint()->get_englobing_zone()->get_host_model();
101     surf_action_    = host_model->io_stream(host_, disk_, dst_host_, dst_disk_, size_);
102   }
103
104   surf_action_->set_activity(this);
105   set_start_time(surf_action_->get_start_time());
106 #include "src/surf/HostImpl.hpp"
107
108   XBT_DEBUG("Create IO synchro %p %s", this, get_cname());
109
110   return this;
111 }
112
113 void IoImpl::post()
114 {
115   performed_ioops_ = surf_action_->get_cost();
116   if (surf_action_->get_state() == resource::Action::State::FAILED) {
117     if (disk_ && not disk_->is_on())
118       set_state(State::FAILED);
119     else
120       set_state(State::CANCELED);
121   } else if (timeout_detector_ && timeout_detector_->get_state() == resource::Action::State::FINISHED) {
122     if (surf_action_->get_remains() > 0.0) {
123       surf_action_->set_state(resource::Action::State::FAILED);
124       set_state(State::TIMEOUT);
125     } else {
126       set_state(State::DONE);
127     }
128   } else {
129     set_state(State::DONE);
130   }
131
132   clean_action();
133   if (timeout_detector_) {
134     timeout_detector_->unref();
135     timeout_detector_ = nullptr;
136   }
137
138   /* Answer all simcalls associated with the synchro */
139   finish();
140 }
141 void IoImpl::set_exception(actor::ActorImpl* issuer)
142 {
143   switch (get_state()) {
144     case State::FAILED:
145       issuer->set_wannadie();
146       static_cast<s4u::Io*>(get_iface())->complete(s4u::Activity::State::FAILED);
147       issuer->exception_ = std::make_exception_ptr(StorageFailureException(XBT_THROW_POINT, "Storage failed"));
148       break;
149     case State::CANCELED:
150       issuer->exception_ = std::make_exception_ptr(CancelException(XBT_THROW_POINT, "I/O Canceled"));
151       break;
152     case State::TIMEOUT:
153       issuer->exception_ = std::make_exception_ptr(TimeoutException(XBT_THROW_POINT, "Timeouted"));
154       break;
155     default:
156       xbt_assert(get_state() == State::DONE, "Internal error in IoImpl::finish(): unexpected synchro state %s",
157                  get_state_str());
158   }
159 }
160
161 void IoImpl::finish()
162 {
163   XBT_DEBUG("IoImpl::finish() in state %s", get_state_str());
164   while (not simcalls_.empty()) {
165     actor::Simcall* simcall = simcalls_.front();
166     simcalls_.pop_front();
167
168     /* If a waitany simcall is waiting for this synchro to finish, then remove it from the other synchros in the waitany
169      * list. Afterwards, get the position of the actual synchro in the waitany list and return it as the result of the
170      * simcall */
171
172     if (simcall->call_ == actor::Simcall::Type::NONE) // FIXME: maybe a better way to handle this case
173       continue;                                       // if process handling comm is killed
174
175     handle_activity_waitany(simcall);
176
177     set_exception(simcall->issuer_);
178
179     simcall->issuer_->waiting_synchro_ = nullptr;
180     simcall->issuer_->simcall_answer();
181   }
182 }
183
184 } // namespace simgrid::kernel::activity