getopt.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. /*
  8.  * Copyright (c) 1987, 1993, 1994
  9.  * The Regents of the University of California.  All rights reserved.
  10.  *
  11.  * Redistribution and use in source and binary forms, with or without
  12.  * modification, are permitted provided that the following conditions
  13.  * are met:
  14.  * 1. Redistributions of source code must retain the above copyright
  15.  *    notice, this list of conditions and the following disclaimer.
  16.  * 2. Redistributions in binary form must reproduce the above copyright
  17.  *    notice, this list of conditions and the following disclaimer in the
  18.  *    documentation and/or other materials provided with the distribution.
  19.  * 3. 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 "db_config.h"
  36. #ifndef lint
  37. static const char revid[] = "$Id: getopt.c,v 11.7 2002/01/11 15:51:28 bostic Exp $";
  38. #endif /* not lint */
  39. #ifndef NO_SYSTEM_INCLUDES
  40. #include <stdio.h>
  41. #include <stdlib.h>
  42. #include <string.h>
  43. #endif
  44. #include "db_int.h"
  45. int __db_getopt_reset; /* global reset for VxWorks. */
  46. int opterr = 1, /* if error message should be printed */
  47. optind = 1, /* index into parent argv vector */
  48. optopt, /* character checked for validity */
  49. optreset; /* reset getopt */
  50. char *optarg; /* argument associated with option */
  51. #undef BADCH
  52. #define BADCH (int)'?'
  53. #undef BADARG
  54. #define BADARG (int)':'
  55. #undef EMSG
  56. #define EMSG ""
  57. /*
  58.  * getopt --
  59.  * Parse argc/argv argument vector.
  60.  *
  61.  * PUBLIC: #ifndef HAVE_GETOPT
  62.  * PUBLIC: int getopt __P((int, char * const *, const char *));
  63.  * PUBLIC: #endif
  64.  */
  65. int
  66. getopt(nargc, nargv, ostr)
  67. int nargc;
  68. char * const *nargv;
  69. const char *ostr;
  70. {
  71. static char *progname;
  72. static char *place = EMSG; /* option letter processing */
  73. char *oli; /* option letter list index */
  74. /*
  75.  * VxWorks needs to be able to repeatedly call getopt from multiple
  76.  * programs within its global name space.
  77.  */
  78. if (__db_getopt_reset) {
  79. __db_getopt_reset = 0;
  80. opterr = optind = 1;
  81. optopt = optreset = 0;
  82. optarg = NULL;
  83. progname = NULL;
  84. place = EMSG;
  85. }
  86. if (!progname) {
  87. if ((progname = __db_rpath(*nargv)) == NULL)
  88.                 progname = *nargv;
  89.          else
  90.                  ++progname;
  91. }
  92. if (optreset || !*place) { /* update scanning pointer */
  93. optreset = 0;
  94. if (optind >= nargc || *(place = nargv[optind]) != '-') {
  95. place = EMSG;
  96. return (EOF);
  97. }
  98. if (place[1] && *++place == '-') { /* found "--" */
  99. ++optind;
  100. place = EMSG;
  101. return (EOF);
  102. }
  103. } /* option letter okay? */
  104. if ((optopt = (int)*place++) == (int)':' ||
  105.     !(oli = strchr(ostr, optopt))) {
  106. /*
  107.  * if the user didn't specify '-' as an option,
  108.  * assume it means EOF.
  109.  */
  110. if (optopt == (int)'-')
  111. return (EOF);
  112. if (!*place)
  113. ++optind;
  114. if (opterr && *ostr != ':')
  115. (void)fprintf(stderr,
  116.     "%s: illegal option -- %cn", progname, optopt);
  117. return (BADCH);
  118. }
  119. if (*++oli != ':') { /* don't need argument */
  120. optarg = NULL;
  121. if (!*place)
  122. ++optind;
  123. }
  124. else { /* need an argument */
  125. if (*place) /* no white space */
  126. optarg = place;
  127. else if (nargc <= ++optind) { /* no arg */
  128. place = EMSG;
  129. if (*ostr == ':')
  130. return (BADARG);
  131. if (opterr)
  132. (void)fprintf(stderr,
  133.     "%s: option requires an argument -- %cn",
  134.     progname, optopt);
  135. return (BADCH);
  136. }
  137.   else /* white space */
  138. optarg = nargv[optind];
  139. place = EMSG;
  140. ++optind;
  141. }
  142. return (optopt); /* dump back option letter */
  143. }