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