blob: ddfbe9230dc411363266adc98dea663c177e8248 [file] [log] [blame]
Eric Andersen5b176932000-09-22 20:22:28 +00001/*
Eric Andersena37d5b72000-09-23 06:10:14 +00002 * Mini xargs implementation for busybox
Eric Andersen5b176932000-09-22 20:22:28 +00003 *
Eric Andersena37d5b72000-09-23 06:10:14 +00004 * Copyright (C) 2000 by Lineo, inc.
5 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
Mark Whitleye2e2c292000-11-14 22:43:21 +00006 * Remixed by Mark Whitley <markw@lineo.com>, <markw@enol.com>
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 Andersen3570a342000-09-25 21:45:58 +000024#include "busybox.h"
Eric Andersen5b176932000-09-22 20:22:28 +000025#include <stdio.h>
Mark Whitleye2e2c292000-11-14 22:43:21 +000026#include <stdlib.h>
Eric Andersena37d5b72000-09-23 06:10:14 +000027#include <string.h>
Eric Andersen92a61c12000-09-22 20:01:23 +000028
Eric Andersena37d5b72000-09-23 06:10:14 +000029int xargs_main(int argc, char **argv)
Eric Andersen92a61c12000-09-22 20:01:23 +000030{
Eric Andersena37d5b72000-09-23 06:10:14 +000031 char *cmd_to_be_executed = NULL;
Mark Whitleye2e2c292000-11-14 22:43:21 +000032 char *file_to_act_on = NULL;
Eric Andersen92a61c12000-09-22 20:01:23 +000033
Mark Whitleye2e2c292000-11-14 22:43:21 +000034 /*
35 * No options are supported in this version of xargs; no getopt.
36 *
37 * Re: The missing -t flag: Most programs that produce output also print
38 * the filename, so xargs doesn't really need to do it again. Supporting
39 * the -t flag =greatly= bloats up the size of this app and the memory it
40 * uses because you have to buffer all the input file strings in memory. If
41 * you really want to see the filenames that xargs will act on, just run it
42 * once with no args and xargs will echo the filename. Simple.
43 */
Eric Andersen92a61c12000-09-22 20:01:23 +000044
Eric Andersene081eae2000-09-25 20:23:21 +000045 /* Store the command to be executed (taken from the command line) */
Mark Whitleye2e2c292000-11-14 22:43:21 +000046 if (argc == 1) {
47 /* default behavior is to echo all the filenames */
48 cmd_to_be_executed = strdup("/bin/echo ");
Eric Andersena37d5b72000-09-23 06:10:14 +000049 } else {
Mark Whitleye2e2c292000-11-14 22:43:21 +000050 /* concatenate all the arguments passed to xargs together */
51 int i;
52 int len = 1; /* for the '\0' */
53 for (i = 1; i < argc; i++) {
54 len += strlen(argv[i]);
55 len += 1; /* for the space between the args */
56 cmd_to_be_executed = xrealloc(cmd_to_be_executed, len);
57 strcat(cmd_to_be_executed, argv[i]);
58 strcat(cmd_to_be_executed, " ");
59 }
Eric Andersena37d5b72000-09-23 06:10:14 +000060 }
Eric Andersen92a61c12000-09-22 20:01:23 +000061
Eric Andersend89882d2000-09-25 22:53:05 +000062 /* Now, read in one line at a time from stdin, and store this
63 * line to be used later as an argument to the command */
Mark Whitleye2e2c292000-11-14 22:43:21 +000064 while ((file_to_act_on = get_line_from_file(stdin)) !=NULL) {
Eric Andersenbf739092000-09-25 18:41:18 +000065
Mark Whitleye2e2c292000-11-14 22:43:21 +000066 FILE *cmd_output = NULL;
67 char *output_line = NULL;
68 char *execstr = NULL;
Eric Andersene081eae2000-09-25 20:23:21 +000069
Mark Whitleye2e2c292000-11-14 22:43:21 +000070 /* eat the newline off the filename. */
71 if (file_to_act_on[strlen(file_to_act_on)-1] == '\n')
72 file_to_act_on[strlen(file_to_act_on)-1] = '\0';
Eric Andersene081eae2000-09-25 20:23:21 +000073
Mark Whitleye2e2c292000-11-14 22:43:21 +000074 /* eat blank lines */
75 if (strlen(file_to_act_on) == 0)
76 continue;
77
78 /* assemble the command and execute it */
79 execstr = xcalloc(strlen(cmd_to_be_executed) +
80 strlen(file_to_act_on) + 1, sizeof(char));
81 strcat(execstr, cmd_to_be_executed);
82 strcat(execstr, file_to_act_on);
83 cmd_output = popen(execstr, "r");
Matt Kraaia9819b22000-12-22 01:48:07 +000084 if (cmd_output == NULL)
85 perror_msg_and_die("popen");
Eric Andersene081eae2000-09-25 20:23:21 +000086
Mark Whitleye2e2c292000-11-14 22:43:21 +000087 /* harvest the output */
88 while ((output_line = get_line_from_file(cmd_output)) != NULL) {
89 fputs(output_line, stdout);
90 free(output_line);
91 }
Eric Andersen6f283c22000-09-24 02:40:56 +000092
Mark Whitleye2e2c292000-11-14 22:43:21 +000093 /* clean up */
94 pclose(cmd_output);
95 free(execstr);
96 free(file_to_act_on);
Eric Andersena37d5b72000-09-23 06:10:14 +000097 }
98
Eric Andersena37d5b72000-09-23 06:10:14 +000099#ifdef BB_FEATURE_CLEAN_UP
Eric Andersena37d5b72000-09-23 06:10:14 +0000100 free(cmd_to_be_executed);
101#endif
102
Mark Whitleye2e2c292000-11-14 22:43:21 +0000103 return 0;
Eric Andersen92a61c12000-09-22 20:01:23 +0000104}
Mark Whitleye2e2c292000-11-14 22:43:21 +0000105
106/* vi: set sw=4 ts=4: */