Extract usage information into a separate file.
[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,2000 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 /* FileList _______________________________________________________________ */
30
31 #define FL_MAX  1024
32 static FILE **FileList;
33 static int FL_end;
34
35 typedef void (FL_Function) (FILE * file, char c);
36
37
38 /* apply a function to everything in FileList */
39 static void FL_apply(FL_Function * f, char c)
40 {
41         int i;
42
43         for (i = 0; i <= FL_end; i++) {
44                 f(FileList[i], c);
45         }
46 }
47
48 /* FL_Function for writing to files*/
49 static void tee_fwrite(FILE * file, char c)
50 {
51         fputc(c, file);
52 }
53
54 /* FL_Function for closing files */
55 static void tee_fclose(FILE * file, char c)
56 {
57         fclose(file);
58 }
59
60 /* ________________________________________________________________________ */
61
62 /* BusyBoxed tee(1) */
63 int tee_main(int argc, char **argv)
64 {
65         int i;
66         char c;
67         char opt;
68         char opt_fopen[2] = "w";
69         FILE *file;
70
71         /* parse argv[] */
72         for (i = 1; i < argc; i++) {
73                 if (argv[i][0] == '-') {
74                         opt = argv[i][1];
75                         switch (opt) {
76                         case 'a':
77                                 opt_fopen[0] = 'a';
78                                 break;
79 #if 0
80                         case 'i':
81                                 fprintf(stderr, "ignore interrupt not implemented\n");
82                                 break;
83 #endif
84                         default:
85                                 usage(tee_usage);
86                         }
87                 } else {
88                         break;
89                 }
90         }
91
92         /* init FILE pointers */
93         FileList = calloc(FL_MAX, sizeof(FILE*));
94         if (!FileList) {
95                 errorMsg("%s\n", strerror(errno));
96                 exit(1);
97         }
98         FL_end = 0;
99         FileList[0] = stdout;
100         for (; i < argc; i++) {
101                 /* add a file to FileList */
102                 file = fopen(argv[i], opt_fopen);
103                 if (!file) {
104                         continue;
105                 }
106                 if (FL_end < FL_MAX) {
107                         FileList[++FL_end] = file;
108                 }
109         }
110
111         /* read and redirect */
112         while ((c = (char) getchar()) && (!feof(stdin))) {
113                 FL_apply(tee_fwrite, c);
114         }
115
116         /* clean up */
117         FL_apply(tee_fclose, 0);
118         /* Don't bother to close files  Exit does that 
119          * automagically, so we can save a few bytes */
120         /* free(FileList); */
121         return(0);
122 }
123
124 /* $Id: tee.c,v 1.13 2000/07/16 20:57:15 kraai Exp $ */