]> granicus.if.org Git - postgresql/blob - src/port/getopt.c
Warn about initdb using mount-points
[postgresql] / src / port / getopt.c
1 /* src/port/getopt.c */
2
3 /* This is used by psql under Win32 */
4
5 /*
6  * Copyright (c) 1987, 1993, 1994
7  *      The Regents of the University of California.  All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *        notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *        notice, this list of conditions and the following disclaimer in the
16  *        documentation and/or other materials provided with the distribution.
17  * 3. Neither the name of the University nor the names of its contributors
18  *        may be used to endorse or promote products derived from this software
19  *        without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.      IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  */
32
33 #include "c.h"
34
35 #if defined(LIBC_SCCS) && !defined(lint)
36 static char sccsid[] = "@(#)getopt.c    8.3 (Berkeley) 4/27/95";
37 #endif   /* LIBC_SCCS and not lint */
38
39
40 /*
41  * On some versions of Solaris, opterr and friends are defined in core libc
42  * rather than in a separate getopt module.  Define these variables only
43  * if configure found they aren't there by default.  (We assume that testing
44  * opterr is sufficient for all of these.)
45  */
46 #ifndef HAVE_INT_OPTERR
47
48 int                     opterr = 1,                     /* if error message should be printed */
49                         optind = 1,                     /* index into parent argv vector */
50                         optopt;                         /* character checked for validity */
51 char       *optarg;                             /* argument associated with option */
52 #else
53
54 extern int      opterr;
55 extern int      optind;
56 extern int      optopt;
57 extern char *optarg;
58 #endif
59
60 #define BADCH   (int)'?'
61 #define BADARG  (int)':'
62 #define EMSG    ""
63
64 int                     getopt(int nargc, char *const * nargv, const char *ostr);
65
66 /*
67  * getopt
68  *      Parse argc/argv argument vector.
69  *
70  * This implementation does not use optreset.  Instead, we guarantee that
71  * it can be restarted on a new argv array after a previous call returned -1,
72  * if the caller resets optind to 1 before the first call of the new series.
73  * (Internally, this means we must be sure to reset "place" to EMSG before
74  * returning -1.)
75  */
76 int
77 getopt(int nargc, char *const * nargv, const char *ostr)
78 {
79         static char *place = EMSG;      /* option letter processing */
80         char       *oli;                        /* option letter list index */
81
82         if (!*place)
83         {                                                       /* update scanning pointer */
84                 if (optind >= nargc || *(place = nargv[optind]) != '-')
85                 {
86                         place = EMSG;
87                         return -1;
88                 }
89                 if (place[1] && *++place == '-' && place[1] == '\0')
90                 {                                               /* found "--" */
91                         ++optind;
92                         place = EMSG;
93                         return -1;
94                 }
95         }                                                       /* option letter okay? */
96         if ((optopt = (int) *place++) == (int) ':' ||
97                 !(oli = strchr(ostr, optopt)))
98         {
99                 /*
100                  * if the user didn't specify '-' as an option, assume it means -1.
101                  */
102                 if (optopt == (int) '-')
103                 {
104                         place = EMSG;
105                         return -1;
106                 }
107                 if (!*place)
108                         ++optind;
109                 if (opterr && *ostr != ':')
110                         (void) fprintf(stderr,
111                                                    "illegal option -- %c\n", optopt);
112                 return BADCH;
113         }
114         if (*++oli != ':')
115         {                                                       /* don't need argument */
116                 optarg = NULL;
117                 if (!*place)
118                         ++optind;
119         }
120         else
121         {                                                       /* need an argument */
122                 if (*place)                             /* no white space */
123                         optarg = place;
124                 else if (nargc <= ++optind)
125                 {                                               /* no arg */
126                         place = EMSG;
127                         if (*ostr == ':')
128                                 return BADARG;
129                         if (opterr)
130                                 (void) fprintf(stderr,
131                                                            "option requires an argument -- %c\n",
132                                                            optopt);
133                         return BADCH;
134                 }
135                 else
136                         /* white space */
137                         optarg = nargv[optind];
138                 place = EMSG;
139                 ++optind;
140         }
141         return optopt;                          /* dump back option letter */
142 }