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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 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. **  print_default.c:
  15. **  Print all parameters in a default file that will be given to some program.
  16. **
  17. **  Written by Monty
  18. */
  19. #include <my_global.h>
  20. #include <my_sys.h>
  21. #include <my_getopt.h>
  22. const char *config_file="my"; /* Default config file */
  23. uint verbose= 0, opt_defaults_file_used= 0;
  24. const char *default_dbug_option="d:t:o,/tmp/my_print_defaults.trace";
  25. static struct my_option my_long_options[] =
  26. {
  27.   {"config-file", 'c', "The config file to be used.",
  28.    (gptr*) &config_file, (gptr*) &config_file, 0, GET_STR, REQUIRED_ARG,
  29.    0, 0, 0, 0, 0, 0},
  30. #ifdef DBUG_OFF
  31.   {"debug", '#', "This is a non-debug version. Catch this and exit",
  32.    0,0, 0, GET_DISABLED, OPT_ARG, 0, 0, 0, 0, 0, 0},
  33. #else
  34.   {"debug", '#', "Output debug log", (gptr*) &default_dbug_option,
  35.    (gptr*) &default_dbug_option, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
  36. #endif
  37.   {"defaults-file", 'c', "Synonym for --config-file.",
  38.    (gptr*) &config_file, (gptr*) &config_file, 0, GET_STR, REQUIRED_ARG,
  39.    0, 0, 0, 0, 0, 0},
  40.   {"defaults-extra-file", 'e',
  41.    "Read this file after the global /etc config file and before the config file in the users home directory.",
  42.    (gptr*) &defaults_extra_file, (gptr*) &defaults_extra_file, 0, GET_STR,
  43.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  44.   {"extra-file", 'e',
  45.    "Synonym for --defaults-extra-file.",
  46.    (gptr*) &defaults_extra_file, (gptr*) &defaults_extra_file, 0, GET_STR,
  47.    REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  48.   {"no-defaults", 'n', "Return an empty string (useful for scripts).",
  49.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  50.   {"help", '?', "Display this help message and exit.",
  51.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  52.   {"verbose", 'v', "Increase the output level",
  53.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  54.   {"version", 'V', "Output version information and exit.",
  55.    0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
  56.   {0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
  57. };
  58. #include <help_start.h>
  59. static void usage(my_bool version)
  60. {
  61.   printf("%s  Ver 1.6 for %s at %sn",my_progname,SYSTEM_TYPE,
  62.  MACHINE_TYPE);
  63.   if (version)
  64.     return;
  65.   puts("This software comes with ABSOLUTELY NO WARRANTY. This is free software,nand you are welcome to modify and redistribute it under the GPL licensen");
  66.   puts("Prints all arguments that is give to some program using the default files");
  67.   printf("Usage: %s [OPTIONS] groupsn", my_progname);
  68.   my_print_help(my_long_options);
  69.   my_print_variables(my_long_options);
  70.   printf("nExample usage:n%s --config-file=my client mysqln", my_progname);
  71. }
  72. #include <help_end.h>
  73. static my_bool
  74. get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
  75.        char *argument __attribute__((unused)))
  76. {
  77.   switch (optid) {
  78.     case 'c':
  79.       opt_defaults_file_used= 1;
  80.       break;
  81.     case 'n':
  82.     exit(0);
  83.     case 'I':
  84.     case '?':
  85.     usage(0);
  86.     exit(0);
  87.     case 'v':
  88.       verbose++;
  89.       break;
  90.     case 'V':
  91.     usage(1);
  92.     exit(0);
  93.     case '#':
  94.       DBUG_PUSH(argument ? argument : default_dbug_option);
  95.       break;
  96.   }
  97.   return 0;
  98. }
  99. static int get_options(int *argc,char ***argv)
  100. {
  101.   int ho_error;
  102.   if ((ho_error=handle_options(argc, argv, my_long_options, get_one_option)))
  103.     exit(ho_error);
  104.   if (*argc < 1)
  105.   {
  106.     usage(0);
  107.     return 1;
  108.   }
  109.   return 0;
  110. }
  111. int main(int argc, char **argv)
  112. {
  113.   int count, error;
  114.   char **load_default_groups, *tmp_arguments[3],
  115.        **argument, **arguments;
  116.   char *defaults, *extra_defaults;
  117.   MY_INIT(argv[0]);
  118.   get_defaults_files(argc, argv, &defaults, &extra_defaults);
  119.   /*
  120.   ** Check out the args
  121.   */
  122.   if (!(load_default_groups=(char**) my_malloc((argc+2)*sizeof(char*),
  123.        MYF(MY_WME))))
  124.     exit(1);
  125.   if (get_options(&argc,&argv))
  126.     exit(1);
  127.   for (count=0; *argv ; argv++,count++)
  128.     load_default_groups[count]= *argv;
  129.   load_default_groups[count]=0;
  130.   count=0;
  131.   arguments=tmp_arguments;
  132.   arguments[count++]=my_progname;
  133.   if (extra_defaults)
  134.     arguments[count++]= extra_defaults;
  135.   if (defaults)
  136.     arguments[count++]= defaults;
  137.   arguments[count]= 0;
  138.   if ((error= load_defaults(config_file, (const char **) load_default_groups,
  139.    &count, &arguments)))
  140.   {
  141.     if (verbose && opt_defaults_file_used)
  142.     {
  143.       if (error == 1)
  144. fprintf(stderr, "WARNING: Defaults file '%s' not found!n",
  145. config_file);
  146.       /* This error is not available now. For the future */
  147.       if (error == 2)
  148. fprintf(stderr, "WARNING: Defaults file '%s' is not a regular file!n",
  149. config_file);
  150.     }
  151.     error= 2;
  152.   }
  153.   for (argument= arguments+1 ; *argument ; argument++)
  154.     puts(*argument);
  155.   my_free((char*) load_default_groups,MYF(0));
  156.   free_defaults(arguments);
  157.   exit(error);
  158. }