-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgetopt.c
189 lines (177 loc) · 5.71 KB
/
getopt.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2004 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* Portions Copyright (c) 2005 Gunnar Ritter, Freiburg i. Br., Germany
*
* Sccsid @(#)getopt.c 1.7 (gritter) 6/22/05
*/
/* from OpenSolaris "getopt.c 1.23 05/06/08 SMI" */
/* Copyright (c) 1988 AT&T */
/* All Rights Reserved */
/*
* See getopt(3C) and SUS/XPG getopt() for function definition and
* requirements.
*
* This actual implementation is a bit looser than the specification
* as it allows any character other than ':' to be used as an option
* character - The specification only guarantees the alnum characters
* ([a-z][A-Z][0-9]).
*/
#include <unistd.h>
#include <string.h>
#include <stdio.h>
/*
* Generalized error processing macro. The parameter i is a pointer to
* the failed option string. If it is NULL, the character in c is converted
* to a string and displayed instead. s is the error text.
*
* This could be / should be a static function if it is used more, but
* that would require moving the 'optstring[0]' test outside of the
* function.
*/
#define ERR(s, c) if (opterr && optstring[0] != ':') { \
char errbuf[256]; \
snprintf(errbuf, sizeof (errbuf), s, argv[0], c); \
write(2, errbuf, strlen(errbuf)); }
/*
* getopt_sp is required to keep state between successive calls to getopt()
* while extracting aggregated options (ie: -abcd). Hence, getopt() is not
* thread safe or reentrant, but it really doesn't matter.
*
* So, why isn't this "static" you ask? Because the historical Bourne
* shell has actually latched on to this little piece of private data.
*/
int getopt_sp = 1;
/*
* Determine if the specified character (c) is present in the string
* (optstring) as a regular, single character option. If the option is found,
* return a pointer into optstring pointing at the option character,
* otherwise return null. The character ':' is not allowed.
*/
static char *
parse(const char *optstring, const char c)
{
char *cp = (char *)optstring;
if (c == ':')
return (NULL);
do {
if (*cp == c)
return (cp);
} while (*cp++ != '\0');
return (NULL);
}
/*
* External function entry point.
*/
int
hgetopt(int argc, char *const *argv, const char *optstring)
{
char c;
char *cp;
/*
* Has the end of the options been encountered? The following
* implements the SUS requirements:
*
* If, when getopt() is called:
* argv[optind] is a null pointer
* *argv[optind] is not the character '-'
* argv[optind] points to the string "-"
* getopt() returns -1 without changing optind. If
* argv[optind] points to the string "--"
* getopt() returns -1 after incrementing optind.
*/
if (getopt_sp == 1) {
if (optind >= argc || argv[optind][0] != '-' ||
argv[optind] == NULL || argv[optind][1] == '\0')
return (EOF);
else if (strcmp(argv[optind], "--") == 0) {
optind++;
return (EOF);
}
}
/*
* Getting this far indicates that an option has been encountered.
* Note that the syntax of optstring applies special meanings to
* the characters ':' and '(', so they are not permissible as
* option letters. A special meaning is also applied to the ')'
* character, but its meaning can be determined from context.
* Note that the specification only requires that the alnum
* characters be accepted.
*/
optopt = c = (unsigned char)argv[optind][getopt_sp];
optarg = NULL;
if ((cp = parse(optstring, c)) == NULL) {
/* LINTED: variable format specifier */
ERR("%s: illegal option -- %c\n", c);
if (argv[optind][++getopt_sp] == '\0') {
optind++;
getopt_sp = 1;
}
return ('?');
}
optopt = c = *cp;
/*
* A valid option has been identified. If it should have an
* option-argument, process that now. SUS defines the setting
* of optarg as follows:
*
* 1. If the option was the last character in the string pointed to
* by an element of argv, then optarg contains the next element
* of argv, and optind is incremented by 2. If the resulting
* value of optind is not less than argc, this indicates a
* missing option-argument, and getopt() returns an error
* indication.
*
* 2. Otherwise, optarg points to the string following the option
* character in that element of argv, and optind is incremented
* by 1.
*
* The second clause allows -abcd (where b requires an option-argument)
* to be interpreted as "-a -b cd".
*/
if (*(cp + 1) == ':') {
/* The option takes an argument */
if (argv[optind][getopt_sp+1] != '\0') {
optarg = &argv[optind++][getopt_sp+1];
} else if (++optind >= argc) {
/* LINTED: variable format specifier */
ERR("%s: option requires an argument -- %c\n", c);
getopt_sp = 1;
optarg = NULL;
return (optstring[0] == ':' ? ':' : '?');
} else
optarg = argv[optind++];
getopt_sp = 1;
} else {
/* The option does NOT take an argument */
if (argv[optind][++getopt_sp] == '\0') {
getopt_sp = 1;
optind++;
}
optarg = NULL;
}
return (c);
} /* getopt() */