51511037203e8e4ea81b80b835f56e80b6089087
[oweals/busybox.git] / applets / applets.c
1 /* 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>
30 #include "busybox.h"
31
32 #undef APPLET
33 #undef APPLET_NOUSAGE
34 #undef PROTOTYPES
35 #include "applets.h"
36
37 #define bb_need_full_version
38 #define BB_DECLARE_EXTERN
39 #include "messages.c"
40
41 struct BB_applet *applet_using;
42
43 /* The -1 arises because of the {0,NULL,0,-1} entry above. */
44 const size_t NUM_APPLETS = (sizeof (applets) / sizeof (struct BB_applet) - 1);
45
46 extern void show_usage(void)
47 {
48         const char *format_string;
49         const char *usage_string = usage_messages;
50         int i;
51
52         for (i = applet_using - applets; i > 0; ) {
53                 if (!*usage_string++) {
54                         --i;
55                 }
56         }
57         format_string = "%s\n\nUsage: %s %s\n\n";
58         if(*usage_string == 0)
59                 format_string = "%s\n\nNo help available.\n\n";
60         fprintf(stderr, format_string,
61                         full_version, applet_using->name, usage_string);
62         exit(EXIT_FAILURE);
63 }
64
65 static int applet_name_compare(const void *x, const void *y)
66 {
67         const char *name = x;
68         const struct BB_applet *applet = y;
69
70         return strcmp(name, applet->name);
71 }
72
73 extern size_t NUM_APPLETS;
74
75 struct BB_applet *find_applet_by_name(const char *name)
76 {
77         return bsearch(name, applets, NUM_APPLETS, sizeof(struct BB_applet),
78                         applet_name_compare);
79 }
80
81 void run_applet_by_name(const char *name, int argc, char **argv)
82 {
83         /* Do a binary search to find the applet entry given the name. */
84         if ((applet_using = find_applet_by_name(name)) != NULL) {
85                 applet_name = applet_using->name;
86                 if (argv[1] && strcmp(argv[1], "--help") == 0)
87                         show_usage();
88                 exit((*(applet_using->main)) (argc, argv));
89         }
90 }
91
92
93 /* END CODE */
94 /*
95 Local Variables:
96 c-file-style: "linux"
97 c-basic-offset: 4
98 tab-width: 4
99 End:
100 */