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

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. #include "mysys_priv.h"
  14. #include "mysys_err.h"
  15. #ifndef SHARED_LIBRARY
  16. const char * NEAR globerrs[GLOBERRS]=
  17. {
  18.   "File '%s' not found (Errcode: %d)",
  19.   "Can't create/write to file '%s' (Errcode: %d)",
  20.   "Error reading file '%s' (Errcode: %d)",
  21.   "Error writing file '%s' (Errcode: %d)",
  22.   "Error on close of '%s' (Errcode: %d)",
  23.   "Out of memory (Needed %u bytes)",
  24.   "Error on delete of '%s' (Errcode: %d)",
  25.   "Error on rename of '%s' to '%s' (Errcode: %d)",
  26.   "",
  27.   "Unexpected eof found when reading file '%s' (Errcode: %d)",
  28.   "Can't lock file (Errcode: %d)",
  29.   "Can't unlock file (Errcode: %d)",
  30.   "Can't read dir of '%s' (Errcode: %d)",
  31.   "Can't get stat of '%s' (Errcode: %d)",
  32.   "Can't change size of file (Errcode: %d)",
  33.   "Can't open stream from handle (Errcode: %d)",
  34.   "Can't get working dirctory (Errcode: %d)",
  35.   "Can't change dir to '%s' (Errcode: %d)",
  36.   "Warning: '%s' had %d links",
  37.   "%d files and %d streams is left openn",
  38.   "Disk is full writing '%s' (Errcode: %d). Waiting for someone to free space... Retry in %d secs",
  39.   "Can't create directory '%s' (Errcode: %d)",
  40.   "Character set '%s' is not a compiled character set and is not specified in the '%s' file",
  41.   "Out of resources when opening file '%s' (Errcode: %d)",
  42.   "Can't read value for symlink '%s' (Error %d)",
  43.   "Can't create symlink '%s' pointing at '%s' (Error %d)",
  44.   "Error on realpath() on '%s' (Error %d)",
  45.   "Can't sync file '%s' to disk (Errcode: %d)",
  46.   "Collation '%s' is not a compiled collation and is not specified in the '%s' file",
  47. };
  48. void init_glob_errs(void)
  49. {
  50.   my_errmsg[GLOB] = & globerrs[0];
  51. } /* init_glob_errs */
  52. #else
  53. void init_glob_errs()
  54. {
  55.   my_errmsg[GLOB] = & globerrs[0];
  56.   EE(EE_FILENOTFOUND) = "File '%s' not found (Errcode: %d)";
  57.   EE(EE_CANTCREATEFILE) = "Can't create/write to file '%s' (Errcode: %d)";
  58.   EE(EE_READ) = "Error reading file '%s' (Errcode: %d)";
  59.   EE(EE_WRITE) = "Error writing file '%s' (Errcode: %d)";
  60.   EE(EE_BADCLOSE) = "Error on close of '%'s (Errcode: %d)";
  61.   EE(EE_OUTOFMEMORY) = "Out of memory (Needed %u bytes)";
  62.   EE(EE_DELETE) = "Error on delete of '%s' (Errcode: %d)";
  63.   EE(EE_LINK) = "Error on rename of '%s' to '%s' (Errcode: %d)";
  64.   EE(EE_EOFERR) = "Unexpected eof found when reading file '%s' (Errcode: %d)";
  65.   EE(EE_CANTLOCK) = "Can't lock file (Errcode: %d)";
  66.   EE(EE_CANTUNLOCK) = "Can't unlock file (Errcode: %d)";
  67.   EE(EE_DIR) = "Can't read dir of '%s' (Errcode: %d)";
  68.   EE(EE_STAT) = "Can't get stat of '%s' (Errcode: %d)";
  69.   EE(EE_CANT_CHSIZE) = "Can't change size of file (Errcode: %d)";
  70.   EE(EE_CANT_OPEN_STREAM)= "Can't open stream from handle (Errcode: %d)";
  71.   EE(EE_GETWD) = "Can't get working dirctory (Errcode: %d)";
  72.   EE(EE_SETWD) = "Can't change dir to '%s' (Errcode: %d)";
  73.   EE(EE_LINK_WARNING) = "Warning: '%s' had %d links";
  74.   EE(EE_OPEN_WARNING) = "%d files and %d streams is left openn";
  75.   EE(EE_DISK_FULL) = "Disk is full writing '%s'. Waiting for someone to free space...";
  76.   EE(EE_CANT_MKDIR) ="Can't create directory '%s' (Errcode: %d)";
  77.   EE(EE_UNKNOWN_CHARSET)= "Character set '%s' is not a compiled character set and is not specified in the %s file";
  78.   EE(EE_OUT_OF_FILERESOURCES)="Out of resources when opening file '%s' (Errcode: %d)";
  79.   EE(EE_CANT_READLINK)= "Can't read value for symlink '%s' (Error %d)";
  80.   EE(EE_CANT_SYMLINK)= "Can't create symlink '%s' pointing at '%s' (Error %d)";
  81.   EE(EE_REALPATH)= "Error on realpath() on '%s' (Error %d)";
  82.   EE(EE_SYNC)= "Can't sync file '%s' to disk (Errcode: %d)";
  83.   EE(EE_UNKNOWN_COLLATION)= "Collation '%s' is not a compiled collation and is not specified in the %s file";
  84. }
  85. #endif