landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 1 | /* vi: set ts=4 :*/ |
| 2 | /* Toybox infrastructure. |
| 3 | * |
| 4 | * Copyright 2006 Rob Landley <rob@landley.net> |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 5 | */ |
| 6 | |
landley | c562150 | 2006-09-28 17:18:51 -0400 | [diff] [blame] | 7 | #include "toys.h" |
| 8 | |
Rob Landley | f2311a4 | 2006-11-04 17:45:18 -0500 | [diff] [blame] | 9 | // Populate toy_list[]. |
landley | c562150 | 2006-09-28 17:18:51 -0400 | [diff] [blame] | 10 | |
Rob Landley | a6d696b | 2007-01-31 13:31:19 -0500 | [diff] [blame] | 11 | #undef NEWTOY |
| 12 | #undef OLDTOY |
| 13 | #define NEWTOY(name, opts, flags) {#name, name##_main, opts, flags}, |
| 14 | #define OLDTOY(name, oldname, opts, flags) {#name, oldname##_main, opts, flags}, |
| 15 | |
landley | c562150 | 2006-09-28 17:18:51 -0400 | [diff] [blame] | 16 | struct toy_list toy_list[] = { |
Rob Landley | f2311a4 | 2006-11-04 17:45:18 -0500 | [diff] [blame] | 17 | #include "toys/toylist.h" |
landley | c562150 | 2006-09-28 17:18:51 -0400 | [diff] [blame] | 18 | }; |
| 19 | |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 20 | #define TOY_LIST_LEN (sizeof(toy_list)/sizeof(struct toy_list)) |
| 21 | |
landley | c562150 | 2006-09-28 17:18:51 -0400 | [diff] [blame] | 22 | // global context for this applet. |
| 23 | |
| 24 | struct toy_context toys; |
Rob Landley | 5a60e26 | 2007-02-02 10:53:55 -0500 | [diff] [blame] | 25 | union toy_union toy; |
Rob Landley | 055cfcb | 2007-01-14 20:20:06 -0500 | [diff] [blame] | 26 | char toybuf[4096]; |
landley | c562150 | 2006-09-28 17:18:51 -0400 | [diff] [blame] | 27 | |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 28 | struct toy_list *toy_find(char *name) |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 29 | { |
| 30 | int top, bottom, middle; |
| 31 | |
| 32 | // If the name starts with "toybox", accept that as a match. Otherwise |
| 33 | // skip the first entry, which is out of order. |
| 34 | |
| 35 | if (!strncmp(name,"toybox",6)) return toy_list; |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 36 | bottom = 1; |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 37 | |
| 38 | // Binary search to find this applet. |
| 39 | |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 40 | top = TOY_LIST_LEN-1; |
| 41 | for (;;) { |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 42 | int result; |
Rob Landley | 2c22685 | 2007-11-15 18:30:30 -0600 | [diff] [blame] | 43 | |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 44 | middle = (top+bottom)/2; |
| 45 | if (middle<bottom || middle>top) return NULL; |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 46 | result = strcmp(name,toy_list[middle].name); |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 47 | if (!result) return toy_list+middle; |
| 48 | if (result<0) top=--middle; |
| 49 | else bottom = ++middle; |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 50 | } |
| 51 | } |
| 52 | |
Rob Landley | fc2224b | 2007-06-01 14:31:45 -0400 | [diff] [blame] | 53 | // Figure out whether or not anything is using the option parsing logic, |
| 54 | // because the compiler can't figure out whether or not to optimize it away |
| 55 | // on its' own. |
| 56 | |
| 57 | #undef NEWTOY |
| 58 | #undef OLDTOY |
| 59 | #define NEWTOY(name, opts, flags) opts || |
| 60 | #define OLDTOY(name, oldname, opts, flags) opts || |
Rob Landley | 4307a7b | 2007-06-07 15:20:26 -0400 | [diff] [blame] | 61 | static const int NEED_OPTIONS = |
Rob Landley | fc2224b | 2007-06-01 14:31:45 -0400 | [diff] [blame] | 62 | #include "toys/toylist.h" |
| 63 | 0; // Ends the opts || opts || opts... |
| 64 | |
landley | cd9dfc3 | 2006-10-18 18:38:16 -0400 | [diff] [blame] | 65 | void toy_init(struct toy_list *which, char *argv[]) |
| 66 | { |
| 67 | // Free old toys contents here? |
| 68 | |
| 69 | toys.which = which; |
| 70 | toys.argv = argv; |
landley | cd9dfc3 | 2006-10-18 18:38:16 -0400 | [diff] [blame] | 71 | toys.exitval = 1; |
Rob Landley | fc2224b | 2007-06-01 14:31:45 -0400 | [diff] [blame] | 72 | if (NEED_OPTIONS && which->options) get_optflags(); |
Rob Landley | b841cd2 | 2007-06-01 13:41:24 -0400 | [diff] [blame] | 73 | else toys.optargs = argv+1; |
landley | cd9dfc3 | 2006-10-18 18:38:16 -0400 | [diff] [blame] | 74 | } |
| 75 | |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 76 | // Run a toy. |
| 77 | void toy_exec(char *argv[]) |
| 78 | { |
| 79 | struct toy_list *which; |
Rob Landley | b841cd2 | 2007-06-01 13:41:24 -0400 | [diff] [blame] | 80 | |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 81 | which = toy_find(argv[0]); |
| 82 | if (!which) return; |
landley | cd9dfc3 | 2006-10-18 18:38:16 -0400 | [diff] [blame] | 83 | toy_init(which, argv); |
Rob Landley | efda21c | 2007-11-29 18:14:37 -0600 | [diff] [blame^] | 84 | toys.which->toy_main(); |
| 85 | exit(toys.exitval); |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 86 | } |
| 87 | |
Rob Landley | efda21c | 2007-11-29 18:14:37 -0600 | [diff] [blame^] | 88 | void toybox_main(void) |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 89 | { |
| 90 | static char *toy_paths[]={"usr/","bin/","sbin/",0}; |
| 91 | int i, len = 0; |
| 92 | |
| 93 | if (toys.argv[1]) { |
| 94 | if (toys.argv[1][0]!='-') { |
| 95 | toy_exec(toys.argv+1); |
Rob Landley | 860f263 | 2007-11-27 01:41:32 -0600 | [diff] [blame] | 96 | error_exit("Unknown command %s",toys.argv[1]); |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 97 | } |
| 98 | } |
| 99 | |
| 100 | // Output list of applets. |
| 101 | for (i=1; i<TOY_LIST_LEN; i++) { |
| 102 | int fl = toy_list[i].flags; |
| 103 | if (fl & TOYMASK_LOCATION) { |
| 104 | if (toys.argv[1]) { |
| 105 | int j; |
| 106 | for (j=0; toy_paths[j]; j++) |
| 107 | if (fl & (1<<j)) len += printf("%s", toy_paths[j]); |
| 108 | } |
| 109 | len += printf("%s ",toy_list[i].name); |
| 110 | if (len>65) { |
| 111 | putchar('\n'); |
| 112 | len=0; |
| 113 | } |
| 114 | } |
| 115 | } |
| 116 | putchar('\n'); |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 117 | } |
| 118 | |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 119 | int main(int argc, char *argv[]) |
| 120 | { |
Rob Landley | 5aab966 | 2007-01-18 22:00:46 -0500 | [diff] [blame] | 121 | // Artificial scope to eat less stack for things we call |
| 122 | { |
| 123 | char *name; |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 124 | |
Rob Landley | 5aab966 | 2007-01-18 22:00:46 -0500 | [diff] [blame] | 125 | // Figure out which applet to call. |
| 126 | name = rindex(argv[0], '/'); |
| 127 | if (!name) name=argv[0]; |
| 128 | else name++; |
| 129 | argv[0] = name; |
| 130 | } |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 131 | |
landley | 4f344e3 | 2006-10-05 16:18:03 -0400 | [diff] [blame] | 132 | toys.argv = argv-1; |
Rob Landley | efda21c | 2007-11-29 18:14:37 -0600 | [diff] [blame^] | 133 | toybox_main(); |
| 134 | return 0; |
landley | 13bab2f | 2006-09-27 00:45:05 -0400 | [diff] [blame] | 135 | } |