blob: c15408b51a39fad758198216feed05914f5d36c7 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
John Beppu059f1521999-12-10 05:27:16 +00002/*
3 * Mini tee implementation for busybox
4 *
5 *
Erik Andersen61677fe2000-04-13 01:18:56 +00006 * Copyright (C) 1999,2000 by Lineo, inc.
Eric Andersen70e2f0b1999-12-10 06:45:42 +00007 * Written by John Beppu <beppu@lineo.com>
John Beppu059f1521999-12-10 05:27:16 +00008 *
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
John Beppua3e0d791999-12-10 07:41:03 +000025#include "internal.h"
John Beppu692a4502000-03-08 00:14:35 +000026#include <errno.h>
John Beppu059f1521999-12-10 05:27:16 +000027#include <stdio.h>
John Beppua3e0d791999-12-10 07:41:03 +000028
John Beppu059f1521999-12-10 05:27:16 +000029/* FileList _______________________________________________________________ */
30
31#define FL_MAX 1024
John Beppu692a4502000-03-08 00:14:35 +000032static FILE **FileList;
Erik Andersene49d5ec2000-02-08 19:58:47 +000033static int FL_end;
John Beppu059f1521999-12-10 05:27:16 +000034
Erik Andersene49d5ec2000-02-08 19:58:47 +000035typedef void (FL_Function) (FILE * file, char c);
36
John Beppu059f1521999-12-10 05:27:16 +000037
38/* apply a function to everything in FileList */
Erik Andersene49d5ec2000-02-08 19:58:47 +000039static void FL_apply(FL_Function * f, char c)
John Beppu059f1521999-12-10 05:27:16 +000040{
Erik Andersene49d5ec2000-02-08 19:58:47 +000041 int i;
42
43 for (i = 0; i <= FL_end; i++) {
44 f(FileList[i], c);
45 }
John Beppu059f1521999-12-10 05:27:16 +000046}
47
John Beppu059f1521999-12-10 05:27:16 +000048/* FL_Function for writing to files*/
Erik Andersene49d5ec2000-02-08 19:58:47 +000049static void tee_fwrite(FILE * file, char c)
John Beppu059f1521999-12-10 05:27:16 +000050{
Erik Andersene49d5ec2000-02-08 19:58:47 +000051 fputc(c, file);
John Beppu059f1521999-12-10 05:27:16 +000052}
53
54/* FL_Function for closing files */
Erik Andersene49d5ec2000-02-08 19:58:47 +000055static void tee_fclose(FILE * file, char c)
John Beppu059f1521999-12-10 05:27:16 +000056{
Erik Andersene49d5ec2000-02-08 19:58:47 +000057 fclose(file);
John Beppu059f1521999-12-10 05:27:16 +000058}
59
Eric Andersen2cb55071999-12-10 08:25:07 +000060/* ________________________________________________________________________ */
61
John Beppu059f1521999-12-10 05:27:16 +000062/* BusyBoxed tee(1) */
Erik Andersene49d5ec2000-02-08 19:58:47 +000063int tee_main(int argc, char **argv)
John Beppu059f1521999-12-10 05:27:16 +000064{
Erik Andersene49d5ec2000-02-08 19:58:47 +000065 int i;
66 char c;
67 char opt;
68 char opt_fopen[2] = "w";
69 FILE *file;
John Beppu059f1521999-12-10 05:27:16 +000070
Erik Andersene49d5ec2000-02-08 19:58:47 +000071 /* 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;
Eric Andersen2cb55071999-12-10 08:25:07 +000079#if 0
Erik Andersene49d5ec2000-02-08 19:58:47 +000080 case 'i':
81 fprintf(stderr, "ignore interrupt not implemented\n");
82 break;
Eric Andersen2cb55071999-12-10 08:25:07 +000083#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +000084 default:
85 usage(tee_usage);
86 }
87 } else {
88 break;
89 }
John Beppu059f1521999-12-10 05:27:16 +000090 }
John Beppu059f1521999-12-10 05:27:16 +000091
Erik Andersene49d5ec2000-02-08 19:58:47 +000092 /* init FILE pointers */
John Beppu692a4502000-03-08 00:14:35 +000093 FileList = calloc(FL_MAX, sizeof(FILE*));
94 if (!FileList) {
Matt Kraaid537a952000-07-14 01:51:25 +000095 errorMsg("%s\n", strerror(errno));
John Beppu692a4502000-03-08 00:14:35 +000096 exit(1);
97 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000098 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 }
Eric Andersen2cb55071999-12-10 08:25:07 +0000109 }
John Beppu059f1521999-12-10 05:27:16 +0000110
Erik Andersene49d5ec2000-02-08 19:58:47 +0000111 /* read and redirect */
112 while ((c = (char) getchar()) && (!feof(stdin))) {
113 FL_apply(tee_fwrite, c);
114 }
John Beppu059f1521999-12-10 05:27:16 +0000115
Erik Andersene49d5ec2000-02-08 19:58:47 +0000116 /* clean up */
117 FL_apply(tee_fclose, 0);
Erik Andersen298854f2000-03-23 01:09:18 +0000118 /* Don't bother to close files Exit does that
119 * automagically, so we can save a few bytes */
120 /* free(FileList); */
Eric Andersenb6106152000-06-19 17:25:40 +0000121 return(0);
John Beppu059f1521999-12-10 05:27:16 +0000122}
123
Matt Kraaibf181b92000-07-16 20:57:15 +0000124/* $Id: tee.c,v 1.13 2000/07/16 20:57:15 kraai Exp $ */