blob: 1af6a6f9533fd2a998b45c6f6154cb3e60e1d4a4 [file] [log] [blame]
landley13bab2f2006-09-27 00:45:05 -04001/* vi: set ts=4 :*/
2/* Toybox infrastructure.
3 *
4 * Copyright 2006 Rob Landley <rob@landley.net>
landley13bab2f2006-09-27 00:45:05 -04005 */
6
landleyc5621502006-09-28 17:18:51 -04007#include "toys.h"
8
Rob Landleyf2311a42006-11-04 17:45:18 -05009// Populate toy_list[].
landleyc5621502006-09-28 17:18:51 -040010
11struct toy_list toy_list[] = {
Rob Landleyf2311a42006-11-04 17:45:18 -050012#define FROM_MAIN
13#include "toys/toylist.h"
landleyc5621502006-09-28 17:18:51 -040014};
15
landley4f344e32006-10-05 16:18:03 -040016#define TOY_LIST_LEN (sizeof(toy_list)/sizeof(struct toy_list))
17
landleyc5621502006-09-28 17:18:51 -040018// global context for this applet.
19
20struct toy_context toys;
Rob Landley055cfcb2007-01-14 20:20:06 -050021char toybuf[4096];
landleyc5621502006-09-28 17:18:51 -040022
landley4f344e32006-10-05 16:18:03 -040023struct toy_list *toy_find(char *name)
landley13bab2f2006-09-27 00:45:05 -040024{
25 int top, bottom, middle;
26
27 // If the name starts with "toybox", accept that as a match. Otherwise
28 // skip the first entry, which is out of order.
29
30 if (!strncmp(name,"toybox",6)) return toy_list;
landley4f344e32006-10-05 16:18:03 -040031 bottom = 1;
landley13bab2f2006-09-27 00:45:05 -040032
33 // Binary search to find this applet.
34
landley4f344e32006-10-05 16:18:03 -040035 top = TOY_LIST_LEN-1;
36 for (;;) {
landley13bab2f2006-09-27 00:45:05 -040037 int result;
38
landley4f344e32006-10-05 16:18:03 -040039 middle = (top+bottom)/2;
40 if (middle<bottom || middle>top) return NULL;
landley13bab2f2006-09-27 00:45:05 -040041 result = strcmp(name,toy_list[middle].name);
landley4f344e32006-10-05 16:18:03 -040042 if (!result) return toy_list+middle;
43 if (result<0) top=--middle;
44 else bottom = ++middle;
landley13bab2f2006-09-27 00:45:05 -040045 }
46}
47
landleycd9dfc32006-10-18 18:38:16 -040048void toy_init(struct toy_list *which, char *argv[])
49{
50 // Free old toys contents here?
51
52 toys.which = which;
53 toys.argv = argv;
landleycd9dfc32006-10-18 18:38:16 -040054 toys.exitval = 1;
Rob Landley8324b892006-11-19 02:49:22 -050055 if (which->options) get_optflags();
landleycd9dfc32006-10-18 18:38:16 -040056}
57
landley4f344e32006-10-05 16:18:03 -040058// Run a toy.
59void toy_exec(char *argv[])
60{
61 struct toy_list *which;
62
63 which = toy_find(argv[0]);
64 if (!which) return;
65
landleycd9dfc32006-10-18 18:38:16 -040066 toy_init(which, argv);
landley4f344e32006-10-05 16:18:03 -040067
68 exit(toys.which->toy_main());
69}
70
71int toybox_main(void)
72{
73 static char *toy_paths[]={"usr/","bin/","sbin/",0};
74 int i, len = 0;
75
76 if (toys.argv[1]) {
77 if (toys.argv[1][0]!='-') {
78 toy_exec(toys.argv+1);
79 error_exit("No behavior for %s\n",toys.argv[1]);
80 }
81 }
82
83 // Output list of applets.
84 for (i=1; i<TOY_LIST_LEN; i++) {
85 int fl = toy_list[i].flags;
86 if (fl & TOYMASK_LOCATION) {
87 if (toys.argv[1]) {
88 int j;
89 for (j=0; toy_paths[j]; j++)
90 if (fl & (1<<j)) len += printf("%s", toy_paths[j]);
91 }
92 len += printf("%s ",toy_list[i].name);
93 if (len>65) {
94 putchar('\n');
95 len=0;
96 }
97 }
98 }
99 putchar('\n');
100 return 0;
101}
102
landley13bab2f2006-09-27 00:45:05 -0400103int main(int argc, char *argv[])
104{
105 char *name;
106
landley4f344e32006-10-05 16:18:03 -0400107 // Figure out which applet to call.
108 name = rindex(argv[0], '/');
109 if (!name) name=argv[0];
landley13bab2f2006-09-27 00:45:05 -0400110 else name++;
landley4f344e32006-10-05 16:18:03 -0400111 argv[0] = name;
landley13bab2f2006-09-27 00:45:05 -0400112
landley4f344e32006-10-05 16:18:03 -0400113 toys.argv = argv-1;
114 return toybox_main();
landley13bab2f2006-09-27 00:45:05 -0400115}