2001-03-17 04:17:14 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-03-17 04:17:14 +05:30
|
|
|
*
|
2006-05-20 00:59:19 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-03-17 04:17:14 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write all of the supplied buffer out to a file.
|
|
|
|
* This does multiple writes as necessary.
|
|
|
|
* Returns the amount written, or -1 on an error.
|
|
|
|
*/
|
2008-06-27 08:22:20 +05:30
|
|
|
ssize_t FAST_FUNC full_write(int fd, const void *buf, size_t len)
|
2001-03-17 04:17:14 +05:30
|
|
|
{
|
2003-03-19 14:43:01 +05:30
|
|
|
ssize_t cc;
|
|
|
|
ssize_t total;
|
2001-03-17 04:17:14 +05:30
|
|
|
|
|
|
|
total = 0;
|
|
|
|
|
2006-10-13 04:14:13 +05:30
|
|
|
while (len) {
|
2003-10-09 14:05:42 +05:30
|
|
|
cc = safe_write(fd, buf, len);
|
2001-03-17 04:17:14 +05:30
|
|
|
|
2008-02-26 02:00:24 +05:30
|
|
|
if (cc < 0) {
|
|
|
|
if (total) {
|
|
|
|
/* we already wrote some! */
|
|
|
|
/* user can do another write to know the error code */
|
|
|
|
return total;
|
|
|
|
}
|
2006-10-31 21:25:56 +05:30
|
|
|
return cc; /* write() returns -1 on failure. */
|
2008-02-26 02:00:24 +05:30
|
|
|
}
|
2001-03-17 04:17:14 +05:30
|
|
|
|
|
|
|
total += cc;
|
2003-03-19 14:43:01 +05:30
|
|
|
buf = ((const char *)buf) + cc;
|
2001-03-17 04:17:14 +05:30
|
|
|
len -= cc;
|
|
|
|
}
|
|
|
|
|
|
|
|
return total;
|
|
|
|
}
|