Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Factor Activity::wait() and wait_for() through CRTP.
[simgrid.git] / src / s4u / s4u_Io.cpp
1 /* Copyright (c) 2018-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
6 #include "simgrid/s4u/Actor.hpp"
7 #include "simgrid/s4u/Disk.hpp"
8 #include "simgrid/s4u/Io.hpp"
9 #include "src/kernel/activity/IoImpl.hpp"
10 #include "src/kernel/actor/ActorImpl.hpp"
11 #include "xbt/log.h"
12
13 namespace simgrid {
14 namespace s4u {
15 xbt::signal<void(Io const&)> Io::on_start;
16 xbt::signal<void(Io const&)> Io::on_completion;
17
18 Io::Io(kernel::activity::IoImplPtr pimpl)
19 {
20   pimpl_ = pimpl;
21 }
22
23 void Io::complete(Activity::State state)
24 {
25   Activity::complete(state);
26   on_completion(*this);
27 }
28
29 IoPtr Io::init()
30 {
31   auto pimpl = kernel::activity::IoImplPtr(new kernel::activity::IoImpl());
32   return IoPtr(pimpl->get_iface());
33 }
34
35 Io* Io::start()
36 {
37   kernel::actor::simcall(
38       [this] { (*boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)).set_name(get_name()).start(); });
39
40   if (suspended_)
41     pimpl_->suspend();
42
43   state_ = State::STARTED;
44   on_start(*this);
45   return this;
46 }
47
48 IoPtr Io::set_disk(const_sg_disk_t disk)
49 {
50   xbt_assert(state_ == State::INITED || state_ == State::STARTING, "Cannot set disk once the Io is started");
51
52   kernel::actor::simcall(
53       [this, disk] { boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->set_disk(disk->get_impl()); });
54
55   // Setting the disk may allow to start the activity, let's try
56   if (state_ == State::STARTING)
57     vetoable_start();
58
59  return this;
60 }
61
62 IoPtr Io::set_size(sg_size_t size)
63 {
64   xbt_assert(state_ == State::INITED || state_ == State::STARTING, "Cannot set size once the Io is started");
65   kernel::actor::simcall(
66       [this, size] { boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->set_size(size); });
67   Activity::set_remaining(size);
68   return this;
69 }
70
71 IoPtr Io::set_op_type(OpType type)
72 {
73   xbt_assert(state_ == State::INITED || state_ == State::STARTING, "Cannot set size once the Io is started");
74   kernel::actor::simcall(
75       [this, type] { boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->set_type(type); });
76   return this;
77 }
78
79 /** @brief Returns the amount of flops that remain to be done */
80 double Io::get_remaining() const
81 {
82   return kernel::actor::simcall(
83       [this]() { return boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->get_remaining(); });
84 }
85
86 sg_size_t Io::get_performed_ioops() const
87 {
88   return boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->get_performed_ioops();
89 }
90
91 bool Io::is_assigned() const
92 {
93   return boost::static_pointer_cast<kernel::activity::IoImpl>(pimpl_)->get_disk() != nullptr;
94 }
95
96 } // namespace s4u
97 } // namespace simgrid