blob: e8d7e523c2ea01ac8b96f6229d4f90e71c13b7b6 [file] [log] [blame]
Guido van Rossum871b8051994-04-28 12:33:58 +00001/*---------------------------------------------------------------------------*
2 * <RCS keywords>
3 *
4 * C++ Library
5 *
6 * Copyright 1992-1994, David Gottner
7 *
8 * All Rights Reserved
9 *
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000010 * Permission to use, copy, modify, and distribute this software and its
11 * documentation for any purpose and without fee is hereby granted,
Guido van Rossum871b8051994-04-28 12:33:58 +000012 * provided that the above copyright notice, this permission notice and
13 * the following disclaimer notice appear unmodified in all copies.
14 *
15 * I DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL I
17 * BE LIABLE FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
18 * DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER
19 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
20 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 *
22 * Nevertheless, I would like to know about bugs in this library or
23 * suggestions for improvment. Send bug reports and feedback to
24 * davegottner@delphi.com.
25 *---------------------------------------------------------------------------*/
Guido van Rossum2508ade1994-04-14 14:08:22 +000026
Thomas Wouters0e3f5912006-08-11 14:57:12 +000027/* Modified to support --help and --version, as well as /? on Windows
28 * by Georg Brandl. */
29
Martin v. Löwis790465f2008-04-05 20:41:37 +000030#include <Python.h>
Guido van Rossum2508ade1994-04-14 14:08:22 +000031#include <stdio.h>
32#include <string.h>
Martin v. Löwis790465f2008-04-05 20:41:37 +000033#include <wchar.h>
Benjamin Petersone425bd72017-12-14 23:48:12 -080034#include "internal/pygetopt.h"
Guido van Rossum2508ade1994-04-14 14:08:22 +000035
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000036#ifdef __cplusplus
37extern "C" {
38#endif
39
Thomas Wouters2cffc7d2000-11-03 08:18:37 +000040int _PyOS_opterr = 1; /* generate error messages */
41int _PyOS_optind = 1; /* index into argv array */
Martin v. Löwis790465f2008-04-05 20:41:37 +000042wchar_t *_PyOS_optarg = NULL; /* optional argument */
Guido van Rossum2508ade1994-04-14 14:08:22 +000043
Antoine Pitrou86838b02012-02-21 19:03:47 +010044static wchar_t *opt_ptr = L"";
45
46void _PyOS_ResetGetOpt(void)
47{
Ezio Melottia0dd22e2012-11-23 18:48:32 +020048 _PyOS_opterr = 1;
Antoine Pitrou86838b02012-02-21 19:03:47 +010049 _PyOS_optind = 1;
50 _PyOS_optarg = NULL;
51 opt_ptr = L"";
52}
53
Benjamin Peterson42aa93b2017-12-09 10:26:52 -080054int _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring,
55 const _PyOS_LongOption *longopts, int *longindex)
Guido van Rossum2508ade1994-04-14 14:08:22 +000056{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000057 wchar_t *ptr;
58 wchar_t option;
Guido van Rossum2508ade1994-04-14 14:08:22 +000059
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000060 if (*opt_ptr == '\0') {
Guido van Rossum2508ade1994-04-14 14:08:22 +000061
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000062 if (_PyOS_optind >= argc)
63 return -1;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000064#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000065 else if (wcscmp(argv[_PyOS_optind], L"/?") == 0) {
66 ++_PyOS_optind;
67 return 'h';
68 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +000069#endif
70
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000071 else if (argv[_PyOS_optind][0] != L'-' ||
72 argv[_PyOS_optind][1] == L'\0' /* lone dash */ )
73 return -1;
Guido van Rossum2508ade1994-04-14 14:08:22 +000074
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000075 else if (wcscmp(argv[_PyOS_optind], L"--") == 0) {
76 ++_PyOS_optind;
77 return -1;
78 }
Guido van Rossum2508ade1994-04-14 14:08:22 +000079
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000080 else if (wcscmp(argv[_PyOS_optind], L"--help") == 0) {
81 ++_PyOS_optind;
82 return 'h';
83 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +000084
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000085 else if (wcscmp(argv[_PyOS_optind], L"--version") == 0) {
86 ++_PyOS_optind;
87 return 'V';
88 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +000089
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000090 opt_ptr = &argv[_PyOS_optind++][1];
91 }
Guido van Rossum2508ade1994-04-14 14:08:22 +000092
Ezio Melotti7c663192012-11-18 13:55:52 +020093 if ((option = *opt_ptr++) == L'\0')
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000094 return -1;
Christian Heimes33fe8092008-04-13 13:53:33 +000095
Benjamin Peterson42aa93b2017-12-09 10:26:52 -080096 if (option == L'-') {
97 // Parse long option.
98 if (*opt_ptr == L'\0') {
99 fprintf(stderr, "expected long option\n");
100 return -1;
101 }
102 *longindex = 0;
103 const _PyOS_LongOption *opt;
104 for (opt = &longopts[*longindex]; opt->name; opt = &longopts[++(*longindex)]) {
105 if (!wcscmp(opt->name, opt_ptr))
106 break;
107 }
108 if (!opt->name) {
109 fprintf(stderr, "unknown option %ls\n", argv[_PyOS_optind - 1]);
110 return '_';
111 }
112 opt_ptr = L"";
113 if (!opt->has_arg) {
114 return opt->val;
115 }
116 if (_PyOS_optind >= argc) {
117 fprintf(stderr, "Argument expected for the %ls options\n",
118 argv[_PyOS_optind - 1]);
119 return '_';
120 }
121 _PyOS_optarg = argv[_PyOS_optind++];
122 return opt->val;
123 }
124
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000125 if (option == 'J') {
Ezio Melotti7c663192012-11-18 13:55:52 +0200126 if (_PyOS_opterr)
127 fprintf(stderr, "-J is reserved for Jython\n");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000128 return '_';
129 }
Christian Heimes33fe8092008-04-13 13:53:33 +0000130
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000131 if ((ptr = wcschr(optstring, option)) == NULL) {
132 if (_PyOS_opterr)
Ezio Melotti7c663192012-11-18 13:55:52 +0200133 fprintf(stderr, "Unknown option: -%c\n", (char)option);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000134 return '_';
135 }
Guido van Rossum2508ade1994-04-14 14:08:22 +0000136
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000137 if (*(ptr + 1) == L':') {
138 if (*opt_ptr != L'\0') {
139 _PyOS_optarg = opt_ptr;
140 opt_ptr = L"";
141 }
Guido van Rossum2508ade1994-04-14 14:08:22 +0000142
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000143 else {
144 if (_PyOS_optind >= argc) {
145 if (_PyOS_opterr)
146 fprintf(stderr,
147 "Argument expected for the -%c option\n", (char)option);
148 return '_';
149 }
Guido van Rossum2508ade1994-04-14 14:08:22 +0000150
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000151 _PyOS_optarg = argv[_PyOS_optind++];
152 }
153 }
Guido van Rossum2508ade1994-04-14 14:08:22 +0000154
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000155 return option;
Guido van Rossum2508ade1994-04-14 14:08:22 +0000156}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000157
158#ifdef __cplusplus
159}
160#endif
161