]> granicus.if.org Git - postgresql/blob - src/port/getopt.c
Make an attempt at fixing our current Solaris 11 breakage: add a configure
[postgresql] / src / port / getopt.c
1 /* $PostgreSQL: pgsql/src/port/getopt.c,v 1.12 2009/04/04 21:55:50 tgl Exp $ */
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 except optreset.)
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
53 #endif
54
55 #ifndef HAVE_INT_OPTRESET
56 int                     optreset;                       /* reset getopt */
57 #endif
58
59 #define BADCH   (int)'?'
60 #define BADARG  (int)':'
61 #define EMSG    ""
62
63 /*
64  * getopt
65  *      Parse argc/argv argument vector.
66  */
67 int
68 getopt(nargc, nargv, ostr)
69 int                     nargc;
70 char       *const * nargv;
71 const char *ostr;
72 {
73         static char *place = EMSG;      /* option letter processing */
74         char       *oli;                        /* option letter list index */
75
76         if (optreset || !*place)
77         {                                                       /* update scanning pointer */
78                 optreset = 0;
79                 if (optind >= nargc || *(place = nargv[optind]) != '-')
80                 {
81                         place = EMSG;
82                         return -1;
83                 }
84                 if (place[1] && *++place == '-' && place[1] == '\0')
85                 {                                               /* found "--" */
86                         ++optind;
87                         place = EMSG;
88                         return -1;
89                 }
90         }                                                       /* option letter okay? */
91         if ((optopt = (int) *place++) == (int) ':' ||
92                 !(oli = strchr(ostr, optopt)))
93         {
94                 /*
95                  * if the user didn't specify '-' as an option, assume it means -1.
96                  */
97                 if (optopt == (int) '-')
98                         return -1;
99                 if (!*place)
100                         ++optind;
101                 if (opterr && *ostr != ':')
102                         (void) fprintf(stderr,
103                                                    "illegal option -- %c\n", optopt);
104                 return BADCH;
105         }
106         if (*++oli != ':')
107         {                                                       /* don't need argument */
108                 optarg = NULL;
109                 if (!*place)
110                         ++optind;
111         }
112         else
113         {                                                       /* need an argument */
114                 if (*place)                             /* no white space */
115                         optarg = place;
116                 else if (nargc <= ++optind)
117                 {                                               /* no arg */
118                         place = EMSG;
119                         if (*ostr == ':')
120                                 return BADARG;
121                         if (opterr)
122                                 (void) fprintf(stderr,
123                                                            "option requires an argument -- %c\n",
124                                                            optopt);
125                         return BADCH;
126                 }
127                 else
128                         /* white space */
129                         optarg = nargv[optind];
130                 place = EMSG;
131                 ++optind;
132         }
133         return optopt;                          /* dump back option letter */
134 }