source: MondoRescue/branches/2.2.9/mindi-busybox/coreutils/tee.c@ 2729

Last change on this file since 2729 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File size: 2.6 KB
RevLine 
[821]1/* vi: set sw=4 ts=4: */
2/*
3 * tee implementation for busybox
4 *
5 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
6 *
[2725]7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
[821]8 */
9
10/* BB_AUDIT SUSv3 compliant */
11/* http://www.opengroup.org/onlinepubs/007904975/utilities/tee.html */
12
[1765]13#include "libbb.h"
[821]14
[2725]15int tee_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
[821]16int tee_main(int argc, char **argv)
17{
18 const char *mode = "w\0a";
19 FILE **files;
[1765]20 FILE **fp;
21 char **names;
22 char **np;
23 char retval;
[2725]24//TODO: make unconditional
[1765]25#if ENABLE_FEATURE_TEE_USE_BLOCK_IO
[821]26 ssize_t c;
27# define buf bb_common_bufsiz1
28#else
29 int c;
30#endif
[1765]31 retval = getopt32(argv, "ia"); /* 'a' must be 2nd */
32 argc -= optind;
33 argv += optind;
[821]34
[1765]35 mode += (retval & 2); /* Since 'a' is the 2nd option... */
[821]36
[1765]37 if (retval & 1) {
[2725]38 signal(SIGINT, SIG_IGN); /* TODO - switch to sigaction. (why?) */
[821]39 }
[1765]40 retval = EXIT_SUCCESS;
[821]41 /* gnu tee ignores SIGPIPE in case one of the output files is a pipe
42 * that doesn't consume all its input. Good idea... */
[2725]43 signal(SIGPIPE, SIG_IGN);
[821]44
[2725]45 /* Allocate an array of FILE *'s, with one extra for a sentinel. */
[1765]46 fp = files = xzalloc(sizeof(FILE *) * (argc + 2));
47 np = names = argv - 1;
48
49 files[0] = stdout;
[821]50 goto GOT_NEW_FILE;
51 do {
[2725]52 *fp = stdout;
53 if (NOT_LONE_DASH(*argv)) {
54 *fp = fopen_or_warn(*argv, mode);
55 if (*fp == NULL) {
56 retval = EXIT_FAILURE;
57 argv++;
58 continue;
59 }
[821]60 }
[1765]61 *np = *argv++;
62 GOT_NEW_FILE:
[2725]63 setbuf(*fp, NULL); /* tee must not buffer output. */
64 fp++;
[1765]65 np++;
66 } while (*argv);
67 /* names[0] will be filled later */
[821]68
[1765]69#if ENABLE_FEATURE_TEE_USE_BLOCK_IO
[2725]70 while ((c = safe_read(STDIN_FILENO, buf, sizeof(buf))) > 0) {
[1765]71 fp = files;
72 do
[2725]73 fwrite(buf, 1, c, *fp);
74 while (*++fp);
[821]75 }
[1765]76 if (c < 0) { /* Make sure read errors are signaled. */
[821]77 retval = EXIT_FAILURE;
78 }
79#else
80 setvbuf(stdout, NULL, _IONBF, 0);
81 while ((c = getchar()) != EOF) {
[1765]82 fp = files;
83 do
[2725]84 putc(c, *fp);
85 while (*++fp);
[821]86 }
87#endif
88
89 /* Now we need to check for i/o errors on stdin and the various
90 * output files. Since we know that the first entry in the output
91 * file table is stdout, we can save one "if ferror" test by
92 * setting the first entry to stdin and checking stdout error
[1765]93 * status with fflush_stdout_and_exit()... although fflush()ing
[821]94 * is unnecessary here. */
[1765]95 np = names;
96 fp = files;
97 names[0] = (char *) bb_msg_standard_input;
98 files[0] = stdin;
99 do { /* Now check for input and output errors. */
[821]100 /* Checking ferror should be sufficient, but we may want to fclose.
101 * If we do, remember not to close stdin! */
[1765]102 die_if_ferror(*fp++, *np++);
103 } while (*fp);
[821]104
[1765]105 fflush_stdout_and_exit(retval);
[821]106}
Note: See TracBrowser for help on using the repository browser.