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 */
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
1999-12-10 13:11:03 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int tee_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
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;
|
2007-01-21 03:00:49 +05:30
|
|
|
char retval;
|
2007-09-27 15:50:47 +05:30
|
|
|
//TODO: make unconditional
|
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
|
2007-08-18 21:02:12 +05:30
|
|
|
retval = getopt32(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
|
|
|
|
2007-01-21 03:00:49 +05:30
|
|
|
mode += (retval & 2); /* Since 'a' is the 2nd option... */
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2007-01-21 03:00:49 +05:30
|
|
|
if (retval & 1) {
|
2008-02-17 04:28:56 +05:30
|
|
|
signal(SIGINT, SIG_IGN); /* TODO - switch to sigaction. (why?) */
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|
2007-01-21 03:00:49 +05:30
|
|
|
retval = EXIT_SUCCESS;
|
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... */
|
2008-02-17 04:28:56 +05:30
|
|
|
signal(SIGPIPE, SIG_IGN);
|
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 {
|
2008-07-15 10:40:15 +05:30
|
|
|
*fp = stdout;
|
|
|
|
if (NOT_LONE_DASH(*argv)) {
|
|
|
|
*fp = fopen_or_warn(*argv, mode);
|
|
|
|
if (*fp == NULL) {
|
|
|
|
retval = EXIT_FAILURE;
|
2008-07-16 13:04:00 +05:30
|
|
|
argv++;
|
2008-07-15 10:40:15 +05:30
|
|
|
continue;
|
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|
2006-11-26 05:20:28 +05:30
|
|
|
*np = *argv++;
|
|
|
|
GOT_NEW_FILE:
|
2008-07-16 13:04:00 +05:30
|
|
|
setbuf(*fp, NULL); /* tee must not buffer output. */
|
|
|
|
fp++;
|
2006-11-26 05:20:28 +05:30
|
|
|
np++;
|
|
|
|
} while (*argv);
|
|
|
|
/* names[0] will be filled later */
|
|
|
|
|
|
|
|
#if ENABLE_FEATURE_TEE_USE_BLOCK_IO
|
2007-09-27 15:50:47 +05:30
|
|
|
while ((c = safe_read(STDIN_FILENO, buf, sizeof(buf))) > 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
|
|
|
}
|