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

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. #include <my_global.h>
  14. #include <m_string.h>
  15. #include <stdlib.h>
  16. #include <my_sys.h>
  17. #include <mysys_err.h>
  18. #include <my_getopt.h>
  19. static void default_reporter(enum loglevel level, const char *format, ...);
  20. my_error_reporter my_getopt_error_reporter= &default_reporter;
  21. static int findopt(char *optpat, uint length,
  22.    const struct my_option **opt_res,
  23.    char **ffname);
  24. my_bool getopt_compare_strings(const char *s,
  25.        const char *t,
  26.        uint length);
  27. static longlong getopt_ll(char *arg, const struct my_option *optp, int *err);
  28. static ulonglong getopt_ull(char *arg, const struct my_option *optp,
  29.     int *err);
  30. static void init_variables(const struct my_option *options);
  31. static int setval(const struct my_option *opts, gptr *value, char *argument,
  32.   my_bool set_maximum_value);
  33. static char *check_struct_option(char *cur_arg, char *key_name);
  34. /*
  35.   The following three variables belong to same group and the number and
  36.   order of their arguments must correspond to each other.
  37. */
  38. static const char *special_opt_prefix[]=
  39. {"skip", "disable", "enable", "maximum", "loose", 0};
  40. static const uint special_opt_prefix_lengths[]=
  41. { 4,      7,         6,        7,         5,      0};
  42. enum enum_special_opt
  43. { OPT_SKIP, OPT_DISABLE, OPT_ENABLE, OPT_MAXIMUM, OPT_LOOSE};
  44. char *disabled_my_option= (char*) "0";
  45. /* 
  46.    This is a flag that can be set in client programs. 0 means that
  47.    my_getopt will not print error messages, but the client should do
  48.    it by itself
  49. */
  50. my_bool my_getopt_print_errors= 1;
  51. static void default_reporter(enum loglevel level __attribute__((unused)),
  52.                              const char *format, ...)
  53. {
  54.   va_list args;
  55.   va_start(args, format);
  56.   vfprintf(stderr, format, args);
  57.   va_end(args);
  58. }
  59. /* 
  60.   function: handle_options
  61.   Sort options; put options first, until special end of options (--), or
  62.   until end of argv. Parse options; check that the given option matches with
  63.   one of the options in struct 'my_option', return error in case of ambiguous
  64.   or unknown option. Check that option was given an argument if it requires
  65.   one. Call function 'get_one_option()' once for each option.
  66. */
  67. static gptr* (*getopt_get_addr)(const char *, uint, const struct my_option *);
  68. void my_getopt_register_get_addr(gptr* (*func_addr)(const char *, uint,
  69.     const struct my_option *))
  70. {
  71.   getopt_get_addr= func_addr;
  72. }
  73. int handle_options(int *argc, char ***argv, 
  74.    const struct my_option *longopts,
  75.                    my_get_one_option get_one_option)
  76. {
  77.   uint opt_found, argvpos= 0, length, i;
  78.   my_bool end_of_options= 0, must_be_var, set_maximum_value,
  79.           option_is_loose;
  80.   char **pos, **pos_end, *optend, *prev_found,
  81.        *opt_str, key_name[FN_REFLEN];
  82.   const struct my_option *optp;
  83.   gptr *value;
  84.   int error;
  85.   LINT_INIT(opt_found);
  86.   (*argc)--; /* Skip the program name */
  87.   (*argv)++; /*      --- || ----      */
  88.   init_variables(longopts);
  89.   for (pos= *argv, pos_end=pos+ *argc; pos != pos_end ; pos++)
  90.   {
  91.     char *cur_arg= *pos;
  92.     if (cur_arg[0] == '-' && cur_arg[1] && !end_of_options) /* must be opt */
  93.     {
  94.       char *argument=    0;
  95.       must_be_var=       0;
  96.       set_maximum_value= 0;
  97.       option_is_loose=   0;
  98.       cur_arg++; /* skip '-' */
  99.       if (*cur_arg == '-' || *cur_arg == 'O') /* check for long option, */
  100.       {                                       /* --set-variable, or -O  */
  101. if (*cur_arg == 'O')
  102. {
  103.   must_be_var= 1;
  104.   if (!(*++cur_arg)) /* If not -Ovar=# */
  105.   {
  106.     /* the argument must be in next argv */
  107.     if (!*++pos)
  108.     {
  109.       if (my_getopt_print_errors)
  110.                 my_getopt_error_reporter(ERROR_LEVEL,
  111.                                          "%s: Option '-O' requires an argumentn",
  112.                                          my_progname);
  113.       return EXIT_ARGUMENT_REQUIRED;
  114.     }
  115.     cur_arg= *pos;
  116.     (*argc)--;
  117.   }
  118. }
  119. else if (!getopt_compare_strings(cur_arg, "-set-variable", 13))
  120. {
  121.   must_be_var= 1;
  122.   if (cur_arg[13] == '=')
  123.   {
  124.     cur_arg+= 14;
  125.     if (!*cur_arg)
  126.     {
  127.       if (my_getopt_print_errors)
  128.                 my_getopt_error_reporter(ERROR_LEVEL,
  129.                                          "%s: Option '--set-variable' requires an argumentn",
  130.                                          my_progname);
  131.       return EXIT_ARGUMENT_REQUIRED;
  132.     }
  133.   }
  134.   else if (cur_arg[14]) /* garbage, or another option. break out */
  135.     must_be_var= 0;
  136.   else
  137.   {
  138.     /* the argument must be in next argv */
  139.     if (!*++pos)
  140.     {
  141.       if (my_getopt_print_errors)
  142.                 my_getopt_error_reporter(ERROR_LEVEL,
  143.                                          "%s: Option '--set-variable' requires an argumentn",
  144.                                          my_progname);
  145.       return EXIT_ARGUMENT_REQUIRED;
  146.     }
  147.     cur_arg= *pos;
  148.     (*argc)--;
  149.   }
  150. }
  151. else if (!must_be_var)
  152. {
  153.   if (!*++cur_arg) /* skip the double dash */
  154.   {
  155.     /* '--' means end of options, look no further */
  156.     end_of_options= 1;
  157.     (*argc)--;
  158.     continue;
  159.   }
  160. }
  161. opt_str= check_struct_option(cur_arg, key_name);
  162. optend= strcend(opt_str, '=');
  163. length= optend - opt_str;
  164. if (*optend == '=')
  165.   optend++;
  166. else
  167.   optend= 0;
  168. /*
  169.   Find first the right option. Return error in case of an ambiguous,
  170.   or unknown option
  171. */
  172. optp= longopts;
  173. if (!(opt_found= findopt(opt_str, length, &optp, &prev_found)))
  174. {
  175.   /*
  176.     Didn't find any matching option. Let's see if someone called
  177.     option with a special option prefix
  178.   */
  179.   if (!must_be_var)
  180.   {
  181.     if (optend)
  182.       must_be_var= 1; /* option is followed by an argument */
  183.     for (i= 0; special_opt_prefix[i]; i++)
  184.     {
  185.       if (!getopt_compare_strings(special_opt_prefix[i], opt_str,
  186.   special_opt_prefix_lengths[i]) &&
  187.   opt_str[special_opt_prefix_lengths[i]] == '-')
  188.       {
  189. /*
  190.   We were called with a special prefix, we can reuse opt_found
  191. */
  192. opt_str+= (special_opt_prefix_lengths[i] + 1);
  193. if (i == OPT_LOOSE)
  194.   option_is_loose= 1;
  195. if ((opt_found= findopt(opt_str, length -
  196. (special_opt_prefix_lengths[i] + 1),
  197. &optp, &prev_found)))
  198. {
  199.   if (opt_found > 1)
  200.   {
  201.     if (my_getopt_print_errors)
  202.                       my_getopt_error_reporter(ERROR_LEVEL,
  203.                                                "%s: ambiguous option '--%s-%s' (--%s-%s)n",
  204.                                                my_progname, special_opt_prefix[i],
  205.                                                cur_arg, special_opt_prefix[i],
  206.                                                prev_found);
  207.     return EXIT_AMBIGUOUS_OPTION;
  208.   }
  209.   switch (i) {
  210.   case OPT_SKIP:
  211.   case OPT_DISABLE: /* fall through */
  212.     /*
  213.       double negation is actually enable again,
  214.       for example: --skip-option=0 -> option = TRUE
  215.     */
  216.     optend= (optend && *optend == '0' && !(*(optend + 1))) ?
  217.       (char*) "1" : disabled_my_option;
  218.     break;
  219.   case OPT_ENABLE:
  220.     optend= (optend && *optend == '0' && !(*(optend + 1))) ?
  221.         disabled_my_option : (char*) "1";
  222.     break;
  223.   case OPT_MAXIMUM:
  224.     set_maximum_value= 1;
  225.     must_be_var= 1;
  226.     break;
  227.   }
  228.   break; /* break from the inner loop, main loop continues */
  229. }
  230.       }
  231.     }
  232.   }
  233.   if (!opt_found)
  234.   {
  235.     if (must_be_var)
  236.     {
  237.       if (my_getopt_print_errors)
  238.                 my_getopt_error_reporter(option_is_loose ? 
  239.                                            WARNING_LEVEL : ERROR_LEVEL,
  240.                                          "%s: unknown variable '%s'n",
  241.                                          my_progname, cur_arg);
  242.       if (!option_is_loose)
  243. return EXIT_UNKNOWN_VARIABLE;
  244.     }
  245.     else
  246.     {
  247.       if (my_getopt_print_errors)
  248.                 my_getopt_error_reporter(option_is_loose ? 
  249.                                            WARNING_LEVEL : ERROR_LEVEL,
  250.                                          "%s: unknown option '--%s'n", 
  251.                                          my_progname, cur_arg);
  252.       if (!option_is_loose)
  253. return EXIT_UNKNOWN_OPTION;
  254.     }
  255.     if (option_is_loose)
  256.     {
  257.       (*argc)--;
  258.       continue;
  259.     }
  260.   }
  261. }
  262. if (opt_found > 1)
  263. {
  264.   if (must_be_var)
  265.   {
  266.     if (my_getopt_print_errors)
  267.               my_getopt_error_reporter(ERROR_LEVEL,
  268.                                        "%s: variable prefix '%s' is not uniquen",
  269.                                        my_progname, opt_str);
  270.     return EXIT_VAR_PREFIX_NOT_UNIQUE;
  271.   }
  272.   else
  273.   {
  274.     if (my_getopt_print_errors)
  275.               my_getopt_error_reporter(ERROR_LEVEL,
  276.                                        "%s: ambiguous option '--%s' (%s, %s)n",
  277.                                        my_progname, opt_str, prev_found, 
  278.                                        optp->name);
  279.     return EXIT_AMBIGUOUS_OPTION;
  280.   }
  281. }
  282. if ((optp->var_type & GET_TYPE_MASK) == GET_DISABLED)
  283. {
  284.   if (my_getopt_print_errors)
  285.     fprintf(stderr,
  286.     "%s: %s: Option '%s' used, but is disabledn", my_progname,
  287.     option_is_loose ? "WARNING" : "ERROR", opt_str);
  288.   if (option_is_loose)
  289.   {
  290.     (*argc)--;
  291.     continue;
  292.   }
  293.   return EXIT_OPTION_DISABLED;
  294. }
  295. if (must_be_var && (optp->var_type & GET_TYPE_MASK) == GET_NO_ARG)
  296. {
  297.   if (my_getopt_print_errors)
  298.             my_getopt_error_reporter(ERROR_LEVEL, 
  299.                                      "%s: option '%s' cannot take an argumentn",
  300.                                      my_progname, optp->name);
  301.   return EXIT_NO_ARGUMENT_ALLOWED;
  302. }
  303. value= optp->var_type & GET_ASK_ADDR ?
  304.   (*getopt_get_addr)(key_name, strlen(key_name), optp) : optp->value;
  305.   
  306. if (optp->arg_type == NO_ARG)
  307. {
  308.   if (optend && (optp->var_type & GET_TYPE_MASK) != GET_BOOL)
  309.   {
  310.     if (my_getopt_print_errors)
  311.               my_getopt_error_reporter(ERROR_LEVEL,
  312.                                        "%s: option '--%s' cannot take an argumentn",
  313.                                        my_progname, optp->name);
  314.     return EXIT_NO_ARGUMENT_ALLOWED;
  315.   }
  316.   if ((optp->var_type & GET_TYPE_MASK) == GET_BOOL)
  317.   {
  318.     /*
  319.       Set bool to 1 if no argument or if the user has used
  320.       --enable-'option-name'.
  321.       *optend was set to '0' if one used --disable-option
  322.       */
  323.     my_bool tmp= (my_bool) (!optend || *optend == '1');
  324.     *((my_bool*) value)= tmp;
  325.     (*argc)--;
  326.     get_one_option(optp->id, optp,
  327.    tmp ? (char*) "1" : disabled_my_option);
  328.     continue;
  329.   }
  330.   argument= optend;
  331. }
  332. else if (optp->arg_type == OPT_ARG &&
  333.  (optp->var_type & GET_TYPE_MASK) == GET_BOOL)
  334. {
  335.   if (optend == disabled_my_option)
  336.     *((my_bool*) value)= (my_bool) 0;
  337.   else
  338.   {
  339.     if (!optend) /* No argument -> enable option */
  340.       *((my_bool*) value)= (my_bool) 1;
  341.             else
  342.               argument= optend;
  343.   }
  344. }
  345. else if (optp->arg_type == REQUIRED_ARG && !optend)
  346. {
  347.   /* Check if there are more arguments after this one */
  348.   if (!*++pos)
  349.   {
  350.     if (my_getopt_print_errors)
  351.               my_getopt_error_reporter(ERROR_LEVEL,
  352.                                        "%s: option '--%s' requires an argumentn",
  353.                                        my_progname, optp->name);
  354.     return EXIT_ARGUMENT_REQUIRED;
  355.   }
  356.   argument= *pos;
  357.   (*argc)--;
  358. }
  359. else
  360.   argument= optend;
  361.       }
  362.       else  /* must be short option */
  363.       {
  364. for (optend= cur_arg; *optend; optend++)
  365. {
  366.   opt_found= 0;
  367.   for (optp= longopts; optp->id; optp++)
  368.   {
  369.     if (optp->id == (int) (uchar) *optend)
  370.     {
  371.       /* Option recognized. Find next what to do with it */
  372.       opt_found= 1;
  373.       if ((optp->var_type & GET_TYPE_MASK) == GET_DISABLED)
  374.       {
  375. if (my_getopt_print_errors)
  376.   fprintf(stderr,
  377.   "%s: ERROR: Option '-%c' used, but is disabledn",
  378.   my_progname, optp->id);
  379. return EXIT_OPTION_DISABLED;
  380.       }
  381.       if ((optp->var_type & GET_TYPE_MASK) == GET_BOOL &&
  382.   optp->arg_type == NO_ARG)
  383.       {
  384. *((my_bool*) optp->value)= (my_bool) 1;
  385. get_one_option(optp->id, optp, argument);
  386. continue;
  387.       }
  388.       else if (optp->arg_type == REQUIRED_ARG ||
  389.        optp->arg_type == OPT_ARG)
  390.       {
  391. if (*(optend + 1))
  392. {
  393.   /* The rest of the option is option argument */
  394.   argument= optend + 1;
  395.   /* This is in effect a jump out of the outer loop */
  396.   optend= (char*) " ";
  397. }
  398. else
  399. {
  400.                   if (optp->arg_type == OPT_ARG)
  401.                   {
  402.                     if (optp->var_type == GET_BOOL)
  403.                       *((my_bool*) optp->value)= (my_bool) 1;
  404.                     get_one_option(optp->id, optp, argument);
  405.                     continue;
  406.                   }
  407.   /* Check if there are more arguments after this one */
  408.   if (!pos[1])
  409.   {
  410.                     if (my_getopt_print_errors)
  411.                       my_getopt_error_reporter(ERROR_LEVEL,
  412.                                                "%s: option '-%c' requires an argumentn",
  413.                                                my_progname, optp->id);
  414.                     return EXIT_ARGUMENT_REQUIRED;
  415.   }
  416.   argument= *++pos;
  417.   (*argc)--;
  418.   /* the other loop will break, because *optend + 1 == 0 */
  419. }
  420.       }
  421.       if ((error= setval(optp, optp->value, argument,
  422.  set_maximum_value)))
  423.       {
  424.                 my_getopt_error_reporter(ERROR_LEVEL,
  425.                                          "%s: Error while setting value '%s' to '%s'n",
  426.                                          my_progname, argument, optp->name);
  427. return error;
  428.       }
  429.       get_one_option(optp->id, optp, argument);
  430.       break;
  431.     }
  432.   }
  433.   if (!opt_found)
  434.   {
  435.     if (my_getopt_print_errors)
  436.               my_getopt_error_reporter(ERROR_LEVEL,
  437.                                        "%s: unknown option '-%c'n", 
  438.                                        my_progname, *optend);
  439.     return EXIT_UNKNOWN_OPTION;
  440.   }
  441. }
  442. (*argc)--; /* option handled (short), decrease argument count */
  443. continue;
  444.       }
  445.       if ((error= setval(optp, value, argument, set_maximum_value)))
  446.       {
  447.         my_getopt_error_reporter(ERROR_LEVEL,
  448.                                  "%s: Error while setting value '%s' to '%s'n",
  449.                                  my_progname, argument, optp->name);
  450. return error;
  451.       }
  452.       get_one_option(optp->id, optp, argument);
  453.       (*argc)--; /* option handled (short爋r爈ong), decrease argument count */
  454.     }
  455.     else /* non-option found */
  456.       (*argv)[argvpos++]= cur_arg;
  457.   }
  458.   /*
  459.     Destroy the first, already handled option, so that programs that look
  460.     for arguments in 'argv', without checking 'argc', know when to stop.
  461.     Items in argv, before the destroyed one, are all non-option -arguments
  462.     to the program, yet to be (possibly) handled.
  463.   */
  464.   (*argv)[argvpos]= 0;
  465.   return 0;
  466. }
  467. /*
  468.   function: check_struct_option
  469.   Arguments: Current argument under processing from argv and a variable
  470.   where to store the possible key name.
  471.   Return value: In case option is a struct option, returns a pointer to
  472.   the current argument at the position where the struct option (key_name)
  473.   ends, the next character after the dot. In case argument is not a struct
  474.   option, returns a pointer to the argument.
  475.   key_name will hold the name of the key, or 0 if not found.
  476. */
  477. static char *check_struct_option(char *cur_arg, char *key_name)
  478. {
  479.   char *ptr, *end;
  480.   ptr= strcend(cur_arg + 1, '.'); /* Skip the first character */
  481.   end= strcend(cur_arg, '=');
  482.   /* 
  483.      If the first dot is after an equal sign, then it is part
  484.      of a variable value and the option is not a struct option.
  485.      Also, if the last character in the string before the ending
  486.      NULL, or the character right before equal sign is the first
  487.      dot found, the option is not a struct option.
  488.   */
  489.   if (end - ptr > 1)
  490.   {
  491.     uint len= ptr - cur_arg;
  492.     set_if_smaller(len, FN_REFLEN-1);
  493.     strmake(key_name, cur_arg, len);
  494.     return ++ptr;
  495.   }
  496.   else
  497.   {
  498.     key_name[0]= 0;
  499.     return cur_arg;
  500.   }
  501. }
  502. /*
  503.   function: setval
  504.   Arguments: opts, argument
  505.   Will set the option value to given value
  506. */
  507. static int setval(const struct my_option *opts, gptr *value, char *argument,
  508.   my_bool set_maximum_value)
  509. {
  510.   int err= 0;
  511.   if (value && argument)
  512.   {
  513.     gptr *result_pos= ((set_maximum_value) ?
  514.        opts->u_max_value : value);
  515.     if (!result_pos)
  516.       return EXIT_NO_PTR_TO_VARIABLE;
  517.     switch ((opts->var_type & GET_TYPE_MASK)) {
  518.     case GET_BOOL: /* If argument differs from 0, enable option, else disable */
  519.       *((my_bool*) result_pos)= (my_bool) atoi(argument) != 0;
  520.       break;
  521.     case GET_INT:
  522.     case GET_UINT:           /* fall through */
  523.       *((int*) result_pos)= (int) getopt_ll(argument, opts, &err);
  524.       break;
  525.     case GET_LONG:
  526.     case GET_ULONG:          /* fall through */
  527.       *((long*) result_pos)= (long) getopt_ll(argument, opts, &err);
  528.       break;
  529.     case GET_LL:
  530.       *((longlong*) result_pos)= getopt_ll(argument, opts, &err);
  531.       break;
  532.     case GET_ULL:
  533.       *((ulonglong*) result_pos)= getopt_ull(argument, opts, &err);
  534.       break;
  535.     case GET_STR:
  536.       *((char**) result_pos)= argument;
  537.       break;
  538.     case GET_STR_ALLOC:
  539.       if ((*((char**) result_pos)))
  540. my_free((*(char**) result_pos), MYF(MY_WME | MY_FAE));
  541.       if (!(*((char**) result_pos)= my_strdup(argument, MYF(MY_WME))))
  542. return EXIT_OUT_OF_MEMORY;
  543.       break;
  544.     default:    /* dummy default to avoid compiler warnings */
  545.       break;
  546.     }
  547.     if (err)
  548.       return EXIT_UNKNOWN_SUFFIX;
  549.   }
  550.   return 0;
  551. }
  552. /* 
  553.   function: findopt
  554.   Arguments: opt_pattern, length of opt_pattern, opt_struct, first found
  555.   name (ffname)
  556.   Go through all options in the my_option struct. Return number
  557.   of options found that match the pattern and in the argument
  558.   list the option found, if any. In case of ambiguous option, store
  559.   the name in ffname argument
  560. */
  561. static int findopt(char *optpat, uint length,
  562.    const struct my_option **opt_res,
  563.    char **ffname)
  564. {
  565.   uint count;
  566.   struct my_option *opt= (struct my_option *) *opt_res;
  567.   for (count= 0; opt->name; opt++)
  568.   {
  569.     if (!getopt_compare_strings(opt->name, optpat, length)) /* match found */
  570.     {
  571.       (*opt_res)= opt;
  572.       if (!count)
  573. *ffname= (char *) opt->name; /* We only need to know one prev */
  574.       if (!opt->name[length]) /* Exact match */
  575. return 1;
  576.       if (!count || strcmp(*ffname, opt->name)) /* Don't count synonyms */
  577. count++;
  578.     }
  579.   }
  580.   return count;
  581. }
  582. /* 
  583.   function: compare_strings
  584.   Works like strncmp, other than 1.) considers '-' and '_' the same.
  585.   2.) Returns -1 if strings differ, 0 if they are equal
  586. */
  587. my_bool getopt_compare_strings(register const char *s, register const char *t,
  588.        uint length)
  589. {
  590.   char const *end= s + length;
  591.   for (;s != end ; s++, t++)
  592.   {
  593.     if ((*s != '-' ? *s : '_') != (*t != '-' ? *t : '_'))
  594.       return 1;
  595.   }
  596.   return 0;
  597. }
  598. /*
  599.   function: eval_num_suffix
  600.   Transforms a number with a suffix to real number. Suffix can
  601.   be k|K for kilo, m|M for mega or g|G for giga.
  602. */
  603. static longlong eval_num_suffix (char *argument, int *error, char *option_name)
  604. {
  605.   char *endchar;
  606.   longlong num;
  607.   
  608.   *error= 0;
  609.   num= strtoll(argument, &endchar, 10);
  610.   if (*endchar == 'k' || *endchar == 'K')
  611.     num*= 1024L;
  612.   else if (*endchar == 'm' || *endchar == 'M')
  613.     num*= 1024L * 1024L;
  614.   else if (*endchar == 'g' || *endchar == 'G')
  615.     num*= 1024L * 1024L * 1024L;
  616.   else if (*endchar)
  617.   {
  618.     fprintf(stderr,
  619.     "Unknown suffix '%c' used for variable '%s' (value '%s')n",
  620.     *endchar, option_name, argument);
  621.     *error= 1;
  622.     return 0;
  623.   }
  624.   return num;
  625. }
  626. /* 
  627.   function: getopt_ll
  628.   Evaluates and returns the value that user gave as an argument
  629.   to a variable. Recognizes (case insensitive) K as KILO, M as MEGA
  630.   and G as GIGA bytes. Some values must be in certain blocks, as
  631.   defined in the given my_option struct, this function will check
  632.   that those values are honored.
  633.   In case of an error, set error value in *err.
  634. */
  635. static longlong getopt_ll(char *arg, const struct my_option *optp, int *err)
  636. {
  637.   longlong num;
  638.   ulonglong block_size= (optp->block_size ? (ulonglong) optp->block_size : 1L);
  639.   
  640.   num= eval_num_suffix(arg, err, (char*) optp->name);
  641.   if (num > 0 && (ulonglong) num > (ulonglong) optp->max_value &&
  642.       optp->max_value) /* if max value is not set -> no upper limit */
  643.     num= (ulonglong) optp->max_value;
  644.   num= ((num - optp->sub_size) / block_size);
  645.   num= (longlong) (num * block_size);
  646.   return max(num, optp->min_value);
  647. }
  648. /*
  649.   function: getopt_ull
  650.   This is the same as getopt_ll, but is meant for unsigned long long
  651.   values.
  652. */
  653. static ulonglong getopt_ull(char *arg, const struct my_option *optp, int *err)
  654. {
  655.   ulonglong num;
  656.   num= eval_num_suffix(arg, err, (char*) optp->name);  
  657.   return getopt_ull_limit_value(num, optp);
  658. }
  659. ulonglong getopt_ull_limit_value(ulonglong num, const struct my_option *optp)
  660. {
  661.   if ((ulonglong) num > (ulonglong) optp->max_value &&
  662.       optp->max_value) /* if max value is not set -> no upper limit */
  663.     num= (ulonglong) optp->max_value;
  664.   if (optp->block_size > 1)
  665.   {
  666.     num/= (ulonglong) optp->block_size;
  667.     num*= (ulonglong) optp->block_size;
  668.   }
  669.   if (num < (ulonglong) optp->min_value)
  670.     num= (ulonglong) optp->min_value;
  671.   return num;
  672. }
  673. /*
  674.   Init one value to it's default values
  675.   SYNOPSIS
  676.     init_one_value()
  677.     option Option to initialize
  678.     value Pointer to variable
  679. */
  680. static void init_one_value(const struct my_option *option, gptr *variable,
  681.    longlong value)
  682. {
  683.   switch ((option->var_type & GET_TYPE_MASK)) {
  684.   case GET_BOOL:
  685.     *((my_bool*) variable)= (my_bool) value;
  686.     break;
  687.   case GET_INT:
  688.     *((int*) variable)= (int) value;
  689.     break;
  690.   case GET_UINT:
  691.     *((uint*) variable)= (uint) value;
  692.     break;
  693.   case GET_LONG:
  694.     *((long*) variable)= (long) value;
  695.     break;
  696.   case GET_ULONG:
  697.     *((ulong*) variable)= (ulong) value;
  698.     break;
  699.   case GET_LL:
  700.     *((longlong*) variable)= (longlong) value;
  701.     break;
  702.   case GET_ULL:
  703.     *((ulonglong*) variable)=  (ulonglong) value;
  704.     break;
  705.   default: /* dummy default to avoid compiler warnings */
  706.     break;
  707.   }
  708. }
  709. /* 
  710.   initialize all variables to their default values
  711.   SYNOPSIS
  712.     init_variables()
  713.     options Array of options
  714.   NOTES
  715.     We will initialize the value that is pointed to by options->value.
  716.     If the value is of type GET_ASK_ADDR, we will also ask for the address
  717.     for a value and initialize.
  718. */
  719. static void init_variables(const struct my_option *options)
  720. {
  721.   for (; options->name; options++)
  722.   {
  723.     gptr *variable;
  724.     /*
  725.       We must set u_max_value first as for some variables
  726.       options->u_max_value == options->value and in this case we want to
  727.       set the value to default value.
  728.     */
  729.     if (options->u_max_value)
  730.       init_one_value(options, options->u_max_value, options->max_value);
  731.     if (options->value)
  732.       init_one_value(options, options->value, options->def_value);
  733.     if (options->var_type & GET_ASK_ADDR &&
  734. (variable= (*getopt_get_addr)("", 0, options)))
  735.       init_one_value(options, variable, options->def_value);
  736.   }
  737. }
  738. /*
  739.   function: my_print_options
  740.   Print help for all options and variables.
  741. */
  742. #include <help_start.h>
  743. void my_print_help(const struct my_option *options)
  744. {
  745.   uint col, name_space= 22, comment_space= 57;
  746.   const char *line_end;
  747.   const struct my_option *optp;
  748.   for (optp= options; optp->id; optp++)
  749.   {
  750.     if (optp->id < 256)
  751.     {
  752.       printf("  -%c%s", optp->id, strlen(optp->name) ? ", " : "  ");
  753.       col= 6;
  754.     }
  755.     else
  756.     {
  757.       printf("  ");
  758.       col= 2;
  759.     }
  760.     if (strlen(optp->name))
  761.     {
  762.       printf("--%s", optp->name);
  763.       col+= 2 + strlen(optp->name);
  764.       if ((optp->var_type & GET_TYPE_MASK) == GET_STR ||
  765.   (optp->var_type & GET_TYPE_MASK) == GET_STR_ALLOC)
  766.       {
  767. printf("%s=name%s ", optp->arg_type == OPT_ARG ? "[" : "",
  768.        optp->arg_type == OPT_ARG ? "]" : "");
  769. col+= (optp->arg_type == OPT_ARG) ? 8 : 6;
  770.       }
  771.       else if ((optp->var_type & GET_TYPE_MASK) == GET_NO_ARG ||
  772.        (optp->var_type & GET_TYPE_MASK) == GET_BOOL)
  773.       {
  774. putchar(' ');
  775. col++;
  776.       }
  777.       else
  778.       {
  779. printf("%s=#%s ", optp->arg_type == OPT_ARG ? "[" : "",
  780.        optp->arg_type == OPT_ARG ? "]" : "");
  781. col+= (optp->arg_type == OPT_ARG) ? 5 : 3;
  782.       }
  783.       if (col > name_space && optp->comment && *optp->comment)
  784.       {
  785. putchar('n');
  786. col= 0;
  787.       }
  788.     }
  789.     for (; col < name_space; col++)
  790.       putchar(' ');
  791.     if (optp->comment && *optp->comment)
  792.     {
  793.       const char *comment= optp->comment, *end= strend(comment);
  794.       while ((uint) (end - comment) > comment_space)
  795.       {
  796. for (line_end= comment + comment_space; *line_end != ' '; line_end--);
  797. for (; comment != line_end; comment++)
  798.   putchar(*comment);
  799. comment++; /* skip the space, as a newline will take it's place now */
  800. putchar('n');
  801. for (col= 0; col < name_space; col++)
  802.   putchar(' ');
  803.       }
  804.       printf("%s", comment);
  805.     }
  806.     putchar('n');
  807.   }
  808. }
  809. /*
  810.   function: my_print_options
  811.   Print variables.
  812. */
  813. void my_print_variables(const struct my_option *options)
  814. {
  815.   uint name_space= 34, length;
  816.   char buff[255];
  817.   const struct my_option *optp;
  818.   printf("nVariables (--variable-name=value)n");
  819.   printf("and boolean options {FALSE|TRUE}  Value (after reading options)n");
  820.   printf("--------------------------------- -----------------------------n");
  821.   for (optp= options; optp->id; optp++)
  822.   {
  823.     gptr *value= (optp->var_type & GET_ASK_ADDR ?
  824.   (*getopt_get_addr)("", 0, optp) : optp->value);
  825.     if (value)
  826.     {
  827.       printf("%s", optp->name);
  828.       length= strlen(optp->name);
  829.       for (; length < name_space; length++)
  830. putchar(' ');
  831.       switch ((optp->var_type & GET_TYPE_MASK)) {
  832.       case GET_STR:
  833.       case GET_STR_ALLOC:                    /* fall through */
  834. printf("%sn", *((char**) value) ? *((char**) value) :
  835.        "(No default value)");
  836. break;
  837.       case GET_BOOL:
  838. printf("%sn", *((my_bool*) value) ? "TRUE" : "FALSE");
  839. break;
  840.       case GET_INT:
  841. printf("%dn", *((int*) value));
  842. break;
  843.       case GET_UINT:
  844. printf("%dn", *((uint*) value));
  845. break;
  846.       case GET_LONG:
  847. printf("%lun", *((long*) value));
  848. break;
  849.       case GET_ULONG:
  850. printf("%lun", *((ulong*) value));
  851. break;
  852.       case GET_LL:
  853. printf("%sn", llstr(*((longlong*) value), buff));
  854. break;
  855.       case GET_ULL:
  856. longlong2str(*((ulonglong*) value), buff, 10);
  857. printf("%sn", buff);
  858. break;
  859.       default:
  860. printf("(Disabled)n");
  861. break;
  862.       }
  863.     }
  864.   }
  865. }
  866. #include <help_end.h>