mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 21:04:56 +00:00
add documentation for long options and touch up the current docs now that i actually understand how to use the function myself :)
This commit is contained in:
parent
38a33f91c0
commit
e5d0bde697
@ -28,6 +28,7 @@
|
|||||||
|
|
||||||
/* Documentation !
|
/* Documentation !
|
||||||
|
|
||||||
|
unsigned long
|
||||||
bb_getopt_ulflags (int argc, char **argv, const char *applet_opts, ...)
|
bb_getopt_ulflags (int argc, char **argv, const char *applet_opts, ...)
|
||||||
|
|
||||||
The command line options must be declared in const char
|
The command line options must be declared in const char
|
||||||
@ -35,24 +36,25 @@ bb_getopt_ulflags (int argc, char **argv, const char *applet_opts, ...)
|
|||||||
|
|
||||||
flags = bb_getopt_ulflags(argc, argv, "rnug");
|
flags = bb_getopt_ulflags(argc, argv, "rnug");
|
||||||
|
|
||||||
If one of the given options is found a flag value is added to
|
If one of the given options is found, a flag value is added to
|
||||||
the unsigned long returned by bb_getopt_ulflags.
|
the return value (an unsigned long).
|
||||||
|
|
||||||
The value of this flag is given by the position of the char in
|
The flag value is determined by the position of the char in
|
||||||
const char *applet_opts so for example in this case:
|
applet_opts string. For example, in the above case:
|
||||||
|
|
||||||
flags = bb_getopt_ulflags(argc, argv, "rnug");
|
flags = bb_getopt_ulflags(argc, argv, "rnug");
|
||||||
|
|
||||||
"r" will add 1
|
"r" will add 1 (bit 1 : 0x01)
|
||||||
"n" will add 2
|
"n" will add 2 (bit 2 : 0x02)
|
||||||
"u will add 4
|
"u will add 4 (bit 3 : 0x03)
|
||||||
"g" will add 8
|
"g" will add 8 (bit 4 : 0x04)
|
||||||
|
|
||||||
and so on.
|
and so on. You can also look at the return value as a bit
|
||||||
|
field and each option sets one of bits.
|
||||||
|
|
||||||
If an argument is required by one of the options add a ":"
|
":" If one of the options requires an argument, then add a ":"
|
||||||
after the char in const char *applet_opts and provide a pointer
|
after the char in applet_opts and provide a pointer to store
|
||||||
where the arg could be stored if it is found, for example:
|
the argument. For example:
|
||||||
|
|
||||||
char *pointer_to_arg_for_a;
|
char *pointer_to_arg_for_a;
|
||||||
char *pointer_to_arg_for_b;
|
char *pointer_to_arg_for_b;
|
||||||
@ -63,20 +65,43 @@ bb_getopt_ulflags (int argc, char **argv, const char *applet_opts, ...)
|
|||||||
&pointer_to_arg_for_a, &pointer_to_arg_for_b,
|
&pointer_to_arg_for_a, &pointer_to_arg_for_b,
|
||||||
&pointer_to_arg_for_c, &pointer_to_arg_for_d);
|
&pointer_to_arg_for_c, &pointer_to_arg_for_d);
|
||||||
|
|
||||||
The type of the pointer (char* or llist_t *) can be influenced
|
The type of the pointer (char* or llist_t *) may be controlled
|
||||||
by the "*" special character that can be set in const char
|
by the "*" special character that is set in the external string
|
||||||
*bb_opt_complementaly (see below).
|
bb_opt_complementaly (see below for more info).
|
||||||
|
|
||||||
|
static const struct option bb_default_long_options[]
|
||||||
|
|
||||||
|
This struct allows you to define long options. The syntax for
|
||||||
|
declaring the array is just like that of getopt's longopts.
|
||||||
|
|
||||||
|
static const struct option applet_long_options[] = {
|
||||||
|
{ "verbose", 0, 0, "v" },
|
||||||
|
{ 0, 0, 0, 0 }
|
||||||
|
};
|
||||||
|
bb_applet_long_options = applet_long_options;
|
||||||
|
|
||||||
|
The first parameter is the long option that you would pass to
|
||||||
|
the applet (--verbose) in place of the short option (-v). The
|
||||||
|
second field determines whether the option has an argument.
|
||||||
|
You can set this to 0, 1, or 2, or you can use the long named
|
||||||
|
defines of no_argument, required_argument, and optional_argument.
|
||||||
|
Just set the third argument to '0' or 'NULL'. The last argument
|
||||||
|
is simply the short option without the dash of course.
|
||||||
|
|
||||||
|
Note: a good applet will make long options configurable via the
|
||||||
|
config process and not a required feature. The current standard
|
||||||
|
is to name the config option CONFIG_FEATURE_<applet>_LONG_OPTIONS.
|
||||||
|
|
||||||
const char *bb_opt_complementaly
|
const char *bb_opt_complementaly
|
||||||
|
|
||||||
":" The colon (":") is used in bb_opt_complementaly as separator
|
":" The colon (":") is used to separate groups of two or more chars
|
||||||
between groups of two or more chars and/or groups of chars and
|
and/or groups of chars and special characters (stating some
|
||||||
special characters (stating some conditions to be checked).
|
conditions to be checked).
|
||||||
|
|
||||||
"abc" If groups of two or more chars are specified the first char
|
"abc" If groups of two or more chars are specified, the first char
|
||||||
is the main option and the other chars are secondary options
|
is the main option and the other chars are secondary options.
|
||||||
whose flags will be turned on if the main option is found even
|
Their flags will be turned on if the main option is found even
|
||||||
if they are not specifed on the command line, for example:
|
if they are not specifed on the command line. For example:
|
||||||
|
|
||||||
bb_opt_complementaly = "abc";
|
bb_opt_complementaly = "abc";
|
||||||
|
|
||||||
@ -92,30 +117,28 @@ Special characters:
|
|||||||
to be unset (and ignored) if it is given on the command line.
|
to be unset (and ignored) if it is given on the command line.
|
||||||
|
|
||||||
For example:
|
For example:
|
||||||
The du applet can have the options "-s" and "-d depth", if
|
The du applet has the options "-s" and "-d depth". If
|
||||||
bb_getopt_ulflags finds -s then -d is unset or if it finds -d
|
bb_getopt_ulflags finds -s, then -d is unset or if it finds -d
|
||||||
then -s is unset. (Note: busybox implements the GNU
|
then -s is unset. (Note: busybox implements the GNU
|
||||||
"--max-depth" option as "-d".) In this case bb_getopt_ulflags's
|
"--max-depth" option as "-d".) To obtain this behavior, you
|
||||||
return value has no error flag set (0x80000000UL). To achieve
|
set bb_opt_complementaly = "s-d:d-s". Only one flag value is
|
||||||
this result you must set bb_opt_complementaly = "s-d:d-s".
|
added to bb_getopt_ulflags's return value depending on the
|
||||||
Only one flag value is added to bb_getopt_ulflags's return
|
position of the options on the command line. If one of the
|
||||||
value depending on the position of the options on the command
|
two options requires an argument pointer (":" in applet_opts
|
||||||
line. If one of the two options requires an argument pointer
|
as in "d:") optarg is set accordingly.
|
||||||
(":" in const char *applet_opts as in "d:") optarg is set
|
|
||||||
accordingly.
|
|
||||||
|
|
||||||
char *smax_print_depth;
|
char *smax_print_depth;
|
||||||
|
|
||||||
bb_opt_complementaly = "s-d:d-s";
|
bb_opt_complementaly = "s-d:d-s";
|
||||||
opt = bb_getopt_ulflags(argc, argv, "sd:" , &smax_print_depth);
|
opt = bb_getopt_ulflags(argc, argv, "sd:", &smax_print_depth);
|
||||||
|
|
||||||
if (opt & 2) {
|
if (opt & 2) {
|
||||||
max_print_depth = bb_xgetularg10_bnd(smax_print_depth,
|
max_print_depth = bb_xgetularg10_bnd(smax_print_depth,
|
||||||
0, INT_MAX);
|
0, INT_MAX);
|
||||||
}
|
}
|
||||||
|
|
||||||
"~" A tilde between two options or between an option and a group
|
"~" A tilde between two options, or between an option and a group
|
||||||
of options means that they are mutually exclusive. Unlike
|
of options, means that they are mutually exclusive. Unlike
|
||||||
the "-" case above, an error will be forced if the options
|
the "-" case above, an error will be forced if the options
|
||||||
are used together.
|
are used together.
|
||||||
|
|
||||||
@ -128,7 +151,7 @@ Special characters:
|
|||||||
return value will have the error flag set (0x80000000UL) so
|
return value will have the error flag set (0x80000000UL) so
|
||||||
that we can check for it:
|
that we can check for it:
|
||||||
|
|
||||||
if ((flags & 0x80000000UL)
|
if (flags & 0x80000000UL)
|
||||||
bb_show_usage();
|
bb_show_usage();
|
||||||
|
|
||||||
"*" A star after a char in bb_opt_complementaly means that the
|
"*" A star after a char in bb_opt_complementaly means that the
|
||||||
@ -138,15 +161,15 @@ Special characters:
|
|||||||
The grep applet can have one or more "-e pattern" arguments.
|
The grep applet can have one or more "-e pattern" arguments.
|
||||||
In this case you should use bb_getopt_ulflags() as follows:
|
In this case you should use bb_getopt_ulflags() as follows:
|
||||||
|
|
||||||
llist_t *patterns=NULL;
|
llist_t *patterns = NULL;
|
||||||
|
|
||||||
(this pointer must be initializated to NULL if the list is empty
|
(this pointer must be initializated to NULL if the list is empty
|
||||||
as required by *llist_add_to(llist_t *old_head, char *new_item).)
|
as required by *llist_add_to(llist_t *old_head, char *new_item).)
|
||||||
|
|
||||||
bb_opt_complementaly = "e*";
|
bb_opt_complementaly = "e*";
|
||||||
|
|
||||||
bb_getopt_ulflags (argc, argv, "e:", &patterns);
|
bb_getopt_ulflags(argc, argv, "e:", &patterns);
|
||||||
grep -e user -e root /etc/passwd
|
$ grep -e user -e root /etc/passwd
|
||||||
root:x:0:0:root:/root:/bin/bash
|
root:x:0:0:root:/root:/bin/bash
|
||||||
user:x:500:500::/home/user:/bin/bash
|
user:x:500:500::/home/user:/bin/bash
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user