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