X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3bd99877105c107dbf2e174c36d014811a07b7e2..fc19b8f45504391aed232ee856fbfdeeae89c0e0:/src/kernel/resource/DiskImpl.hpp diff --git a/src/kernel/resource/DiskImpl.hpp b/src/kernel/resource/DiskImpl.hpp index 79abb67563..d536e0e8c2 100644 --- a/src/kernel/resource/DiskImpl.hpp +++ b/src/kernel/resource/DiskImpl.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2019-2020. 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. */ @@ -8,8 +8,8 @@ #include "simgrid/kernel/resource/Resource.hpp" #include "simgrid/s4u/Disk.hpp" #include "simgrid/s4u/Io.hpp" -#include "src/surf/PropertyHolder.hpp" #include "src/surf/surf_interface.hpp" +#include #include @@ -34,7 +34,7 @@ class DiskAction; /********* * Model * *********/ -class DiskModel : public kernel::resource::Model { +class DiskModel : public Model { public: DiskModel(); DiskModel(const DiskModel&) = delete; @@ -47,8 +47,12 @@ public: /************ * Resource * ************/ -class DiskImpl : public Resource, public surf::PropertyHolder { +class DiskImpl : public Resource, public xbt::PropertyHolder { bool currently_destroying_ = false; + s4u::Host* host_ = nullptr; + s4u::Disk piface_; + double read_bw_; + double write_bw_; public: DiskImpl(Model* model, const std::string& name, kernel::lmm::System* maxmin_system, double read_bw, double bwrite_bw); @@ -58,8 +62,10 @@ public: ~DiskImpl() override; /** @brief Public interface */ - s4u::Disk piface_; s4u::Disk* get_iface() { return &piface_; } + double get_read_bandwidth() { return read_bw_; } + double get_write_bandwidth() { return write_bw_; } + /** @brief Check if the Storage is used (if an action currently uses its resources) */ bool is_used() override; @@ -68,6 +74,9 @@ public: void turn_on() override; void turn_off() override; + s4u::Host* get_host() const { return host_; } + void set_host(s4u::Host* host) { host_ = host; } + void destroy(); // Must be called instead of the destructor virtual DiskAction* io_start(sg_size_t size, s4u::Io::OpType type) = 0; virtual DiskAction* read(sg_size_t size) = 0;