Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 3 | * universal getopt_ulflags implementation for busybox |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 4 | * |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 5 | * Copyright (C) 2003-2005 Vladimir Oleynik <dzo@simtreas.ru> |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 6 | * |
"Robert P. J. Day" | 5d8843e | 2006-07-10 11:41:19 +0000 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 10 | #include "libbb.h" |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 11 | #include <getopt.h> |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 12 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 13 | /* Documentation |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 14 | |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 15 | unsigned long |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 16 | bb_getopt_ulflags(int argc, char **argv, const char *applet_opts, ...) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 17 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 18 | The command line options must be declared in const char |
| 19 | *applet_opts as a string of chars, for example: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 20 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 21 | flags = bb_getopt_ulflags(argc, argv, "rnug"); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 22 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 23 | If one of the given options is found, a flag value is added to |
| 24 | the return value (an unsigned long). |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 25 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 26 | The flag value is determined by the position of the char in |
| 27 | applet_opts string. For example, in the above case: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 28 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 29 | flags = bb_getopt_ulflags(argc, argv, "rnug"); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 30 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 31 | "r" will add 1 (bit 0) |
| 32 | "n" will add 2 (bit 1) |
| 33 | "u will add 4 (bit 2) |
| 34 | "g" will add 8 (bit 3) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 35 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 36 | and so on. You can also look at the return value as a bit |
| 37 | field and each option sets one bit. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 38 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 39 | On exit, global variable optind is set so that if you |
| 40 | will do argc -= optind; argv += optind; then |
| 41 | argc will be equal to number of remaining non-option |
| 42 | arguments, first one would be in argv[0], next in argv[1] and so on |
| 43 | (options and their parameters will be moved into argv[] |
| 44 | positions prior to argv[optind]). |
Denis Vlasenko | 65dbd87 | 2006-09-03 12:27:25 +0000 | [diff] [blame] | 45 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 46 | ":" If one of the options requires an argument, then add a ":" |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 47 | after the char in applet_opts and provide a pointer to store |
| 48 | the argument. For example: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 49 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 50 | char *pointer_to_arg_for_a; |
| 51 | char *pointer_to_arg_for_b; |
| 52 | char *pointer_to_arg_for_c; |
| 53 | char *pointer_to_arg_for_d; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 54 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 55 | flags = bb_getopt_ulflags(argc, argv, "a:b:c:d:", |
| 56 | &pointer_to_arg_for_a, &pointer_to_arg_for_b, |
| 57 | &pointer_to_arg_for_c, &pointer_to_arg_for_d); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 58 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 59 | The type of the pointer (char* or llist_t*) may be controlled |
| 60 | by the "::" special separator that is set in the external string |
| 61 | bb_opt_complementally (see below for more info). |
| 62 | |
| 63 | "::" If option can have an *optional* argument, then add a "::" |
| 64 | after its char in applet_opts and provide a pointer to store |
| 65 | the argument. Note that optional arguments _must_ |
| 66 | immediately follow the option: -oparam, not -o param. |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 67 | |
Mike Frysinger | 992a58c | 2006-02-22 22:56:30 +0000 | [diff] [blame] | 68 | "+" If the first character in the applet_opts string is a plus, |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 69 | then option processing will stop as soon as a non-option is |
| 70 | encountered in the argv array. Useful for applets like env |
| 71 | which should not process arguments to subprograms: |
| 72 | env -i ls -d / |
| 73 | Here we want env to process just the '-i', not the '-d'. |
Mike Frysinger | 992a58c | 2006-02-22 22:56:30 +0000 | [diff] [blame] | 74 | |
Rob Landley | f76cd96 | 2006-05-03 21:23:15 +0000 | [diff] [blame] | 75 | const struct option *bb_applet_long_options |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 76 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 77 | This struct allows you to define long options. The syntax for |
| 78 | declaring the array is just like that of getopt's longopts. |
| 79 | (see getopt(3)) |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 80 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 81 | static const struct option applet_long_options[] = { |
| 82 | //name,has_arg,flag,val |
| 83 | { "verbose", 0, 0, 'v' }, |
| 84 | { 0, 0, 0, 0 } |
| 85 | }; |
| 86 | bb_applet_long_options = applet_long_options; |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 87 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 88 | The last member of struct option (val) typically is set to |
| 89 | matching short option from applet_opts. If there is no matching |
| 90 | char in applet_opts, then: |
| 91 | - return bit have next position after short options |
| 92 | - if has_arg is not "no_argument", use ptr for arg also |
| 93 | - bb_opt_complementally affects it too |
Mike Frysinger | fb6d22c | 2005-05-11 00:02:39 +0000 | [diff] [blame] | 94 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 95 | Note: a good applet will make long options configurable via the |
| 96 | config process and not a required feature. The current standard |
| 97 | is to name the config option CONFIG_FEATURE_<applet>_LONG_OPTIONS. |
Mike Frysinger | fb6d22c | 2005-05-11 00:02:39 +0000 | [diff] [blame] | 98 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 99 | const char *bb_opt_complementally |
Denis Vlasenko | 6248a73 | 2006-09-29 08:20:30 +0000 | [diff] [blame] | 100 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 101 | this should be bb_opt_complementary, but we'll just keep it as |
| 102 | bb_opt_complementally due to the Russian origins |
Mike Frysinger | fb6d22c | 2005-05-11 00:02:39 +0000 | [diff] [blame] | 103 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 104 | ":" The colon (":") is used to separate groups of two or more chars |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 105 | and/or groups of chars and special characters (stating some |
| 106 | conditions to be checked). |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 107 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 108 | "abc" If groups of two or more chars are specified, the first char |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 109 | is the main option and the other chars are secondary options. |
| 110 | Their flags will be turned on if the main option is found even |
| 111 | if they are not specifed on the command line. For example: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 112 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 113 | bb_opt_complementally = "abc"; |
| 114 | flags = bb_getopt_ulflags(argc, argv, "abcd") |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 115 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 116 | If getopt() finds "-a" on the command line, then |
| 117 | bb_getopt_ulflags's return value will be as if "-a -b -c" were |
| 118 | found. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 119 | |
Bernhard Reutner-Fischer | 43fb3fc | 2005-10-05 12:23:13 +0000 | [diff] [blame] | 120 | "ww" Adjacent double options have a counter associated which indicates |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 121 | the number of occurences of the option. |
| 122 | For example the ps applet needs: |
| 123 | if w is given once, GNU ps sets the width to 132, |
| 124 | if w is given more than once, it is "unlimited" |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 125 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 126 | int w_counter = 0; |
| 127 | bb_opt_complementally = "ww"; |
| 128 | bb_getopt_ulflags(argc, argv, "w", &w_counter); |
| 129 | if (w_counter) |
| 130 | width = (w_counter == 1) ? 132 : INT_MAX; |
| 131 | else |
| 132 | get_terminal_width(...&width...); |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 133 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 134 | w_counter is a pointer to an integer. It has to be passed to |
| 135 | bb_getopt_ulflags() after all other option argument sinks. |
Denis Vlasenko | 6429aab | 2006-09-23 12:22:11 +0000 | [diff] [blame] | 136 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 137 | For example: accept multiple -v to indicate the level of verbosity |
| 138 | and for each -b optarg, add optarg to my_b. Finally, if b is given, |
| 139 | turn off c and vice versa: |
Bernhard Reutner-Fischer | 43fb3fc | 2005-10-05 12:23:13 +0000 | [diff] [blame] | 140 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 141 | llist_t *my_b = NULL; |
| 142 | int verbose_level = 0; |
| 143 | bb_opt_complementally = "vv:b::b-c:c-b"; |
| 144 | f = bb_getopt_ulflags(argc, argv, "vb:c", &my_b, &verbose_level); |
| 145 | if (f & 2) // -c after -b unsets -b flag |
| 146 | while (my_b) { dosomething_with(my_b->data); my_b = my_b->link; } |
| 147 | if (my_b) // but llist is stored if -b is specified |
| 148 | free_llist(my_b); |
| 149 | if (verbose_level) bb_printf("verbose level is %d\n", verbose_level); |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 150 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 151 | Special characters: |
| 152 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 153 | "-" A dash between two options causes the second of the two |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 154 | to be unset (and ignored) if it is given on the command line. |
Rob Landley | f76cd96 | 2006-05-03 21:23:15 +0000 | [diff] [blame] | 155 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 156 | [FIXME: what if they are the same? like "x-x"? Is it ever useful?] |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 157 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 158 | For example: |
| 159 | The du applet has the options "-s" and "-d depth". If |
| 160 | bb_getopt_ulflags finds -s, then -d is unset or if it finds -d |
| 161 | then -s is unset. (Note: busybox implements the GNU |
| 162 | "--max-depth" option as "-d".) To obtain this behavior, you |
| 163 | set bb_opt_complementally = "s-d:d-s". Only one flag value is |
| 164 | added to bb_getopt_ulflags's return value depending on the |
| 165 | position of the options on the command line. If one of the |
| 166 | two options requires an argument pointer (":" in applet_opts |
| 167 | as in "d:") optarg is set accordingly. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 168 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 169 | char *smax_print_depth; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 170 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 171 | bb_opt_complementally = "s-d:d-s:x-x"; |
| 172 | opt = bb_getopt_ulflags(argc, argv, "sd:x", &smax_print_depth); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 173 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 174 | if (opt & 2) |
| 175 | max_print_depth = atoi(smax_print_depth); |
| 176 | if (opt & 4) |
| 177 | printf("Detected odd -x usage\n"); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 178 | |
Rob Landley | f76cd96 | 2006-05-03 21:23:15 +0000 | [diff] [blame] | 179 | "-" A dash as the first char in a bb_opt_complementally group forces |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 180 | all arguments to be treated as options, even if they have |
| 181 | no leading dashes. Next char in this case can't be a digit (0-9), |
| 182 | use ':' or end of line. For example: |
Bernhard Reutner-Fischer | 43fb3fc | 2005-10-05 12:23:13 +0000 | [diff] [blame] | 183 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 184 | bb_opt_complementally = "-:w-x:x-w"; |
| 185 | bb_getopt_ulflags(argc, argv, "wx"); |
Bernhard Reutner-Fischer | 43fb3fc | 2005-10-05 12:23:13 +0000 | [diff] [blame] | 186 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 187 | Allows any arguments to be given without a dash (./program w x) |
| 188 | as well as with a dash (./program -x). |
Bernhard Reutner-Fischer | 43fb3fc | 2005-10-05 12:23:13 +0000 | [diff] [blame] | 189 | |
Rob Landley | f76cd96 | 2006-05-03 21:23:15 +0000 | [diff] [blame] | 190 | "-N" A dash as the first char in a bb_opt_complementally group followed |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 191 | by a single digit (0-9) means that at least N non-option |
| 192 | arguments must be present on the command line |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 193 | |
Rob Landley | f76cd96 | 2006-05-03 21:23:15 +0000 | [diff] [blame] | 194 | "V-" An option with dash before colon or end-of-line results in |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 195 | bb_show_usage being called if this option is encountered. |
| 196 | This is typically used to implement "print verbose usage message |
| 197 | and exit" option. |
"Vladimir N. Oleynik" | 4fc9220 | 2006-02-02 14:48:54 +0000 | [diff] [blame] | 198 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 199 | "--" A double dash between two options, or between an option and a group |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 200 | of options, means that they are mutually exclusive. Unlike |
| 201 | the "-" case above, an error will be forced if the options |
| 202 | are used together. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 203 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 204 | For example: |
| 205 | The cut applet must have only one type of list specified, so |
| 206 | -b, -c and -f are mutally exclusive and should raise an error |
| 207 | if specified together. In this case you must set |
| 208 | bb_opt_complementally = "b--cf:c--bf:f--bc". If two of the |
| 209 | mutually exclusive options are found, bb_getopt_ulflags's |
| 210 | return value will have the error flag set (BB_GETOPT_ERROR) so |
| 211 | that we can check for it: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 212 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 213 | if (flags & BB_GETOPT_ERROR) |
| 214 | bb_show_usage(); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 215 | |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 216 | "x--x" Variation of the above, it means that -x option should occur |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 217 | at most once. |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 218 | |
Rob Landley | f76cd96 | 2006-05-03 21:23:15 +0000 | [diff] [blame] | 219 | "?" A "?" as the first char in a bb_opt_complementally group means: |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 220 | if BB_GETOPT_ERROR is detected, don't return, call bb_show_usage |
| 221 | and exit instead. Next char after '?' can't be a digit. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 222 | |
Rob Landley | f76cd96 | 2006-05-03 21:23:15 +0000 | [diff] [blame] | 223 | "?N" A "?" as the first char in a bb_opt_complementally group followed |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 224 | by a single digit (0-9) means that at most N arguments must be present |
| 225 | on the command line. |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 226 | |
| 227 | "::" A double colon after a char in bb_opt_complementally means that the |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 228 | option can occur multiple times. Each occurrence will be saved as |
| 229 | a llist_t element instead of char*. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 230 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 231 | For example: |
| 232 | The grep applet can have one or more "-e pattern" arguments. |
| 233 | In this case you should use bb_getopt_ulflags() as follows: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 234 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 235 | llist_t *patterns = NULL; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 236 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 237 | (this pointer must be initializated to NULL if the list is empty |
| 238 | as required by *llist_add_to(llist_t *old_head, char *new_item).) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 239 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 240 | bb_opt_complementally = "e::"; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 241 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 242 | bb_getopt_ulflags(argc, argv, "e:", &patterns); |
| 243 | $ grep -e user -e root /etc/passwd |
| 244 | root:x:0:0:root:/root:/bin/bash |
| 245 | user:x:500:500::/home/user:/bin/bash |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 246 | |
Mike Frysinger | e17c80e | 2006-02-21 00:37:42 +0000 | [diff] [blame] | 247 | "--" A double dash at the beginning of bb_opt_complementally means the |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 248 | argv[1] string should always be treated as options, even if it isn't |
| 249 | prefixed with a "-". This is useful for special syntax in applets |
| 250 | such as "ar" and "tar": |
| 251 | tar xvf foo.tar |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 252 | |
Rob Landley | f76cd96 | 2006-05-03 21:23:15 +0000 | [diff] [blame] | 253 | "?" An "?" between an option and a group of options means that |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 254 | at least one of them is required to occur if the first option |
| 255 | occurs in preceding command line arguments. |
Rob Landley | f76cd96 | 2006-05-03 21:23:15 +0000 | [diff] [blame] | 256 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 257 | For example from "id" applet: |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 258 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 259 | // Don't allow -n -r -rn -ug -rug -nug -rnug |
| 260 | bb_opt_complementally = "r?ug:n?ug:?u--g:g--u"; |
| 261 | flags = bb_getopt_ulflags(argc, argv, "rnug"); |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 262 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 263 | This example allowed only: |
| 264 | $ id; id -u; id -g; id -ru; id -nu; id -rg; id -ng; id -rnu; id -rng |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 265 | |
Rob Landley | f76cd96 | 2006-05-03 21:23:15 +0000 | [diff] [blame] | 266 | "X" A bb_opt_complementally group with just a single letter means |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 267 | that this option is required. If more than one such group exists, |
| 268 | at least one option is required to occur (not all of them). |
| 269 | For example from "start-stop-daemon" applet: |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 270 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 271 | // Don't allow -KS -SK, but -S or -K is required |
| 272 | bb_opt_complementally = "K:S:?K--S:S--K"; |
| 273 | flags = bb_getopt_ulflags(argc, argv, "KS...); |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 274 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 275 | |
Denis Vlasenko | f0d6cc8 | 2006-09-29 13:56:58 +0000 | [diff] [blame^] | 276 | Don't forget to use ':'. For example, "?322-22-23X-x-a" |
| 277 | is interpreted as "?3:22:-2:2-2:2-3Xa:2--x" - |
| 278 | max 3 args; count uses of '-2'; min 2 args; if there is |
| 279 | a '-2' option then unset '-3', '-X' and '-a'; if there is |
| 280 | a '-2' and after it a '-x' then error out. |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 281 | */ |
| 282 | |
Mike Frysinger | e17c80e | 2006-02-21 00:37:42 +0000 | [diff] [blame] | 283 | /* this should be bb_opt_complementary, but we'll just keep it as |
| 284 | bb_opt_complementally due to the Russian origins */ |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 285 | const char *bb_opt_complementally; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 286 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 287 | typedef struct { |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 288 | int opt; |
| 289 | int list_flg; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 290 | unsigned long switch_on; |
| 291 | unsigned long switch_off; |
| 292 | unsigned long incongruously; |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 293 | unsigned long requires; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 294 | void **optarg; /* char **optarg or llist_t **optarg */ |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 295 | int *counter; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 296 | } t_complementally; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 297 | |
| 298 | /* You can set bb_applet_long_options for parse called long options */ |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 299 | #if ENABLE_GETOPT_LONG |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 300 | static const struct option bb_default_long_options[] = { |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 301 | /* { "help", 0, NULL, '?' }, */ |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 302 | { 0, 0, 0, 0 } |
| 303 | }; |
| 304 | |
| 305 | const struct option *bb_applet_long_options = bb_default_long_options; |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 306 | #endif |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 307 | |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 308 | unsigned long |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 309 | bb_getopt_ulflags(int argc, char **argv, const char *applet_opts, ...) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 310 | { |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 311 | unsigned long flags = 0; |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 312 | unsigned long requires = 0; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 313 | t_complementally complementally[sizeof(flags) * 8 + 1]; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 314 | int c; |
| 315 | const unsigned char *s; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 316 | t_complementally *on_off; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 317 | va_list p; |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 318 | #if ENABLE_GETOPT_LONG |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 319 | const struct option *l_o; |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 320 | #endif |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 321 | unsigned long trigger; |
"Vladimir N. Oleynik" | f01e178 | 2006-01-09 13:28:31 +0000 | [diff] [blame] | 322 | #ifdef CONFIG_PS |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 323 | char **pargv = NULL; |
"Vladimir N. Oleynik" | f01e178 | 2006-01-09 13:28:31 +0000 | [diff] [blame] | 324 | #endif |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 325 | int min_arg = 0; |
| 326 | int max_arg = -1; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 327 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 328 | #define SHOW_USAGE_IF_ERROR 1 |
| 329 | #define ALL_ARGV_IS_OPTS 2 |
| 330 | #define FIRST_ARGV_IS_OPT 4 |
| 331 | #define FREE_FIRST_ARGV_IS_OPT 8 |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 332 | int spec_flgs = 0; |
| 333 | |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 334 | va_start(p, applet_opts); |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 335 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 336 | c = 0; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 337 | on_off = complementally; |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 338 | memset(on_off, 0, sizeof(complementally)); |
| 339 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 340 | /* skip GNU extension */ |
"Vladimir N. Oleynik" | bf968f7 | 2005-12-02 10:10:28 +0000 | [diff] [blame] | 341 | s = (const unsigned char *)applet_opts; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 342 | if (*s == '+' || *s == '-') |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 343 | s++; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 344 | for (; *s; s++) { |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 345 | if (c >= (int)(sizeof(flags)*8)) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 346 | break; |
| 347 | on_off->opt = *s; |
| 348 | on_off->switch_on = (1 << c); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 349 | if (s[1] == ':') { |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 350 | on_off->optarg = va_arg(p, void **); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 351 | do |
| 352 | s++; |
| 353 | while (s[1] == ':'); |
| 354 | } |
| 355 | on_off++; |
| 356 | c++; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 357 | } |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 358 | |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 359 | #if ENABLE_GETOPT_LONG |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 360 | for (l_o = bb_applet_long_options; l_o->name; l_o++) { |
| 361 | if (l_o->flag) |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 362 | continue; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 363 | for (on_off = complementally; on_off->opt != 0; on_off++) |
| 364 | if (on_off->opt == l_o->val) |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 365 | break; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 366 | if (on_off->opt == 0) { |
| 367 | if (c >= (int)(sizeof(flags)*8)) |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 368 | break; |
| 369 | on_off->opt = l_o->val; |
| 370 | on_off->switch_on = (1 << c); |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 371 | if (l_o->has_arg != no_argument) |
| 372 | on_off->optarg = va_arg(p, void **); |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 373 | c++; |
| 374 | } |
| 375 | } |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 376 | #endif /* ENABLE_GETOPT_LONG */ |
"Vladimir N. Oleynik" | bf968f7 | 2005-12-02 10:10:28 +0000 | [diff] [blame] | 377 | for (s = (const unsigned char *)bb_opt_complementally; s && *s; s++) { |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 378 | t_complementally *pair; |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 379 | unsigned long *pair_switch; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 380 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 381 | if (*s == ':') |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 382 | continue; |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 383 | c = s[1]; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 384 | if (*s == '?') { |
| 385 | if (c < '0' || c > '9') { |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 386 | spec_flgs |= SHOW_USAGE_IF_ERROR; |
| 387 | } else { |
| 388 | max_arg = c - '0'; |
| 389 | s++; |
| 390 | } |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 391 | continue; |
| 392 | } |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 393 | if (*s == '-') { |
| 394 | if (c < '0' || c > '9') { |
| 395 | if (c == '-') { |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 396 | spec_flgs |= FIRST_ARGV_IS_OPT; |
| 397 | s++; |
| 398 | } else |
| 399 | spec_flgs |= ALL_ARGV_IS_OPTS; |
| 400 | } else { |
| 401 | min_arg = c - '0'; |
| 402 | s++; |
| 403 | } |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 404 | continue; |
| 405 | } |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 406 | for (on_off = complementally; on_off->opt; on_off++) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 407 | if (on_off->opt == *s) |
| 408 | break; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 409 | if (c == ':' && s[2] == ':') { |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 410 | on_off->list_flg++; |
| 411 | continue; |
| 412 | } |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 413 | if (c == ':' || c == '\0') { |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 414 | requires |= on_off->switch_on; |
| 415 | continue; |
| 416 | } |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 417 | if (c == '-' && (s[2] == ':' || s[2] == '\0')) { |
"Vladimir N. Oleynik" | 4fc9220 | 2006-02-02 14:48:54 +0000 | [diff] [blame] | 418 | flags |= on_off->switch_on; |
| 419 | on_off->incongruously |= on_off->switch_on; |
| 420 | s++; |
| 421 | continue; |
| 422 | } |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 423 | if (c == *s) { |
| 424 | on_off->counter = va_arg(p, int *); |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 425 | s++; |
| 426 | } |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 427 | pair = on_off; |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 428 | pair_switch = &(pair->switch_on); |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 429 | for (s++; *s && *s != ':'; s++) { |
| 430 | if (*s == '?') { |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 431 | pair_switch = &(pair->requires); |
| 432 | } else if (*s == '-') { |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 433 | if (pair_switch == &(pair->switch_off)) |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 434 | pair_switch = &(pair->incongruously); |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 435 | else |
| 436 | pair_switch = &(pair->switch_off); |
| 437 | } else { |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 438 | for (on_off = complementally; on_off->opt; on_off++) |
| 439 | if (on_off->opt == *s) { |
| 440 | *pair_switch |= on_off->switch_on; |
| 441 | break; |
| 442 | } |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 443 | } |
| 444 | } |
| 445 | s--; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 446 | } |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 447 | va_end (p); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 448 | |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 449 | #if ENABLE_AR || ENABLE_TAR |
| 450 | if (spec_flgs & FIRST_ARGV_IS_OPT) { |
| 451 | if (argv[1] && argv[1][0] != '-' && argv[1][0] != '\0') { |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 452 | argv[1] = xasprintf("-%s", argv[1]); |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 453 | if (ENABLE_FEATURE_CLEAN_UP) |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 454 | spec_flgs |= FREE_FIRST_ARGV_IS_OPT; |
| 455 | } |
| 456 | } |
| 457 | #endif |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 458 | #if ENABLE_GETOPT_LONG |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 459 | while ((c = getopt_long(argc, argv, applet_opts, |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 460 | bb_applet_long_options, NULL)) >= 0) { |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 461 | #else |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 462 | while ((c = getopt(argc, argv, applet_opts)) >= 0) { |
Bernhard Reutner-Fischer | f9437aa | 2006-05-31 14:12:51 +0000 | [diff] [blame] | 463 | #endif /* ENABLE_GETOPT_LONG */ |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 464 | #if ENABLE_PS |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 465 | loop_arg_is_opt: |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 466 | #endif |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 467 | for (on_off = complementally; on_off->opt != c; on_off++) { |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 468 | /* c==0 if long opt have non NULL flag */ |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 469 | if (on_off->opt == 0 && c != 0) |
| 470 | bb_show_usage(); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 471 | } |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 472 | if (flags & on_off->incongruously) { |
| 473 | if ((spec_flgs & SHOW_USAGE_IF_ERROR)) |
| 474 | bb_show_usage(); |
Mike Frysinger | 348e84c | 2005-05-11 00:39:03 +0000 | [diff] [blame] | 475 | flags |= BB_GETOPT_ERROR; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 476 | } |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 477 | trigger = on_off->switch_on & on_off->switch_off; |
| 478 | flags &= ~(on_off->switch_off ^ trigger); |
| 479 | flags |= on_off->switch_on ^ trigger; |
| 480 | flags ^= trigger; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 481 | if (on_off->counter) |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame] | 482 | (*(on_off->counter))++; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 483 | if (on_off->list_flg) { |
Rob Landley | 8bb5078 | 2006-05-26 23:44:51 +0000 | [diff] [blame] | 484 | llist_add_to((llist_t **)(on_off->optarg), optarg); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 485 | } else if (on_off->optarg) { |
| 486 | *(char **)(on_off->optarg) = optarg; |
| 487 | } |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 488 | #if ENABLE_PS |
| 489 | if (pargv != NULL) |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 490 | break; |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 491 | #endif |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 492 | } |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 493 | |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 494 | #if ENABLE_PS |
| 495 | if (spec_flgs & ALL_ARGV_IS_OPTS) { |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 496 | /* process argv is option, for example "ps" applet */ |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 497 | if (pargv == NULL) |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 498 | pargv = argv + optind; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 499 | while (*pargv) { |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 500 | c = **pargv; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 501 | if (c == '\0') { |
"Vladimir N. Oleynik" | 35939d9 | 2005-10-05 10:52:47 +0000 | [diff] [blame] | 502 | pargv++; |
| 503 | } else { |
| 504 | (*pargv)++; |
| 505 | goto loop_arg_is_opt; |
| 506 | } |
| 507 | } |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 508 | } |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 509 | #endif |
| 510 | |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 511 | #if (ENABLE_AR || ENABLE_TAR) && ENABLE_FEATURE_CLEAN_UP |
| 512 | if (spec_flgs & FREE_FIRST_ARGV_IS_OPT) |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 513 | free(argv[1]); |
| 514 | #endif |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 515 | /* check depending requires for given options */ |
| 516 | for (on_off = complementally; on_off->opt; on_off++) { |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 517 | if (on_off->requires && (flags & on_off->switch_on) && |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 518 | (flags & on_off->requires) == 0) |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 519 | bb_show_usage(); |
"Vladimir N. Oleynik" | 064f04e | 2005-10-11 14:38:01 +0000 | [diff] [blame] | 520 | } |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 521 | if (requires && (flags & requires) == 0) |
| 522 | bb_show_usage(); |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 523 | argc -= optind; |
Denis Vlasenko | b02ef82 | 2006-09-29 08:23:42 +0000 | [diff] [blame] | 524 | if (argc < min_arg || (max_arg >= 0 && argc > max_arg)) |
| 525 | bb_show_usage(); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 526 | return flags; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 527 | } |