hush/libbb/copyfd.c

73 lines
1.8 KiB
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
/*
* Utility routines.
*
* Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <unistd.h>
#include <string.h>
#include <errno.h>
2003-03-19 09:13:01 +00:00
#include "busybox.h"
2003-03-19 09:13:01 +00:00
#if BUFSIZ < 4096
#undef BUFSIZ
#define BUFSIZ 4096
#endif
/* If chunksize is 0 copy until EOF */
extern int bb_copyfd(int fd1, int fd2, const off_t chunksize)
{
2003-03-19 09:13:01 +00:00
ssize_t nread;
2002-12-13 08:20:44 +00:00
size_t size;
2003-03-19 09:13:01 +00:00
off_t remaining;
RESERVE_CONFIG_BUFFER(buffer,BUFSIZ);
2002-12-13 08:20:44 +00:00
2003-03-19 09:13:01 +00:00
remaining = size = BUFSIZ;
2002-12-13 08:20:44 +00:00
if (chunksize) {
remaining = chunksize;
}
do {
2003-03-19 09:13:01 +00:00
if (size > remaining) {
size = remaining;
2002-12-13 08:20:44 +00:00
}
2003-03-19 09:13:01 +00:00
if ((nread = safe_read(fd1, buffer, size)) > 0) {
if (bb_full_write(fd2, buffer, nread) < 0) {
bb_perror_msg(bb_msg_write_error); /* match Read error below */
break;
}
if (chunksize && ((remaining -= nread) == 0)) {
return 0;
}
} else if (!nread) {
2002-12-13 08:20:44 +00:00
if (chunksize) {
2003-03-19 09:13:01 +00:00
bb_error_msg("Unable to read all data");
break;
2002-12-13 08:20:44 +00:00
}
2003-03-19 09:13:01 +00:00
return 0;
} else { /* nread < 0 */
bb_perror_msg("Read error"); /* match bb_msg_write_error above */
break;
2002-12-13 08:20:44 +00:00
}
2003-03-19 09:13:01 +00:00
} while (1);
2003-03-19 09:13:01 +00:00
return -1;
}