2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-12-10 10:57:16 +05:30
|
|
|
/*
|
2003-03-19 14:43:01 +05:30
|
|
|
* tee implementation for busybox
|
1999-12-10 10:57:16 +05:30
|
|
|
*
|
2003-03-19 14:43:01 +05:30
|
|
|
* Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
|
1999-12-10 10:57:16 +05:30
|
|
|
*
|
2006-07-12 13:26:04 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
1999-12-10 10:57:16 +05:30
|
|
|
*/
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
/* BB_AUDIT SUSv3 compliant */
|
|
|
|
/* http://www.opengroup.org/onlinepubs/007904975/utilities/tee.html */
|
|
|
|
|
|
|
|
#include "busybox.h"
|
2006-08-29 05:01:54 +05:30
|
|
|
#include <signal.h>
|
1999-12-10 13:11:03 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
int tee_main(int argc, char **argv)
|
1999-12-10 10:57:16 +05:30
|
|
|
{
|
2003-03-19 14:43:01 +05:30
|
|
|
const char *mode = "w\0a";
|
2000-08-28 09:23:27 +05:30
|
|
|
FILE **files;
|
2006-11-26 05:20:28 +05:30
|
|
|
FILE **fp;
|
|
|
|
char **names;
|
|
|
|
char **np;
|
2003-03-19 14:43:01 +05:30
|
|
|
int flags;
|
|
|
|
int retval = EXIT_SUCCESS;
|
2006-11-26 05:20:28 +05:30
|
|
|
#if ENABLE_FEATURE_TEE_USE_BLOCK_IO
|
2004-05-26 20:51:19 +05:30
|
|
|
ssize_t c;
|
2005-10-15 15:53:55 +05:30
|
|
|
# define buf bb_common_bufsiz1
|
2003-03-19 14:43:01 +05:30
|
|
|
#else
|
|
|
|
int c;
|
|
|
|
#endif
|
2006-10-04 02:30:06 +05:30
|
|
|
flags = getopt32(argc, argv, "ia"); /* 'a' must be 2nd */
|
2006-11-26 05:20:28 +05:30
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2003-03-19 14:43:01 +05:30
|
|
|
|
|
|
|
mode += (flags & 2); /* Since 'a' is the 2nd option... */
|
|
|
|
|
|
|
|
if (flags & 1) {
|
2006-11-26 05:20:28 +05:30
|
|
|
signal(SIGINT, SIG_IGN); /* TODO - switch to sigaction. */
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|
|
|
|
/* gnu tee ignores SIGPIPE in case one of the output files is a pipe
|
|
|
|
* that doesn't consume all its input. Good idea... */
|
2006-11-26 05:20:28 +05:30
|
|
|
signal(SIGPIPE, SIG_IGN); /* TODO - switch to sigaction. */
|
2000-08-28 09:23:27 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
/* Allocate an array of FILE *'s, with one extra for a sentinal. */
|
2006-11-26 05:20:28 +05:30
|
|
|
fp = files = xzalloc(sizeof(FILE *) * (argc + 2));
|
|
|
|
np = names = argv - 1;
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2006-11-26 05:20:28 +05:30
|
|
|
files[0] = stdout;
|
|
|
|
goto GOT_NEW_FILE;
|
2003-03-19 14:43:01 +05:30
|
|
|
do {
|
2006-11-26 05:20:28 +05:30
|
|
|
*fp = fopen_or_warn(*argv, mode);
|
|
|
|
if (*fp == NULL) {
|
2003-03-19 14:43:01 +05:30
|
|
|
retval = EXIT_FAILURE;
|
|
|
|
continue;
|
|
|
|
}
|
2006-11-26 05:20:28 +05:30
|
|
|
*np = *argv++;
|
|
|
|
GOT_NEW_FILE:
|
|
|
|
setbuf(*fp++, NULL); /* tee must not buffer output. */
|
|
|
|
np++;
|
|
|
|
} while (*argv);
|
|
|
|
/* names[0] will be filled later */
|
|
|
|
|
|
|
|
#if ENABLE_FEATURE_TEE_USE_BLOCK_IO
|
2004-05-26 20:51:19 +05:30
|
|
|
while ((c = safe_read(STDIN_FILENO, buf, BUFSIZ)) > 0) {
|
2006-11-26 05:20:28 +05:30
|
|
|
fp = files;
|
|
|
|
do
|
|
|
|
fwrite(buf, 1, c, *fp++);
|
|
|
|
while (*fp);
|
1999-12-10 10:57:16 +05:30
|
|
|
}
|
2006-11-26 05:20:28 +05:30
|
|
|
if (c < 0) { /* Make sure read errors are signaled. */
|
2004-05-26 20:51:19 +05:30
|
|
|
retval = EXIT_FAILURE;
|
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
#else
|
2003-10-22 15:48:24 +05:30
|
|
|
setvbuf(stdout, NULL, _IONBF, 0);
|
2003-03-19 14:43:01 +05:30
|
|
|
while ((c = getchar()) != EOF) {
|
2006-11-26 05:20:28 +05:30
|
|
|
fp = files;
|
|
|
|
do
|
|
|
|
putc(c, *fp++);
|
|
|
|
while (*fp);
|
1999-12-10 13:55:07 +05:30
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
#endif
|
1999-12-10 10:57:16 +05:30
|
|
|
|
2004-03-15 13:59:22 +05:30
|
|
|
/* Now we need to check for i/o errors on stdin and the various
|
2003-03-19 14:43:01 +05:30
|
|
|
* output files. Since we know that the first entry in the output
|
|
|
|
* file table is stdout, we can save one "if ferror" test by
|
|
|
|
* setting the first entry to stdin and checking stdout error
|
2006-10-27 04:51:47 +05:30
|
|
|
* status with fflush_stdout_and_exit()... although fflush()ing
|
2003-03-19 14:43:01 +05:30
|
|
|
* is unnecessary here. */
|
2006-11-26 05:20:28 +05:30
|
|
|
np = names;
|
|
|
|
fp = files;
|
|
|
|
names[0] = (char *) bb_msg_standard_input;
|
|
|
|
files[0] = stdin;
|
|
|
|
do { /* Now check for input and output errors. */
|
2003-03-19 14:43:01 +05:30
|
|
|
/* Checking ferror should be sufficient, but we may want to fclose.
|
|
|
|
* If we do, remember not to close stdin! */
|
2006-11-26 05:20:28 +05:30
|
|
|
die_if_ferror(*fp++, *np++);
|
|
|
|
} while (*fp);
|
1999-12-10 10:57:16 +05:30
|
|
|
|
2006-10-27 04:51:47 +05:30
|
|
|
fflush_stdout_and_exit(retval);
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|