Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into disk
[simgrid.git] / src / kernel / resource / DiskImpl.hpp
1 /* Copyright (c) 2019. 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/PropertyHolder.hpp"
12 #include "src/surf/surf_interface.hpp"
13
14 #include <map>
15
16 #ifndef DISK_INTERFACE_HPP_
17 #define DISK_INTERFACE_HPP_
18
19 /*********
20  * Model *
21  *********/
22
23 XBT_PUBLIC_DATA simgrid::kernel::resource::DiskModel* surf_disk_model;
24
25 namespace simgrid {
26 namespace kernel {
27 namespace resource {
28 /***********
29  * Classes *
30  ***********/
31
32 class DiskAction;
33
34 /*********
35  * Model *
36  *********/
37 class DiskModel : public kernel::resource::Model {
38 public:
39   DiskModel();
40   DiskModel(const DiskModel&) = delete;
41   DiskModel& operator=(const DiskModel&) = delete;
42   ~DiskModel();
43
44   virtual DiskImpl* createDisk(const std::string& id, double read_bw, double write_bw) = 0;
45 };
46
47 /************
48  * Resource *
49  ************/
50 class DiskImpl : public Resource, public surf::PropertyHolder {
51   bool currently_destroying_ = false;
52
53 public:
54   DiskImpl(Model* model, const std::string& name, kernel::lmm::System* maxmin_system, double read_bw, double bwrite_bw);
55   DiskImpl(const DiskImpl&) = delete;
56   DiskImpl& operator=(const DiskImpl&) = delete;
57
58   ~DiskImpl() override;
59
60   /** @brief Public interface */
61   s4u::Disk piface_;
62
63   /** @brief Check if the Storage is used (if an action currently uses its resources) */
64   bool is_used() override;
65
66   void apply_event(profile::Event* event, double value) override;
67
68   void turn_on() override;
69   void turn_off() override;
70
71   void destroy(); // Must be called instead of the destructor
72   virtual DiskAction* io_start(sg_size_t size, s4u::Io::OpType type) = 0;
73   virtual DiskAction* read(sg_size_t size)                           = 0;
74   virtual DiskAction* write(sg_size_t size)                          = 0;
75
76   lmm::Constraint* constraint_write_; /* Constraint for maximum write bandwidth*/
77   lmm::Constraint* constraint_read_;  /* Constraint for maximum write bandwidth*/
78 };
79
80 /**********
81  * Action *
82  **********/
83
84 class DiskAction : public Action {
85 public:
86   static xbt::signal<void(DiskAction const&, Action::State, Action::State)> on_state_change;
87
88   DiskAction(Model* model, double cost, bool failed, DiskImpl* disk, s4u::Io::OpType type)
89       : Action(model, cost, failed), type_(type), disk_(disk){};
90
91   /**
92    * @brief diskAction constructor
93    *
94    * @param model The StorageModel associated to this DiskAction
95    * @param cost The cost of this DiskAction in bytes
96    * @param failed [description]
97    * @param var The lmm variable associated to this DiskAction if it is part of a LMM component
98    * @param storage The Storage associated to this DiskAction
99    * @param type [description]
100    */
101   DiskAction(kernel::resource::Model* model, double cost, bool failed, kernel::lmm::Variable* var, DiskImpl* disk,
102              s4u::Io::OpType type)
103       : Action(model, cost, failed, var), type_(type), disk_(disk){};
104
105   void set_state(simgrid::kernel::resource::Action::State state) override;
106
107   s4u::Io::OpType type_;
108   DiskImpl* disk_;
109 };
110
111 } // namespace resource
112 } // namespace kernel
113 } // namespace simgrid
114 #endif /* DISK_INTERFACE_HPP_ */