Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mini tee implementation for busybox |
| 4 | * |
| 5 | * |
Erik Andersen | 61677fe | 2000-04-13 01:18:56 +0000 | [diff] [blame] | 6 | * Copyright (C) 1999,2000 by Lineo, inc. |
Eric Andersen | 70e2f0b | 1999-12-10 06:45:42 +0000 | [diff] [blame] | 7 | * Written by John Beppu <beppu@lineo.com> |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 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 | |
John Beppu | a3e0d79 | 1999-12-10 07:41:03 +0000 | [diff] [blame] | 25 | #include "internal.h" |
John Beppu | 692a450 | 2000-03-08 00:14:35 +0000 | [diff] [blame] | 26 | #include <errno.h> |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 27 | #include <stdio.h> |
John Beppu | a3e0d79 | 1999-12-10 07:41:03 +0000 | [diff] [blame] | 28 | |
| 29 | static const char tee_usage[] = |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 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" |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 33 | "Options:\n" "\t-a\tappend to the given FILEs, do not overwrite\n" |
Eric Andersen | 2cb5507 | 1999-12-10 08:25:07 +0000 | [diff] [blame] | 34 | #if 0 |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 35 | "\t-i\tignore interrupt signals\n" |
Eric Andersen | 2cb5507 | 1999-12-10 08:25:07 +0000 | [diff] [blame] | 36 | #endif |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 37 | #endif |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 38 | ; |
Eric Andersen | 2cb5507 | 1999-12-10 08:25:07 +0000 | [diff] [blame] | 39 | |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 40 | |
| 41 | /* FileList _______________________________________________________________ */ |
| 42 | |
| 43 | #define FL_MAX 1024 |
John Beppu | 692a450 | 2000-03-08 00:14:35 +0000 | [diff] [blame] | 44 | static FILE **FileList; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 45 | static int FL_end; |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 46 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 47 | typedef void (FL_Function) (FILE * file, char c); |
| 48 | |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 49 | |
| 50 | /* apply a function to everything in FileList */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 51 | static void FL_apply(FL_Function * f, char c) |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 52 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 53 | int i; |
| 54 | |
| 55 | for (i = 0; i <= FL_end; i++) { |
| 56 | f(FileList[i], c); |
| 57 | } |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 58 | } |
| 59 | |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 60 | /* FL_Function for writing to files*/ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 61 | static void tee_fwrite(FILE * file, char c) |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 62 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 63 | fputc(c, file); |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | /* FL_Function for closing files */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 67 | static void tee_fclose(FILE * file, char c) |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 68 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 69 | fclose(file); |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 70 | } |
| 71 | |
Eric Andersen | 2cb5507 | 1999-12-10 08:25:07 +0000 | [diff] [blame] | 72 | /* ________________________________________________________________________ */ |
| 73 | |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 74 | /* BusyBoxed tee(1) */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 75 | int tee_main(int argc, char **argv) |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 76 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 77 | int i; |
| 78 | char c; |
| 79 | char opt; |
| 80 | char opt_fopen[2] = "w"; |
| 81 | FILE *file; |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 82 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 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; |
Eric Andersen | 2cb5507 | 1999-12-10 08:25:07 +0000 | [diff] [blame] | 91 | #if 0 |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 92 | case 'i': |
| 93 | fprintf(stderr, "ignore interrupt not implemented\n"); |
| 94 | break; |
Eric Andersen | 2cb5507 | 1999-12-10 08:25:07 +0000 | [diff] [blame] | 95 | #endif |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 96 | default: |
| 97 | usage(tee_usage); |
| 98 | } |
| 99 | } else { |
| 100 | break; |
| 101 | } |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 102 | } |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 103 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 104 | /* init FILE pointers */ |
John Beppu | 692a450 | 2000-03-08 00:14:35 +0000 | [diff] [blame] | 105 | FileList = calloc(FL_MAX, sizeof(FILE*)); |
| 106 | if (!FileList) { |
| 107 | fprintf(stderr, "tee: %s\n", strerror(errno)); |
| 108 | exit(1); |
| 109 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 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 | } |
Eric Andersen | 2cb5507 | 1999-12-10 08:25:07 +0000 | [diff] [blame] | 121 | } |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 122 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 123 | /* read and redirect */ |
| 124 | while ((c = (char) getchar()) && (!feof(stdin))) { |
| 125 | FL_apply(tee_fwrite, c); |
| 126 | } |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 127 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 128 | /* clean up */ |
| 129 | FL_apply(tee_fclose, 0); |
Erik Andersen | 298854f | 2000-03-23 01:09:18 +0000 | [diff] [blame] | 130 | /* Don't bother to close files Exit does that |
| 131 | * automagically, so we can save a few bytes */ |
| 132 | /* free(FileList); */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 133 | exit(0); |
John Beppu | 059f152 | 1999-12-10 05:27:16 +0000 | [diff] [blame] | 134 | } |
| 135 | |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 136 | /* $Id: tee.c,v 1.10 2000/05/12 19:41:47 erik Exp $ */ |