1 /******************************************************************************
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2015, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
45 * ACPICA getopt() implementation
48 * "f" - Option has no arguments
49 * "f:" - Option requires an argument
50 * "f^" - Option has optional single-char sub-options
51 * "f|" - Option has required single-char sub-options
54 #include <acpi/acpi.h>
58 #define ACPI_OPTION_ERROR(msg, badchar) \
59 if (acpi_gbl_opterr) {acpi_log_error ("%s%c\n", msg, badchar);}
61 int acpi_gbl_opterr
= 1;
62 int acpi_gbl_optind
= 1;
63 int acpi_gbl_sub_opt_char
= 0;
64 char *acpi_gbl_optarg
;
66 static int current_char_ptr
= 1;
68 /*******************************************************************************
70 * FUNCTION: acpi_getopt_argument
72 * PARAMETERS: argc, argv - from main
74 * RETURN: 0 if an argument was found, -1 otherwise. Sets acpi_gbl_Optarg
75 * to point to the next argument.
77 * DESCRIPTION: Get the next argument. Used to obtain arguments for the
78 * two-character options after the original call to acpi_getopt.
79 * Note: Either the argument starts at the next character after
80 * the option, or it is pointed to by the next argv entry.
81 * (After call to acpi_getopt, we need to backup to the previous
84 ******************************************************************************/
86 int acpi_getopt_argument(int argc
, char **argv
)
91 if (argv
[acpi_gbl_optind
][(int)(current_char_ptr
+ 1)] != '\0') {
93 &argv
[acpi_gbl_optind
++][(int)(current_char_ptr
+ 1)];
94 } else if (++acpi_gbl_optind
>= argc
) {
95 ACPI_OPTION_ERROR("Option requires an argument: -", 'v');
100 acpi_gbl_optarg
= argv
[acpi_gbl_optind
++];
103 current_char_ptr
= 1;
107 /*******************************************************************************
109 * FUNCTION: acpi_getopt
111 * PARAMETERS: argc, argv - from main
112 * opts - options info list
114 * RETURN: Option character or ACPI_OPT_END
116 * DESCRIPTION: Get the next option
118 ******************************************************************************/
120 int acpi_getopt(int argc
, char **argv
, char *opts
)
125 if (current_char_ptr
== 1) {
126 if (acpi_gbl_optind
>= argc
||
127 argv
[acpi_gbl_optind
][0] != '-' ||
128 argv
[acpi_gbl_optind
][1] == '\0') {
129 return (ACPI_OPT_END
);
130 } else if (ACPI_STRCMP(argv
[acpi_gbl_optind
], "--") == 0) {
132 return (ACPI_OPT_END
);
138 current_char
= argv
[acpi_gbl_optind
][current_char_ptr
];
140 /* Make sure that the option is legal */
142 if (current_char
== ':' ||
143 (opts_ptr
= ACPI_STRCHR(opts
, current_char
)) == NULL
) {
144 ACPI_OPTION_ERROR("Illegal option: -", current_char
);
146 if (argv
[acpi_gbl_optind
][++current_char_ptr
] == '\0') {
148 current_char_ptr
= 1;
154 /* Option requires an argument? */
156 if (*++opts_ptr
== ':') {
157 if (argv
[acpi_gbl_optind
][(int)(current_char_ptr
+ 1)] != '\0') {
159 &argv
[acpi_gbl_optind
++][(int)
160 (current_char_ptr
+ 1)];
161 } else if (++acpi_gbl_optind
>= argc
) {
162 ACPI_OPTION_ERROR("Option requires an argument: -",
165 current_char_ptr
= 1;
168 acpi_gbl_optarg
= argv
[acpi_gbl_optind
++];
171 current_char_ptr
= 1;
174 /* Option has an optional argument? */
176 else if (*opts_ptr
== '+') {
177 if (argv
[acpi_gbl_optind
][(int)(current_char_ptr
+ 1)] != '\0') {
179 &argv
[acpi_gbl_optind
++][(int)
180 (current_char_ptr
+ 1)];
181 } else if (++acpi_gbl_optind
>= argc
) {
182 acpi_gbl_optarg
= NULL
;
184 acpi_gbl_optarg
= argv
[acpi_gbl_optind
++];
187 current_char_ptr
= 1;
190 /* Option has optional single-char arguments? */
192 else if (*opts_ptr
== '^') {
193 if (argv
[acpi_gbl_optind
][(int)(current_char_ptr
+ 1)] != '\0') {
195 &argv
[acpi_gbl_optind
][(int)(current_char_ptr
+ 1)];
197 acpi_gbl_optarg
= "^";
200 acpi_gbl_sub_opt_char
= acpi_gbl_optarg
[0];
202 current_char_ptr
= 1;
205 /* Option has a required single-char argument? */
207 else if (*opts_ptr
== '|') {
208 if (argv
[acpi_gbl_optind
][(int)(current_char_ptr
+ 1)] != '\0') {
210 &argv
[acpi_gbl_optind
][(int)(current_char_ptr
+ 1)];
213 ("Option requires a single-character suboption: -",
216 current_char_ptr
= 1;
220 acpi_gbl_sub_opt_char
= acpi_gbl_optarg
[0];
222 current_char_ptr
= 1;
225 /* Option with no arguments */
228 if (argv
[acpi_gbl_optind
][++current_char_ptr
] == '\0') {
229 current_char_ptr
= 1;
233 acpi_gbl_optarg
= NULL
;
236 return (current_char
);