Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Match Io and Exec creation
[simgrid.git] / include / simgrid / s4u / Io.hpp
index 2ad47c0..6137056 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2017-2020. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2017-2021. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -20,34 +20,30 @@ namespace s4u {
  */
 
 class XBT_PUBLIC Io : public Activity_T<Io> {
-public:
-  enum class OpType { READ, WRITE };
-
-private:
-  Storage* storage_ = nullptr;
-  Disk* disk_       = nullptr;
-  sg_size_t size_   = 0;
-  OpType type_      = OpType::READ;
+  friend kernel::activity::IoImpl;
 
-  explicit Io(sg_storage_t storage, sg_size_t size, OpType type);
-  explicit Io(sg_disk_t disk, sg_size_t size, OpType type);
+protected:
+  explicit Io(kernel::activity::IoImplPtr pimpl);
 
 public:
-#ifndef DOXYGEN
-  friend Disk;    // Factory of IOs
-  friend Storage; // Factory of IOs
-#endif
+  enum class OpType { READ, WRITE };
 
-  ~Io() = default;
+  static xbt::signal<void(Io const&)> on_start;
+  static xbt::signal<void(Io const&)> on_completion;
 
+  static IoPtr init();
   Io* start() override;
   Io* wait() override;
   Io* wait_for(double timeout) override;
   Io* cancel() override;
-  bool test() override;
 
   double get_remaining() const override;
   sg_size_t get_performed_ioops() const;
+  IoPtr set_disk(const_sg_disk_t disk);
+  IoPtr set_size(sg_size_t size);
+  IoPtr set_op_type(OpType type);
+
+  bool is_assigned() const override;
 };
 
 } // namespace s4u