2006-08-21 22:43:43 +04:00
|
|
|
#include "cache.h"
|
|
|
|
|
2007-01-08 18:58:08 +03:00
|
|
|
int read_in_full(int fd, void *buf, size_t count)
|
2006-12-23 10:33:55 +03:00
|
|
|
{
|
|
|
|
char *p = buf;
|
2007-01-08 18:58:08 +03:00
|
|
|
ssize_t total = 0;
|
2006-12-23 10:33:55 +03:00
|
|
|
|
|
|
|
while (count > 0) {
|
2007-01-12 07:37:38 +03:00
|
|
|
ssize_t loaded = xread(fd, p, count);
|
|
|
|
if (loaded <= 0)
|
|
|
|
return total ? total : loaded;
|
2006-12-23 10:33:55 +03:00
|
|
|
count -= loaded;
|
|
|
|
p += loaded;
|
2007-01-08 18:58:08 +03:00
|
|
|
total += loaded;
|
2006-12-23 10:33:55 +03:00
|
|
|
}
|
2007-01-08 18:58:08 +03:00
|
|
|
|
|
|
|
return total;
|
|
|
|
}
|
|
|
|
|
2007-01-08 18:58:23 +03:00
|
|
|
int write_in_full(int fd, const void *buf, size_t count)
|
2006-08-21 22:43:43 +04:00
|
|
|
{
|
|
|
|
const char *p = buf;
|
2007-01-08 18:58:23 +03:00
|
|
|
ssize_t total = 0;
|
2006-08-21 22:43:43 +04:00
|
|
|
|
|
|
|
while (count > 0) {
|
2007-01-27 04:39:03 +03:00
|
|
|
ssize_t written = xwrite(fd, p, count);
|
2007-01-12 00:04:11 +03:00
|
|
|
if (written < 0)
|
|
|
|
return -1;
|
|
|
|
if (!written) {
|
|
|
|
errno = ENOSPC;
|
|
|
|
return -1;
|
2006-08-21 22:43:43 +04:00
|
|
|
}
|
|
|
|
count -= written;
|
|
|
|
p += written;
|
2007-01-08 18:58:23 +03:00
|
|
|
total += written;
|
2006-08-21 22:43:43 +04:00
|
|
|
}
|
2007-01-08 18:58:23 +03:00
|
|
|
|
|
|
|
return total;
|
2006-08-21 22:43:43 +04:00
|
|
|
}
|
2006-08-31 10:42:11 +04:00
|
|
|
|
2007-01-08 18:58:23 +03:00
|
|
|
void write_or_die(int fd, const void *buf, size_t count)
|
2006-08-31 10:42:11 +04:00
|
|
|
{
|
2007-01-12 07:23:00 +03:00
|
|
|
if (write_in_full(fd, buf, count) < 0) {
|
2007-01-08 18:58:23 +03:00
|
|
|
if (errno == EPIPE)
|
|
|
|
exit(0);
|
|
|
|
die("write error (%s)", strerror(errno));
|
2007-01-08 18:57:52 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int write_or_whine_pipe(int fd, const void *buf, size_t count, const char *msg)
|
|
|
|
{
|
2007-01-12 07:23:00 +03:00
|
|
|
if (write_in_full(fd, buf, count) < 0) {
|
2007-01-08 18:57:52 +03:00
|
|
|
if (errno == EPIPE)
|
|
|
|
exit(0);
|
|
|
|
fprintf(stderr, "%s: write error (%s)\n",
|
|
|
|
msg, strerror(errno));
|
|
|
|
return 0;
|
2006-08-31 10:42:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2007-01-02 17:12:09 +03:00
|
|
|
|
2007-01-08 18:57:52 +03:00
|
|
|
int write_or_whine(int fd, const void *buf, size_t count, const char *msg)
|
2007-01-02 17:12:09 +03:00
|
|
|
{
|
2007-01-12 07:23:00 +03:00
|
|
|
if (write_in_full(fd, buf, count) < 0) {
|
2007-01-08 18:57:52 +03:00
|
|
|
fprintf(stderr, "%s: write error (%s)\n",
|
|
|
|
msg, strerror(errno));
|
|
|
|
return 0;
|
2007-01-02 17:12:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|