move help text from include/usage.src.h to debianutils/*.c e2fsprogs/*.c editors...
[platform/upstream/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 source tree.
8  */
9
10 /* BB_AUDIT SUSv3 compliant */
11 /* http://www.opengroup.org/onlinepubs/007904975/utilities/tee.html */
12
13 //usage:#define tee_trivial_usage
14 //usage:       "[-ai] [FILE]..."
15 //usage:#define tee_full_usage "\n\n"
16 //usage:       "Copy stdin to each FILE, and also to stdout\n"
17 //usage:     "\nOptions:"
18 //usage:     "\n        -a      Append to the given FILEs, don't overwrite"
19 //usage:     "\n        -i      Ignore interrupt signals (SIGINT)"
20 //usage:
21 //usage:#define tee_example_usage
22 //usage:       "$ echo \"Hello\" | tee /tmp/foo\n"
23 //usage:       "$ cat /tmp/foo\n"
24 //usage:       "Hello\n"
25
26 #include "libbb.h"
27
28 int tee_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
29 int tee_main(int argc, char **argv)
30 {
31         const char *mode = "w\0a";
32         FILE **files;
33         FILE **fp;
34         char **names;
35         char **np;
36         char retval;
37 //TODO: make unconditional
38 #if ENABLE_FEATURE_TEE_USE_BLOCK_IO
39         ssize_t c;
40 # define buf bb_common_bufsiz1
41 #else
42         int c;
43 #endif
44         retval = getopt32(argv, "ia");  /* 'a' must be 2nd */
45         argc -= optind;
46         argv += optind;
47
48         mode += (retval & 2);   /* Since 'a' is the 2nd option... */
49
50         if (retval & 1) {
51                 signal(SIGINT, SIG_IGN); /* TODO - switch to sigaction. (why?) */
52         }
53         retval = EXIT_SUCCESS;
54         /* gnu tee ignores SIGPIPE in case one of the output files is a pipe
55          * that doesn't consume all its input.  Good idea... */
56         signal(SIGPIPE, SIG_IGN);
57
58         /* Allocate an array of FILE *'s, with one extra for a sentinel. */
59         fp = files = xzalloc(sizeof(FILE *) * (argc + 2));
60         np = names = argv - 1;
61
62         files[0] = stdout;
63         goto GOT_NEW_FILE;
64         do {
65                 *fp = stdout;
66                 if (NOT_LONE_DASH(*argv)) {
67                         *fp = fopen_or_warn(*argv, mode);
68                         if (*fp == NULL) {
69                                 retval = EXIT_FAILURE;
70                                 argv++;
71                                 continue;
72                         }
73                 }
74                 *np = *argv++;
75  GOT_NEW_FILE:
76                 setbuf(*fp, NULL);      /* tee must not buffer output. */
77                 fp++;
78                 np++;
79         } while (*argv);
80         /* names[0] will be filled later */
81
82 #if ENABLE_FEATURE_TEE_USE_BLOCK_IO
83         while ((c = safe_read(STDIN_FILENO, buf, sizeof(buf))) > 0) {
84                 fp = files;
85                 do
86                         fwrite(buf, 1, c, *fp);
87                 while (*++fp);
88         }
89         if (c < 0) {            /* Make sure read errors are signaled. */
90                 retval = EXIT_FAILURE;
91         }
92 #else
93         setvbuf(stdout, NULL, _IONBF, 0);
94         while ((c = getchar()) != EOF) {
95                 fp = files;
96                 do
97                         putc(c, *fp);
98                 while (*++fp);
99         }
100 #endif
101
102         /* Now we need to check for i/o errors on stdin and the various
103          * output files.  Since we know that the first entry in the output
104          * file table is stdout, we can save one "if ferror" test by
105          * setting the first entry to stdin and checking stdout error
106          * status with fflush_stdout_and_exit()... although fflush()ing
107          * is unnecessary here. */
108         np = names;
109         fp = files;
110         names[0] = (char *) bb_msg_standard_input;
111         files[0] = stdin;
112         do {    /* Now check for input and output errors. */
113                 /* Checking ferror should be sufficient, but we may want to fclose.
114                  * If we do, remember not to close stdin! */
115                 die_if_ferror(*fp++, *np++);
116         } while (*fp);
117
118         fflush_stdout_and_exit(retval);
119 }