mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-06 07:49:02 +00:00
getopt/getopt.c:
Make getopt produce messages with `this' quoting style,
matching the rest of the Mercury system.
121 lines
2.7 KiB
C
121 lines
2.7 KiB
C
/*
|
|
Copyright © 2005-2014 Rich Felker, et al.
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
a copy of this software and associated documentation files (the
|
|
"Software"), to deal in the Software without restriction, including
|
|
without limitation the rights to use, copy, modify, merge, publish,
|
|
distribute, sublicense, and/or sell copies of the Software, and to
|
|
permit persons to whom the Software is furnished to do so, subject to
|
|
the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be
|
|
included in all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#define GETOPT_IMPL
|
|
#include "getopt.h"
|
|
|
|
char *optarg;
|
|
int optind=1, opterr=1, optopt, __optpos, optreset=0;
|
|
|
|
#define optpos __optpos
|
|
|
|
void __getopt_msg(const char *a, const char *b, const char *c, size_t l)
|
|
{
|
|
FILE *f = stderr;
|
|
if (
|
|
fputs(a, f)>=0
|
|
&& fwrite(b, strlen(b), 1, f)
|
|
&& putc('`', f)
|
|
&& fwrite(c, 1, l, f)==l
|
|
&& fputs("'\n", f)>=0
|
|
) { }
|
|
}
|
|
|
|
int getopt(int argc, char * const argv[], const char *optstring)
|
|
{
|
|
int i;
|
|
int c, d;
|
|
int k, l;
|
|
char *optchar;
|
|
|
|
if (!optind || optreset) {
|
|
optreset = 0;
|
|
__optpos = 0;
|
|
optind = 1;
|
|
}
|
|
|
|
if (optind >= argc || !argv[optind])
|
|
return -1;
|
|
|
|
if (argv[optind][0] != '-') {
|
|
if (optstring[0] == '-') {
|
|
optarg = argv[optind++];
|
|
return 1;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
if (!argv[optind][1])
|
|
return -1;
|
|
|
|
if (argv[optind][1] == '-' && !argv[optind][2])
|
|
return optind++, -1;
|
|
|
|
if (!optpos) optpos++;
|
|
c = argv[optind][optpos];
|
|
k = 1;
|
|
optchar = argv[optind]+optpos;
|
|
optpos += k;
|
|
|
|
if (!argv[optind][optpos]) {
|
|
optind++;
|
|
optpos = 0;
|
|
}
|
|
|
|
if (optstring[0] == '-' || optstring[0] == '+')
|
|
optstring++;
|
|
|
|
i = 0;
|
|
d = 0;
|
|
do {
|
|
d = optstring[i];
|
|
l = d ? 1 : 0;
|
|
if (l>0) i+=l; else i++;
|
|
} while (l && d != c);
|
|
|
|
if (d != c || c == ':') {
|
|
optopt = c;
|
|
if (optstring[0] != ':' && opterr)
|
|
__getopt_msg(argv[0], ": unrecognized option: ", optchar, k);
|
|
return '?';
|
|
}
|
|
if (optstring[i] == ':') {
|
|
optarg = 0;
|
|
if (optstring[i+1] != ':' || optpos) {
|
|
optarg = argv[optind++] + optpos;
|
|
optpos = 0;
|
|
}
|
|
if (optind > argc) {
|
|
optopt = c;
|
|
if (optstring[0] == ':') return ':';
|
|
if (opterr) __getopt_msg(argv[0],
|
|
": option requires an argument: ",
|
|
optchar, k);
|
|
return '?';
|
|
}
|
|
}
|
|
return c;
|
|
}
|