getopt.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1996, 1997, 1998, 1999, 2000
  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.4 2000/02/14 02:59:40 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 opterr = 1, /* if error message should be printed */
  46. optind = 1, /* index into parent argv vector */
  47. optopt, /* character checked for validity */
  48. optreset; /* reset getopt */
  49. char *optarg; /* argument associated with option */
  50. #undef BADCH
  51. #define BADCH (int)'?'
  52. #undef BADARG
  53. #define BADARG (int)':'
  54. #undef EMSG
  55. #define EMSG ""
  56. /*
  57.  * getopt --
  58.  * Parse argc/argv argument vector.
  59.  *
  60.  * PUBLIC: #ifndef HAVE_GETOPT
  61.  * PUBLIC: int getopt __P((int, char * const *, const char *));
  62.  * PUBLIC: #endif
  63.  */
  64. int
  65. getopt(nargc, nargv, ostr)
  66. int nargc;
  67. char * const *nargv;
  68. const char *ostr;
  69. {
  70. static char *progname;
  71. static char *place = EMSG; /* option letter processing */
  72. char *oli; /* option letter list index */
  73. if (!progname) {
  74. if ((progname = __db_rpath(*nargv)) == NULL)
  75.                 progname = *nargv;
  76.          else
  77.                  ++progname;
  78. }
  79. if (optreset || !*place) { /* update scanning pointer */
  80. optreset = 0;
  81. if (optind >= nargc || *(place = nargv[optind]) != '-') {
  82. place = EMSG;
  83. return (EOF);
  84. }
  85. if (place[1] && *++place == '-') { /* found "--" */
  86. ++optind;
  87. place = EMSG;
  88. return (EOF);
  89. }
  90. } /* option letter okay? */
  91. if ((optopt = (int)*place++) == (int)':' ||
  92.     !(oli = strchr(ostr, optopt))) {
  93. /*
  94.  * if the user didn't specify '-' as an option,
  95.  * assume it means EOF.
  96.  */
  97. if (optopt == (int)'-')
  98. return (EOF);
  99. if (!*place)
  100. ++optind;
  101. if (opterr && *ostr != ':')
  102. (void)fprintf(stderr,
  103.     "%s: illegal option -- %cn", progname, optopt);
  104. return (BADCH);
  105. }
  106. if (*++oli != ':') { /* don't need argument */
  107. optarg = NULL;
  108. if (!*place)
  109. ++optind;
  110. }
  111. else { /* need an argument */
  112. if (*place) /* no white space */
  113. optarg = place;
  114. else if (nargc <= ++optind) { /* no arg */
  115. place = EMSG;
  116. if (*ostr == ':')
  117. return (BADARG);
  118. if (opterr)
  119. (void)fprintf(stderr,
  120.     "%s: option requires an argument -- %cn",
  121.     progname, optopt);
  122. return (BADCH);
  123. }
  124.   else /* white space */
  125. optarg = nargv[optind];
  126. place = EMSG;
  127. ++optind;
  128. }
  129. return (optopt); /* dump back option letter */
  130. }