Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use CRTP to factor refcounting across activity types
[simgrid.git] / include / simgrid / s4u / Io.hpp
1 /* Copyright (c) 2017-2019. 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 public:
24   enum class OpType { READ, WRITE };
25
26 private:
27   Storage* storage_ = nullptr;
28   Disk* disk_       = nullptr;
29   sg_size_t size_   = 0;
30   OpType type_      = OpType::READ;
31
32   explicit Io(sg_storage_t storage, sg_size_t size, OpType type);
33   explicit Io(sg_disk_t disk, sg_size_t size, OpType type);
34
35 public:
36 #ifndef DOXYGEN
37   friend Disk;    // Factory of IOs
38   friend Storage; // Factory of IOs
39 #endif
40
41   ~Io() = default;
42
43   Io* start() override;
44   Io* wait() override;
45   Io* wait_for(double timeout) override;
46   Io* cancel() override;
47   bool test() override;
48
49   double get_remaining() override;
50   sg_size_t get_performed_ioops();
51 };
52
53 } // namespace s4u
54 } // namespace simgrid
55
56 #endif /* SIMGRID_S4U_IO_HPP */