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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /*
  14.  * Copyright (c) 1997, 1999 Kungliga Tekniska H鰃skolan
  15.  * (Royal Institute of Technology, Stockholm, Sweden). 
  16.  * All rights reserved. 
  17.  *
  18.  * Redistribution and use in source and binary forms, with or without 
  19.  * modification, are permitted provided that the following conditions 
  20.  * are met: 
  21.  *
  22.  * 1. Redistributions of source code must retain the above copyright 
  23.  *    notice, this list of conditions and the following disclaimer. 
  24.  *
  25.  * 2. Redistributions in binary form must reproduce the above copyright 
  26.  *    notice, this list of conditions and the following disclaimer in the 
  27.  *    documentation and/or other materials provided with the distribution. 
  28.  *
  29.  * 3. Neither the name of the Institute nor the names of its contributors 
  30.  *    may be used to endorse or promote products derived from this software 
  31.  *    without specific prior written permission. 
  32.  *
  33.  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 
  34.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
  35.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
  36.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 
  37.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
  38.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 
  39.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
  40.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
  41.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 
  42.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
  43.  * SUCH DAMAGE. 
  44.  */
  45. /* $KTH: getarg.h,v 1.9 2000/09/01 21:25:55 lha Exp $ */
  46. #ifndef __GETARG_H__
  47. #define __GETARG_H__
  48. #include <ndb_global.h>
  49. #ifdef __cplusplus
  50. extern "C" {
  51. #endif
  52. typedef enum { 
  53.     arg_integer, 
  54.     arg_string, 
  55.     arg_flag, 
  56.     arg_negative_flag, 
  57.     arg_strings,
  58.     arg_double,
  59.     arg_collect,
  60.     arg_counter
  61. } arg_type;
  62. struct getargs{
  63.     const char *long_name;
  64.     char short_name;
  65.     arg_type type;
  66.     void *value;
  67.     const char *help;
  68.     const char *arg_help;
  69. };
  70. enum {
  71.     ARG_ERR_NO_MATCH  = 1,
  72.     ARG_ERR_BAD_ARG,
  73.     ARG_ERR_NO_ARG
  74. };
  75. typedef struct getarg_strings {
  76.     int num_strings;
  77.     char **strings;
  78. } getarg_strings;
  79. typedef int (*getarg_collect_func)(int short_opt,
  80.    int argc,
  81.    const char **argv,
  82.    int *optind,
  83.    int *optarg,
  84.    void *data);
  85. typedef struct getarg_collect_info {
  86.     getarg_collect_func func;
  87.     void *data;
  88. } getarg_collect_info;
  89. int getarg(struct getargs *args, size_t num_args, 
  90.    int argc, const char **argv, int *optind);
  91. void arg_printusage (struct getargs *args,
  92.      size_t num_args,
  93.      const char *progname,
  94.      const char *extra_string);
  95. #ifdef __cplusplus
  96. }
  97. #endif
  98. #endif /* __GETARG_H__ */