source: main/tags/2.21/gsdl/packages/wingdbm/getopt.c@ 26544

Last change on this file since 26544 was 524, checked in by rjmcnab, 25 years ago

fixed small compiler warning

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 20.4 KB
Line 
1/* Getopt for GNU.
2 NOTE: getopt is now part of the C library, so if you don't know what
3 "Keep this file name-space clean" means, talk to [email protected]
4 before changing it!
5
6 Copyright (C) 1987, 88, 89, 90, 91, 92, 1993
7 Free Software Foundation, Inc.
8
9 This program is free software; you can redistribute it and/or modify it
10 under the terms of the GNU General Public License as published by the
11 Free Software Foundation; either version 2, or (at your option) any
12 later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
22
23
24/* NOTE!!! AIX requires this to be the first thing in the file.
25 Do not put ANYTHING before it! */
26#if !defined (__GNUC__) && defined (_AIX)
27 #pragma alloca
28#endif
29
30#include "autoconf.h"
31
32#ifdef __GNUC__
33#define alloca __builtin_alloca
34#else /* not __GNUC__ */
35#if defined (HAVE_ALLOCA_H) || (defined(sparc) && (defined(sun) || (!defined(USG) && !defined(SVR4) && !defined(__svr4__))))
36#include <alloca.h>
37#else
38#ifndef _AIX
39char *alloca ();
40#endif
41#endif /* alloca.h */
42#endif /* not __GNUC__ */
43
44#if !__STDC__ && !defined(const) && IN_GCC
45#define const
46#endif
47
48/* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>. */
49#ifndef _NO_PROTO
50#define _NO_PROTO
51#endif
52
53#include <string.h>
54#include <stdio.h>
55
56/* Comment out all this code if we are using the GNU C Library, and are not
57 actually compiling the library itself. This code is part of the GNU C
58 Library, but also included in many other GNU distributions. Compiling
59 and linking in this code is a waste when using the GNU C library
60 (especially if it is a shared library). Rather than having every GNU
61 program understand `configure --with-gnu-libc' and omit the object files,
62 it is simpler to just do this in the source for each such file. */
63
64#if defined (_LIBC) || !defined (__GNU_LIBRARY__)
65
66
67/* This needs to come after some library #include
68 to get __GNU_LIBRARY__ defined. */
69#ifdef __GNU_LIBRARY__
70#undef alloca
71/* Don't include stdlib.h for non-GNU C libraries because some of them
72 contain conflicting prototypes for getopt. */
73#include <stdlib.h>
74#else /* Not GNU C library. */
75#define __alloca alloca
76#endif /* GNU C library. */
77
78/* If GETOPT_COMPAT is defined, `+' as well as `--' can introduce a
79 long-named option. Because this is not POSIX.2 compliant, it is
80 being phased out. */
81/* #define GETOPT_COMPAT */
82
83/* This version of `getopt' appears to the caller like standard Unix `getopt'
84 but it behaves differently for the user, since it allows the user
85 to intersperse the options with the other arguments.
86
87 As `getopt' works, it permutes the elements of ARGV so that,
88 when it is done, all the options precede everything else. Thus
89 all application programs are extended to handle flexible argument order.
90
91 Setting the environment variable POSIXLY_CORRECT disables permutation.
92 Then the behavior is completely standard.
93
94 GNU application programs can use a third alternative mode in which
95 they can distinguish the relative order of options and other arguments. */
96
97#include "getopt.h"
98
99/* For communication from `getopt' to the caller.
100 When `getopt' finds an option that takes an argument,
101 the argument value is returned here.
102 Also, when `ordering' is RETURN_IN_ORDER,
103 each non-option ARGV-element is returned here. */
104
105char *optarg = 0;
106
107/* Index in ARGV of the next element to be scanned.
108 This is used for communication to and from the caller
109 and for communication between successive calls to `getopt'.
110
111 On entry to `getopt', zero means this is the first call; initialize.
112
113 When `getopt' returns EOF, this is the index of the first of the
114 non-option elements that the caller should itself scan.
115
116 Otherwise, `optind' communicates from one call to the next
117 how much of ARGV has been scanned so far. */
118
119/* XXX 1003.2 says this must be 1 before any call. */
120int optind = 0;
121
122/* The next char to be scanned in the option-element
123 in which the last option character we returned was found.
124 This allows us to pick up the scan where we left off.
125
126 If this is zero, or a null string, it means resume the scan
127 by advancing to the next ARGV-element. */
128
129static char *nextchar;
130
131/* Callers store zero here to inhibit the error message
132 for unrecognized options. */
133
134int opterr = 1;
135
136/* Set to an option character which was unrecognized.
137 This must be initialized on some systems to avoid linking in the
138 system's own getopt implementation. */
139
140int optopt = '?';
141
142/* Describe how to deal with options that follow non-option ARGV-elements.
143
144 If the caller did not specify anything,
145 the default is REQUIRE_ORDER if the environment variable
146 POSIXLY_CORRECT is defined, PERMUTE otherwise.
147
148 REQUIRE_ORDER means don't recognize them as options;
149 stop option processing when the first non-option is seen.
150 This is what Unix does.
151 This mode of operation is selected by either setting the environment
152 variable POSIXLY_CORRECT, or using `+' as the first character
153 of the list of option characters.
154
155 PERMUTE is the default. We permute the contents of ARGV as we scan,
156 so that eventually all the non-options are at the end. This allows options
157 to be given in any order, even with programs that were not written to
158 expect this.
159
160 RETURN_IN_ORDER is an option available to programs that were written
161 to expect options and other ARGV-elements in any order and that care about
162 the ordering of the two. We describe each non-option ARGV-element
163 as if it were the argument of an option with character code 1.
164 Using `-' as the first character of the list of option characters
165 selects this mode of operation.
166
167 The special argument `--' forces an end of option-scanning regardless
168 of the value of `ordering'. In the case of RETURN_IN_ORDER, only
169 `--' can cause `getopt' to return EOF with `optind' != ARGC. */
170
171static enum
172{
173 REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
174} ordering;
175
176
177#ifdef __GNU_LIBRARY__
178/* We want to avoid inclusion of string.h with non-GNU libraries
179 because there are many ways it can cause trouble.
180 On some systems, it contains special magic macros that don't work
181 in GCC. */
182#include <string.h>
183#define my_index strchr
184#define my_bcopy(src, dst, n) memcpy ((dst), (src), (n))
185#else
186
187/* Avoid depending on library functions or files
188 whose names are inconsistent. */
189
190char *getenv ();
191
192static char *
193my_index (str, chr)
194 const char *str;
195 int chr;
196{
197 while (*str)
198 {
199 if (*str == chr)
200 return (char *) str;
201 str++;
202 }
203 return 0;
204}
205
206static void
207my_bcopy (from, to, size)
208 const char *from;
209 char *to;
210 int size;
211{
212 int i;
213 for (i = 0; i < size; i++)
214 to[i] = from[i];
215}
216#endif /* GNU C library. */
217
218
219/* Handle permutation of arguments. */
220
221/* Describe the part of ARGV that contains non-options that have
222 been skipped. `first_nonopt' is the index in ARGV of the first of them;
223 `last_nonopt' is the index after the last of them. */
224
225static int first_nonopt;
226static int last_nonopt;
227
228/* Exchange two adjacent subsequences of ARGV.
229 One subsequence is elements [first_nonopt,last_nonopt)
230 which contains all the non-options that have been skipped so far.
231 The other is elements [last_nonopt,optind), which contains all
232 the options processed since those non-options were skipped.
233
234 `first_nonopt' and `last_nonopt' are relocated so that they describe
235 the new indices of the non-options in ARGV after they are moved. */
236
237static void
238exchange (argv)
239 char **argv;
240{
241 int nonopts_size = (last_nonopt - first_nonopt) * sizeof (char *);
242 char **temp = (char **) __alloca (nonopts_size);
243
244 /* Interchange the two blocks of data in ARGV. */
245
246 my_bcopy ((char *) &argv[first_nonopt], (char *) temp, nonopts_size);
247 my_bcopy ((char *) &argv[last_nonopt], (char *) &argv[first_nonopt],
248 (optind - last_nonopt) * sizeof (char *));
249 my_bcopy ((char *) temp,
250 (char *) &argv[first_nonopt + optind - last_nonopt],
251 nonopts_size);
252
253 /* Update records for the slots the non-options now occupy. */
254
255 first_nonopt += (optind - last_nonopt);
256 last_nonopt = optind;
257}
258
259
260/* Scan elements of ARGV (whose length is ARGC) for option characters
261 given in OPTSTRING.
262
263 If an element of ARGV starts with '-', and is not exactly "-" or "--",
264 then it is an option element. The characters of this element
265 (aside from the initial '-') are option characters. If `getopt'
266 is called repeatedly, it returns successively each of the option characters
267 from each of the option elements.
268
269 If `getopt' finds another option character, it returns that character,
270 updating `optind' and `nextchar' so that the next call to `getopt' can
271 resume the scan with the following option character or ARGV-element.
272
273 If there are no more option characters, `getopt' returns `EOF'.
274 Then `optind' is the index in ARGV of the first ARGV-element
275 that is not an option. (The ARGV-elements have been permuted
276 so that those that are not options now come last.)
277
278 OPTSTRING is a string containing the legitimate option characters.
279 If an option character is seen that is not listed in OPTSTRING,
280 return '?' after printing an error message. If you set `opterr' to
281 zero, the error message is suppressed but we still return '?'.
282
283 If a char in OPTSTRING is followed by a colon, that means it wants an arg,
284 so the following text in the same ARGV-element, or the text of the following
285 ARGV-element, is returned in `optarg'. Two colons mean an option that
286 wants an optional arg; if there is text in the current ARGV-element,
287 it is returned in `optarg', otherwise `optarg' is set to zero.
288
289 If OPTSTRING starts with `-' or `+', it requests different methods of
290 handling the non-option ARGV-elements.
291 See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
292
293 Long-named options begin with `--' instead of `-'.
294 Their names may be abbreviated as long as the abbreviation is unique
295 or is an exact match for some defined option. If they have an
296 argument, it follows the option name in the same ARGV-element, separated
297 from the option name by a `=', or else the in next ARGV-element.
298 When `getopt' finds a long-named option, it returns 0 if that option's
299 `flag' field is nonzero, the value of the option's `val' field
300 if the `flag' field is zero.
301
302 The elements of ARGV aren't really const, because we permute them.
303 But we pretend they're const in the prototype to be compatible
304 with other systems.
305
306 LONGOPTS is a vector of `struct option' terminated by an
307 element containing a name which is zero.
308
309 LONGIND returns the index in LONGOPT of the long-named option found.
310 It is only valid when a long-named option has been found by the most
311 recent call.
312
313 If LONG_ONLY is nonzero, '-' as well as '--' can introduce
314 long-named options. */
315
316int
317_getopt_internal (argc, argv, optstring, longopts, longind, long_only)
318 int argc;
319 char *const *argv;
320 const char *optstring;
321 const struct option *longopts;
322 int *longind;
323 int long_only;
324{
325 int option_index;
326
327 optarg = 0;
328
329 /* Initialize the internal data when the first call is made.
330 Start processing options with ARGV-element 1 (since ARGV-element 0
331 is the program name); the sequence of previously skipped
332 non-option ARGV-elements is empty. */
333
334 if (optind == 0)
335 {
336 first_nonopt = last_nonopt = optind = 1;
337
338 nextchar = NULL;
339
340 /* Determine how to handle the ordering of options and nonoptions. */
341
342 if (optstring[0] == '-')
343 {
344 ordering = RETURN_IN_ORDER;
345 ++optstring;
346 }
347 else if (optstring[0] == '+')
348 {
349 ordering = REQUIRE_ORDER;
350 ++optstring;
351 }
352 else if (getenv ("POSIXLY_CORRECT") != NULL)
353 ordering = REQUIRE_ORDER;
354 else
355 ordering = PERMUTE;
356 }
357
358 if (nextchar == NULL || *nextchar == '\0')
359 {
360 if (ordering == PERMUTE)
361 {
362 /* If we have just processed some options following some non-options,
363 exchange them so that the options come first. */
364
365 if (first_nonopt != last_nonopt && last_nonopt != optind)
366 exchange ((char **) argv);
367 else if (last_nonopt != optind)
368 first_nonopt = optind;
369
370 /* Now skip any additional non-options
371 and extend the range of non-options previously skipped. */
372
373 while (optind < argc
374 && (argv[optind][0] != '-' || argv[optind][1] == '\0')
375#ifdef GETOPT_COMPAT
376 && (longopts == NULL
377 || argv[optind][0] != '+' || argv[optind][1] == '\0')
378#endif /* GETOPT_COMPAT */
379 )
380 optind++;
381 last_nonopt = optind;
382 }
383
384 /* Special ARGV-element `--' means premature end of options.
385 Skip it like a null option,
386 then exchange with previous non-options as if it were an option,
387 then skip everything else like a non-option. */
388
389 if (optind != argc && !strcmp (argv[optind], "--"))
390 {
391 optind++;
392
393 if (first_nonopt != last_nonopt && last_nonopt != optind)
394 exchange ((char **) argv);
395 else if (first_nonopt == last_nonopt)
396 first_nonopt = optind;
397 last_nonopt = argc;
398
399 optind = argc;
400 }
401
402 /* If we have done all the ARGV-elements, stop the scan
403 and back over any non-options that we skipped and permuted. */
404
405 if (optind == argc)
406 {
407 /* Set the next-arg-index to point at the non-options
408 that we previously skipped, so the caller will digest them. */
409 if (first_nonopt != last_nonopt)
410 optind = first_nonopt;
411 return EOF;
412 }
413
414 /* If we have come to a non-option and did not permute it,
415 either stop the scan or describe it to the caller and pass it by. */
416
417 if ((argv[optind][0] != '-' || argv[optind][1] == '\0')
418#ifdef GETOPT_COMPAT
419 && (longopts == NULL
420 || argv[optind][0] != '+' || argv[optind][1] == '\0')
421#endif /* GETOPT_COMPAT */
422 )
423 {
424 if (ordering == REQUIRE_ORDER)
425 return EOF;
426 optarg = argv[optind++];
427 return 1;
428 }
429
430 /* We have found another option-ARGV-element.
431 Start decoding its characters. */
432
433 nextchar = (argv[optind] + 1
434 + (longopts != NULL && argv[optind][1] == '-'));
435 }
436
437 if (longopts != NULL
438 && ((argv[optind][0] == '-'
439 && (argv[optind][1] == '-' || long_only))
440#ifdef GETOPT_COMPAT
441 || argv[optind][0] == '+'
442#endif /* GETOPT_COMPAT */
443 ))
444 {
445 const struct option *p;
446 char *s = nextchar;
447 int exact = 0;
448 int ambig = 0;
449 const struct option *pfound = NULL;
450 int indfound;
451
452 while (*s && *s != '=')
453 s++;
454
455 /* Test all options for either exact match or abbreviated matches. */
456 for (p = longopts, option_index = 0; p->name;
457 p++, option_index++)
458 if (!strncmp (p->name, nextchar, s - nextchar))
459 {
460 if ((unsigned int)(s - nextchar) == strlen (p->name))
461 {
462 /* Exact match found. */
463 pfound = p;
464 indfound = option_index;
465 exact = 1;
466 break;
467 }
468 else if (pfound == NULL)
469 {
470 /* First nonexact match found. */
471 pfound = p;
472 indfound = option_index;
473 }
474 else
475 /* Second nonexact match found. */
476 ambig = 1;
477 }
478
479 if (ambig && !exact)
480 {
481 if (opterr)
482 fprintf (stderr, "%s: option `%s' is ambiguous\n",
483 argv[0], argv[optind]);
484 nextchar += strlen (nextchar);
485 optind++;
486 return '?';
487 }
488
489 if (pfound != NULL)
490 {
491 option_index = indfound;
492 optind++;
493 if (*s)
494 {
495 /* Don't test has_arg with >, because some C compilers don't
496 allow it to be used on enums. */
497 if (pfound->has_arg)
498 optarg = s + 1;
499 else
500 {
501 if (opterr)
502 {
503 if (argv[optind - 1][1] == '-')
504 /* --option */
505 fprintf (stderr,
506 "%s: option `--%s' doesn't allow an argument\n",
507 argv[0], pfound->name);
508 else
509 /* +option or -option */
510 fprintf (stderr,
511 "%s: option `%c%s' doesn't allow an argument\n",
512 argv[0], argv[optind - 1][0], pfound->name);
513 }
514 nextchar += strlen (nextchar);
515 return '?';
516 }
517 }
518 else if (pfound->has_arg == 1)
519 {
520 if (optind < argc)
521 optarg = argv[optind++];
522 else
523 {
524 if (opterr)
525 fprintf (stderr, "%s: option `%s' requires an argument\n",
526 argv[0], argv[optind - 1]);
527 nextchar += strlen (nextchar);
528 return optstring[0] == ':' ? ':' : '?';
529 }
530 }
531 nextchar += strlen (nextchar);
532 if (longind != NULL)
533 *longind = option_index;
534 if (pfound->flag)
535 {
536 *(pfound->flag) = pfound->val;
537 return 0;
538 }
539 return pfound->val;
540 }
541 /* Can't find it as a long option. If this is not getopt_long_only,
542 or the option starts with '--' or is not a valid short
543 option, then it's an error.
544 Otherwise interpret it as a short option. */
545 if (!long_only || argv[optind][1] == '-'
546#ifdef GETOPT_COMPAT
547 || argv[optind][0] == '+'
548#endif /* GETOPT_COMPAT */
549 || my_index (optstring, *nextchar) == NULL)
550 {
551 if (opterr)
552 {
553 if (argv[optind][1] == '-')
554 /* --option */
555 fprintf (stderr, "%s: unrecognized option `--%s'\n",
556 argv[0], nextchar);
557 else
558 /* +option or -option */
559 fprintf (stderr, "%s: unrecognized option `%c%s'\n",
560 argv[0], argv[optind][0], nextchar);
561 }
562 nextchar = (char *) "";
563 optind++;
564 return '?';
565 }
566 }
567
568 /* Look at and handle the next option-character. */
569
570 {
571 char c = *nextchar++;
572 char *temp = my_index (optstring, c);
573
574 /* Increment `optind' when we start to process its last character. */
575 if (*nextchar == '\0')
576 ++optind;
577
578 if (temp == NULL || c == ':')
579 {
580 if (opterr)
581 {
582#if 0
583 if (c < 040 || c >= 0177)
584 fprintf (stderr, "%s: unrecognized option, character code 0%o\n",
585 argv[0], c);
586 else
587 fprintf (stderr, "%s: unrecognized option `-%c'\n", argv[0], c);
588#else
589 /* 1003.2 specifies the format of this message. */
590 fprintf (stderr, "%s: illegal option -- %c\n", argv[0], c);
591#endif
592 }
593 optopt = c;
594 return '?';
595 }
596 if (temp[1] == ':')
597 {
598 if (temp[2] == ':')
599 {
600 /* This is an option that accepts an argument optionally. */
601 if (*nextchar != '\0')
602 {
603 optarg = nextchar;
604 optind++;
605 }
606 else
607 optarg = 0;
608 nextchar = NULL;
609 }
610 else
611 {
612 /* This is an option that requires an argument. */
613 if (*nextchar != '\0')
614 {
615 optarg = nextchar;
616 /* If we end this ARGV-element by taking the rest as an arg,
617 we must advance to the next element now. */
618 optind++;
619 }
620 else if (optind == argc)
621 {
622 if (opterr)
623 {
624#if 0
625 fprintf (stderr, "%s: option `-%c' requires an argument\n",
626 argv[0], c);
627#else
628 /* 1003.2 specifies the format of this message. */
629 fprintf (stderr, "%s: option requires an argument -- %c\n",
630 argv[0], c);
631#endif
632 }
633 optopt = c;
634 if (optstring[0] == ':')
635 c = ':';
636 else
637 c = '?';
638 }
639 else
640 /* We already incremented `optind' once;
641 increment it again when taking next ARGV-elt as argument. */
642 optarg = argv[optind++];
643 nextchar = NULL;
644 }
645 }
646 return c;
647 }
648}
649
650int
651getopt (argc, argv, optstring)
652 int argc;
653 char *const *argv;
654 const char *optstring;
655{
656 return _getopt_internal (argc, argv, optstring,
657 (const struct option *) 0,
658 (int *) 0,
659 0);
660}
661
662#endif /* _LIBC or not __GNU_LIBRARY__. */
663
664
665#ifdef TEST
666
667/* Compile with -DTEST to make an executable for use in testing
668 the above definition of `getopt'. */
669
670int
671main (argc, argv)
672 int argc;
673 char **argv;
674{
675 int c;
676 int digit_optind = 0;
677
678 while (1)
679 {
680 int this_option_optind = optind ? optind : 1;
681
682 c = getopt (argc, argv, "abc:d:0123456789");
683 if (c == EOF)
684 break;
685
686 switch (c)
687 {
688 case '0':
689 case '1':
690 case '2':
691 case '3':
692 case '4':
693 case '5':
694 case '6':
695 case '7':
696 case '8':
697 case '9':
698 if (digit_optind != 0 && digit_optind != this_option_optind)
699 printf ("digits occur in two different argv-elements.\n");
700 digit_optind = this_option_optind;
701 printf ("option %c\n", c);
702 break;
703
704 case 'a':
705 printf ("option a\n");
706 break;
707
708 case 'b':
709 printf ("option b\n");
710 break;
711
712 case 'c':
713 printf ("option c with value `%s'\n", optarg);
714 break;
715
716 case '?':
717 break;
718
719 default:
720 printf ("?? getopt returned character code 0%o ??\n", c);
721 }
722 }
723
724 if (optind < argc)
725 {
726 printf ("non-option ARGV-elements: ");
727 while (optind < argc)
728 printf ("%s ", argv[optind++]);
729 printf ("\n");
730 }
731
732 exit (0);
733}
734
735#endif /* TEST */
Note: See TracBrowser for help on using the repository browser.