Some formatting updates (ran the code through indent)
[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 <stdio.h>
27
28 static const char tee_usage[] =
29         "tee [OPTION]... [FILE]...\n\n"
30         "Copy standard input to each FILE, and also to standard output.\n\n"
31         "Options:\n" "\t-a\tappend to the given FILEs, do not overwrite\n"
32 #if 0
33         "\t-i\tignore interrupt signals\n"
34 #endif
35 ;
36
37
38 /* FileList _______________________________________________________________ */
39
40 #define FL_MAX  1024
41 static FILE *FileList[FL_MAX];
42 static int FL_end;
43
44 typedef void (FL_Function) (FILE * file, char c);
45
46
47 /* apply a function to everything in FileList */
48 static void FL_apply(FL_Function * f, char c)
49 {
50         int i;
51
52         for (i = 0; i <= FL_end; i++) {
53                 f(FileList[i], c);
54         }
55 }
56
57 /* FL_Function for writing to files*/
58 static void tee_fwrite(FILE * file, char c)
59 {
60         fputc(c, file);
61 }
62
63 /* FL_Function for closing files */
64 static void tee_fclose(FILE * file, char c)
65 {
66         fclose(file);
67 }
68
69 /* ________________________________________________________________________ */
70
71 /* BusyBoxed tee(1) */
72 int tee_main(int argc, char **argv)
73 {
74         int i;
75         char c;
76         char opt;
77         char opt_fopen[2] = "w";
78         FILE *file;
79
80         /* parse argv[] */
81         for (i = 1; i < argc; i++) {
82                 if (argv[i][0] == '-') {
83                         opt = argv[i][1];
84                         switch (opt) {
85                         case 'a':
86                                 opt_fopen[0] = 'a';
87                                 break;
88 #if 0
89                         case 'i':
90                                 fprintf(stderr, "ignore interrupt not implemented\n");
91                                 break;
92 #endif
93                         default:
94                                 usage(tee_usage);
95                         }
96                 } else {
97                         break;
98                 }
99         }
100
101         /* init FILE pointers */
102         FL_end = 0;
103         FileList[0] = stdout;
104         for (; i < argc; i++) {
105                 /* add a file to FileList */
106                 file = fopen(argv[i], opt_fopen);
107                 if (!file) {
108                         continue;
109                 }
110                 if (FL_end < FL_MAX) {
111                         FileList[++FL_end] = file;
112                 }
113         }
114
115         /* read and redirect */
116         while ((c = (char) getchar()) && (!feof(stdin))) {
117                 FL_apply(tee_fwrite, c);
118         }
119
120         /* clean up */
121         FL_apply(tee_fclose, 0);
122         exit(0);
123 }
124
125 /* $Id: tee.c,v 1.6 2000/02/08 19:58:47 erik Exp $ */