8a4128591c4b8af0adabad0afe2b765b78112f58
[oweals/busybox.git] / 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 = stdout;
54                 if (NOT_LONE_DASH(*argv)) {
55                         *fp = fopen_or_warn(*argv, mode);
56                         if (*fp == NULL) {
57                                 retval = EXIT_FAILURE;
58                                 continue;
59                         }
60                 }
61                 *np = *argv++;
62  GOT_NEW_FILE:
63                 setbuf(*fp++, NULL);    /* tee must not buffer output. */
64                 np++;
65         } while (*argv);
66         /* names[0] will be filled later */
67
68 #if ENABLE_FEATURE_TEE_USE_BLOCK_IO
69         while ((c = safe_read(STDIN_FILENO, buf, sizeof(buf))) > 0) {
70                 fp = files;
71                 do
72                         fwrite(buf, 1, c, *fp++);
73                 while (*fp);
74         }
75         if (c < 0) {            /* Make sure read errors are signaled. */
76                 retval = EXIT_FAILURE;
77         }
78 #else
79         setvbuf(stdout, NULL, _IONBF, 0);
80         while ((c = getchar()) != EOF) {
81                 fp = files;
82                 do
83                         putc(c, *fp++);
84                 while (*fp);
85         }
86 #endif
87
88         /* Now we need to check for i/o errors on stdin and the various
89          * output files.  Since we know that the first entry in the output
90          * file table is stdout, we can save one "if ferror" test by
91          * setting the first entry to stdin and checking stdout error
92          * status with fflush_stdout_and_exit()... although fflush()ing
93          * is unnecessary here. */
94         np = names;
95         fp = files;
96         names[0] = (char *) bb_msg_standard_input;
97         files[0] = stdin;
98         do {    /* Now check for input and output errors. */
99                 /* Checking ferror should be sufficient, but we may want to fclose.
100                  * If we do, remember not to close stdin! */
101                 die_if_ferror(*fp++, *np++);
102         } while (*fp);
103
104         fflush_stdout_and_exit(retval);
105 }