(main): Do not ignore SIGPIPE, as POSIX 1003.1-2001
[platform/upstream/coreutils.git] / src / tee.c
1 /* tee - read from standard input and write to standard output and files.
2    Copyright (C) 85,1990-2004 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* Mike Parker, Richard M. Stallman, and David MacKenzie */
19
20 #include <config.h>
21 #include <stdio.h>
22 #include <sys/types.h>
23 #include <signal.h>
24 #include <getopt.h>
25
26 #include "system.h"
27 #include "error.h"
28
29 /* The official name of this program (e.g., no `g' prefix).  */
30 #define PROGRAM_NAME "tee"
31
32 #define AUTHORS "Mike Parker", "Richard M. Stallman", "David MacKenzie"
33
34 static int tee (int nfiles, const char **files);
35
36 /* If nonzero, append to output files rather than truncating them. */
37 static int append;
38
39 /* If nonzero, ignore interrupts. */
40 static int ignore_interrupts;
41
42 /* The name that this program was run with. */
43 char *program_name;
44
45 static struct option const long_options[] =
46 {
47   {"append", no_argument, NULL, 'a'},
48   {"ignore-interrupts", no_argument, NULL, 'i'},
49   {GETOPT_HELP_OPTION_DECL},
50   {GETOPT_VERSION_OPTION_DECL},
51   {NULL, 0, NULL, 0}
52 };
53
54 void
55 usage (int status)
56 {
57   if (status != EXIT_SUCCESS)
58     fprintf (stderr, _("Try `%s --help' for more information.\n"),
59              program_name);
60   else
61     {
62       printf (_("Usage: %s [OPTION]... [FILE]...\n"), program_name);
63       fputs (_("\
64 Copy standard input to each FILE, and also to standard output.\n\
65 \n\
66   -a, --append              append to the given FILEs, do not overwrite\n\
67   -i, --ignore-interrupts   ignore interrupt signals\n\
68 "), stdout);
69       fputs (HELP_OPTION_DESCRIPTION, stdout);
70       fputs (VERSION_OPTION_DESCRIPTION, stdout);
71       printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
72     }
73   exit (status);
74 }
75
76 int
77 main (int argc, char **argv)
78 {
79   int errs;
80   int optc;
81
82   initialize_main (&argc, &argv);
83   program_name = argv[0];
84   setlocale (LC_ALL, "");
85   bindtextdomain (PACKAGE, LOCALEDIR);
86   textdomain (PACKAGE);
87
88   atexit (close_stdout);
89
90   append = 0;
91   ignore_interrupts = 0;
92
93   while ((optc = getopt_long (argc, argv, "ai", long_options, NULL)) != -1)
94     {
95       switch (optc)
96         {
97         case 0:
98           break;
99
100         case 'a':
101           append = 1;
102           break;
103
104         case 'i':
105           ignore_interrupts = 1;
106           break;
107
108         case_GETOPT_HELP_CHAR;
109
110         case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
111
112         default:
113           usage (EXIT_FAILURE);
114         }
115     }
116
117   if (ignore_interrupts)
118     signal (SIGINT, SIG_IGN);
119
120   /* Do *not* warn if tee is given no file arguments.
121      POSIX requires that it work when given no arguments.  */
122
123   errs = tee (argc - optind, (const char **) &argv[optind]);
124   if (close (STDIN_FILENO) != 0)
125     error (EXIT_FAILURE, errno, _("standard input"));
126
127   exit (errs);
128 }
129
130 /* Copy the standard input into each of the NFILES files in FILES
131    and into the standard output.
132    Return 0 if successful, 1 if any errors occur. */
133
134 static int
135 tee (int nfiles, const char **files)
136 {
137   FILE **descriptors;
138   char buffer[BUFSIZ];
139   int bytes_read, i;
140   int ret = 0;
141   const char *mode_string = (append ? "a" : "w");
142
143   descriptors = xnmalloc (nfiles + 1, sizeof *descriptors);
144
145   /* Move all the names `up' one in the argv array to make room for
146      the entry for standard output.  This writes into argv[argc].  */
147   for (i = nfiles; i >= 1; i--)
148     files[i] = files[i - 1];
149
150   SET_BINARY2 (0, 1);
151
152   /* In the array of NFILES + 1 descriptors, make
153      the first one correspond to standard output.   */
154   descriptors[0] = stdout;
155   files[0] = _("standard output");
156   SETVBUF (stdout, NULL, _IONBF, 0);
157
158   for (i = 1; i <= nfiles; i++)
159     {
160       descriptors[i] = fopen (files[i], mode_string);
161       if (descriptors[i] == NULL)
162         {
163           error (0, errno, "%s", files[i]);
164           ret = 1;
165         }
166       else
167         {
168           SETVBUF (descriptors[i], NULL, _IONBF, 0);
169           SET_BINARY (fileno (descriptors[i]));
170         }
171     }
172
173   while (1)
174     {
175       bytes_read = read (0, buffer, sizeof buffer);
176 #ifdef EINTR
177       if (bytes_read < 0 && errno == EINTR)
178         continue;
179 #endif
180       if (bytes_read <= 0)
181         break;
182
183       /* Write to all NFILES + 1 descriptors.
184          Standard output is the first one.  */
185       for (i = 0; i <= nfiles; i++)
186         if (descriptors[i]
187             && fwrite (buffer, 1, bytes_read, descriptors[i]) != bytes_read)
188           {
189             error (0, errno, "%s", files[i]);
190             descriptors[i] = NULL;
191             ret = 1;
192           }
193     }
194
195   if (bytes_read == -1)
196     {
197       error (0, errno, _("read error"));
198       ret = 1;
199     }
200
201   /* Close the files, but not standard output.  */
202   for (i = 1; i <= nfiles; i++)
203     if (descriptors[i] && fclose (descriptors[i]) != 0)
204       {
205         error (0, errno, "%s", files[i]);
206         ret = 1;
207       }
208
209   free (descriptors);
210
211   return ret;
212 }