Logo AND Algorithmique Numérique Distribuée

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