Include long-options.h.
[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-1999 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 "closeout.h"
28 #include "error.h"
29 #include "long-options.h"
30
31 int full_write ();
32
33 static int tee PARAMS ((int nfiles, const char **files));
34
35 /* If nonzero, append to output files rather than truncating them. */
36 static int append;
37
38 /* If nonzero, ignore interrupts. */
39 static int ignore_interrupts;
40
41 /* The name that this program was run with. */
42 char *program_name;
43
44 static struct option const long_options[] =
45 {
46   {"append", no_argument, NULL, 'a'},
47   {"ignore-interrupts", no_argument, NULL, 'i'},
48   {NULL, 0, NULL, 0}
49 };
50
51 void
52 usage (int status)
53 {
54   if (status != 0)
55     fprintf (stderr, _("Try `%s --help' for more information.\n"),
56              program_name);
57   else
58     {
59       printf (_("Usage: %s [OPTION]... [FILE]...\n"), program_name);
60       printf (_("\
61 Copy standard input to each FILE, and also to standard output.\n\
62 \n\
63   -a, --append              append to the given FILEs, do not overwrite\n\
64   -i, --ignore-interrupts   ignore interrupt signals\n\
65       --help                display this help and exit\n\
66       --version             output version information and exit\n\
67 "));
68       puts (_("\nReport bugs to <bug-sh-utils@gnu.org>."));
69     }
70   exit (status);
71 }
72
73 int
74 main (int argc, char **argv)
75 {
76   int errs;
77   int optc;
78
79   program_name = argv[0];
80   setlocale (LC_ALL, "");
81   bindtextdomain (PACKAGE, LOCALEDIR);
82   textdomain (PACKAGE);
83
84   parse_long_options (argc, argv, "tee", GNU_PACKAGE, VERSION,
85                       "Mike Parker, Richard M. Stallman, and David MacKenzie",
86                       usage);
87
88   append = 0;
89   ignore_interrupts = 0;
90
91   while ((optc = getopt_long (argc, argv, "ai", long_options, NULL)) != -1)
92     {
93       switch (optc)
94         {
95         case 0:
96           break;
97
98         case 'a':
99           append = 1;
100           break;
101
102         case 'i':
103           ignore_interrupts = 1;
104           break;
105
106         default:
107           usage (1);
108         }
109     }
110
111   if (ignore_interrupts)
112     {
113 #ifdef _POSIX_SOURCE
114       struct sigaction sigact;
115
116       sigact.sa_handler = SIG_IGN;
117       sigemptyset (&sigact.sa_mask);
118       sigact.sa_flags = 0;
119       sigaction (SIGINT, &sigact, NULL);
120 #else                           /* !_POSIX_SOURCE */
121       signal (SIGINT, SIG_IGN);
122 #endif                          /* _POSIX_SOURCE */
123     }
124
125   /* Don't let us be killed if one of the output files is a pipe that
126      doesn't consume all its input.  */
127 #ifdef _POSIX_SOURCE
128   {
129     struct sigaction sigact;
130
131     sigact.sa_handler = SIG_IGN;
132     sigemptyset (&sigact.sa_mask);
133     sigact.sa_flags = 0;
134     sigaction (SIGPIPE, &sigact, NULL);
135   }
136 #else
137   signal (SIGPIPE, SIG_IGN);
138 #endif
139
140   errs = tee (argc - optind, (const char **) &argv[optind]);
141   if (close (0) != 0)
142     error (1, errno, _("standard input"));
143
144   close_stdout ();
145
146   exit (errs);
147 }
148
149 /* Copy the standard input into each of the NFILES files in FILES
150    and into the standard output.
151    Return 0 if successful, 1 if any errors occur. */
152
153 static int
154 tee (int nfiles, const char **files)
155 {
156   int *descriptors;
157   char buffer[BUFSIZ];
158   register int bytes_read, i, ret = 0, mode;
159
160   descriptors = (int *) xmalloc ((nfiles + 1) * sizeof (int));
161
162   mode = O_WRONLY | O_CREAT;
163   if (append)
164     mode |= O_APPEND;
165   else
166     mode |= O_TRUNC;
167
168   /* Move all the names `up' one in the argv array to make room for
169      the entry for standard output.  This writes into argv[argc].  */
170   for (i = nfiles; i >= 1; i--)
171     files[i] = files[i - 1];
172
173   /* In the array of NFILES + 1 descriptors, make
174      the first one correspond to standard output.   */
175   descriptors[0] = 1;
176   files[0] = _("standard output");
177
178   for (i = 1; i <= nfiles; i++)
179     {
180       descriptors[i] = open (files[i], mode, 0666);
181       if (descriptors[i] == -1)
182         {
183           error (0, errno, "%s", files[i]);
184           ret = 1;
185         }
186     }
187
188   while (1)
189     {
190       bytes_read = read (0, buffer, sizeof buffer);
191 #ifdef EINTR
192       if (bytes_read < 0 && errno == EINTR)
193         continue;
194 #endif
195       if (bytes_read <= 0)
196         break;
197
198       /* Write to all NFILES + 1 descriptors.
199          Standard output is the first one.  */
200       for (i = 0; i <= nfiles; i++)
201         {
202           if (descriptors[i] != -1
203               && full_write (descriptors[i], buffer, bytes_read) < 0)
204             {
205               error (0, errno, "%s", files[i]);
206               /* Don't close stdout.  That's done in main.  */
207               if (descriptors[i] != 1)
208                 close (descriptors[i]);
209               descriptors[i] = -1;
210               ret = 1;
211             }
212         }
213     }
214
215   if (bytes_read == -1)
216     {
217       error (0, errno, _("read error"));
218       ret = 1;
219     }
220
221   /* Close the files, but not standard output.  */
222   for (i = 1; i <= nfiles; i++)
223     if (descriptors[i] != -1 && close (descriptors[i]) != 0)
224       {
225         error (0, errno, "%s", files[i]);
226         ret = 1;
227       }
228
229   free (descriptors);
230
231   return ret;
232 }