Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines.
[simgrid.git] / src / kernel / activity / IoImpl.cpp
1 /* Copyright (c) 2007-2021. 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 #include "src/kernel/activity/IoImpl.hpp"
6 #include "mc/mc.h"
7 #include "simgrid/Exception.hpp"
8 #include "simgrid/kernel/resource/Action.hpp"
9 #include "simgrid/s4u/Host.hpp"
10 #include "src/kernel/resource/DiskImpl.hpp"
11 #include "src/mc/mc_replay.hpp"
12 #include "src/simix/smx_private.hpp"
13 #include "src/surf/StorageImpl.hpp"
14 #include "src/surf/cpu_interface.hpp"
15
16 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_io, simix, "Logging specific to SIMIX (io)");
17
18 namespace simgrid {
19 namespace kernel {
20 namespace activity {
21
22 IoImpl& IoImpl::set_timeout(double timeout)
23 {
24   const s4u::Host* host = get_disk() ? get_disk()->get_host() : s4u::Host::by_name(get_storage()->get_host());
25   timeout_detector_ = host->pimpl_cpu->sleep(timeout);
26   timeout_detector_->set_activity(this);
27   return *this;
28 }
29
30 IoImpl& IoImpl::set_type(s4u::Io::OpType type)
31 {
32   type_ = type;
33   return *this;
34 }
35
36 IoImpl& IoImpl::set_size(sg_size_t size)
37 {
38   size_ = size;
39   return *this;
40 }
41
42 IoImpl& IoImpl::set_disk(resource::DiskImpl* disk)
43 {
44   disk_ = disk;
45   return *this;
46 }
47
48 IoImpl& IoImpl::set_storage(resource::StorageImpl* storage)
49 {
50   storage_ = storage;
51   return *this;
52 }
53
54 IoImpl* IoImpl::start()
55 {
56   state_ = State::RUNNING;
57   if (storage_)
58     surf_action_ = storage_->io_start(size_, type_);
59   else
60     surf_action_ = disk_->io_start(size_, type_);
61   surf_action_->set_activity(this);
62
63   XBT_DEBUG("Create IO synchro %p %s", this, get_cname());
64
65   return this;
66 }
67
68 void IoImpl::post()
69 {
70   performed_ioops_ = surf_action_->get_cost();
71   if (surf_action_->get_state() == resource::Action::State::FAILED) {
72     if ((storage_ && not storage_->is_on()) || (disk_ && not disk_->is_on()))
73       state_ = State::FAILED;
74     else
75       state_ = State::CANCELED;
76   } else if (surf_action_->get_state() == resource::Action::State::FINISHED) {
77     state_ = State::DONE;
78   } else if (timeout_detector_ && timeout_detector_->get_state() == resource::Action::State::FINISHED) {
79     state_ = State::TIMEOUT;
80   }
81
82   clean_action();
83   if (timeout_detector_) {
84     timeout_detector_->unref();
85     timeout_detector_ = nullptr;
86   }
87
88   /* Answer all simcalls associated with the synchro */
89   finish();
90 }
91
92 void IoImpl::finish()
93 {
94   while (not simcalls_.empty()) {
95     const s_smx_simcall* simcall = simcalls_.front();
96     simcalls_.pop_front();
97     switch (state_) {
98       case State::DONE:
99         /* do nothing, synchro done */
100         break;
101       case State::FAILED:
102         simcall->issuer_->context_->set_wannadie();
103         simcall->issuer_->exception_ =
104             std::make_exception_ptr(StorageFailureException(XBT_THROW_POINT, "Storage failed"));
105         break;
106       case State::CANCELED:
107         simcall->issuer_->exception_ = std::make_exception_ptr(CancelException(XBT_THROW_POINT, "I/O Canceled"));
108         break;
109       case State::TIMEOUT:
110         XBT_DEBUG("IoImpl::finish(): execution timeouted");
111         simcall->issuer_->exception_ = std::make_exception_ptr(simgrid::TimeoutException(XBT_THROW_POINT, "Timeouted"));
112         break;
113       default:
114         xbt_die("Internal error in IoImpl::finish(): unexpected synchro state %d", static_cast<int>(state_));
115     }
116
117     simcall->issuer_->waiting_synchro_ = nullptr;
118     simcall->issuer_->simcall_answer();
119   }
120 }
121
122 } // namespace activity
123 } // namespace kernel
124 } // namespace simgrid