rewrite, so it should be firly clean now
[oweals/busybox.git] / xargs.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini xargs implementation for busybox
4  *
5  * Copyright (C) 2000 by Lineo, inc.
6  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include "internal.h"
25 #include <stdlib.h>
26 #include <stdio.h>
27 #include <string.h>
28 #include <errno.h>
29 #include <getopt.h>
30
31
32 int xargs_main(int argc, char **argv)
33 {
34         char *in_from_stdin = NULL;
35         char *args_from_cmdline = NULL;
36         char *cmd_to_be_executed = NULL;
37         char traceflag = 0;
38         int len_args_from_cmdline, len_cmd_to_be_executed, len, opt;
39
40         while ((opt = getopt(argc, argv, "t")) != EOF) {
41                 switch (opt) {
42                 case 't':
43                         traceflag=1;
44                         break;
45                 default:
46                         fatalError(xargs_usage);
47                 }
48         }
49
50         /* Store the command and arguments to be executed (from the command line) */
51         if (optind == argc) {
52                 len_args_from_cmdline = 6;
53                 args_from_cmdline = xmalloc(len_args_from_cmdline);
54                 strcat(args_from_cmdline, "echo ");
55         } else {
56                 opt=strlen(argv[optind]);
57                 len_args_from_cmdline = (opt > 10)? opt : 10;
58                 args_from_cmdline = xcalloc(len_args_from_cmdline, sizeof(char));
59                 for (; optind < argc; optind++) {
60                         if (strlen(argv[optind]) + strlen(args_from_cmdline) >
61                                 len_args_from_cmdline) {
62                                 len_args_from_cmdline += strlen(argv[optind]);
63                                 args_from_cmdline =
64                                         xrealloc(args_from_cmdline,
65                                                          len_args_from_cmdline+1);
66                         }
67                         strcat(args_from_cmdline, argv[optind]);
68                         strcat(args_from_cmdline, " ");
69                 }
70         }
71
72         /* Set up some space for the command to be executed to be held in */
73         len_cmd_to_be_executed=10;
74         cmd_to_be_executed = xcalloc(len_cmd_to_be_executed, sizeof(char));
75         strcpy(cmd_to_be_executed, args_from_cmdline);
76         strcat(cmd_to_be_executed, " ");
77
78         /* Now, read in one line at a time from stdin, and run command+args on it */
79         in_from_stdin = get_line_from_file(stdin);
80         for (;in_from_stdin!=NULL;) {
81                 len = strlen(in_from_stdin) + len_args_from_cmdline;
82                 if ( len > len_cmd_to_be_executed ) {
83                         len_cmd_to_be_executed=len+3;
84                         cmd_to_be_executed=xrealloc(cmd_to_be_executed, len_cmd_to_be_executed);
85                 }
86                 strcat(cmd_to_be_executed, in_from_stdin);
87                 strcat(cmd_to_be_executed+strlen(cmd_to_be_executed)-2, " ");
88                 strcat(cmd_to_be_executed, " ");
89         
90                 free(in_from_stdin);
91                 in_from_stdin = get_line_from_file(stdin);
92         }
93
94         if (traceflag==1)
95                 fputs(cmd_to_be_executed, stderr);
96
97         if ((system(cmd_to_be_executed) != 0) && (errno != 0))
98                 fatalError("%s", strerror(errno));
99
100
101 #ifdef BB_FEATURE_CLEAN_UP
102         free(args_from_cmdline);
103         free(cmd_to_be_executed);
104 #endif
105
106         return 0;
107 }
108 /*
109 Local Variables:
110 c-file-style: "linux"
111 c-basic-offset: 4
112 tab-width: 4
113 End:
114 */
115