Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[EXAMPLES] Make the HostLoad example more difficult
[simgrid.git] / src / surf / StorageImpl.hpp
1 /* Copyright (c) 2004-2017. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <xbt/base.h>
8 #include <xbt/signal.hpp>
9
10 #include "simgrid/s4u/Storage.hpp"
11 #include "src/surf/PropertyHolder.hpp"
12 #include "surf_interface.hpp"
13 #include <map>
14
15 #ifndef STORAGE_INTERFACE_HPP_
16 #define STORAGE_INTERFACE_HPP_
17
18 namespace simgrid {
19 namespace surf {
20
21 /***********
22  * Classes *
23  ***********/
24
25 class StorageAction;
26
27 /*************
28  * Callbacks *
29  *************/
30
31 /** @ingroup SURF_callbacks
32  * @brief Callbacks handler which emit the callbacks after Storage creation *
33  * @details Callback functions have the following signature: `void(Storage*)`
34  */
35 XBT_PUBLIC_DATA(simgrid::xbt::signal<void(StorageImpl*)>) storageCreatedCallbacks;
36
37 /** @ingroup SURF_callbacks
38  * @brief Callbacks handler which emit the callbacks after Storage destruction *
39  * @details Callback functions have the following signature: `void(StoragePtr)`
40  */
41 XBT_PUBLIC_DATA(simgrid::xbt::signal<void(StorageImpl*)>) storageDestructedCallbacks;
42
43 /** @ingroup SURF_callbacks
44  * @brief Callbacks handler which emit the callbacks after Storage State changed *
45  * @details Callback functions have the following signature: `void(StorageAction *action, int previouslyOn, int
46  * currentlyOn)`
47  */
48 XBT_PUBLIC_DATA(simgrid::xbt::signal<void(StorageImpl*, int, int)>) storageStateChangedCallbacks;
49
50 /** @ingroup SURF_callbacks
51  * @brief Callbacks handler which emit the callbacks after StorageAction State changed *
52  * @details Callback functions have the following signature: `void(StorageAction *action, simgrid::surf::Action::State
53  * old, simgrid::surf::Action::State current)`
54  */
55 XBT_PUBLIC_DATA(simgrid::xbt::signal<void(StorageAction*, Action::State, Action::State)>)
56 storageActionStateChangedCallbacks;
57
58 /*********
59  * Model *
60  *********/
61 /** @ingroup SURF_storage_interface
62  * @brief SURF storage model interface class
63  * @details A model is an object which handle the interactions between its Resources and its Actions
64  */
65 class StorageModel : public Model {
66 public:
67   StorageModel();
68   ~StorageModel();
69
70   virtual StorageImpl* createStorage(std::string id, std::string type_id, std::string content_name,
71                                      std::string attach) = 0;
72
73   std::vector<StorageImpl*> p_storageList;
74 };
75
76 /************
77  * Resource *
78  ************/
79 /** @ingroup SURF_storage_interface
80  * @brief SURF storage interface class
81  * @details A Storage represent a storage unit (e.g.: hard drive, usb key)
82  */
83 class StorageImpl : public Resource, public PropertyHolder {
84 public:
85   /** @brief Storage constructor */
86   StorageImpl(Model* model, std::string name, lmm_system_t maxminSystem, double bread, double bwrite,
87               std::string type_id, std::string content_name, sg_size_t size, std::string attach);
88
89   ~StorageImpl() override;
90
91   /** @brief Public interface */
92   s4u::Storage piface_;
93   static StorageImpl* byName(std::string name);
94
95   /** @brief Check if the Storage is used (if an action currently uses its resources) */
96   bool isUsed() override;
97
98   void apply_event(tmgr_trace_event_t event, double value) override;
99
100   void turnOn() override;
101   void turnOff() override;
102
103   /**
104    * @brief Read a file
105    *
106    * @param size The size in bytes to read
107    * @return The StorageAction corresponding to the reading
108    */
109   virtual StorageAction* read(sg_size_t size) = 0;
110
111   /**
112    * @brief Write a file
113    *
114    * @param size The size in bytes to write
115    * @return The StorageAction corresponding to the writing
116    */
117   virtual StorageAction* write(sg_size_t size) = 0;
118   virtual std::string getHost() { return attach_; }
119
120   static std::unordered_map<std::string, StorageImpl*>* storagesMap() { return StorageImpl::storages; }
121
122   lmm_constraint_t constraintWrite_; /* Constraint for maximum write bandwidth*/
123   lmm_constraint_t constraintRead_;  /* Constraint for maximum write bandwidth*/
124
125   std::string typeId_;
126   std::string content_name; // Only used at parsing time then goes to the FileSystemExtension
127   sg_size_t size_;          // Only used at parsing time then goes to the FileSystemExtension
128
129 private:
130   static std::unordered_map<std::string, StorageImpl*>* storages;
131   // Name of the host to which this storage is attached. Only used at platform parsing time, then the interface stores
132   // the Host directly.
133   std::string attach_;
134 };
135
136 /**********
137  * Action *
138  **********/
139
140 /** @ingroup SURF_storage_interface
141  * @brief The possible type of action for the storage component
142  */
143 enum e_surf_action_storage_type_t {
144   READ = 0, /**< Read a file */
145   WRITE     /**< Write in a file */
146 };
147
148 /** @ingroup SURF_storage_interface
149  * @brief SURF storage action interface class
150  */
151 class StorageAction : public Action {
152 public:
153   /**
154    * @brief StorageAction constructor
155    *
156    * @param model The StorageModel associated to this StorageAction
157    * @param cost The cost of this  NetworkAction in [TODO]
158    * @param failed [description]
159    * @param storage The Storage associated to this StorageAction
160    * @param type [description]
161    */
162   StorageAction(Model* model, double cost, bool failed, StorageImpl* storage, e_surf_action_storage_type_t type)
163       : Action(model, cost, failed), type_(type), storage_(storage){};
164
165   /**
166  * @brief StorageAction constructor
167  *
168  * @param model The StorageModel associated to this StorageAction
169  * @param cost The cost of this  StorageAction in [TODO]
170  * @param failed [description]
171  * @param var The lmm variable associated to this StorageAction if it is part of a LMM component
172  * @param storage The Storage associated to this StorageAction
173  * @param type [description]
174  */
175   StorageAction(Model* model, double cost, bool failed, lmm_variable_t var, StorageImpl* storage,
176                 e_surf_action_storage_type_t type)
177       : Action(model, cost, failed, var), type_(type), storage_(storage){};
178
179   void setState(simgrid::surf::Action::State state) override;
180
181   e_surf_action_storage_type_t type_;
182   StorageImpl* storage_;
183 };
184
185 class StorageType {
186 public:
187   std::string id;
188   std::string model;
189   std::string content;
190   std::map<std::string, std::string>* properties;
191   std::map<std::string, std::string>* model_properties;
192   sg_size_t size;
193   StorageType(std::string id, std::string model, std::string content, std::map<std::string, std::string>* properties,
194               std::map<std::string, std::string>* model_properties, sg_size_t size)
195       : id(id), model(model), content(content), properties(properties), model_properties(model_properties), size(size)
196   {
197   }
198 };
199 }
200 }
201
202 #endif /* STORAGE_INTERFACE_HPP_ */