1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/* See LICENSE file for copyright and license details. */
#include <fcntl.h>
#include <errno.h>
#if defined(POSIX_FADV_SEQUENTIAL)
# define fadvise_sequential(...) posix_fadvise(__VA_ARGS__, POSIX_FADV_SEQUENTIAL)
#else
# define fadvise_sequential(...)
#endif
#if defined(POSIX_FADV_RANDOM)
# define fadvise_random(...) posix_fadvise(__VA_ARGS__, POSIX_FADV_RANDOM)
#else
# define fadvise_random(...)
#endif
#define ewriteall(...) enwriteall(1, __VA_ARGS__)
#define ereadall(...) enreadall(1, __VA_ARGS__)
#define epwriteall(...) enpwriteall(1, __VA_ARGS__)
#define ewritezeroes(...) enwritezeroes(1, __VA_ARGS__)
#define egetfile(...) engetfile(1, __VA_ARGS__)
int writeall(int fd, void *buf, size_t n);
static inline void
enwriteall(int status, int fd, void *buf, size_t n, const char *fname)
{
if (writeall(fd, buf, n))
enprintf(status, "write %s:", fname);
}
ssize_t readall(int fd, void *buf, size_t n);
static inline size_t
enreadall(int status, int fd, void *buf, size_t n, const char *fname)
{
ssize_t r = readall(fd, buf, n);
if (r < 0)
enprintf(status, "read %s:", fname);
return (size_t)r;
}
int pwriteall(int fd, void *buf, size_t n, size_t ptr);
static inline void
enpwriteall(int status, int fd, void *buf, size_t n, size_t ptr, const char *fname)
{
if (pwriteall(fd, buf, n, ptr))
enprintf(status, "pwrite %s:", fname);
}
int writezeroes(int fd, void *buf, size_t bufsize, size_t n);
static inline void
enwritezeroes(int status, int fd, void *buf, size_t bufsize, size_t n, const char *fname)
{
if (writezeroes(fd, buf, bufsize, n))
enprintf(status, "write %s:", fname);
}
int getfile(int fd, void *bufp, size_t *restrict ptrp, size_t *restrict sizep);
static inline void
engetfile(int status, int fd, void *bufp, size_t *restrict ptrp,
size_t *restrict sizep, const char *fname)
{
if (getfile(fd, bufp, ptrp, sizep)) {
if (errno == ENOMEM)
enprintf(status, "realloc:");
else
enprintf(status, "read %s:", fname);
}
}
|