X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/28eb3a76b321b4aa13364641811925a2f8af769a..eed44dba29b96f46ba9a25680281ef824101ba37:/include/simgrid/s4u/Io.hpp diff --git a/include/simgrid/s4u/Io.hpp b/include/simgrid/s4u/Io.hpp index 2ad47c0493..613705687a 100644 --- a/include/simgrid/s4u/Io.hpp +++ b/include/simgrid/s4u/Io.hpp @@ -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 { -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 on_start; + static xbt::signal 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