merge with 1.8.1h
[platform/upstream/coreutils.git] / src / tee.c
1 /* tee - read from standard input and write to standard output and files.
2    Copyright (C) 1985, 1990, 1991 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 #ifdef HAVE_CONFIG_H
21 #if defined (CONFIG_BROKETS)
22 /* We use <config.h> instead of "config.h" so that a compilation
23    using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
24    (which it would do because it found this file in $srcdir).  */
25 #include <config.h>
26 #else
27 #include "config.h"
28 #endif
29 #endif
30
31 #include <stdio.h>
32 #include <sys/types.h>
33 #include <signal.h>
34 #include <getopt.h>
35
36 #include "system.h"
37 #include "version.h"
38
39 char *xmalloc ();
40 void error ();
41 void xwrite ();
42
43 static int tee ();
44
45 /* If nonzero, append to output files rather than truncating them. */
46 static int append;
47
48 /* If nonzero, ignore interrupts. */
49 static int ignore_interrupts;
50
51 /* The name that this program was run with. */
52 char *program_name;
53
54 /* If non-zero, display usage information and exit.  */
55 static int show_help;
56
57 /* If non-zero, print the version on standard output and exit.  */
58 static int show_version;
59
60 static struct option const long_options[] =
61 {
62   {"append", no_argument, NULL, 'a'},
63   {"help", no_argument, &show_help, 1},
64   {"ignore-interrupts", no_argument, NULL, 'i'},
65   {"version", no_argument, &show_version, 1},
66   {NULL, 0, NULL, 0}
67 };
68
69 static void
70 usage (status)
71      int status;
72 {
73   fprintf (status == 0 ? stdout : stderr, "\
74 Usage: %s [OPTION]... [FILE]...\n\
75 ",
76            program_name);
77
78   if (status != 0)
79     fprintf (stderr, "Try `%s --help' for more information.\n",
80              program_name);
81   else
82
83     printf ("\
84 \n\
85   -a, --append              append to the given FILEs, do not overwrite\n\
86   -i, --ignore-interrupts   ignore interrupt signals\n\
87       --help                display this help and exit\n\
88       --version             output version information and exit\n\
89 ");
90
91   exit (status);
92 }
93
94 void
95 main (argc, argv)
96      int argc;
97      char **argv;
98 {
99   int errs;
100   int optc;
101         
102   program_name = argv[0];
103   append = 0;
104   ignore_interrupts = 0;
105
106   while ((optc = getopt_long (argc, argv, "ai", long_options, (int *) 0))
107          != EOF)
108     {
109       switch (optc)
110         {
111         case 0:
112           break;
113
114         case 'a':
115           append = 1;
116           break;
117
118         case 'i':
119           ignore_interrupts = 1;
120           break;
121
122         default:
123           usage (1);
124         }
125     }
126
127   if (show_version)
128     {
129       printf ("%s\n", version_string);
130       exit (0);
131     }
132
133   if (show_help)
134     usage (0);
135
136   if (ignore_interrupts)
137     {
138 #ifdef _POSIX_VERSION
139       struct sigaction sigact;
140
141       sigact.sa_handler = SIG_IGN;
142       sigemptyset (&sigact.sa_mask);
143       sigact.sa_flags = 0;
144       sigaction (SIGINT, &sigact, NULL);
145 #else                           /* !_POSIX_VERSION */
146       signal (SIGINT, SIG_IGN);
147 #endif                          /* _POSIX_VERSION */
148     }
149
150   errs = tee (argc - optind, &argv[optind]);
151   if (close (0) != 0)
152     error (1, errno, "standard input");
153   if (close (1) != 0)
154     error (1, errno, "standard output");
155   exit (errs);
156 }
157
158 /* Copy the standard input into each of the NFILES files in FILES
159    and into the standard output.
160    Return 0 if successful, 1 if any errors occur. */
161
162 static int
163 tee (nfiles, files)
164      int nfiles;
165      char **files;
166 {
167   int *descriptors;
168   char buffer[BUFSIZ];
169   register int bytes_read, i, ret = 0, mode;
170
171   if (nfiles)
172     descriptors = (int *) xmalloc (nfiles * sizeof (int));
173   mode = O_WRONLY | O_CREAT;
174   if (append)
175     mode |= O_APPEND;
176   else
177     mode |= O_TRUNC;
178
179   for (i = 0; i < nfiles; i++)
180     {
181       descriptors[i] = open (files[i], mode, 0666);
182       if (descriptors[i] == -1)
183         {
184           error (0, errno, "%s", files[i]);
185           ret = 1;
186         }
187     }
188
189   while ((bytes_read = read (0, buffer, sizeof buffer)) > 0)
190     {
191       xwrite (1, buffer, bytes_read);
192       for (i = 0; i < nfiles; i++)
193         if (descriptors[i] != -1)
194           xwrite (descriptors[i], buffer, bytes_read);
195     }
196   if (bytes_read == -1)
197     {
198       error (0, errno, "read error");
199       ret = 1;
200     }
201
202   for (i = 0; i < nfiles; i++)
203     if (descriptors[i] != -1 && close (descriptors[i]) != 0)
204       {
205         error (0, errno, "%s", files[i]);
206         ret = 1;
207       }
208
209   if (nfiles)
210     free (descriptors);
211
212   return ret;
213 }