blob: 478e0ee6d630549a3f1727c8de3c240b1a77da1f [file] [log] [blame]
Eric Andersena37d5b72000-09-23 06:10:14 +00001/* vi: set sw=4 ts=4: */
Eric Andersen5b176932000-09-22 20:22:28 +00002/*
Eric Andersena37d5b72000-09-23 06:10:14 +00003 * Mini xargs implementation for busybox
Eric Andersen5b176932000-09-22 20:22:28 +00004 *
Eric Andersena37d5b72000-09-23 06:10:14 +00005 * Copyright (C) 2000 by Lineo, inc.
6 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
Eric Andersen5b176932000-09-22 20:22:28 +00007 *
Eric Andersena37d5b72000-09-23 06:10:14 +00008 * 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.
Eric Andersen5b176932000-09-22 20:22:28 +000012 *
Eric Andersena37d5b72000-09-23 06:10:14 +000013 * 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.
Eric Andersen5b176932000-09-22 20:22:28 +000017 *
Eric Andersena37d5b72000-09-23 06:10:14 +000018 * 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 *
Eric Andersen5b176932000-09-22 20:22:28 +000022 */
Eric Andersen92a61c12000-09-22 20:01:23 +000023
Eric Andersena37d5b72000-09-23 06:10:14 +000024#include "internal.h"
Eric Andersen5b176932000-09-22 20:22:28 +000025#include <stdlib.h>
Eric Andersen5b176932000-09-22 20:22:28 +000026#include <stdio.h>
Eric Andersena37d5b72000-09-23 06:10:14 +000027#include <string.h>
28#include <errno.h>
Eric Andersen92a61c12000-09-22 20:01:23 +000029#include <getopt.h>
Eric Andersen6f283c22000-09-24 02:40:56 +000030#include <ctype.h>
Eric Andersen92a61c12000-09-22 20:01:23 +000031
Eric Andersen92a61c12000-09-22 20:01:23 +000032
Eric Andersena37d5b72000-09-23 06:10:14 +000033int xargs_main(int argc, char **argv)
Eric Andersen92a61c12000-09-22 20:01:23 +000034{
Eric Andersena37d5b72000-09-23 06:10:14 +000035 char *in_from_stdin = NULL;
36 char *args_from_cmdline = NULL;
37 char *cmd_to_be_executed = NULL;
38 char traceflag = 0;
39 int len_args_from_cmdline, len_cmd_to_be_executed, len, opt;
Eric Andersen92a61c12000-09-22 20:01:23 +000040
Eric Andersen9ae38382000-09-24 01:12:54 +000041 /* Note that we do not use getopt here, since
42 * we only want to interpret initial options,
43 * not options passed to commands */
44 while (--argc && **(++argv) == '-') {
45 while (*++(*argv)) {
46 switch (**argv) {
47 case 't':
48 traceflag=1;
49 break;
50 default:
51 fatalError(xargs_usage);
52 }
Eric Andersena37d5b72000-09-23 06:10:14 +000053 }
54 }
Eric Andersen92a61c12000-09-22 20:01:23 +000055
Eric Andersena37d5b72000-09-23 06:10:14 +000056 /* Store the command and arguments to be executed (from the command line) */
Eric Andersen9ae38382000-09-24 01:12:54 +000057 if (argc == 1) {
Eric Andersena37d5b72000-09-23 06:10:14 +000058 len_args_from_cmdline = 6;
59 args_from_cmdline = xmalloc(len_args_from_cmdline);
60 strcat(args_from_cmdline, "echo ");
61 } else {
Eric Andersen9ae38382000-09-24 01:12:54 +000062 opt=strlen(*argv);
Eric Andersena37d5b72000-09-23 06:10:14 +000063 len_args_from_cmdline = (opt > 10)? opt : 10;
64 args_from_cmdline = xcalloc(len_args_from_cmdline, sizeof(char));
Eric Andersen9ae38382000-09-24 01:12:54 +000065 while (argc-- > 0) {
66 if (strlen(*argv) + strlen(args_from_cmdline) >
Eric Andersena37d5b72000-09-23 06:10:14 +000067 len_args_from_cmdline) {
Eric Andersen9ae38382000-09-24 01:12:54 +000068 len_args_from_cmdline += strlen(*argv);
Eric Andersena37d5b72000-09-23 06:10:14 +000069 args_from_cmdline =
70 xrealloc(args_from_cmdline,
71 len_args_from_cmdline+1);
72 }
Eric Andersen9ae38382000-09-24 01:12:54 +000073 strcat(args_from_cmdline, *argv);
Eric Andersena37d5b72000-09-23 06:10:14 +000074 strcat(args_from_cmdline, " ");
75 }
76 }
Eric Andersen92a61c12000-09-22 20:01:23 +000077
Eric Andersena37d5b72000-09-23 06:10:14 +000078 /* Set up some space for the command to be executed to be held in */
79 len_cmd_to_be_executed=10;
80 cmd_to_be_executed = xcalloc(len_cmd_to_be_executed, sizeof(char));
81 strcpy(cmd_to_be_executed, args_from_cmdline);
Eric Andersen6f283c22000-09-24 02:40:56 +000082 strcat(cmd_to_be_executed, " \"");
Eric Andersen92a61c12000-09-22 20:01:23 +000083
Eric Andersena37d5b72000-09-23 06:10:14 +000084 /* Now, read in one line at a time from stdin, and run command+args on it */
85 in_from_stdin = get_line_from_file(stdin);
86 for (;in_from_stdin!=NULL;) {
Eric Andersen96bdde92000-09-23 19:53:31 +000087 char *tmp;
Eric Andersen6f283c22000-09-24 02:40:56 +000088 opt = strlen(in_from_stdin);
89 len = opt + len_args_from_cmdline;
Eric Andersen96bdde92000-09-23 19:53:31 +000090 len_cmd_to_be_executed+=len+3;
91 cmd_to_be_executed=xrealloc(cmd_to_be_executed, len_cmd_to_be_executed);
Eric Andersen6f283c22000-09-24 02:40:56 +000092
93 /* Strip out the final \n */
94 in_from_stdin[opt-1]=' ';
95
96 /* Replace any tabs with spaces */
97 while( (tmp = strchr(in_from_stdin, '\t')) != NULL )
Eric Andersen96bdde92000-09-23 19:53:31 +000098 *tmp=' ';
99
Eric Andersen6f283c22000-09-24 02:40:56 +0000100 /* Strip out any extra intra-word spaces */
101 while( (tmp = strstr(in_from_stdin, " ")) != NULL ) {
102 opt = strlen(in_from_stdin);
103 memmove(tmp, tmp+1, opt-(tmp-in_from_stdin));
104 }
105
106 /* trim trailing whitespace */
107 opt = strlen(in_from_stdin) - 1;
108 while (isspace(in_from_stdin[opt]))
109 opt--;
110 in_from_stdin[++opt] = 0;
111
112 /* Strip out any leading whitespace */
113 tmp=in_from_stdin;
114 while(isspace(*tmp))
115 tmp++;
116
117 strcat(cmd_to_be_executed, tmp);
Eric Andersena37d5b72000-09-23 06:10:14 +0000118 strcat(cmd_to_be_executed, " ");
119
120 free(in_from_stdin);
121 in_from_stdin = get_line_from_file(stdin);
122 }
123
Eric Andersen6f283c22000-09-24 02:40:56 +0000124 strcat(cmd_to_be_executed, "\"");
Eric Andersena37d5b72000-09-23 06:10:14 +0000125 if (traceflag==1)
126 fputs(cmd_to_be_executed, stderr);
127
128 if ((system(cmd_to_be_executed) != 0) && (errno != 0))
129 fatalError("%s", strerror(errno));
130
131
132#ifdef BB_FEATURE_CLEAN_UP
133 free(args_from_cmdline);
134 free(cmd_to_be_executed);
135#endif
136
137 return 0;
Eric Andersen92a61c12000-09-22 20:01:23 +0000138}
Eric Andersena37d5b72000-09-23 06:10:14 +0000139/*
140Local Variables:
141c-file-style: "linux"
142c-basic-offset: 4
143tab-width: 4
144End:
145*/
146