summaryrefslogtreecommitdiff
path: root/write_or_die.c
diff options
context:
space:
mode:
authorAndy Whitcroft <apw@shadowen.org>2007-01-02 14:12:09 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-01-03 07:33:21 (GMT)
commit825cee7b285d9c733e9aec03cf4362e8029ee1c1 (patch)
tree1db420a161330e3ca5d7e7612bd049c2799ee3a3 /write_or_die.c
parent44a167b007a20189200f4baf9ff4f24aa0f7571e (diff)
downloadgit-825cee7b285d9c733e9aec03cf4362e8029ee1c1.zip
git-825cee7b285d9c733e9aec03cf4362e8029ee1c1.tar.gz
git-825cee7b285d9c733e9aec03cf4362e8029ee1c1.tar.bz2
send pack check for failure to send revisions list
When passing the revisions list to pack-objects we do not check for errors nor short writes. Introduce a new write_in_full which will handle short writes and report errors to the caller. Use this to short cut the send on failure, allowing us to wait for and report the child in case the failure is its fault. Signed-off-by: Andy Whitcroft <apw@shadowen.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'write_or_die.c')
-rw-r--r--write_or_die.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/write_or_die.c b/write_or_die.c
index bfe4eeb..650f13f 100644
--- a/write_or_die.c
+++ b/write_or_die.c
@@ -43,3 +43,26 @@ int write_or_whine(int fd, const void *buf, size_t count, const char *msg)
return 1;
}
+
+int write_in_full(int fd, const void *buf, size_t count, const char *msg)
+{
+ const char *p = buf;
+ ssize_t written;
+
+ while (count > 0) {
+ written = xwrite(fd, p, count);
+ if (written == 0) {
+ fprintf(stderr, "%s: disk full?\n", msg);
+ return 0;
+ }
+ else if (written < 0) {
+ fprintf(stderr, "%s: write error (%s)\n",
+ msg, strerror(errno));
+ return 0;
+ }
+ count -= written;
+ p += written;
+ }
+
+ return 1;
+}