Initial public busybox maemo commit, 3:1.10.2.legal-1osso12
[busybox4maemo] / coreutils / tee.c
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  *
7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8  */
9
10 /* BB_AUDIT SUSv3 compliant */
11 /* http://www.opengroup.org/onlinepubs/007904975/utilities/tee.html */
12
13 #include "libbb.h"
14 #include <signal.h>
15
16 int tee_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
17 int tee_main(int argc, char **argv)
18 {
19         const char *mode = "w\0a";
20         FILE **files;
21         FILE **fp;
22         char **names;
23         char **np;
24         char retval;
25 //TODO: make unconditional
26 #if ENABLE_FEATURE_TEE_USE_BLOCK_IO
27         ssize_t c;
28 # define buf bb_common_bufsiz1
29 #else
30         int c;
31 #endif
32         retval = getopt32(argv, "ia");  /* 'a' must be 2nd */
33         argc -= optind;
34         argv += optind;
35
36         mode += (retval & 2);   /* Since 'a' is the 2nd option... */
37
38         if (retval & 1) {
39                 signal(SIGINT, SIG_IGN); /* TODO - switch to sigaction. (why?) */
40         }
41         retval = EXIT_SUCCESS;
42         /* gnu tee ignores SIGPIPE in case one of the output files is a pipe
43          * that doesn't consume all its input.  Good idea... */
44         signal(SIGPIPE, SIG_IGN);
45
46         /* Allocate an array of FILE *'s, with one extra for a sentinal. */
47         fp = files = xzalloc(sizeof(FILE *) * (argc + 2));
48         np = names = argv - 1;
49
50         files[0] = stdout;
51         goto GOT_NEW_FILE;
52         do {
53                 *fp = fopen_or_warn(*argv, mode);
54                 if (*fp == NULL) {
55                         retval = EXIT_FAILURE;
56                         continue;
57                 }
58                 *np = *argv++;
59  GOT_NEW_FILE:
60                 setbuf(*fp++, NULL);    /* tee must not buffer output. */
61                 np++;
62         } while (*argv);
63         /* names[0] will be filled later */
64
65 #if ENABLE_FEATURE_TEE_USE_BLOCK_IO
66         while ((c = safe_read(STDIN_FILENO, buf, sizeof(buf))) > 0) {
67                 fp = files;
68                 do
69                         fwrite(buf, 1, c, *fp++);
70                 while (*fp);
71         }
72         if (c < 0) {            /* Make sure read errors are signaled. */
73                 retval = EXIT_FAILURE;
74         }
75 #else
76         setvbuf(stdout, NULL, _IONBF, 0);
77         while ((c = getchar()) != EOF) {
78                 fp = files;
79                 do
80                         putc(c, *fp++);
81                 while (*fp);
82         }
83 #endif
84
85         /* Now we need to check for i/o errors on stdin and the various
86          * output files.  Since we know that the first entry in the output
87          * file table is stdout, we can save one "if ferror" test by
88          * setting the first entry to stdin and checking stdout error
89          * status with fflush_stdout_and_exit()... although fflush()ing
90          * is unnecessary here. */
91         np = names;
92         fp = files;
93         names[0] = (char *) bb_msg_standard_input;
94         files[0] = stdin;
95         do {    /* Now check for input and output errors. */
96                 /* Checking ferror should be sufficient, but we may want to fclose.
97                  * If we do, remember not to close stdin! */
98                 die_if_ferror(*fp++, *np++);
99         } while (*fp);
100
101         fflush_stdout_and_exit(retval);
102 }