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

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. /* Read language depeneded messagefile */
  14. #include "mysql_priv.h"
  15. #include "mysys_err.h"
  16. static bool read_texts(const char *file_name,const char ***point,
  17.        uint error_messages);
  18. static void init_myfunc_errs(void);
  19. /* Read messages from errorfile */
  20. bool init_errmessage(void)
  21. {
  22.   DBUG_ENTER("init_errmessage");
  23.   if (read_texts(ERRMSG_FILE,&my_errmsg[ERRMAPP],ER_ERROR_MESSAGES))
  24.     DBUG_RETURN(TRUE);
  25.   errmesg=my_errmsg[ERRMAPP]; /* Init global variabel */
  26.   init_myfunc_errs(); /* Init myfunc messages */
  27.   DBUG_RETURN(FALSE);
  28. }
  29. /* Read text from packed textfile in language-directory */
  30. /* If we can't read messagefile then it's panic- we can't continue */
  31. static bool read_texts(const char *file_name,const char ***point,
  32.        uint error_messages)
  33. {
  34.   register uint i;
  35.   uint count,funktpos,length,textcount;
  36.   File file;
  37.   char name[FN_REFLEN];
  38.   const char *buff;
  39.   uchar head[32],*pos;
  40.   CHARSET_INFO *cset; // For future
  41.   DBUG_ENTER("read_texts");
  42.   *point=0; // If something goes wrong
  43.   LINT_INIT(buff);
  44.   funktpos=0;
  45.   if ((file=my_open(fn_format(name,file_name,language,"",4),
  46.     O_RDONLY | O_SHARE | O_BINARY,
  47.     MYF(0))) < 0)
  48.     goto err; /* purecov: inspected */
  49.   funktpos=1;
  50.   if (my_read(file,(byte*) head,32,MYF(MY_NABP))) goto err;
  51.   if (head[0] != (uchar) 254 || head[1] != (uchar) 254 ||
  52.       head[2] != 2 || head[3] != 1)
  53.     goto err; /* purecov: inspected */
  54.   textcount=head[4];
  55.   if (!head[30])
  56.   {
  57.     sql_print_error("Character set information not found in '%s'. 
  58. Please install the latest version of this file.",name);
  59.     goto err1;
  60.   }
  61.   
  62.   /* TODO: Convert the character set to server system character set */
  63.   if (!(cset= get_charset(head[30],MYF(MY_WME))))
  64.   {
  65.     sql_print_error("Character set #%d is not supported for messagefile '%s'",
  66.                     (int)head[30],name);
  67.     goto err1;
  68.   }
  69.   
  70.   length=uint2korr(head+6); count=uint2korr(head+8);
  71.   if (count < error_messages)
  72.   {
  73.     sql_print_error("
  74. Error message file '%s' had only %d error messages,n
  75. but it should contain at least %d error messages.n
  76. Check that the above file is the right version for this program!",
  77.     name,count,error_messages);
  78.     VOID(my_close(file,MYF(MY_WME)));
  79.     unireg_abort(1);
  80.   }
  81.   x_free((gptr) *point); /* Free old language */
  82.   if (!(*point= (const char**)
  83. my_malloc((uint) (length+count*sizeof(char*)),MYF(0))))
  84.   {
  85.     funktpos=2; /* purecov: inspected */
  86.     goto err; /* purecov: inspected */
  87.   }
  88.   buff= (char*) (*point + count);
  89.   if (my_read(file,(byte*) buff,(uint) count*2,MYF(MY_NABP))) goto err;
  90.   for (i=0, pos= (uchar*) buff ; i< count ; i++)
  91.   {
  92.     (*point)[i]=buff+uint2korr(pos);
  93.     pos+=2;
  94.   }
  95.   if (my_read(file,(byte*) buff,(uint) length,MYF(MY_NABP))) goto err;
  96.   for (i=1 ; i < textcount ; i++)
  97.   {
  98.     point[i]= *point +uint2korr(head+10+i+i);
  99.   }
  100.   VOID(my_close(file,MYF(0)));
  101.   DBUG_RETURN(0);
  102. err:
  103.   switch (funktpos) {
  104.   case 2:
  105.     buff="Not enough memory for messagefile '%s'";
  106.     break;
  107.   case 1:
  108.     buff="Can't read from messagefile '%s'";
  109.     break;
  110.   default:
  111.     buff="Can't find messagefile '%s'";
  112.     break;
  113.   }
  114.   sql_print_error(buff,name);
  115. err1:
  116.   if (file != FERR)
  117.     VOID(my_close(file,MYF(MY_WME)));
  118.   unireg_abort(1);
  119.   DBUG_RETURN(1); // keep compiler happy
  120. } /* read_texts */
  121. /* Initiates error-messages used by my_func-library */
  122. static void init_myfunc_errs()
  123. {
  124.   init_glob_errs(); /* Initiate english errors */
  125.   if (!(specialflag & SPECIAL_ENGLISH))
  126.   {
  127.     globerrs[EE_FILENOTFOUND % ERRMOD] = ER(ER_FILE_NOT_FOUND);
  128.     globerrs[EE_CANTCREATEFILE % ERRMOD]= ER(ER_CANT_CREATE_FILE);
  129.     globerrs[EE_READ % ERRMOD] = ER(ER_ERROR_ON_READ);
  130.     globerrs[EE_WRITE % ERRMOD] = ER(ER_ERROR_ON_WRITE);
  131.     globerrs[EE_BADCLOSE % ERRMOD] = ER(ER_ERROR_ON_CLOSE);
  132.     globerrs[EE_OUTOFMEMORY % ERRMOD] = ER(ER_OUTOFMEMORY);
  133.     globerrs[EE_DELETE % ERRMOD] = ER(ER_CANT_DELETE_FILE);
  134.     globerrs[EE_LINK % ERRMOD] = ER(ER_ERROR_ON_RENAME);
  135.     globerrs[EE_EOFERR % ERRMOD] = ER(ER_UNEXPECTED_EOF);
  136.     globerrs[EE_CANTLOCK % ERRMOD] = ER(ER_CANT_LOCK);
  137.     globerrs[EE_DIR % ERRMOD] = ER(ER_CANT_READ_DIR);
  138.     globerrs[EE_STAT % ERRMOD] = ER(ER_CANT_GET_STAT);
  139.     globerrs[EE_GETWD % ERRMOD] = ER(ER_CANT_GET_WD);
  140.     globerrs[EE_SETWD % ERRMOD] = ER(ER_CANT_SET_WD);
  141.     globerrs[EE_DISK_FULL % ERRMOD] = ER(ER_DISK_FULL);
  142.   }
  143. }