Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
(crudly) deal with I/O launched by maestro
[simgrid.git] / src / kernel / activity / IoImpl.hpp
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
6 #ifndef SIMGRID_KERNEL_ACTIVITY_IO_HPP
7 #define SIMGRID_KERNEL_ACTIVITY_IO_HPP
8
9 #include "src/kernel/activity/ActivityImpl.hpp"
10 #include <simgrid/s4u/Io.hpp>
11
12 namespace simgrid {
13 namespace kernel {
14 namespace activity {
15
16 class XBT_PUBLIC IoImpl : public ActivityImpl_T<IoImpl> {
17   actor::ActorImpl* actor_            = nullptr;
18   resource::DiskImpl* disk_           = nullptr;
19   double sharing_penalty_             = 1.0;
20   sg_size_t size_                     = 0;
21   s4u::Io::OpType type_               = s4u::Io::OpType::READ;
22   sg_size_t performed_ioops_          = 0;
23   resource::Action* timeout_detector_ = nullptr;
24   s4u::Io* piface_;
25 public:
26   IoImpl();
27   s4u::Io* get_iface() { return piface_; }
28   actor::ActorImpl* get_actor() { return actor_; }
29
30   IoImpl& set_sharing_penalty(double sharing_penalty);
31   IoImpl& set_timeout(double timeout) override;
32   IoImpl& set_size(sg_size_t size);
33   IoImpl& set_type(s4u::Io::OpType type);
34   IoImpl& set_disk(resource::DiskImpl* disk);
35
36   IoImpl& update_sharing_penalty(double sharing_penalty);
37
38   sg_size_t get_performed_ioops() const { return performed_ioops_; }
39   resource::DiskImpl* get_disk() const { return disk_; }
40
41   IoImpl* start();
42   void post() override;
43   void set_exception(actor::ActorImpl* issuer) override;
44   void finish() override;
45   static void wait_any_for(actor::ActorImpl* issuer, const std::vector<IoImpl*>& ios, double timeout);
46 };
47 } // namespace activity
48 } // namespace kernel
49 } // namespace simgrid
50
51 #endif