Logo AND Algorithmique Numérique Distribuée

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