blob: 10b44a5fc7250a930869e685df13bf31e5daed4e [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 +000038#define bb_need_full_version
39#define BB_DECLARE_EXTERN
40#include "messages.c"
41
42struct BB_applet *applet_using;
43
Eric Andersen2ccfef22001-03-19 19:30:24 +000044/* The -1 arises because of the {0,NULL,0,-1} entry above. */
45const size_t NUM_APPLETS = (sizeof (applets) / sizeof (struct BB_applet) - 1);
46
Eric Andersenaad1a882001-03-16 22:47:14 +000047extern void show_usage(void)
48{
49 const char *format_string;
50 const char *usage_string = usage_messages;
51 int i;
Eric Andersen0f0c0b42001-04-03 17:05:01 +000052 /* From busybox.c */
53 extern int been_there_done_that;
54
55 if (strcmp(applet_using->name, "busybox")==0) {
56 been_there_done_that=1;
57 busybox_main(0, NULL);
58 }
Eric Andersenaad1a882001-03-16 22:47:14 +000059
60 for (i = applet_using - applets; i > 0; ) {
61 if (!*usage_string++) {
62 --i;
63 }
64 }
65 format_string = "%s\n\nUsage: %s %s\n\n";
66 if(*usage_string == 0)
67 format_string = "%s\n\nNo help available.\n\n";
68 fprintf(stderr, format_string,
69 full_version, applet_using->name, usage_string);
70 exit(EXIT_FAILURE);
71}
72
73static int applet_name_compare(const void *x, const void *y)
74{
75 const char *name = x;
76 const struct BB_applet *applet = y;
77
78 return strcmp(name, applet->name);
79}
80
81extern size_t NUM_APPLETS;
82
83struct BB_applet *find_applet_by_name(const char *name)
84{
85 return bsearch(name, applets, NUM_APPLETS, sizeof(struct BB_applet),
86 applet_name_compare);
87}
88
89void run_applet_by_name(const char *name, int argc, char **argv)
90{
91 /* Do a binary search to find the applet entry given the name. */
92 if ((applet_using = find_applet_by_name(name)) != NULL) {
93 applet_name = applet_using->name;
94 if (argv[1] && strcmp(argv[1], "--help") == 0)
95 show_usage();
96 exit((*(applet_using->main)) (argc, argv));
97 }
98}
99
100
101/* END CODE */
102/*
103Local Variables:
104c-file-style: "linux"
105c-basic-offset: 4
106tab-width: 4
107End:
108*/