getopt.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. /******************************************************************************
  2. *
  3. * Module Name: getopt
  4. *
  5. *****************************************************************************/
  6. /*
  7. * Copyright (C) 2000 - 2016, Intel Corp.
  8. * All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions, and the following disclaimer,
  15. * without modification.
  16. * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  17. * substantially similar to the "NO WARRANTY" disclaimer below
  18. * ("Disclaimer") and any redistribution must be conditioned upon
  19. * including a substantially similar Disclaimer requirement for further
  20. * binary redistribution.
  21. * 3. Neither the names of the above-listed copyright holders nor the names
  22. * of any contributors may be used to endorse or promote products derived
  23. * from this software without specific prior written permission.
  24. *
  25. * Alternatively, this software may be distributed under the terms of the
  26. * GNU General Public License ("GPL") version 2 as published by the Free
  27. * Software Foundation.
  28. *
  29. * NO WARRANTY
  30. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  31. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  32. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
  33. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  34. * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  35. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  36. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  37. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  38. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  39. * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  40. * POSSIBILITY OF SUCH DAMAGES.
  41. */
  42. /*
  43. * ACPICA getopt() implementation
  44. *
  45. * Option strings:
  46. * "f" - Option has no arguments
  47. * "f:" - Option requires an argument
  48. * "f+" - Option has an optional argument
  49. * "f^" - Option has optional single-char sub-options
  50. * "f|" - Option has required single-char sub-options
  51. */
  52. #include <acpi/acpi.h>
  53. #include "accommon.h"
  54. #include "acapps.h"
  55. #define ACPI_OPTION_ERROR(msg, badchar) \
  56. if (acpi_gbl_opterr) {fprintf (stderr, "%s%c\n", msg, badchar);}
  57. int acpi_gbl_opterr = 1;
  58. int acpi_gbl_optind = 1;
  59. int acpi_gbl_sub_opt_char = 0;
  60. char *acpi_gbl_optarg;
  61. static int current_char_ptr = 1;
  62. /*******************************************************************************
  63. *
  64. * FUNCTION: acpi_getopt_argument
  65. *
  66. * PARAMETERS: argc, argv - from main
  67. *
  68. * RETURN: 0 if an argument was found, -1 otherwise. Sets acpi_gbl_Optarg
  69. * to point to the next argument.
  70. *
  71. * DESCRIPTION: Get the next argument. Used to obtain arguments for the
  72. * two-character options after the original call to acpi_getopt.
  73. * Note: Either the argument starts at the next character after
  74. * the option, or it is pointed to by the next argv entry.
  75. * (After call to acpi_getopt, we need to backup to the previous
  76. * argv entry).
  77. *
  78. ******************************************************************************/
  79. int acpi_getopt_argument(int argc, char **argv)
  80. {
  81. acpi_gbl_optind--;
  82. current_char_ptr++;
  83. if (argv[acpi_gbl_optind][(int)(current_char_ptr + 1)] != '\0') {
  84. acpi_gbl_optarg =
  85. &argv[acpi_gbl_optind++][(int)(current_char_ptr + 1)];
  86. } else if (++acpi_gbl_optind >= argc) {
  87. ACPI_OPTION_ERROR("\nOption requires an argument", 0);
  88. current_char_ptr = 1;
  89. return (-1);
  90. } else {
  91. acpi_gbl_optarg = argv[acpi_gbl_optind++];
  92. }
  93. current_char_ptr = 1;
  94. return (0);
  95. }
  96. /*******************************************************************************
  97. *
  98. * FUNCTION: acpi_getopt
  99. *
  100. * PARAMETERS: argc, argv - from main
  101. * opts - options info list
  102. *
  103. * RETURN: Option character or ACPI_OPT_END
  104. *
  105. * DESCRIPTION: Get the next option
  106. *
  107. ******************************************************************************/
  108. int acpi_getopt(int argc, char **argv, char *opts)
  109. {
  110. int current_char;
  111. char *opts_ptr;
  112. if (current_char_ptr == 1) {
  113. if (acpi_gbl_optind >= argc ||
  114. argv[acpi_gbl_optind][0] != '-' ||
  115. argv[acpi_gbl_optind][1] == '\0') {
  116. return (ACPI_OPT_END);
  117. } else if (strcmp(argv[acpi_gbl_optind], "--") == 0) {
  118. acpi_gbl_optind++;
  119. return (ACPI_OPT_END);
  120. }
  121. }
  122. /* Get the option */
  123. current_char = argv[acpi_gbl_optind][current_char_ptr];
  124. /* Make sure that the option is legal */
  125. if (current_char == ':' ||
  126. (opts_ptr = strchr(opts, current_char)) == NULL) {
  127. ACPI_OPTION_ERROR("Illegal option: -", current_char);
  128. if (argv[acpi_gbl_optind][++current_char_ptr] == '\0') {
  129. acpi_gbl_optind++;
  130. current_char_ptr = 1;
  131. }
  132. return ('?');
  133. }
  134. /* Option requires an argument? */
  135. if (*++opts_ptr == ':') {
  136. if (argv[acpi_gbl_optind][(int)(current_char_ptr + 1)] != '\0') {
  137. acpi_gbl_optarg =
  138. &argv[acpi_gbl_optind++][(int)
  139. (current_char_ptr + 1)];
  140. } else if (++acpi_gbl_optind >= argc) {
  141. ACPI_OPTION_ERROR("Option requires an argument: -",
  142. current_char);
  143. current_char_ptr = 1;
  144. return ('?');
  145. } else {
  146. acpi_gbl_optarg = argv[acpi_gbl_optind++];
  147. }
  148. current_char_ptr = 1;
  149. }
  150. /* Option has an optional argument? */
  151. else if (*opts_ptr == '+') {
  152. if (argv[acpi_gbl_optind][(int)(current_char_ptr + 1)] != '\0') {
  153. acpi_gbl_optarg =
  154. &argv[acpi_gbl_optind++][(int)
  155. (current_char_ptr + 1)];
  156. } else if (++acpi_gbl_optind >= argc) {
  157. acpi_gbl_optarg = NULL;
  158. } else {
  159. acpi_gbl_optarg = argv[acpi_gbl_optind++];
  160. }
  161. current_char_ptr = 1;
  162. }
  163. /* Option has optional single-char arguments? */
  164. else if (*opts_ptr == '^') {
  165. if (argv[acpi_gbl_optind][(int)(current_char_ptr + 1)] != '\0') {
  166. acpi_gbl_optarg =
  167. &argv[acpi_gbl_optind][(int)(current_char_ptr + 1)];
  168. } else {
  169. acpi_gbl_optarg = "^";
  170. }
  171. acpi_gbl_sub_opt_char = acpi_gbl_optarg[0];
  172. acpi_gbl_optind++;
  173. current_char_ptr = 1;
  174. }
  175. /* Option has a required single-char argument? */
  176. else if (*opts_ptr == '|') {
  177. if (argv[acpi_gbl_optind][(int)(current_char_ptr + 1)] != '\0') {
  178. acpi_gbl_optarg =
  179. &argv[acpi_gbl_optind][(int)(current_char_ptr + 1)];
  180. } else {
  181. ACPI_OPTION_ERROR
  182. ("Option requires a single-character suboption: -",
  183. current_char);
  184. current_char_ptr = 1;
  185. return ('?');
  186. }
  187. acpi_gbl_sub_opt_char = acpi_gbl_optarg[0];
  188. acpi_gbl_optind++;
  189. current_char_ptr = 1;
  190. }
  191. /* Option with no arguments */
  192. else {
  193. if (argv[acpi_gbl_optind][++current_char_ptr] == '\0') {
  194. current_char_ptr = 1;
  195. acpi_gbl_optind++;
  196. }
  197. acpi_gbl_optarg = NULL;
  198. }
  199. return (current_char);
  200. }