source: MondoRescue/branches/2.2.5/mindi-busybox/coreutils/tee.c@ 2183

Last change on this file since 2183 was 1765, checked in by Bruno Cornec, 17 years ago

Update to busybox 1.7.2

File size: 2.5 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 *
[1765]7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
[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#include <signal.h>
15
[1765]16int tee_main(int argc, char **argv);
[821]17int tee_main(int argc, char **argv)
18{
19 const char *mode = "w\0a";
20 FILE **files;
[1765]21 FILE **fp;
22 char **names;
23 char **np;
24 char retval;
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) {
38 signal(SIGINT, SIG_IGN); /* TODO - switch to sigaction. */
[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... */
[1765]43 signal(SIGPIPE, SIG_IGN); /* TODO - switch to sigaction. */
[821]44
45 /* Allocate an array of FILE *'s, with one extra for a sentinal. */
[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 {
[1765]52 *fp = fopen_or_warn(*argv, mode);
53 if (*fp == NULL) {
[821]54 retval = EXIT_FAILURE;
55 continue;
56 }
[1765]57 *np = *argv++;
58 GOT_NEW_FILE:
59 setbuf(*fp++, NULL); /* tee must not buffer output. */
60 np++;
61 } while (*argv);
62 /* names[0] will be filled later */
[821]63
[1765]64#if ENABLE_FEATURE_TEE_USE_BLOCK_IO
[821]65 while ((c = safe_read(STDIN_FILENO, buf, BUFSIZ)) > 0) {
[1765]66 fp = files;
67 do
68 fwrite(buf, 1, c, *fp++);
69 while (*fp);
[821]70 }
[1765]71 if (c < 0) { /* Make sure read errors are signaled. */
[821]72 retval = EXIT_FAILURE;
73 }
74#else
75 setvbuf(stdout, NULL, _IONBF, 0);
76 while ((c = getchar()) != EOF) {
[1765]77 fp = files;
78 do
79 putc(c, *fp++);
80 while (*fp);
[821]81 }
82#endif
83
84 /* Now we need to check for i/o errors on stdin and the various
85 * output files. Since we know that the first entry in the output
86 * file table is stdout, we can save one "if ferror" test by
87 * setting the first entry to stdin and checking stdout error
[1765]88 * status with fflush_stdout_and_exit()... although fflush()ing
[821]89 * is unnecessary here. */
[1765]90 np = names;
91 fp = files;
92 names[0] = (char *) bb_msg_standard_input;
93 files[0] = stdin;
94 do { /* Now check for input and output errors. */
[821]95 /* Checking ferror should be sufficient, but we may want to fclose.
96 * If we do, remember not to close stdin! */
[1765]97 die_if_ferror(*fp++, *np++);
98 } while (*fp);
[821]99
[1765]100 fflush_stdout_and_exit(retval);
[821]101}
Note: See TracBrowser for help on using the repository browser.