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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /* Return error-text for system error messages and nisam messages */
  18. #define PERROR_VERSION "2.6"
  19. #include <global.h>
  20. #include <my_sys.h>
  21. #include <m_string.h>
  22. #include <errno.h>
  23. #include <getopt.h>
  24. static struct option long_options[] =
  25. {
  26.   {"help",       no_argument,        0, '?'},
  27.   {"info",       no_argument,        0, 'I'},
  28.   {"all",        no_argument,        0, 'a'},
  29.   {"silent",  no_argument,      0, 's'},
  30.   {"verbose",    no_argument,        0, 'v'},
  31.   {"version",    no_argument,        0, 'V'},
  32.   {0, 0, 0, 0}
  33. };
  34. typedef struct ha_errors {
  35.   int errcode;
  36.   const char *msg;
  37. } HA_ERRORS;
  38. static int verbose=1,print_all_codes=0;
  39. static HA_ERRORS ha_errlist[]=
  40. {
  41.   { 120,"Didn't find key on read or update" },
  42.   { 121,"Duplicate key on write or update" },
  43.   { 123,"Someone has changed the row since it was read; Update with is recoverable" },
  44.   { 124,"Wrong index given to function" },
  45.   { 126,"Index file is crashed / Wrong file format" },
  46.   { 127,"Record-file is crashed" },
  47.   { 131,"Command not supported by database" },
  48.   { 132,"Old database file" },
  49.   { 133,"No record read before update" },
  50.   { 134,"Record was already deleted (or record file crashed)" },
  51.   { 135,"No more room in record file" },
  52.   { 136,"No more room in index file" },
  53.   { 137,"No more records (read after end of file)" },
  54.   { 138,"Unsupported extension used for table" },
  55.   { 139,"Too big row (>= 16 M)"},
  56.   { 140,"Wrong create options"},
  57.   { 141,"Duplicate unique key or constraint on write or update"},
  58.   { 142,"Unknown character set used"},
  59.   { 143,"Conflicting table definition between MERGE and mapped table"},
  60.   { 144,"Table is crashed and last repair failed"},
  61.   { 145,"Table was marked as crashed and should be repaired"},
  62.   { 0,NullS },
  63. };
  64. static void print_version(void)
  65. {
  66.   printf("%s Ver %s, for %s (%s)n",my_progname,PERROR_VERSION,
  67.  SYSTEM_TYPE,MACHINE_TYPE);
  68. }
  69. static void usage(void)
  70. {
  71.   print_version();
  72.   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");
  73.   printf("Print a description for a system error code or a error code fromna MyISAM/ISAM table handlern");
  74.   printf("Usage: %s [OPTIONS] [ERRORCODE [ERRORCODE...]]n",my_progname);
  75.   printf("n
  76.    -?, --help     Displays this help and exits.n
  77.    -I, --info     Synonym for the above.");
  78. #ifdef HAVE_SYS_ERRLIST
  79.   printf("n
  80.    -a, --all      Print all the error messages and the number.");
  81. #endif
  82.   printf("n
  83.    -s, --silent   Only print the error messagen
  84.    -v, --verbose  Print error code and message (default).n
  85.    -V, --version  Displays version information and exits.n");
  86. static int get_options(int *argc,char ***argv)
  87. {
  88.   int c,option_index;
  89.   while ((c=getopt_long(*argc,*argv,"asvVI?",long_options,
  90. &option_index)) != EOF)
  91.   {
  92.       switch (c) {
  93. #ifdef HAVE_SYS_ERRLIST
  94.       case 'a':
  95. print_all_codes=1;
  96. break;
  97. #endif
  98.       case 'v':
  99.        verbose=1;
  100.        break;
  101.       case 's':
  102. verbose=0;
  103. break;
  104.       case 'V':
  105. print_version();
  106. exit(0);
  107. break;
  108.       case 'I':
  109.       case '?':
  110. usage();
  111. exit(0);
  112. break;
  113.       default:
  114. fprintf(stderr,"%s: Illegal option character '%c'n",
  115. my_progname,opterr);
  116. return(1);
  117. break;
  118.       }
  119.   }
  120.   (*argc)-=optind;
  121.   (*argv)+=optind;
  122.   if (!*argc && !print_all_codes)
  123.   {
  124.     usage();
  125.     return 1;
  126.   }
  127.   return 0;
  128. } /* get_options */
  129. static const char *get_ha_error_msg(int code)
  130. {
  131.   HA_ERRORS *ha_err_ptr;
  132.   for (ha_err_ptr=ha_errlist ; ha_err_ptr->errcode ;ha_err_ptr++)
  133.     if (ha_err_ptr->errcode == code)
  134.       return ha_err_ptr->msg;
  135.   return NullS;
  136. }
  137. int main(int argc,char *argv[])
  138. {
  139.   int error,code,found;
  140.   const char *msg;
  141.   MY_INIT(argv[0]);
  142.   if (get_options(&argc,&argv))
  143.     exit(1);
  144.   error=0;
  145. #ifdef HAVE_SYS_ERRLIST
  146.   if (print_all_codes)
  147.   {
  148.     HA_ERRORS *ha_err_ptr;
  149.     for (code=1 ; code < sys_nerr ; code++)
  150.     {
  151.       if (sys_errlist[code][0])
  152.       { /* Skipp if no error-text */
  153. printf("%3d = %sn",code,sys_errlist[code]);
  154.       }
  155.     }
  156.     for (ha_err_ptr=ha_errlist ; ha_err_ptr->errcode ;ha_err_ptr++)
  157.       printf("%3d = %sn",ha_err_ptr->errcode,ha_err_ptr->msg);
  158.   }
  159.   else
  160. #endif
  161.   {
  162.     for ( ; argc-- > 0 ; argv++)
  163.     {
  164.       found=0;
  165.       code=atoi(*argv);
  166.       msg = strerror(code);
  167.       if (msg)
  168.       {
  169. found=1;
  170. if (verbose)
  171.   printf("Error code %3d:  %sn",code,msg);
  172. else
  173.   puts(msg);
  174.       }
  175.       if (!(msg=get_ha_error_msg(code)))
  176.       {
  177. if (!found)
  178. {
  179.   fprintf(stderr,"Illegal error code: %dn",code);
  180.   error=1;
  181. }
  182.       }
  183.       else
  184.       {
  185. if (verbose)
  186.   printf("%3d = %sn",code,msg);
  187. else
  188.   puts(msg);
  189.       }
  190.     }
  191.   }
  192.   exit(error);
  193.   return error;
  194. }