Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
841f18b9329012019b8c1c5587cd30f0cecb7d7a
[simgrid.git] / include / simgrid / s4u / Io.hpp
1 /* Copyright (c) 2017-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_S4U_IO_HPP
7 #define SIMGRID_S4U_IO_HPP
8
9 #include <simgrid/forward.h>
10 #include <simgrid/s4u/Activity.hpp>
11
12 #include <string>
13
14 namespace simgrid {
15 namespace s4u {
16
17 /** I/O Activity, representing the asynchronous disk access.
18  *
19  * They are generated from Disk::io_init(), Disk::read() Disk::read_async(), Disk::write() and Disk::write_async().
20  */
21
22 class XBT_PUBLIC Io : public Activity_T<Io> {
23 #ifndef DOXYGEN
24   friend kernel::activity::IoImpl;
25   friend kernel::EngineImpl;
26 #endif
27
28 protected:
29   explicit Io(kernel::activity::IoImplPtr pimpl);
30
31   void complete(Activity::State state) override;
32
33 public:
34   enum class OpType { READ, WRITE };
35
36   static xbt::signal<void(Io const&)> on_start;
37   static xbt::signal<void(Io const&)> on_completion;
38
39   static IoPtr init();
40   Io* start() override;
41   /*! take a vector of s4u::IoPtr and return when one of them is finished.
42    * The return value is the rank of the first finished IoPtr. */
43   static ssize_t wait_any(const std::vector<IoPtr>& ios) { return wait_any_for(ios, -1); }
44   /*! Same as wait_any, but with a timeout. If the timeout occurs, parameter last is returned.*/
45   static ssize_t wait_any_for(const std::vector<IoPtr>& ios, double timeout);
46
47   double get_remaining() const override;
48   sg_size_t get_performed_ioops() const;
49   IoPtr set_disk(const_sg_disk_t disk);
50   IoPtr set_priority(double priority);
51   IoPtr set_size(sg_size_t size);
52   IoPtr set_op_type(OpType type);
53
54   IoPtr update_priority(double priority);
55
56   bool is_assigned() const override;
57 };
58
59 } // namespace s4u
60 } // namespace simgrid
61
62 #endif /* SIMGRID_S4U_IO_HPP */