Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
split surf_parse into a separate file to make it reusable from elsewhere
[simgrid.git] / src / surf / StorageImpl.hpp
1 /* Copyright (c) 2004-2020. 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/Io.hpp"
10 #include "simgrid/s4u/Storage.hpp"
11 #include "surf_interface.hpp"
12 #include "xbt/PropertyHolder.hpp"
13
14 #include <map>
15
16 #ifndef STORAGE_INTERFACE_HPP_
17 #define STORAGE_INTERFACE_HPP_
18
19 /*********
20  * Model *
21  *********/
22
23 XBT_PUBLIC_DATA simgrid::kernel::resource::StorageModel* surf_storage_model;
24
25 namespace simgrid {
26 namespace kernel {
27 namespace resource {
28 /***********
29  * Classes *
30  ***********/
31
32 class StorageAction;
33 /** @ingroup SURF_storage_interface
34  * @brief The possible type of action for the storage component
35  */
36
37 /*********
38  * Model *
39  *********/
40 /** @ingroup SURF_storage_interface
41  * @brief SURF storage model interface class
42  * @details A model is an object which handle the interactions between its Resources and its Actions
43  */
44 class StorageModel : public kernel::resource::Model {
45 public:
46   StorageModel();
47   StorageModel(const StorageModel&) = delete;
48   StorageModel& operator=(const StorageModel&) = delete;
49   ~StorageModel();
50
51   virtual StorageImpl* createStorage(std::string& filename, int lineno, const std::string& id,
52                                      const std::string& type_id, const std::string& content_name,
53                                      const std::string& attach) = 0;
54 };
55
56 /************
57  * Resource *
58  ************/
59 /** @ingroup SURF_storage_interface
60  * @brief SURF storage interface class
61  * @details A Storage represent a storage unit (e.g.: hard drive, usb key)
62  */
63 class StorageImpl : public Resource, public xbt::PropertyHolder {
64   s4u::Storage piface_;
65   lmm::Constraint* constraint_read_;  /* Constraint for maximum write bandwidth*/
66   lmm::Constraint* constraint_write_; /* Constraint for maximum write bandwidth*/
67
68   std::string typeId_;
69   bool currently_destroying_ = false;
70   // Name of the host to which this storage is attached. Only used at platform parsing time, then the interface stores
71   // the Host directly.
72   std::string attach_;
73
74 public:
75   const std::string content_name_; // Only used at parsing time then goes to the FileSystemExtension
76   const sg_size_t size_;           // Only used at parsing time then goes to the FileSystemExtension
77   /** @brief Storage constructor */
78   StorageImpl(Model* model, const std::string& name, kernel::lmm::System* maxmin_system, double bread, double bwrite,
79               const std::string& type_id, const std::string& content_name, sg_size_t size, const std::string& attach);
80   StorageImpl(const StorageImpl&) = delete;
81   StorageImpl& operator=(const StorageImpl&) = delete;
82
83   ~StorageImpl() override;
84
85   s4u::Storage* get_iface() { return &piface_; }
86   const char* get_type() { return typeId_.c_str(); }
87   lmm::Constraint* get_read_constraint() const { return constraint_read_; }
88   lmm::Constraint* get_write_constraint() const { return constraint_write_; }
89   /** @brief Check if the Storage is used (if an action currently uses its resources) */
90   bool is_used() override;
91
92   void apply_event(profile::Event* event, double value) override;
93
94   void turn_on() override;
95   void turn_off() override;
96
97   void destroy(); // Must be called instead of the destructor
98   virtual StorageAction* io_start(sg_size_t size, s4u::Io::OpType type) = 0;
99   /**
100    * @brief Read a file
101    *
102    * @param size The size in bytes to read
103    * @return The StorageAction corresponding to the reading
104    */
105   virtual StorageAction* read(sg_size_t size) = 0;
106
107   /**
108    * @brief Write a file
109    *
110    * @param size The size in bytes to write
111    * @return The StorageAction corresponding to the writing
112    */
113   virtual StorageAction* write(sg_size_t size) = 0;
114   const std::string& get_host() const { return attach_; }
115 };
116
117 /**********
118  * Action *
119  **********/
120
121 /** @ingroup SURF_storage_interface
122  * @brief SURF storage action interface class
123  */
124 class StorageAction : public Action {
125 public:
126   /**
127    * @brief Callbacks handler which emit the callbacks after StorageAction State changed *
128    * @details Callback functions have the following signature: `void(StorageAction& action,
129    * simgrid::kernel::resource::Action::State old, simgrid::kernel::resource::Action::State current)`
130    */
131   static xbt::signal<void(StorageAction const&, Action::State, Action::State)> on_state_change;
132
133   /**
134    * @brief StorageAction constructor
135    *
136    * @param model The StorageModel associated to this StorageAction
137    * @param cost The cost of this StorageAction in bytes
138    * @param failed [description]
139    * @param storage The Storage associated to this StorageAction
140    * @param type [description]
141    */
142   StorageAction(Model* model, double cost, bool failed, StorageImpl* storage, s4u::Io::OpType type)
143       : Action(model, cost, failed), type_(type), storage_(storage){};
144
145   /**
146  * @brief StorageAction constructor
147  *
148  * @param model The StorageModel associated to this StorageAction
149  * @param cost The cost of this  StorageAction in [TODO]
150  * @param failed [description]
151  * @param var The lmm variable associated to this StorageAction if it is part of a LMM component
152  * @param storage The Storage associated to this StorageAction
153  * @param type [description]
154  */
155   StorageAction(kernel::resource::Model* model, double cost, bool failed, kernel::lmm::Variable* var,
156                 StorageImpl* storage, s4u::Io::OpType type)
157       : Action(model, cost, failed, var), type_(type), storage_(storage){};
158
159   void set_state(simgrid::kernel::resource::Action::State state) override;
160
161   s4u::Io::OpType type_;
162   StorageImpl* storage_;
163 };
164
165 class StorageType {
166 public:
167   std::string id;
168   std::string model;
169   std::string content;
170   std::unordered_map<std::string, std::string>* properties;
171   std::unordered_map<std::string, std::string>* model_properties;
172   sg_size_t size;
173   StorageType(const std::string& id, const std::string& model, const std::string& content,
174               std::unordered_map<std::string, std::string>* properties,
175               std::unordered_map<std::string, std::string>* model_properties, sg_size_t size)
176       : id(id), model(model), content(content), properties(properties), model_properties(model_properties), size(size)
177   {
178   }
179 };
180
181 } // namespace resource
182 } // namespace kernel
183 } // namespace simgrid
184 #endif /* STORAGE_INTERFACE_HPP_ */