Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'hypervisor' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid...
[simgrid.git] / src / msg / msg_io.c
1 /* Copyright (c) 2004-2013. 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 "msg_private.h"
8 #include "xbt/log.h"
9 #include <inttypes.h>
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_io, msg,
12                                 "Logging specific to MSG (io)");
13
14 /** @addtogroup msg_file_management
15  * \htmlonly <!-- DOXYGEN_NAVBAR_LABEL="Files" --> \endhtmlonly
16  * (#msg_file_t) and the functions for managing it.
17  *
18  *  \see #msg_file_t
19  */
20
21 /********************************* File **************************************/
22 void __MSG_file_get_info(msg_file_t fd){
23   xbt_dynar_t info = simcall_file_get_info(fd->simdata->smx_file);
24   sg_storage_size_t *psize;
25
26   fd->info->content_type = xbt_dynar_pop_as(info, char *);
27   fd->info->storage_type = xbt_dynar_pop_as(info, char *);
28   fd->info->storageId = xbt_dynar_pop_as(info, char *);
29   fd->info->mount_point = xbt_dynar_pop_as(info, char *);
30   psize = xbt_dynar_pop_as(info, sg_storage_size_t*);
31   fd->info->size = *psize;
32   xbt_free(psize);
33   xbt_dynar_free_container(&info);
34 }
35
36 /** \ingroup msg_file_management
37  *
38  * \brief Set the user data of a #msg_file_t.
39  *
40  * This functions checks whether some data has already been associated to \a file
41    or not and attach \a data to \a file if it is possible.
42  */
43 msg_error_t MSG_file_set_data(msg_file_t fd, void *data)
44 {
45   SIMIX_file_set_data(fd->simdata->smx_file,data);
46
47   return MSG_OK;
48 }
49
50 /** \ingroup msg_file_management
51  *
52  * \brief Return the user data of a #msg_file_t.
53  *
54  * This functions checks whether \a file is a valid pointer or not and return
55    the user data associated to \a file if it is possible.
56  */
57 void *MSG_file_get_data(msg_file_t fd)
58 {
59   return SIMIX_file_get_data(fd->simdata->smx_file);
60 }
61
62 /** \ingroup msg_file_management
63  * \brief Display information related to a file descriptor
64  *
65  * \param fd is a the file descriptor
66  */
67
68 void MSG_file_dump (msg_file_t fd){
69 //   THROW_UNIMPLEMENTED;
70   /* Update the cached information first */
71   __MSG_file_get_info(fd);
72   XBT_INFO("File Descriptor information:\n"
73            "\t\tFull name: '%s'\n"
74            "\t\tSize: %" PRIu64 "\n"
75            "\t\tMount point: '%s'\n"
76            "\t\tStorage Id: '%s'\n"
77            "\t\tStorage Type: '%s'\n"
78            "\t\tContent Type: '%s'",
79            fd->fullname, fd->info->size, fd->info->mount_point,
80            fd->info->storageId, fd->info->storage_type,
81            fd->info->content_type);
82 }
83
84 /** \ingroup msg_file_management
85  * \brief Read a file
86  *
87  * \param size of the file to read
88  * \param fd is a the file descriptor
89  * \return the number of bytes successfully read
90  */
91 sg_storage_size_t MSG_file_read(msg_file_t fd, sg_storage_size_t size)
92 {
93   return simcall_file_read(fd->simdata->smx_file, size);
94 }
95
96 /** \ingroup msg_file_management
97  * \brief Write into a file
98  *
99  * \param size of the file to write
100  * \param fd is a the file descriptor
101  * \return the number of bytes successfully write
102  */
103 sg_storage_size_t MSG_file_write(msg_file_t fd, sg_storage_size_t size)
104 {
105   return simcall_file_write(fd->simdata->smx_file, size);
106 }
107
108 /** \ingroup msg_file_management
109  * \brief Opens the file whose name is the string pointed to by path
110  *
111  * \param mount is the mount point where find the file is located
112  * \param fullname is the file location on the storage
113  * \param data user data to attach to the file
114  *
115  * \return An #msg_file_t associated to the file
116  */
117 msg_file_t MSG_file_open(const char* mount, const char* fullname, void* data)
118 {
119   msg_file_t file = xbt_new(s_msg_file_t,1);
120   file->fullname = xbt_strdup(fullname);
121   file->simdata = xbt_new0(s_simdata_file_t,1);
122   file->info = xbt_new0(s_msg_file_info_t,1);
123   file->simdata->smx_file = simcall_file_open(mount, fullname);
124   SIMIX_file_set_data(file->simdata->smx_file, data);
125   return file;
126 }
127
128 /** \ingroup msg_file_management
129  * \brief Close the file
130  *
131  * \param fd is the file to close
132  * \return 0 on success or 1 on error
133  */
134 int MSG_file_close(msg_file_t fd)
135 {
136   int res = simcall_file_close(fd->simdata->smx_file);
137   free(fd->fullname);
138   xbt_free(fd->simdata);
139   xbt_free(fd->info);
140   xbt_free(fd);
141   return res;
142 }
143
144 /** \ingroup msg_file_management
145  * \brief Unlink the file pointed by fd
146  *
147  * \param fd is the file descriptor (#msg_file_t)
148  * \return 0 on success or 1 on error
149  */
150 int MSG_file_unlink(msg_file_t fd)
151 {
152   int res = simcall_file_unlink(fd->simdata->smx_file);
153   free(fd->fullname);
154   xbt_free(fd->simdata);
155   xbt_free(fd->info);
156   xbt_free(fd);
157   return res;
158 }
159
160 /** \ingroup msg_file_management
161  * \brief Return the size of a file
162  *
163  * \param fd is the file descriptor (#msg_file_t)
164  * \return the size of the file (as a sg_storage_size_t)
165  */
166 sg_storage_size_t MSG_file_get_size(msg_file_t fd){
167   return simcall_file_get_size(fd->simdata->smx_file);
168 }
169
170 /** \ingroup msg_file_management
171  * \brief Search for file
172  *
173  * \param mount is the mount point where find the file is located
174  * \param path the file regex to find
175  * \return a xbt_dict_t of file where key is the name of file and the
176  * value the msg_stat_t corresponding to the key
177  */
178 xbt_dict_t MSG_file_ls(const char *mount, const char *path)
179 {
180   xbt_assert(path,"You must set path");
181   int size = strlen(path);
182   if(size && path[size-1] != '/')
183   {
184     char *new_path = bprintf("%s/",path);
185     XBT_DEBUG("Change '%s' for '%s'",path,new_path);
186     xbt_dict_t dict = simcall_file_ls(mount, new_path);
187     xbt_free(new_path);
188     return dict;
189   }
190
191   return simcall_file_ls(mount, path);
192 }
193
194 /********************************* Storage **************************************/
195
196 /** @addtogroup msg_storage_management
197  * \htmlonly <!-- DOXYGEN_NAVBAR_LABEL="Storages" --> \endhtmlonly
198  * (#msg_storage_t) and the functions for managing it.
199  *
200  */
201
202
203 /* TODO: PV: to comment */
204 msg_storage_t __MSG_storage_create(smx_storage_t storage)
205 {
206   const char *name = SIMIX_storage_get_name(storage);
207   msg_storage_priv_t storage_private = xbt_new0(s_msg_storage_priv_t, 1);
208   xbt_lib_set(storage_lib,name,MSG_STORAGE_LEVEL,storage_private);
209   return xbt_lib_get_elm_or_null(storage_lib, name);
210 }
211
212 /*
213  * \brief Destroys a storage (internal call only)
214  */
215 void __MSG_storage_destroy(msg_storage_priv_t storage) {
216
217   free(storage);
218 }
219
220 /** \ingroup msg_storage_management
221  *
222  * \brief Returns the name of the #msg_storage_t.
223  *
224  * This functions checks whether a storage is a valid pointer or not and return its name.
225  */
226 const char *MSG_storage_get_name(msg_storage_t storage) {
227   xbt_assert((storage != NULL), "Invalid parameters");
228   return SIMIX_storage_get_name(storage);
229 }
230
231 /** \ingroup msg_storage_management
232  * \brief Returns the free space size of a storage element
233  * \param name the name of a storage
234  * \return the free space size of the storage element (as a sg_storage_size_t)
235  */
236 sg_storage_size_t MSG_storage_get_free_size(const char* name){
237   return simcall_storage_get_free_size(name);
238 }
239
240 /** \ingroup msg_storage_management
241  * \brief Returns the used space size of a storage element
242  * \param name the name of a storage
243  * \return the used space size of the storage element (as a sg_storage_size_t)
244  */
245 sg_storage_size_t MSG_storage_get_used_size(const char* name){
246   return simcall_storage_get_used_size(name);
247 }
248
249 /** \ingroup msg_storage_management
250  * \brief Returns a xbt_dict_t consisting of the list of properties assigned to this storage
251  * \param storage a storage
252  * \return a dict containing the properties
253  */
254 xbt_dict_t MSG_storage_get_properties(msg_storage_t storage)
255 {
256   xbt_assert((storage != NULL), "Invalid parameters (storage is NULL)");
257   return (simcall_storage_get_properties(storage));
258 }
259
260 /** \ingroup msg_storage_management
261  * \brief Change the value of a given storage property
262  *
263  * \param storage a storage
264  * \param name a property name
265  * \param value what to change the property to
266  * \param free_ctn the freeing function to use to kill the value on need
267  */
268 void MSG_storage_set_property_value(msg_storage_t storage, const char *name, char *value,void_f_pvoid_t free_ctn) {
269   xbt_dict_set(MSG_storage_get_properties(storage), name, value,free_ctn);
270 }
271
272 /** \ingroup msg_storage_management
273  * \brief Finds a msg_storage_t using its name.
274  * \param name the name of a storage
275  * \return the corresponding storage
276  */
277 msg_storage_t MSG_storage_get_by_name(const char *name)
278 {
279   return (msg_storage_t) xbt_lib_get_elm_or_null(storage_lib,name);
280 }
281
282 /** \ingroup msg_storage_management
283  * \brief Returns a dynar containing all the storage elements declared at a given point of time
284  *
285  */
286 xbt_dynar_t MSG_storages_as_dynar(void) {
287
288   xbt_lib_cursor_t cursor;
289   char *key;
290   void **data;
291   xbt_dynar_t res = xbt_dynar_new(sizeof(msg_storage_t),NULL);
292
293   xbt_lib_foreach(storage_lib, cursor, key, data) {
294     if(routing_get_network_element_type(key) == MSG_STORAGE_LEVEL) {
295       xbt_dictelm_t elm = xbt_dict_cursor_get_elm(cursor);
296       xbt_dynar_push(res, &elm);
297     }
298   }
299
300   return res;
301 }
302
303 /** \ingroup msg_storage_management
304  *
305  * \brief Set the user data of a #msg_storage_t.
306  * This functions checks whether some data has already been associated to \a storage
307    or not and attach \a data to \a storage if it is possible.
308  */
309 msg_error_t MSG_storage_set_data(msg_storage_t storage, void *data)
310 {
311   SIMIX_storage_set_data(storage,data);
312
313   return MSG_OK;
314 }
315
316 /** \ingroup msg_host_management
317  *
318  * \brief Returns the user data of a #msg_storage_t.
319  *
320  * This functions checks whether \a storage is a valid pointer or not and returns
321    the user data associated to \a storage if it is possible.
322  */
323 void *MSG_storage_get_data(msg_storage_t storage)
324 {
325   return SIMIX_storage_get_data(storage);
326 }
327
328 /** \ingroup msg_storage_management
329  *
330  * \brief Returns the content (file list) of a #msg_storage_t.
331  * \param storage a storage
332  * \return The content of this storage element as a dict (full path file => size)
333  */
334 xbt_dict_t MSG_storage_get_content(msg_storage_t storage)
335 {
336   return SIMIX_storage_get_content(storage);
337 }
338
339 sg_storage_size_t MSG_storage_get_size(msg_storage_t storage)
340 {
341   return SIMIX_storage_get_size(storage);
342 }