X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dfd778758fc244a6bc0290ae86ddf01e9fd4d876..a48a21761805fa35836d89b496ccc7efb90f7bb4:/src/surf/disk_s19.hpp diff --git a/src/surf/disk_s19.hpp b/src/surf/disk_s19.hpp index f80c35b2d9..c4a647366d 100644 --- a/src/surf/disk_s19.hpp +++ b/src/surf/disk_s19.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2023. 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. */ @@ -10,9 +10,7 @@ #ifndef DISK_S19_HPP_ #define DISK_S19_HPP_ -namespace simgrid { -namespace kernel { -namespace resource { +namespace simgrid::kernel::resource { /*********** * Classes * @@ -28,8 +26,11 @@ class XBT_PRIVATE DiskS19Action; class DiskS19Model : public DiskModel { public: - using DiskModel::DiskModel; + explicit DiskS19Model(const std::string& name); + DiskS19Model(const DiskS19Model&) = delete; + DiskS19Model& operator=(const DiskS19Model&) = delete; DiskImpl* create_disk(const std::string& name, double read_bandwidth, double write_bandwidth) override; + void update_actions_state(double now, double delta) override; }; @@ -40,9 +41,8 @@ public: class DiskS19 : public DiskImpl { public: using DiskImpl::DiskImpl; + void apply_event(kernel::profile::Event* triggered, double value) override; DiskAction* io_start(sg_size_t size, s4u::Io::OpType type) override; - DiskAction* read(sg_size_t size) override; - DiskAction* write(sg_size_t size) override; }; /********** @@ -51,11 +51,8 @@ public: class DiskS19Action : public DiskAction { public: - DiskS19Action(Model* model, double cost, bool failed, const DiskImpl* disk, s4u::Io::OpType type); - void update_remains_lazy(double now) override; + DiskS19Action(Model* model, double cost, bool failed); }; -} // namespace resource -} // namespace kernel -} // namespace simgrid +} // namespace simgrid::kernel::resource #endif /* DISK_S19_HPP_ */