Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
WIP. crude surf_file_t to FileImpl conversion
[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(simgrid::surf::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(simgrid::surf::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(simgrid::surf::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(simgrid::surf::StorageAction*, simgrid::surf::Action::State,
56                                           simgrid::surf::Action::State)>)
57 storageActionStateChangedCallbacks;
58
59 /*********
60  * Model *
61  *********/
62 /** @ingroup SURF_storage_interface
63  * @brief SURF storage model interface class
64  * @details A model is an object which handle the interactions between its Resources and its Actions
65  */
66 class StorageModel : public Model {
67 public:
68   StorageModel();
69   ~StorageModel();
70
71   virtual StorageImpl* createStorage(const char* id, const char* type_id, const char* content_name,
72                                      const char* attach) = 0;
73
74   std::vector<StorageImpl*> p_storageList;
75 };
76
77 /************
78  * Resource *
79  ************/
80 /** @ingroup SURF_storage_interface
81  * @brief SURF storage interface class
82  * @details A Storage represent a storage unit (e.g.: hard drive, usb key)
83  */
84 class StorageImpl : public simgrid::surf::Resource, public simgrid::surf::PropertyHolder {
85 public:
86   /** @brief Storage constructor */
87   StorageImpl(Model* model, const char* name, lmm_system_t maxminSystem, double bread, double bwrite,
88               const char* type_id, const char* content_name, sg_size_t size, const char* attach);
89
90   ~StorageImpl() override;
91
92 public:
93   /** @brief Public interface */
94   s4u::Storage piface_;
95   static StorageImpl* byName(const char* name);
96
97   /** @brief Check if the Storage is used (if an action currently uses its resources) */
98   bool isUsed() override;
99
100   void apply_event(tmgr_trace_event_t event, double value) override;
101
102   void turnOn() override;
103   void turnOff() override;
104
105   std::map<std::string, sg_size_t>* content_;
106   sg_size_t size_;
107   sg_size_t usedSize_;
108   std::string typeId_;
109   std::string attach_; // Name of the host to which this storage is attached.
110                        // Only used until the platform is fully parsed only.
111                        // Then the interface stores the Host directly.
112                        /**
113                         * @brief Open a file
114                         *
115                         * @param mount The mount point
116                         * @param path The path to the file
117                         *
118                         * @return The StorageAction corresponding to the opening
119                         */
120   virtual StorageAction* open(const char* mount, const char* path) = 0;
121
122   /**
123    * @brief Close a file
124    *
125    * @param fd The file descriptor to close
126    * @return The StorageAction corresponding to the closing
127    */
128   virtual StorageAction* close(surf_file_t fd) = 0;
129
130   /**
131    * @brief Read a file
132    *
133    * @param fd The file descriptor to read
134    * @param size The size in bytes to read
135    * @return The StorageAction corresponding to the reading
136    */
137   virtual StorageAction* read(surf_file_t fd, sg_size_t size) = 0;
138
139   /**
140    * @brief Write a file
141    *
142    * @param fd The file descriptor to write
143    * @param size The size in bytes to write
144    * @return The StorageAction corresponding to the writing
145    */
146   virtual StorageAction* write(surf_file_t fd, sg_size_t size) = 0;
147
148   /**
149    * @brief Get the content of the current Storage
150    *
151    * @return A xbt_dict_t with path as keys and size in bytes as values
152    */
153   virtual std::map<std::string, sg_size_t>* getContent();
154
155   /**
156    * @brief Get the available size in bytes of the current Storage
157    *
158    * @return The available size in bytes of the current Storage
159    */
160   virtual sg_size_t getFreeSize();
161
162   /**
163    * @brief Get the used size in bytes of the current Storage
164    *
165    * @return The used size in bytes of the current Storage
166    */
167   virtual sg_size_t getUsedSize();
168
169   std::map<std::string, sg_size_t>* parseContent(const char* filename);
170   static std::unordered_map<std::string, StorageImpl*>* storages;
171   static std::unordered_map<std::string, StorageImpl*>* storagesMap() { return StorageImpl::storages; }
172   std::vector<StorageAction*> writeActions_;
173
174   lmm_constraint_t constraintWrite_; /* Constraint for maximum write bandwidth*/
175   lmm_constraint_t constraintRead_;  /* Constraint for maximum write bandwidth*/
176 };
177
178 /**********
179  * Action *
180  **********/
181
182 /** @ingroup SURF_storage_interface
183  * @brief The possible type of action for the storage component
184  */
185 typedef enum {
186   READ = 0, /**< Read a file */
187   WRITE,    /**< Write in a file */
188   STAT,     /**< Stat a file */
189   OPEN,     /**< Open a file */
190   CLOSE     /**< Close a file */
191 } e_surf_action_storage_type_t;
192
193 /** @ingroup SURF_storage_interface
194  * @brief SURF storage action interface class
195  */
196 class StorageAction : public Action {
197 public:
198   /**
199    * @brief StorageAction constructor
200    *
201    * @param model The StorageModel associated to this StorageAction
202    * @param cost The cost of this  NetworkAction in [TODO]
203    * @param failed [description]
204    * @param storage The Storage associated to this StorageAction
205    * @param type [description]
206    */
207   StorageAction(Model* model, double cost, bool failed, StorageImpl* storage, e_surf_action_storage_type_t type);
208
209   /**
210  * @brief StorageAction constructor
211  *
212  * @param model The StorageModel associated to this StorageAction
213  * @param cost The cost of this  StorageAction in [TODO]
214  * @param failed [description]
215  * @param var The lmm variable associated to this StorageAction if it is part of a LMM component
216  * @param storage The Storage associated to this StorageAction
217  * @param type [description]
218  */
219   StorageAction(Model* model, double cost, bool failed, lmm_variable_t var, StorageImpl* storage,
220                 e_surf_action_storage_type_t type);
221
222   void setState(simgrid::surf::Action::State state) override;
223
224   e_surf_action_storage_type_t type_;
225   StorageImpl* storage_;
226   FileImpl* file_;
227   double progress_;
228 };
229 }
230 }
231
232 typedef struct s_storage_type {
233   char* model;
234   char* content;
235   char* type_id;
236   xbt_dict_t properties;
237   std::map<std::string, std::string>* model_properties;
238   sg_size_t size;
239 } s_storage_type_t;
240 typedef s_storage_type_t* storage_type_t;
241
242 #endif /* STORAGE_INTERFACE_HPP_ */