Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use const& for std::string parameter (sonar, again).
[simgrid.git] / src / kernel / resource / DiskImpl.hpp
1 /* Copyright (c) 2019-2021. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/kernel/resource/Action.hpp"
7 #include "simgrid/kernel/resource/Model.hpp"
8 #include "simgrid/kernel/resource/Resource.hpp"
9 #include "simgrid/s4u/Disk.hpp"
10 #include "simgrid/s4u/Io.hpp"
11 #include "src/surf/surf_interface.hpp"
12 #include <xbt/PropertyHolder.hpp>
13
14 #include <map>
15
16 #ifndef DISK_INTERFACE_HPP_
17 #define DISK_INTERFACE_HPP_
18
19 /*********
20  * Model *
21  *********/
22
23 namespace simgrid {
24 namespace kernel {
25 namespace resource {
26 /***********
27  * Classes *
28  ***********/
29
30 class DiskAction;
31
32 /*********
33  * Model *
34  *********/
35 class DiskModel : public Model {
36 public:
37   explicit DiskModel(const std::string& name);
38   DiskModel(const DiskModel&) = delete;
39   DiskModel& operator=(const DiskModel&) = delete;
40
41   virtual DiskImpl* create_disk(const std::string& name, double read_bandwidth, double write_bandwidth) = 0;
42 };
43
44 /************
45  * Resource *
46  ************/
47 class DiskImpl : public Resource_T<DiskImpl>, public xbt::PropertyHolder {
48   s4u::Host* host_           = nullptr;
49   s4u::Disk piface_;
50   double read_bw_ = -1.0;
51   double write_bw_ = 1.0;
52   lmm::Constraint* constraint_write_ = nullptr; /* Constraint for maximum write bandwidth*/
53   lmm::Constraint* constraint_read_ = nullptr;  /* Constraint for maximum read bandwidth*/
54
55 protected:
56   ~DiskImpl() override = default; // Disallow direct deletion. Call destroy() instead.
57
58 public:
59   DiskImpl(const std::string& name, double read_bandwidth, double write_bandwidth)
60       : Resource_T(name), piface_(name, this), read_bw_(read_bandwidth), write_bw_(write_bandwidth)
61   {
62   }
63   DiskImpl(const DiskImpl&) = delete;
64   DiskImpl& operator=(const DiskImpl&) = delete;
65
66   /** @brief Public interface */
67   const s4u::Disk* get_iface() const { return &piface_; }
68   s4u::Disk* get_iface() { return &piface_; }
69   DiskImpl* set_host(s4u::Host* host);
70   s4u::Host* get_host() const { return host_; }
71
72   DiskImpl* set_read_bandwidth(double read_bw);
73   double get_read_bandwidth() const { return read_bw_; }
74
75   DiskImpl* set_write_bandwidth(double write_bw);
76   double get_write_bandwidth() const { return write_bw_; }
77
78   DiskImpl* set_read_constraint(lmm::Constraint* constraint_read);
79   lmm::Constraint* get_read_constraint() const { return constraint_read_; }
80
81   DiskImpl* set_write_constraint(lmm::Constraint* constraint_write);
82   lmm::Constraint* get_write_constraint() const { return constraint_write_; }
83
84   /** @brief Check if the Disk is used (if an action currently uses its resources) */
85   bool is_used() const override;
86   void apply_event(profile::Event* event, double value) override;
87   void turn_on() override;
88   void turn_off() override;
89
90   void seal() override;
91   void destroy(); // Must be called instead of the destructor
92   virtual DiskAction* io_start(sg_size_t size, s4u::Io::OpType type) = 0;
93   virtual DiskAction* read(sg_size_t size)                           = 0;
94   virtual DiskAction* write(sg_size_t size)                          = 0;
95 };
96
97 /**********
98  * Action *
99  **********/
100
101 class DiskAction : public Action {
102 public:
103   static xbt::signal<void(DiskAction const&, Action::State, Action::State)> on_state_change;
104
105   DiskAction(Model* model, double cost, bool failed, DiskImpl* disk, s4u::Io::OpType type)
106       : Action(model, cost, failed), type_(type), disk_(disk){};
107
108   /**
109    * @brief diskAction constructor
110    *
111    * @param model The DiskModel associated to this DiskAction
112    * @param cost The cost of this DiskAction in bytes
113    * @param failed [description]
114    * @param var The lmm variable associated to this DiskAction if it is part of a LMM component
115    * @param disk The Disk associated to this DiskAction
116    * @param type [description]
117    */
118   DiskAction(kernel::resource::Model* model, double cost, bool failed, kernel::lmm::Variable* var, DiskImpl* disk,
119              s4u::Io::OpType type)
120       : Action(model, cost, failed, var), type_(type), disk_(disk){};
121
122   void set_state(simgrid::kernel::resource::Action::State state) override;
123
124   s4u::Io::OpType type_;
125   DiskImpl* disk_;
126 };
127
128 } // namespace resource
129 } // namespace kernel
130 } // namespace simgrid
131 #endif /* DISK_INTERFACE_HPP_ */