blob: f3e56a9f39b6563cd1dd88386223109561c708fe [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
5 * Copyright (C) tons of folks. Tracking down who wrote what
6 * isn't something I'm going to worry about... If you wrote something
7 * here, please feel free to acknowledge your work.
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 * Based in part on code from sash, Copyright (c) 1999 by David I. Bell
24 * Permission has been granted to redistribute this code under the GPL.
25 *
26 */
27
28#include <stdio.h>
29#include <stdlib.h>
Eric Andersen08ff8a42001-03-23 17:02:05 +000030#include <string.h>
Eric Andersenaad1a882001-03-16 22:47:14 +000031#include "busybox.h"
32
Eric Andersen2ccfef22001-03-19 19:30:24 +000033#undef APPLET
34#undef APPLET_NOUSAGE
35#undef PROTOTYPES
36#include "applets.h"
37
Eric Andersenaad1a882001-03-16 22:47:14 +000038struct BB_applet *applet_using;
39
Eric Andersen2ccfef22001-03-19 19:30:24 +000040/* The -1 arises because of the {0,NULL,0,-1} entry above. */
41const size_t NUM_APPLETS = (sizeof (applets) / sizeof (struct BB_applet) - 1);
42
Eric Andersenaad1a882001-03-16 22:47:14 +000043extern void show_usage(void)
44{
45 const char *format_string;
46 const char *usage_string = usage_messages;
47 int i;
Eric Andersenaad1a882001-03-16 22:47:14 +000048
49 for (i = applet_using - applets; i > 0; ) {
50 if (!*usage_string++) {
51 --i;
52 }
53 }
54 format_string = "%s\n\nUsage: %s %s\n\n";
55 if(*usage_string == 0)
56 format_string = "%s\n\nNo help available.\n\n";
57 fprintf(stderr, format_string,
58 full_version, applet_using->name, usage_string);
59 exit(EXIT_FAILURE);
60}
61
62static int applet_name_compare(const void *x, const void *y)
63{
64 const char *name = x;
65 const struct BB_applet *applet = y;
66
67 return strcmp(name, applet->name);
68}
69
Eric Andersen15576262001-06-24 06:09:14 +000070extern const size_t NUM_APPLETS;
Eric Andersenaad1a882001-03-16 22:47:14 +000071
72struct BB_applet *find_applet_by_name(const char *name)
73{
74 return bsearch(name, applets, NUM_APPLETS, sizeof(struct BB_applet),
75 applet_name_compare);
76}
77
78void run_applet_by_name(const char *name, int argc, char **argv)
79{
Mark Whitleybd4b6212001-06-15 16:54:25 +000080 static int recurse_level = 0;
Matt Kraaiab3d8392001-08-27 17:19:38 +000081 extern int been_there_done_that; /* From busybox.c */
Mark Whitleybd4b6212001-06-15 16:54:25 +000082
83 recurse_level++;
Eric Andersenaad1a882001-03-16 22:47:14 +000084 /* Do a binary search to find the applet entry given the name. */
85 if ((applet_using = find_applet_by_name(name)) != NULL) {
86 applet_name = applet_using->name;
Mark Whitleybd4b6212001-06-15 16:54:25 +000087 if (argv[1] && strcmp(argv[1], "--help") == 0) {
Matt Kraaiab3d8392001-08-27 17:19:38 +000088 if (strcmp(applet_using->name, "busybox")==0) {
89 if(argv[2])
90 applet_using = find_applet_by_name(argv[2]);
91 else
92 applet_using = NULL;
93 }
94 if(applet_using)
95 show_usage();
96 been_there_done_that=1;
97 busybox_main(0, NULL);
Mark Whitleybd4b6212001-06-15 16:54:25 +000098 }
Eric Andersenaad1a882001-03-16 22:47:14 +000099 exit((*(applet_using->main)) (argc, argv));
100 }
Mark Whitleybd4b6212001-06-15 16:54:25 +0000101 /* Just in case they have renamed busybox - Check argv[1] */
102 if (recurse_level == 1) {
103 run_applet_by_name("busybox", argc, argv);
104 }
Matt Kraai861e6242001-08-27 15:08:57 +0000105 recurse_level--;
Eric Andersenaad1a882001-03-16 22:47:14 +0000106}
107
108
109/* END CODE */
110/*
111Local Variables:
112c-file-style: "linux"
113c-basic-offset: 4
114tab-width: 4
115End:
116*/