OSDN Git Service

Show the compiler how to optimize out the option parsing logic when nothing
[android-x86/external-toybox.git] / main.c
1 /* vi: set ts=4 :*/
2 /* Toybox infrastructure.
3  *
4  * Copyright 2006 Rob Landley <rob@landley.net>
5  */
6
7 #include "toys.h"
8
9 // Populate toy_list[].
10
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
16 struct toy_list toy_list[] = {
17 #include "toys/toylist.h"
18 };
19
20 #define TOY_LIST_LEN (sizeof(toy_list)/sizeof(struct toy_list))
21
22 // global context for this applet.
23
24 struct toy_context toys;
25 union toy_union toy;
26 char toybuf[4096];
27
28 struct toy_list *toy_find(char *name)
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;
36         bottom = 1;
37
38         // Binary search to find this applet.
39
40         top = TOY_LIST_LEN-1;
41         for (;;) {
42                 int result;
43                 
44                 middle = (top+bottom)/2;
45                 if (middle<bottom || middle>top) return NULL;
46                 result = strcmp(name,toy_list[middle].name);
47                 if (!result) return toy_list+middle;
48                 if (result<0) top=--middle;
49                 else bottom = ++middle;
50         }
51 }
52
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 ||
61 static const NEED_OPTIONS =
62 #include "toys/toylist.h"
63 0;  // Ends the opts || opts || opts...
64
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;
71         toys.exitval = 1;
72         if (NEED_OPTIONS && which->options) get_optflags();
73         else toys.optargs = argv+1;
74 }
75
76 // Run a toy.
77 void toy_exec(char *argv[])
78 {
79         struct toy_list *which;
80
81         which = toy_find(argv[0]);
82         if (!which) return;
83
84         toy_init(which, argv);
85
86         exit(toys.which->toy_main());
87 }
88
89 int toybox_main(void)
90 {
91         static char *toy_paths[]={"usr/","bin/","sbin/",0};
92         int i, len = 0;
93
94         if (toys.argv[1]) {
95                 if (toys.argv[1][0]!='-') {
96                         toy_exec(toys.argv+1);
97                         error_exit("No behavior for %s\n",toys.argv[1]);
98                 }
99         }
100
101         // Output list of applets.
102         for (i=1; i<TOY_LIST_LEN; i++) {
103                 int fl = toy_list[i].flags;
104                 if (fl & TOYMASK_LOCATION) {
105                         if (toys.argv[1]) {
106                                 int j;
107                                 for (j=0; toy_paths[j]; j++)
108                                         if (fl & (1<<j)) len += printf("%s", toy_paths[j]);
109                         }
110                         len += printf("%s ",toy_list[i].name);
111                         if (len>65) {
112                                 putchar('\n');
113                                 len=0;
114                         }
115                 }
116         }
117         putchar('\n');
118         return 0;
119 }
120
121 int main(int argc, char *argv[])
122 {
123         // Artificial scope to eat less stack for things we call
124         {
125                 char *name;
126
127                 // Figure out which applet to call.
128                 name = rindex(argv[0], '/');
129                 if (!name) name=argv[0];
130                 else name++;
131                 argv[0] = name;
132         }
133
134         toys.argv = argv-1;
135         return toybox_main();
136 }