018706b7011a85b2c2878877707a24d735097063
[psensor.git] / src / lib / pio.h
1 /*
2  *  Copyright (C) 2010-2017 jeanfi@gmail.com
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  *   02110-1301 USA
18  */
19
20 #ifndef _P_IO_H
21 #define _P_IO_H
22
23 #define P_IO_VER 7
24
25 #include <sys/types.h>
26
27 /* Returns '1' if a given 'path' denotates a directory else returns
28  * 0
29  */
30 int is_dir(const char *path);
31
32 /* Returns '1' if a given 'path' denotates a file else returns
33  * 0
34  */
35 int is_file(const char *path);
36
37 /* Returns a normalized path */
38 char *path_normalize(const char *dpath);
39
40 /* Returns the null-terminated entries of a directory */
41 char **dir_list(const char *dpath, int (*filter) (const char *path));
42 void paths_free(char **paths);
43
44 char *path_append(const char *dir, const char *path);
45
46 /*
47  * Returns the size of a file.
48  * Returns '-1' if the size cannot be retrieved or not a file.
49  */
50 long file_get_size(const char *path);
51
52 /*
53  * Returns the content of a file.
54  * Returns 'NULL' if the file cannot be read or failed to allocate
55  * enough memory.
56  * Returns an empty string if the file exists but is empty.
57  */
58 char *file_get_content(const char *path);
59
60 enum file_copy_error {
61         FILE_COPY_ERROR_OPEN_SRC = 1,
62         FILE_COPY_ERROR_OPEN_DST,
63         FILE_COPY_ERROR_READ,
64         FILE_COPY_ERROR_WRITE,
65         FILE_COPY_ERROR_ALLOC_BUFFER
66 };
67
68 void file_copy_print_error(int code, const char *src, const char *dst);
69
70 /*
71  * Copy a file.
72  *
73  * Returns '0' if sucessfull, otherwise return the error code.
74  */
75 int file_copy(const char *src, const char *dst);
76
77 int dir_rcopy(const char *, const char *);
78
79 void mkdirs(const char *dirs, mode_t mode);
80
81 #endif