Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move signals "on_(this_)start" and methods "fire_on_*" into Activity_T.
[simgrid.git] / src / s4u / s4u_Io.cpp
1 /* Copyright (c) 2018-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/s4u/Disk.hpp>
7 #include <simgrid/s4u/Io.hpp>
8 #include <xbt/log.h>
9
10 #include "src/kernel/activity/IoImpl.hpp"
11 #include "src/kernel/actor/ActorImpl.hpp"
12 #include "src/kernel/actor/SimcallObserver.hpp"
13
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_io, s4u_activity, "S4U asynchronous I/Os");
15
16 namespace simgrid::s4u {
17
18 Io::Io(kernel::activity::IoImplPtr pimpl)
19 {
20   pimpl_ = pimpl;
21 }
22
23 IoPtr Io::init()
24 {
25   auto pimpl = kernel::activity::IoImplPtr(new kernel::activity::IoImpl());
26   return IoPtr(static_cast<Io*>(pimpl->get_iface()));
27 }
28
29 IoPtr Io::streamto_init(Host* from, const Disk* from_disk, Host* to, const Disk* to_disk)
30 {
31   auto res = Io::init()->set_source(from, from_disk)->set_destination(to, to_disk);
32   res->set_state(State::STARTING);
33   return res;
34 }
35
36 IoPtr Io::streamto_async(Host* from, const Disk* from_disk, Host* to, const Disk* to_disk,
37                          uint64_t simulated_size_in_bytes)
38 {
39   return Io::init()->set_size(simulated_size_in_bytes)->set_source(from, from_disk)->set_destination(to, to_disk);
40 }
41
42 void Io::streamto(Host* from, const Disk* from_disk, Host* to, const Disk* to_disk, uint64_t simulated_size_in_bytes)
43 {
44   streamto_async(from, from_disk, to, to_disk, simulated_size_in_bytes)->wait();
45 }
46
47 IoPtr Io::set_source(Host* from, const Disk* from_disk)
48 {
49   xbt_assert(state_ == State::INITED || state_ == State::STARTING,
50              "Cannot change the source of an IO stream once it's started (state: %s)", to_c_str(state_));
51   kernel::actor::simcall_object_access(pimpl_.get(), [this, from, from_disk] {
52     boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->set_host(from);
53     if (from_disk != nullptr)
54       boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->set_disk(from_disk->get_impl());
55   });
56   // Setting 'source' may allow to start the activity, let's try
57   if (state_ == State::STARTING && remains_ <= 0)
58     XBT_DEBUG("This IO has a size of 0 byte. It cannot start yet");
59   else
60     start();
61
62   return this;
63 }
64
65 IoPtr Io::set_destination(Host* to, const Disk* to_disk)
66 {
67   xbt_assert(state_ == State::INITED || state_ == State::STARTING,
68              "Cannot change the source of an IO stream once it's started (state: %s)", to_c_str(state_));
69   kernel::actor::simcall_object_access(pimpl_.get(), [this, to, to_disk] {
70     boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->set_dst_host(to);
71     if (to_disk != nullptr)
72       boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->set_dst_disk(to_disk->get_impl());
73   });
74   // Setting 'destination' may allow to start the activity, let's try
75   if (state_ == State::STARTING && remains_ <= 0)
76     XBT_DEBUG("This IO has a size of 0 byte. It cannot start yet");
77   else
78     start();
79
80   return this;
81 }
82
83 Io* Io::do_start()
84 {
85   kernel::actor::simcall_answered(
86       [this] { (*boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)).set_name(get_name()).start(); });
87
88   if (suspended_)
89     pimpl_->suspend();
90
91   state_ = State::STARTED;
92   fire_on_start();
93   fire_on_this_start();
94   return this;
95 }
96
97 ssize_t Io::wait_any_for(const std::vector<IoPtr>& ios, double timeout)
98 {
99   std::vector<ActivityPtr> activities;
100   for (const auto& io : ios)
101     activities.push_back(boost::dynamic_pointer_cast<Activity>(io));
102   return Activity::wait_any_for(activities, timeout);
103 }
104
105 IoPtr Io::set_disk(const_sg_disk_t disk)
106 {
107   xbt_assert(state_ == State::INITED || state_ == State::STARTING, "Cannot set disk once the Io is started");
108
109   kernel::actor::simcall_answered(
110       [this, disk] { boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->set_disk(disk->get_impl()); });
111
112   // Setting the disk may allow to start the activity, let's try
113   if (state_ == State::STARTING)
114     start();
115
116  return this;
117 }
118
119 IoPtr Io::set_priority(double priority)
120 {
121   xbt_assert(state_ == State::INITED || state_ == State::STARTING,
122              "Cannot change the priority of an io after its start");
123   kernel::actor::simcall_object_access(pimpl_.get(), [this, priority] {
124     boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->set_sharing_penalty(1. / priority);
125   });
126   return this;
127 }
128
129 IoPtr Io::set_size(sg_size_t size)
130 {
131   xbt_assert(state_ == State::INITED || state_ == State::STARTING, "Cannot set size once the Io is started");
132   kernel::actor::simcall_object_access(
133       pimpl_.get(), [this, size] { boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->set_size(size); });
134   set_remaining(size);
135   return this;
136 }
137
138 IoPtr Io::set_op_type(OpType type)
139 {
140   xbt_assert(state_ == State::INITED || state_ == State::STARTING, "Cannot set size once the Io is started");
141   kernel::actor::simcall_object_access(
142       pimpl_.get(), [this, type] { boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->set_type(type); });
143   return this;
144 }
145
146 IoPtr Io::update_priority(double priority)
147 {
148   kernel::actor::simcall_answered([this, priority] {
149     boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->update_sharing_penalty(1. / priority);
150   });
151   return this;
152 }
153
154 /** @brief Returns the amount of flops that remain to be done */
155 double Io::get_remaining() const
156 {
157   return kernel::actor::simcall_object_access(
158       pimpl_.get(), [this]() { return boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->get_remaining(); });
159 }
160
161 sg_size_t Io::get_performed_ioops() const
162 {
163   return boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->get_performed_ioops();
164 }
165
166 bool Io::is_assigned() const
167 {
168   if (boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->get_host() == nullptr) {
169     return boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->get_disk() != nullptr;
170   } else {
171     return boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->get_dst_host() != nullptr;
172   }
173 }
174
175 } // namespace simgrid::s4u