Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cee6835de906ce470e5529910043f5fe7c60e5cf
[simgrid.git] / include / simgrid / plugins / file_system.h
1 /* Copyright (c) 2017-2018. 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 #ifndef SIMGRID_PLUGINS_FILE_SYSTEM_H_
8 #define SIMGRID_PLUGINS_FILE_SYSTEM_H_
9
10 #include <simgrid/forward.h>
11 #include <xbt/base.h>
12
13 SG_BEGIN_DECL()
14
15 XBT_PUBLIC void sg_storage_file_system_init();
16 XBT_PUBLIC sg_file_t sg_file_open(const char* fullpath, void* data);
17 XBT_PUBLIC sg_size_t sg_file_read(sg_file_t fd, sg_size_t size);
18 XBT_PUBLIC sg_size_t sg_file_write(sg_file_t fd, sg_size_t size);
19 XBT_PUBLIC void sg_file_close(sg_file_t fd);
20
21 XBT_PUBLIC const char* sg_file_get_name(sg_file_t fd);
22 XBT_PUBLIC sg_size_t sg_file_get_size(sg_file_t fd);
23 XBT_PUBLIC void sg_file_dump(sg_file_t fd);
24 XBT_PUBLIC void* sg_file_get_data(sg_file_t fd);
25 XBT_PUBLIC void sg_file_set_data(sg_file_t fd, void* data);
26 XBT_PUBLIC void sg_file_seek(sg_file_t fd, sg_offset_t offset, int origin);
27 XBT_PUBLIC sg_size_t sg_file_tell(sg_file_t fd);
28 XBT_PUBLIC void sg_file_move(sg_file_t fd, const char* fullpath);
29 XBT_PUBLIC void sg_file_unlink(sg_file_t fd);
30 XBT_PUBLIC int sg_file_rcopy(sg_file_t file, sg_host_t host, const char* fullpath);
31 XBT_PUBLIC int sg_file_rmove(sg_file_t file, sg_host_t host, const char* fullpath);
32
33 XBT_PUBLIC sg_size_t sg_storage_get_size_free(sg_storage_t st);
34 XBT_PUBLIC sg_size_t sg_storage_get_size_used(sg_storage_t st);
35 XBT_PUBLIC sg_size_t sg_storage_get_size(sg_storage_t st);
36 XBT_PUBLIC xbt_dict_t sg_storage_get_content(sg_storage_t storage);
37
38 XBT_PUBLIC xbt_dict_t sg_host_get_storage_content(sg_host_t host);
39
40 #define MSG_file_open(fullpath, data) sg_file_open(fullpath, data)
41 #define MSG_file_read(fd, size) sg_file_read(fd, size)
42 #define MSG_file_write(fd, size) sg_file_write(fd, size)
43 #define MSG_file_close(fd) sg_file_close(fd)
44 #define MSG_file_get_name(fd) sg_file_get_name(fd)
45 #define MSG_file_get_size(fd) sg_file_get_size(fd)
46 #define MSG_file_dump(fd) sg_file_dump(fd)
47 #define MSG_file_get_data(fd) sg_file_get_data(fd)
48 #define MSG_file_set_data(fd, data) sg_file_set_data(fd, data)
49 #define MSG_file_seek(fd, offset, origin) sg_file_seek(fd, offset, origin)
50 #define MSG_file_tell(fd) sg_file_tell(fd)
51 #define MSG_file_move(fd, fullpath) sg_file_get_size(fd, fullpath)
52 #define MSG_file_unlink(fd) sg_file_unlink(fd)
53 #define MSG_file_rcopy(file, host, fullpath) sg_file_rcopy(file, host, fullpath)
54 #define MSG_file_rmove(file, host, fullpath) sg_file_rmove(file, host, fullpath)
55
56 #define MSG_storage_file_system_init() sg_storage_file_system_init()
57 #define MSG_storage_get_free_size(st) sg_storage_get_size_free(st)
58 #define MSG_storage_get_used_size(st) sg_storage_get_size_used(st)
59 #define MSG_storage_get_size(st) sg_storage_get_size(st)
60 #define MSG_storage_get_content(st) sg_storage_get_content(st)
61
62 #define MSG_host_get_storage_content(st) sg_host_get_storage_content(st)
63
64 SG_END_DECL()
65
66 #endif