Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove useless declaration of default destructor.
[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 public:
24   enum class OpType { READ, WRITE };
25
26 private:
27   Disk* disk_       = nullptr;
28   sg_size_t size_   = 0;
29   OpType type_      = OpType::READ;
30
31   Io();
32
33 public:
34 #ifndef DOXYGEN
35   friend Disk;    // Factory of IOs
36 #endif
37
38   static xbt::signal<void(Io const&)> on_start;
39   static xbt::signal<void(Io const&)> on_completion;
40
41   static IoPtr init();
42   Io* start() override;
43   Io* wait() override;
44   Io* wait_for(double timeout) override;
45   Io* cancel() override;
46
47   double get_remaining() const override;
48   sg_size_t get_performed_ioops() const;
49   IoPtr set_disk(sg_disk_t disk);
50   IoPtr set_size(sg_size_t size);
51   IoPtr set_op_type(OpType type);
52
53   bool is_assigned() const override { return disk_ != nullptr; }
54 };
55
56 } // namespace s4u
57 } // namespace simgrid
58
59 #endif /* SIMGRID_S4U_IO_HPP */