Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
get rid of "mode" parameter in the open file function. It wasn't used
[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
10 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_io, msg,
11                                 "Logging specific to MSG (io)");
12
13 /** @addtogroup msg_file_management
14  *     \htmlonly <!-- DOXYGEN_NAVBAR_LABEL="Files" --> \endhtmlonly
15  * (#msg_file_t) and the functions for managing it.
16  *
17  *  \see #msg_file_t
18  */
19
20 /********************************* File **************************************/
21
22 /** \ingroup msg_file_management
23  * \brief Read elements of a file
24  *
25  * \param ptr buffer to where the data is copied
26  * \param size of each element
27  * \param nmemb is the number of elements of data to read
28  * \param stream to read
29  * \return the number of items successfully read
30  */
31 size_t MSG_file_read(void* ptr, size_t size, size_t nmemb,  msg_file_t stream)
32 {
33   return simcall_file_read(ptr, size, nmemb, stream->simdata->smx_file);
34 }
35
36 /** \ingroup msg_file_management
37  * \brief Write elements into a file
38  *
39  * \param ptr buffer from where the data is copied
40  * \param size of each element
41  * \param nmemb is the number of elements of data to write
42  * \param stream to write
43  * \return the number of items successfully write
44  */
45 size_t MSG_file_write(const void* ptr, size_t size, size_t nmemb, msg_file_t stream)
46 {
47   return simcall_file_write(ptr, size, nmemb, stream->simdata->smx_file);
48 }
49
50 /** \ingroup msg_file_management
51  * \brief Opens the file whose name is the string pointed to by path
52  *
53  * \param mount is the mount point where find the file is located
54  * \param path is the file location on the storage
55  *
56  * \return An #msg_file_t associated to the file
57  */
58 msg_file_t MSG_file_open(const char* mount, const char* path)
59 {
60   msg_file_t file = xbt_new(s_msg_file_t,1);
61   file->name = strdup(path);
62   file->simdata = xbt_new0(s_simdata_file_t,1);
63   file->simdata->smx_file = simcall_file_open(mount, path);
64   return file;
65 }
66
67 /** \ingroup msg_file_management
68  * \brief Close the file
69  *
70  * \param fd is the file to close
71  * \return 0 on success or 1 on error
72  */
73 int MSG_file_close(msg_file_t fd)
74 {
75   int res = simcall_file_close(fd->simdata->smx_file);
76   free(fd->name);
77   xbt_free(fd->simdata);
78   xbt_free(fd);
79   return res;
80 }
81
82 /** \ingroup msg_file_management
83  * \brief Unlink the file pointed by fd
84  *
85  * \param fd is the file descriptor (#msg_file_t)
86  * \return 0 on success or 1 on error
87  */
88 int MSG_file_unlink(msg_file_t fd)
89 {
90   int res = simcall_file_unlink(fd->simdata->smx_file);
91   free(fd->name);
92   xbt_free(fd->simdata);
93   xbt_free(fd);
94   return res;
95 }
96
97 /** \ingroup msg_file_management
98  * \brief Return the size of a file
99  *
100  * \param fd is the file descriptor (#msg_file_t)
101  * \return the size of the file (as a size_t)
102  */
103
104 size_t MSG_file_get_size(msg_file_t fd){
105   return simcall_file_get_size(fd->simdata->smx_file);
106 }
107
108 /** \ingroup msg_file_management
109  * \brief Search for file
110  *
111  * \param mount is the mount point where find the file is located
112  * \param path the file regex to find
113  * \return a xbt_dict_t of file where key is the name of file and the
114  * value the msg_stat_t corresponding to the key
115  */
116 xbt_dict_t MSG_file_ls(const char *mount, const char *path)
117 {
118   xbt_assert(path,"You must set path");
119   int size = strlen(path);
120   if(size && path[size-1] != '/')
121   {
122     char *new_path = bprintf("%s/",path);
123     XBT_DEBUG("Change '%s' for '%s'",path,new_path);
124     xbt_dict_t dict = simcall_file_ls(mount, new_path);
125     xbt_free(new_path);
126     return dict;
127   }
128
129   return simcall_file_ls(mount, path);
130 }