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 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | * |
| 21 | */ |
| 22 | |
| 23 | #include <getopt.h> |
| 24 | #include <string.h> |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 25 | #include <assert.h> |
| 26 | #include <stdlib.h> |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 27 | #include "libbb.h" |
| 28 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 29 | /* Documentation ! |
| 30 | |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 31 | unsigned long |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 32 | bb_getopt_ulflags (int argc, char **argv, const char *applet_opts, ...) |
| 33 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 34 | The command line options must be declared in const char |
| 35 | *applet_opts as a string of chars, for example: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 36 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 37 | flags = bb_getopt_ulflags(argc, argv, "rnug"); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 38 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 39 | If one of the given options is found, a flag value is added to |
| 40 | the return value (an unsigned long). |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 41 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 42 | The flag value is determined by the position of the char in |
| 43 | applet_opts string. For example, in the above case: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 44 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 45 | flags = bb_getopt_ulflags(argc, argv, "rnug"); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 46 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 47 | "r" will add 1 (bit 1 : 0x01) |
| 48 | "n" will add 2 (bit 2 : 0x02) |
| 49 | "u will add 4 (bit 3 : 0x03) |
| 50 | "g" will add 8 (bit 4 : 0x04) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 51 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 52 | and so on. You can also look at the return value as a bit |
| 53 | field and each option sets one of bits. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 54 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 55 | ":" If one of the options requires an argument, then add a ":" |
| 56 | after the char in applet_opts and provide a pointer to store |
| 57 | the argument. For example: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 58 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 59 | char *pointer_to_arg_for_a; |
| 60 | char *pointer_to_arg_for_b; |
| 61 | char *pointer_to_arg_for_c; |
| 62 | char *pointer_to_arg_for_d; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 63 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 64 | flags = bb_getopt_ulflags(argc, argv, "a:b:c:d:", |
| 65 | &pointer_to_arg_for_a, &pointer_to_arg_for_b, |
| 66 | &pointer_to_arg_for_c, &pointer_to_arg_for_d); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 67 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 68 | The type of the pointer (char* or llist_t *) may be controlled |
| 69 | by the "*" special character that is set in the external string |
| 70 | bb_opt_complementally (see below for more info). |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 71 | |
| 72 | static const struct option bb_default_long_options[] |
| 73 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 74 | This struct allows you to define long options. The syntax for |
| 75 | declaring the array is just like that of getopt's longopts. |
| 76 | (see getopt(3)) |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 77 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 78 | static const struct option applet_long_options[] = { |
| 79 | { "verbose", 0, 0, v }, |
| 80 | { 0, 0, 0, 0 } |
| 81 | }; |
| 82 | bb_applet_long_options = applet_long_options; |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 83 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 84 | The last argument (val) can undefined from applet_opts. |
| 85 | If you use this, then: |
| 86 | - return bit have next position after short options |
| 87 | - if has_arg is not "no_argument", use ptr for arg also |
| 88 | - bb_opt_complementally have effects for this too |
Mike Frysinger | fb6d22c | 2005-05-11 00:02:39 +0000 | [diff] [blame] | 89 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 90 | Note: a good applet will make long options configurable via the |
| 91 | config process and not a required feature. The current standard |
| 92 | is to name the config option CONFIG_FEATURE_<applet>_LONG_OPTIONS. |
Mike Frysinger | fb6d22c | 2005-05-11 00:02:39 +0000 | [diff] [blame] | 93 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 94 | const char *bb_opt_complementally |
Mike Frysinger | fb6d22c | 2005-05-11 00:02:39 +0000 | [diff] [blame] | 95 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 96 | ":" The colon (":") is used to separate groups of two or more chars |
| 97 | and/or groups of chars and special characters (stating some |
| 98 | conditions to be checked). |
Mike Frysinger | e5d0bde | 2005-05-10 23:48:35 +0000 | [diff] [blame] | 99 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 100 | "abc" If groups of two or more chars are specified, the first char |
| 101 | is the main option and the other chars are secondary options. |
| 102 | Their flags will be turned on if the main option is found even |
| 103 | if they are not specifed on the command line. For example: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 104 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 105 | bb_opt_complementally = "abc"; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 106 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 107 | flags = bb_getopt_ulflags(argc, argv, "abcd") |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 108 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 109 | If getopt() finds "-a" on the command line, then |
| 110 | bb_getopt_ulflags's return value will be as if "-a -b -c" were |
| 111 | found. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 112 | |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame^] | 113 | "ww" Option have int counter usaging. For example ps applet: |
| 114 | if w is given once, GNU ps sets the width to 132, |
| 115 | if w is given more than once, it is "unlimited" |
| 116 | |
| 117 | int w_counter = 0; |
| 118 | bb_opt_complementally = "ww"; |
| 119 | flags = bb_getopt_ulflags(argc, argv, "w", &w_counter); |
| 120 | |
| 121 | if((flags & 1)) |
| 122 | width = (w_counter == 1) ? 132 : INT_MAX; |
| 123 | else |
| 124 | get_terminal_width(...&width...); |
| 125 | |
| 126 | w_counter - have counter -w usaging, must set int pointer |
| 127 | to bb_getopt_ulflags() after all other requires |
| 128 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 129 | Special characters: |
| 130 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 131 | "-" A dash between two options causes the second of the two |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 132 | to be unset (and ignored or triggered) if it is given on |
| 133 | the command line. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 134 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 135 | For example: |
| 136 | The du applet has the options "-s" and "-d depth". If |
| 137 | bb_getopt_ulflags finds -s, then -d is unset or if it finds -d |
| 138 | then -s is unset. (Note: busybox implements the GNU |
| 139 | "--max-depth" option as "-d".) To obtain this behavior, you |
| 140 | set bb_opt_complementally = "s-d:d-s". Only one flag value is |
| 141 | added to bb_getopt_ulflags's return value depending on the |
| 142 | position of the options on the command line. If one of the |
| 143 | two options requires an argument pointer (":" in applet_opts |
| 144 | as in "d:") optarg is set accordingly. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 145 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 146 | char *smax_print_depth; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 147 | |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 148 | bb_opt_complementally = "s-d:d-s:x-x"; |
| 149 | opt = bb_getopt_ulflags(argc, argv, "sd:x", &smax_print_depth); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 150 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 151 | if (opt & 2) { |
| 152 | max_print_depth = bb_xgetularg10_bnd(smax_print_depth, |
| 153 | 0, INT_MAX); |
| 154 | } |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 155 | if(opt & 4) |
| 156 | printf("Detected odd -x usaging\n"); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 157 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 158 | "~" A tilde between two options, or between an option and a group |
| 159 | of options, means that they are mutually exclusive. Unlike |
| 160 | the "-" case above, an error will be forced if the options |
| 161 | are used together. |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 162 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 163 | For example: |
| 164 | The cut applet must have only one type of list specified, so |
| 165 | -b, -c and -f are mutally exclusive and should raise an error |
| 166 | if specified together. In this case you must set |
| 167 | bb_opt_complementally = "b~cf:c~bf:f~bc". If two of the |
| 168 | mutually exclusive options are found, bb_getopt_ulflags's |
| 169 | return value will have the error flag set (BB_GETOPT_ERROR) so |
| 170 | that we can check for it: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 171 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 172 | if (flags & BB_GETOPT_ERROR) |
| 173 | bb_show_usage(); |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 174 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 175 | "!" If previous point set BB_GETOPT_ERROR, don`t return and call |
| 176 | previous example internally |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 177 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 178 | "*" A star after a char in bb_opt_complementally means that the |
| 179 | option can occur multiple times: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 180 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 181 | For example: |
| 182 | The grep applet can have one or more "-e pattern" arguments. |
| 183 | In this case you should use bb_getopt_ulflags() as follows: |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 184 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 185 | llist_t *patterns = NULL; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 186 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 187 | (this pointer must be initializated to NULL if the list is empty |
| 188 | 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] | 189 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 190 | bb_opt_complementally = "e*"; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 191 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 192 | bb_getopt_ulflags(argc, argv, "e:", &patterns); |
| 193 | $ grep -e user -e root /etc/passwd |
| 194 | root:x:0:0:root:/root:/bin/bash |
| 195 | user:x:500:500::/home/user:/bin/bash |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 196 | */ |
| 197 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 198 | const char *bb_opt_complementally; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 199 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 200 | typedef struct { |
Glenn L McGrath | 850b05f | 2003-12-19 10:13:10 +0000 | [diff] [blame] | 201 | unsigned char opt; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 202 | char list_flg; |
| 203 | unsigned long switch_on; |
| 204 | unsigned long switch_off; |
| 205 | unsigned long incongruously; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 206 | void **optarg; /* char **optarg or llist_t **optarg */ |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame^] | 207 | int *counter; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 208 | } t_complementally; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 209 | |
| 210 | /* You can set bb_applet_long_options for parse called long options */ |
| 211 | |
| 212 | static const struct option bb_default_long_options[] = { |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 213 | /* { "help", 0, NULL, '?' }, */ |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 214 | { 0, 0, 0, 0 } |
| 215 | }; |
| 216 | |
| 217 | const struct option *bb_applet_long_options = bb_default_long_options; |
| 218 | |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 219 | unsigned long |
| 220 | bb_getopt_ulflags (int argc, char **argv, const char *applet_opts, ...) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 221 | { |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 222 | unsigned long flags = 0; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 223 | t_complementally complementally[sizeof(flags) * 8 + 1]; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 224 | int c; |
| 225 | const unsigned char *s; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 226 | t_complementally *on_off; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 227 | va_list p; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 228 | const struct option *l_o; |
| 229 | char flg_show_usage_if_error = 0; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 230 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 231 | va_start (p, applet_opts); |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 232 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 233 | /* skip GNU extension */ |
| 234 | s = applet_opts; |
| 235 | if(*s == '+' || *s == '-') |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 236 | s++; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 237 | |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 238 | c = 0; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 239 | on_off = complementally; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 240 | for (; *s; s++) { |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame^] | 241 | if(c >= (int)(sizeof(flags)*8)) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 242 | break; |
| 243 | on_off->opt = *s; |
| 244 | on_off->switch_on = (1 << c); |
| 245 | on_off->list_flg = 0; |
| 246 | on_off->switch_off = 0; |
| 247 | on_off->incongruously = 0; |
| 248 | on_off->optarg = NULL; |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame^] | 249 | on_off->counter = NULL; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 250 | if (s[1] == ':') { |
| 251 | on_off->optarg = va_arg (p, void **); |
| 252 | do |
| 253 | s++; |
| 254 | while (s[1] == ':'); |
| 255 | } |
| 256 | on_off++; |
| 257 | c++; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 258 | } |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 259 | on_off->opt = 0; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 260 | |
| 261 | for(l_o = bb_applet_long_options; l_o->name; l_o++) { |
| 262 | for(on_off = complementally; on_off->opt != 0; on_off++) |
| 263 | if(on_off->opt == l_o->val) |
| 264 | break; |
| 265 | if(on_off->opt == 0) { |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame^] | 266 | if(c >= (int)(sizeof(flags)*8)) |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 267 | break; |
| 268 | on_off->opt = l_o->val; |
| 269 | on_off->switch_on = (1 << c); |
| 270 | on_off->list_flg = 0; |
| 271 | on_off->switch_off = 0; |
| 272 | on_off->incongruously = 0; |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame^] | 273 | on_off->counter = NULL; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 274 | if(l_o->has_arg != no_argument) |
| 275 | on_off->optarg = va_arg (p, void **); |
| 276 | else |
| 277 | on_off->optarg = NULL; |
| 278 | on_off++; |
| 279 | on_off->opt = 0; |
| 280 | c++; |
| 281 | } |
| 282 | } |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 283 | c = 0; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 284 | for (s = bb_opt_complementally; s && *s; s++) { |
| 285 | t_complementally *pair; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 286 | |
| 287 | if (*s == ':') { |
| 288 | c = 0; |
| 289 | continue; |
| 290 | } |
| 291 | if (c) |
| 292 | continue; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 293 | if(*s == '!') { |
| 294 | flg_show_usage_if_error = '!'; |
| 295 | continue; |
| 296 | } |
| 297 | for (on_off = complementally; on_off->opt; on_off++) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 298 | if (on_off->opt == *s) |
| 299 | break; |
| 300 | pair = on_off; |
| 301 | for(s++; *s && *s != ':'; s++) { |
| 302 | if (*s == '-' || *s == '~') { |
| 303 | c = *s; |
| 304 | } else if(*s == '*') { |
| 305 | pair->list_flg++; |
| 306 | } else { |
| 307 | unsigned long *pair_switch = &(pair->switch_on); |
| 308 | if(c) |
| 309 | pair_switch = c == '-' ? &(pair->switch_off) : &(pair->incongruously); |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 310 | for (on_off = complementally; on_off->opt; on_off++) |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 311 | if (on_off->opt == *s) { |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame^] | 312 | if(pair_switch == &(on_off->switch_on)) |
| 313 | on_off->counter = va_arg (p, int *); |
| 314 | else |
| 315 | *pair_switch |= on_off->switch_on; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 316 | break; |
| 317 | } |
| 318 | } |
| 319 | } |
| 320 | s--; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 321 | } |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 322 | |
| 323 | while ((c = getopt_long (argc, argv, applet_opts, |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 324 | bb_applet_long_options, NULL)) > 0) { |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 325 | unsigned long trigger; |
| 326 | |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 327 | for (on_off = complementally; on_off->opt != c; on_off++) { |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 328 | if(!on_off->opt) |
| 329 | bb_show_usage (); |
| 330 | } |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 331 | if(flags & on_off->incongruously) { |
| 332 | if(flg_show_usage_if_error) |
| 333 | bb_show_usage (); |
Mike Frysinger | 348e84c | 2005-05-11 00:39:03 +0000 | [diff] [blame] | 334 | flags |= BB_GETOPT_ERROR; |
"Vladimir N. Oleynik" | 27421a1 | 2005-09-05 14:46:07 +0000 | [diff] [blame] | 335 | } |
"Vladimir N. Oleynik" | 45a8ed8 | 2005-09-06 16:08:33 +0000 | [diff] [blame] | 336 | trigger = on_off->switch_on & on_off->switch_off; |
| 337 | flags &= ~(on_off->switch_off ^ trigger); |
| 338 | flags |= on_off->switch_on ^ trigger; |
| 339 | flags ^= trigger; |
"Vladimir N. Oleynik" | be0ed3d | 2005-10-04 16:48:26 +0000 | [diff] [blame^] | 340 | if(on_off->counter) |
| 341 | (*(on_off->counter))++; |
Mike Frysinger | 2bf88a8 | 2005-04-18 22:42:58 +0000 | [diff] [blame] | 342 | if(on_off->list_flg) { |
| 343 | *(llist_t **)(on_off->optarg) = |
| 344 | llist_add_to(*(llist_t **)(on_off->optarg), optarg); |
| 345 | } else if (on_off->optarg) { |
| 346 | *(char **)(on_off->optarg) = optarg; |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | return flags; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 351 | } |