+ changed a static array (FileList) into a dynamically allocated one
[oweals/busybox.git] / coreutils / tee.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini tee implementation for busybox
4  *
5  *
6  * Copyright (C) 1999 by Lineo, inc.
7  * Written by John Beppu <beppu@lineo.com>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22  *
23  */
24
25 #include "internal.h"
26 #include <errno.h>
27 #include <stdio.h>
28
29 static const char tee_usage[] =
30         "tee [OPTION]... [FILE]...\n\n"
31         "Copy standard input to each FILE, and also to standard output.\n\n"
32         "Options:\n" "\t-a\tappend to the given FILEs, do not overwrite\n"
33 #if 0
34         "\t-i\tignore interrupt signals\n"
35 #endif
36 ;
37
38
39 /* FileList _______________________________________________________________ */
40
41 #define FL_MAX  1024
42 static FILE **FileList;
43 static int FL_end;
44
45 typedef void (FL_Function) (FILE * file, char c);
46
47
48 /* apply a function to everything in FileList */
49 static void FL_apply(FL_Function * f, char c)
50 {
51         int i;
52
53         for (i = 0; i <= FL_end; i++) {
54                 f(FileList[i], c);
55         }
56 }
57
58 /* FL_Function for writing to files*/
59 static void tee_fwrite(FILE * file, char c)
60 {
61         fputc(c, file);
62 }
63
64 /* FL_Function for closing files */
65 static void tee_fclose(FILE * file, char c)
66 {
67         fclose(file);
68 }
69
70 /* ________________________________________________________________________ */
71
72 /* BusyBoxed tee(1) */
73 int tee_main(int argc, char **argv)
74 {
75         int i;
76         char c;
77         char opt;
78         char opt_fopen[2] = "w";
79         FILE *file;
80
81         /* parse argv[] */
82         for (i = 1; i < argc; i++) {
83                 if (argv[i][0] == '-') {
84                         opt = argv[i][1];
85                         switch (opt) {
86                         case 'a':
87                                 opt_fopen[0] = 'a';
88                                 break;
89 #if 0
90                         case 'i':
91                                 fprintf(stderr, "ignore interrupt not implemented\n");
92                                 break;
93 #endif
94                         default:
95                                 usage(tee_usage);
96                         }
97                 } else {
98                         break;
99                 }
100         }
101
102         /* init FILE pointers */
103         FileList = calloc(FL_MAX, sizeof(FILE*));
104         if (!FileList) {
105                 fprintf(stderr, "tee: %s\n", strerror(errno));
106                 exit(1);
107         }
108         FL_end = 0;
109         FileList[0] = stdout;
110         for (; i < argc; i++) {
111                 /* add a file to FileList */
112                 file = fopen(argv[i], opt_fopen);
113                 if (!file) {
114                         continue;
115                 }
116                 if (FL_end < FL_MAX) {
117                         FileList[++FL_end] = file;
118                 }
119         }
120
121         /* read and redirect */
122         while ((c = (char) getchar()) && (!feof(stdin))) {
123                 FL_apply(tee_fwrite, c);
124         }
125
126         /* clean up */
127         FL_apply(tee_fclose, 0);
128         free(FileList);
129         exit(0);
130 }
131
132 /* $Id: tee.c,v 1.7 2000/03/08 00:14:35 beppu Exp $ */