Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use ConditionVariable::create() for sg_cond_init().
[simgrid.git] / include / simgrid / s4u / Io.hpp
index b4ef0c2..a4423ba 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2017-2019. 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. */
@@ -24,30 +24,33 @@ public:
   enum class OpType { READ, WRITE };
 
 private:
-  Storage* storage_ = nullptr;
   Disk* disk_       = nullptr;
   sg_size_t size_   = 0;
   OpType type_      = OpType::READ;
 
-  explicit Io(sg_storage_t storage, sg_size_t size, OpType type);
-  explicit Io(sg_disk_t disk, sg_size_t size, OpType type);
+  Io();
 
 public:
 #ifndef DOXYGEN
   friend Disk;    // Factory of IOs
-  friend Storage; // Factory of IOs
 #endif
 
-  ~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() override;
-  sg_size_t get_performed_ioops();
+  double get_remaining() const override;
+  sg_size_t get_performed_ioops() const;
+  IoPtr set_disk(sg_disk_t disk);
+  IoPtr set_size(sg_size_t size);
+  IoPtr set_op_type(OpType type);
+
+  bool is_assigned() const override { return disk_ != nullptr; }
 };
 
 } // namespace s4u