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