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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult 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. #ifndef _my_getopt_h
  14. #define _my_getopt_h
  15. C_MODE_START
  16. #define GET_NO_ARG     1
  17. #define GET_BOOL       2
  18. #define GET_INT        3
  19. #define GET_UINT       4
  20. #define GET_LONG       5
  21. #define GET_ULONG      6
  22. #define GET_LL         7
  23. #define GET_ULL        8
  24. #define GET_STR        9
  25. #define GET_STR_ALLOC 10
  26. #define GET_DISABLED  11
  27. #define GET_ASK_ADDR  128
  28. #define GET_TYPE_MASK  127
  29. enum get_opt_arg_type { NO_ARG, OPT_ARG, REQUIRED_ARG };
  30. struct my_option
  31. {
  32.   const char *name;                     /* Name of the option */
  33.   int        id;                        /* unique id or short option */
  34.   const char *comment;                  /* option comment, for autom. --help */
  35.   gptr       *value;                    /* The variable value */
  36.   gptr       *u_max_value;              /* The user def. max variable value */
  37.   const char **str_values;              /* Pointer to possible values */
  38.   ulong     var_type;
  39.   enum get_opt_arg_type arg_type;
  40.   longlong   def_value;                 /* Default value */
  41.   longlong   min_value;                 /* Min allowed value */
  42.   longlong   max_value;                 /* Max allowed value */
  43.   longlong   sub_size;                  /* Subtract this from given value */
  44.   long       block_size;                /* Value should be a mult. of this */
  45.   int        app_type;                  /* To be used by an application */
  46. };
  47. typedef my_bool (* my_get_one_option) (int, const struct my_option *, char * );
  48. typedef void (* my_error_reporter) (enum loglevel level, const char *format, ... );
  49. extern char *disabled_my_option;
  50. extern my_bool my_getopt_print_errors;
  51. extern my_error_reporter my_getopt_error_reporter;
  52. extern int handle_options (int *argc, char ***argv, 
  53.    const struct my_option *longopts, my_get_one_option);
  54. extern void my_print_help(const struct my_option *options);
  55. extern void my_print_variables(const struct my_option *options);
  56. extern void my_getopt_register_get_addr(gptr* (*func_addr)(const char *, uint,
  57.    const struct my_option *));
  58. ulonglong getopt_ull_limit_value(ulonglong num, const struct my_option *optp);
  59. my_bool getopt_compare_strings(const char *s, const char *t, uint length);
  60. C_MODE_END
  61. #endif /* _my_getopt_h */