Annotate localizable strings with _(...). From Franc,ois.
[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, 1995 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
16    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, 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 "version.h"
28 #include "error.h"
29
30 char *xmalloc ();
31 int full_write ();
32
33 static int tee ();
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 /* If non-zero, display usage information and exit.  */
45 static int show_help;
46
47 /* If non-zero, print the version on standard output and exit.  */
48 static int show_version;
49
50 static struct option const long_options[] =
51 {
52   {"append", no_argument, NULL, 'a'},
53   {"help", no_argument, &show_help, 1},
54   {"ignore-interrupts", no_argument, NULL, 'i'},
55   {"version", no_argument, &show_version, 1},
56   {NULL, 0, NULL, 0}
57 };
58
59 static void
60 usage (status)
61      int status;
62 {
63   if (status != 0)
64     fprintf (stderr, _("Try `%s --help' for more information.\n"),
65              program_name);
66   else
67     {
68       printf (_("Usage: %s [OPTION]... [FILE]...\n"), program_name);
69       printf (_("\
70 Copy standard input to each FILE, and also to standard output.\n\
71 \n\
72   -a, --append              append to the given FILEs, do not overwrite\n\
73   -i, --ignore-interrupts   ignore interrupt signals\n\
74       --help                display this help and exit\n\
75       --version             output version information and exit\n\
76 "));
77     }
78   exit (status);
79 }
80
81 void
82 main (argc, argv)
83      int argc;
84      char **argv;
85 {
86   int errs;
87   int optc;
88         
89   program_name = argv[0];
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", version_string);
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 (nfiles, files)
151      int nfiles;
152      const char **files;
153 {
154   int *descriptors;
155   char buffer[BUFSIZ];
156   register int bytes_read, i, ret = 0, mode;
157
158   descriptors = (int *) xmalloc ((nfiles + 1) * sizeof (int));
159
160   mode = O_WRONLY | O_CREAT;
161   if (append)
162     mode |= O_APPEND;
163   else
164     mode |= O_TRUNC;
165
166   /* Move all the names `up' one in the argv array to make room for
167      the entry for standard output.  This writes into argv[argc].  */
168   for (i = nfiles; i >= 1; i--)
169     files[i] = files[i - 1];
170
171   /* In the array of NFILES + 1 descriptors, make
172      the first one correspond to standard output.   */
173   descriptors[0] = 1;
174   files[0] = _("standard output");
175
176   for (i = 1; i <= nfiles; i++)
177     {
178       descriptors[i] = open (files[i], mode, 0666);
179       if (descriptors[i] == -1)
180         {
181           error (0, errno, "%s", files[i]);
182           ret = 1;
183         }
184     }
185
186   while (1)
187     {
188       bytes_read = read (0, buffer, sizeof buffer);
189 #ifdef EINTR
190       if (bytes_read < 0 && errno == EINTR)
191         continue;
192 #endif
193       if (bytes_read <= 0)
194         break;
195
196       /* Write to all NFILES + 1 descriptors.
197          Standard output is the first one.  */
198       for (i = 0; i <= nfiles; i++)
199         {
200           if (descriptors[i] != -1
201               && full_write (descriptors[i], buffer, bytes_read) < 0)
202             {
203               error (0, errno, "%s", files[i]);
204               /* Don't close stdout.  That's done in main.  */
205               if (descriptors[i] != 1)
206                 close (descriptors[i]);
207               descriptors[i] = -1;
208               ret = 1;
209             }
210         }
211     }
212
213   if (bytes_read == -1)
214     {
215       error (0, errno, _("read error"));
216       ret = 1;
217     }
218
219   /* Close the files, but not standard output.  */
220   for (i = 1; i <= nfiles; i++)
221     if (descriptors[i] != -1 && close (descriptors[i]) != 0)
222       {
223         error (0, errno, "%s", files[i]);
224         ret = 1;
225       }
226
227   free (descriptors);
228
229   return ret;
230 }