home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / extra / perror.c < prev    next >
C/C++ Source or Header  |  2000-11-20  |  6KB  |  218 lines

  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.  
  18. /* Return error-text for system error messages and nisam messages */
  19.  
  20. #define PERROR_VERSION "2.6"
  21.  
  22. #include <global.h>
  23. #include <my_sys.h>
  24. #include <m_string.h>
  25. #include <errno.h>
  26. #include <getopt.h>
  27.  
  28.  
  29. static struct option long_options[] =
  30. {
  31.   {"help",       no_argument,        0, '?'},
  32.   {"info",       no_argument,        0, 'I'},
  33.   {"all",        no_argument,        0, 'a'},
  34.   {"silent",     no_argument,         0, 's'},
  35.   {"verbose",    no_argument,        0, 'v'},
  36.   {"version",    no_argument,        0, 'V'},
  37.   {0, 0, 0, 0}
  38. };
  39.  
  40. typedef struct ha_errors {
  41.   int errcode;
  42.   const char *msg;
  43. } HA_ERRORS;
  44.  
  45. static int verbose=1,print_all_codes=0;
  46.  
  47. static HA_ERRORS ha_errlist[]=
  48. {
  49.   { 120,"Didn't find key on read or update" },
  50.   { 121,"Duplicate key on write or update" },
  51.   { 123,"Someone has changed the row since it was read; Update with is recoverable" },
  52.   { 124,"Wrong index given to function" },
  53.   { 126,"Index file is crashed / Wrong file format" },
  54.   { 127,"Record-file is crashed" },
  55.   { 131,"Command not supported by database" },
  56.   { 132,"Old database file" },
  57.   { 133,"No record read before update" },
  58.   { 134,"Record was already deleted (or record file crashed)" },
  59.   { 135,"No more room in record file" },
  60.   { 136,"No more room in index file" },
  61.   { 137,"No more records (read after end of file)" },
  62.   { 138,"Unsupported extension used for table" },
  63.   { 139,"Too big row (>= 16 M)"},
  64.   { 140,"Wrong create options"},
  65.   { 141,"Duplicate unique key or constraint on write or update"},
  66.   { 142,"Unknown character set used"},
  67.   { 143,"Conflicting table definition between MERGE and mapped table"},
  68.   { 144,"Table is crashed and last repair failed"},
  69.   { 145,"Table was marked as crashed and should be repaired"},
  70.   { 0,NullS },
  71. };
  72.  
  73.  
  74. static void print_version(void)
  75. {
  76.   printf("%s Ver %s, for %s (%s)\n",my_progname,PERROR_VERSION,
  77.      SYSTEM_TYPE,MACHINE_TYPE);
  78. }
  79.  
  80. static void usage(void)
  81. {
  82.   print_version();
  83.   puts("This software comes with ABSOLUTELY NO WARRANTY. This is free software,\nand you are welcome to modify and redistribute it under the GPL license\n");
  84.   printf("Print a description for a system error code or a error code from\na MyISAM/ISAM table handler\n");
  85.   printf("Usage: %s [OPTIONS] [ERRORCODE [ERRORCODE...]]\n",my_progname);
  86.   printf("\n\
  87.    -?, --help     Displays this help and exits.\n\
  88.    -I, --info     Synonym for the above.");
  89. #ifdef HAVE_SYS_ERRLIST
  90.   printf("\n\
  91.    -a, --all      Print all the error messages and the number.");
  92. #endif
  93.   printf("\n\
  94.    -s, --silent      Only print the error message\n\
  95.    -v, --verbose  Print error code and message (default).\n\
  96.    -V, --version  Displays version information and exits.\n");
  97.  
  98.  
  99. static int get_options(int *argc,char ***argv)
  100. {
  101.   int c,option_index;
  102.  
  103.   while ((c=getopt_long(*argc,*argv,"asvVI?",long_options,
  104.             &option_index)) != EOF)
  105.   {
  106.       switch (c) {
  107. #ifdef HAVE_SYS_ERRLIST
  108.       case 'a':
  109.     print_all_codes=1;
  110.     break;
  111. #endif
  112.       case 'v':
  113.           verbose=1;
  114.           break;
  115.       case 's':
  116.     verbose=0;
  117.     break;
  118.       case 'V':
  119.     print_version();
  120.     exit(0);
  121.     break;
  122.       case 'I':
  123.       case '?':
  124.     usage();
  125.     exit(0);
  126.     break;
  127.       default:
  128.     fprintf(stderr,"%s: Illegal option character '%c'\n",
  129.         my_progname,opterr);
  130.     return(1);
  131.     break;
  132.       }
  133.   }
  134.   (*argc)-=optind;
  135.   (*argv)+=optind;
  136.   if (!*argc && !print_all_codes)
  137.   {
  138.     usage();
  139.     return 1;
  140.   }
  141.   return 0;
  142. } /* get_options */
  143.  
  144.  
  145. static const char *get_ha_error_msg(int code)
  146. {
  147.   HA_ERRORS *ha_err_ptr;
  148.  
  149.   for (ha_err_ptr=ha_errlist ; ha_err_ptr->errcode ;ha_err_ptr++)
  150.     if (ha_err_ptr->errcode == code)
  151.       return ha_err_ptr->msg;
  152.   return NullS;
  153. }
  154.  
  155.  
  156. int main(int argc,char *argv[])
  157. {
  158.   int error,code,found;
  159.   const char *msg;
  160.   MY_INIT(argv[0]);
  161.  
  162.   if (get_options(&argc,&argv))
  163.     exit(1);
  164.  
  165.   error=0;
  166. #ifdef HAVE_SYS_ERRLIST
  167.   if (print_all_codes)
  168.   {
  169.     HA_ERRORS *ha_err_ptr;
  170.     for (code=1 ; code < sys_nerr ; code++)
  171.     {
  172.       if (sys_errlist[code][0])
  173.       {                        /* Skipp if no error-text */
  174.     printf("%3d = %s\n",code,sys_errlist[code]);
  175.       }
  176.     }
  177.     for (ha_err_ptr=ha_errlist ; ha_err_ptr->errcode ;ha_err_ptr++)
  178.       printf("%3d = %s\n",ha_err_ptr->errcode,ha_err_ptr->msg);
  179.   }
  180.   else
  181. #endif
  182.   {
  183.     for ( ; argc-- > 0 ; argv++)
  184.     {
  185.       found=0;
  186.       code=atoi(*argv);
  187.       msg = strerror(code);
  188.       if (msg)
  189.       {
  190.     found=1;
  191.     if (verbose)
  192.       printf("Error code %3d:  %s\n",code,msg);
  193.     else
  194.       puts(msg);
  195.       }
  196.       if (!(msg=get_ha_error_msg(code)))
  197.       {
  198.     if (!found)
  199.     {
  200.       fprintf(stderr,"Illegal error code: %d\n",code);
  201.       error=1;
  202.     }
  203.       }
  204.       else
  205.       {
  206.     if (verbose)
  207.       printf("%3d = %s\n",code,msg);
  208.     else
  209.       puts(msg);
  210.       }
  211.     }
  212.   }
  213.   exit(error);
  214.   return error;
  215. }
  216.  
  217.