1 /******************************************************************************
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2016, 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 an optional argument
51 * "f^" - Option has optional single-char sub-options
52 * "f|" - Option has required single-char sub-options
59 #define ACPI_OPTION_ERROR(msg, badchar) \
60 if (AcpiGbl_Opterr) {AcpiLogError ("%s%c\n", msg, badchar);}
63 int AcpiGbl_Opterr
= 1;
64 int AcpiGbl_Optind
= 1;
65 int AcpiGbl_SubOptChar
= 0;
68 static int CurrentCharPtr
= 1;
71 /*******************************************************************************
73 * FUNCTION: AcpiGetoptArgument
75 * PARAMETERS: argc, argv - from main
77 * RETURN: 0 if an argument was found, -1 otherwise. Sets AcpiGbl_Optarg
78 * to point to the next argument.
80 * DESCRIPTION: Get the next argument. Used to obtain arguments for the
81 * two-character options after the original call to AcpiGetopt.
82 * Note: Either the argument starts at the next character after
83 * the option, or it is pointed to by the next argv entry.
84 * (After call to AcpiGetopt, we need to backup to the previous
87 ******************************************************************************/
98 if (argv
[AcpiGbl_Optind
][(int) (CurrentCharPtr
+1)] != '\0')
100 AcpiGbl_Optarg
= &argv
[AcpiGbl_Optind
++][(int) (CurrentCharPtr
+1)];
102 else if (++AcpiGbl_Optind
>= argc
)
104 ACPI_OPTION_ERROR ("Option requires an argument: -", 'v');
111 AcpiGbl_Optarg
= argv
[AcpiGbl_Optind
++];
119 /*******************************************************************************
121 * FUNCTION: AcpiGetopt
123 * PARAMETERS: argc, argv - from main
124 * opts - options info list
126 * RETURN: Option character or ACPI_OPT_END
128 * DESCRIPTION: Get the next option
130 ******************************************************************************/
142 if (CurrentCharPtr
== 1)
144 if (AcpiGbl_Optind
>= argc
||
145 argv
[AcpiGbl_Optind
][0] != '-' ||
146 argv
[AcpiGbl_Optind
][1] == '\0')
148 return (ACPI_OPT_END
);
150 else if (strcmp (argv
[AcpiGbl_Optind
], "--") == 0)
153 return (ACPI_OPT_END
);
159 CurrentChar
= argv
[AcpiGbl_Optind
][CurrentCharPtr
];
161 /* Make sure that the option is legal */
163 if (CurrentChar
== ':' ||
164 (OptsPtr
= strchr (opts
, CurrentChar
)) == NULL
)
166 ACPI_OPTION_ERROR ("Illegal option: -", CurrentChar
);
168 if (argv
[AcpiGbl_Optind
][++CurrentCharPtr
] == '\0')
177 /* Option requires an argument? */
179 if (*++OptsPtr
== ':')
181 if (argv
[AcpiGbl_Optind
][(int) (CurrentCharPtr
+1)] != '\0')
183 AcpiGbl_Optarg
= &argv
[AcpiGbl_Optind
++][(int) (CurrentCharPtr
+1)];
185 else if (++AcpiGbl_Optind
>= argc
)
188 "Option requires an argument: -", CurrentChar
);
195 AcpiGbl_Optarg
= argv
[AcpiGbl_Optind
++];
201 /* Option has an optional argument? */
203 else if (*OptsPtr
== '+')
205 if (argv
[AcpiGbl_Optind
][(int) (CurrentCharPtr
+1)] != '\0')
207 AcpiGbl_Optarg
= &argv
[AcpiGbl_Optind
++][(int) (CurrentCharPtr
+1)];
209 else if (++AcpiGbl_Optind
>= argc
)
211 AcpiGbl_Optarg
= NULL
;
215 AcpiGbl_Optarg
= argv
[AcpiGbl_Optind
++];
221 /* Option has optional single-char arguments? */
223 else if (*OptsPtr
== '^')
225 if (argv
[AcpiGbl_Optind
][(int) (CurrentCharPtr
+1)] != '\0')
227 AcpiGbl_Optarg
= &argv
[AcpiGbl_Optind
][(int) (CurrentCharPtr
+1)];
231 AcpiGbl_Optarg
= "^";
234 AcpiGbl_SubOptChar
= AcpiGbl_Optarg
[0];
239 /* Option has a required single-char argument? */
241 else if (*OptsPtr
== '|')
243 if (argv
[AcpiGbl_Optind
][(int) (CurrentCharPtr
+1)] != '\0')
245 AcpiGbl_Optarg
= &argv
[AcpiGbl_Optind
][(int) (CurrentCharPtr
+1)];
250 "Option requires a single-character suboption: -",
257 AcpiGbl_SubOptChar
= AcpiGbl_Optarg
[0];
262 /* Option with no arguments */
266 if (argv
[AcpiGbl_Optind
][++CurrentCharPtr
] == '\0')
272 AcpiGbl_Optarg
= NULL
;
275 return (CurrentChar
);