OSDN Git Service

最初のコミット
[winaudioj/stedx.git] / getopt.cpp
1 /*   $NetBSD: getopt.c,v 1.24 2002/06/21 09:56:33 wiz Exp $  */
2
3 /*
4  * Copyright (c) 1987, 1993, 1994
5  *      The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *      This product includes software developed by the University of
18  *      California, Berkeley and its contributors.
19  * 4. Neither the name of the University nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  */
35 //#include "stdafx.h"
36
37 #include <cdefs.h>
38 #if defined(LIBC_SCCS) && !defined(lint)
39 #if 0
40 static char sccsid[] = "@(#)getopt.c    8.3 (Berkeley) 4/27/95";
41 #else
42 __RCSID("$NetBSD: getopt.c,v 1.24 2002/06/21 09:56:33 wiz Exp $");
43 #endif
44 #endif /* LIBC_SCCS and not lint */
45
46 #include "namespace.h"
47
48 #include <assert.h>
49 #include <errno.h>
50 #include <stdio.h>
51 #include <stdlib.h>
52 #include <string.h>
53 #include <unistd.h>
54
55 #ifdef __weak_alias
56 __weak_alias(getopt,_getopt)
57 #endif
58
59 int     opterr = 1,             /* if error message should be printed */
60         optind = 1,             /* index into parent argv vector */
61         optopt,                 /* character checked for validity */
62         optreset;               /* reset getopt */
63 char    *optarg;                /* argument associated with option */
64
65 #define BADCH   (int)'?'
66 #define BADARG  (int)':'
67 #define EMSG    ""
68
69 /*
70  * getopt --
71  *      Parse argc/argv argument vector.
72  */
73 int
74 getopt(nargc, nargv, ostr)
75         int nargc;
76         char * const nargv[];
77         const char *ostr;
78 {
79         static char *place = EMSG;              /* option letter processing */
80         char *oli;                              /* option letter list index */
81
82         _DIAGASSERT(nargv != NULL);
83         _DIAGASSERT(ostr != NULL);
84
85         if (optreset || !*place) {              /* update scanning pointer */
86                 optreset = 0;
87                 if (optind >= nargc || *(place = nargv[optind]) != '-') {
88                         place = EMSG;
89                         return (-1);
90                 }
91                 if (place[1] && *++place == '-' /* found "--" */
92                     && place[1] == '\0') {
93                         ++optind;
94                         place = EMSG;
95                         return (-1);
96                 }
97         }                                       /* option letter okay? */
98         if ((optopt = (int)*place++) == (int)':' ||
99             !(oli = strchr(ostr, optopt))) {
100                 /*
101                  * if the user didn't specify '-' as an option,
102                  * assume it means -1.
103                  */
104                 if (optopt == (int)'-')
105                         return (-1);
106                 if (!*place)
107                         ++optind;
108                 if (opterr && *ostr != ':')
109                         (void)fprintf(stderr,
110                             "%s: unknown option -- %c\n", getprogname(),
111                             optopt);
112                 return (BADCH);
113         }
114         if (*++oli != ':') {                    /* don't need argument */
115                 optarg = NULL;
116                 if (!*place)
117                         ++optind;
118         }
119         else {                                  /* need an argument */
120                 if (*place)                     /* no white space */
121                         optarg = place;
122                 else if (nargc <= ++optind) {   /* no arg */
123                         place = EMSG;
124                         if (*ostr == ':')
125                                 return (BADARG);
126                         if (opterr)
127                                 (void)fprintf(stderr,
128                                     "%s: option requires an argument -- %c\n",
129                                     getprogname(), optopt);
130                         return (BADCH);
131                 }
132                 else                            /* white space */
133                         optarg = nargv[optind];
134                 place = EMSG;
135                 ++optind;
136         }
137         return (optopt);                        /* dump back option letter */
138 }