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