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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000-2003 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. #ifndef _my_sys_h
  14. #define _my_sys_h
  15. C_MODE_START
  16. #ifdef HAVE_AIOWAIT
  17. #include <sys/asynch.h> /* Used by record-cache */
  18. typedef struct my_aio_result {
  19.   aio_result_t result;
  20.   int        pending;
  21. } my_aio_result;
  22. #endif
  23. #ifndef THREAD
  24. extern int NEAR my_errno; /* Last error in mysys */
  25. #else
  26. #include <my_pthread.h>
  27. #endif
  28. #ifndef _m_ctype_h
  29. #include <m_ctype.h>                    /* for CHARSET_INFO */
  30. #endif
  31. #include <stdarg.h>
  32. #include <typelib.h>
  33. #define MYSYS_PROGRAM_USES_CURSES()  { error_handler_hook = my_message_curses; mysys_uses_curses=1; }
  34. #define MYSYS_PROGRAM_DONT_USE_CURSES()  { error_handler_hook = my_message_no_curses; mysys_uses_curses=0;}
  35. #define MY_INIT(name); { my_progname= name; my_init(); }
  36. #define MAXMAPS (4) /* Number of error message maps */
  37. #define ERRMOD (1000) /* Max number of errors in a map */
  38. #define ERRMSGSIZE (SC_MAXWIDTH) /* Max length of a error message */
  39. #define NRERRBUFFS (2) /* Buffers for parameters */
  40. #define MY_FILE_ERROR ((uint) ~0)
  41. /* General bitmaps for my_func's */
  42. #define MY_FFNF 1 /* Fatal if file not found */
  43. #define MY_FNABP 2 /* Fatal if not all bytes read/writen */
  44. #define MY_NABP 4 /* Error if not all bytes read/writen */
  45. #define MY_FAE 8 /* Fatal if any error */
  46. #define MY_WME 16 /* Write message on error */
  47. #define MY_WAIT_IF_FULL 32 /* Wait and try again if disk full error */
  48. #define MY_RAID         64      /* Support for RAID (not the "Johnson&Johnson"-s one ;) */
  49. #define MY_FULL_IO     512      /* For my_read - loop intil I/O
  50.    is complete
  51. */
  52. #define MY_DONT_CHECK_FILESIZE 128 /* Option to init_io_cache() */
  53. #define MY_LINK_WARNING 32 /* my_redel() gives warning if links */
  54. #define MY_COPYTIME 64 /* my_redel() copys time */
  55. #define MY_DELETE_OLD 256 /* my_create_with_symlink() */
  56. #define MY_RESOLVE_LINK 128 /* my_realpath(); Only resolve links */
  57. #define MY_HOLD_ORIGINAL_MODES 128  /* my_copy() holds to file modes */
  58. #define MY_REDEL_MAKE_BACKUP 256
  59. #define MY_SEEK_NOT_DONE 32 /* my_lock may have to do a seek */
  60. #define MY_DONT_WAIT 64 /* my_lock() don't wait if can't lock */
  61. #define MY_ZEROFILL 32 /* my_malloc(), fill array with zero */
  62. #define MY_ALLOW_ZERO_PTR 64 /* my_realloc() ; zero ptr -> malloc */
  63. #define MY_FREE_ON_ERROR 128 /* my_realloc() ; Free old ptr on error */
  64. #define MY_HOLD_ON_ERROR 256 /* my_realloc() ; Return old ptr on error */
  65. #define MY_THREADSAFE 128 /* pread/pwrite:  Don't allow interrupts */
  66. #define MY_DONT_OVERWRITE_FILE 1024 /* my_copy; Don't overwrite file */
  67. #define MY_CHECK_ERROR 1 /* Params to my_end; Check open-close */
  68. #define MY_GIVE_INFO 2 /* Give time info about process*/
  69. #define ME_HIGHBYTE 8 /* Shift for colours */
  70. #define ME_NOCUR 1 /* Don't use curses message */
  71. #define ME_OLDWIN 2 /* Use old window */
  72. #define ME_BELL 4 /* Ring bell then printing message */
  73. #define ME_HOLDTANG 8 /* Don't delete last keys */
  74. #define ME_WAITTOT 16 /* Wait for errtime secs of for a action */
  75. #define ME_WAITTANG 32 /* Wait for a user action  */
  76. #define ME_NOREFRESH 64 /* Dont refresh screen */
  77. #define ME_NOINPUT 128 /* Dont use the input libary */
  78. #define ME_COLOUR1 ((1 << ME_HIGHBYTE)) /* Possibly error-colours */
  79. #define ME_COLOUR2 ((2 << ME_HIGHBYTE))
  80. #define ME_COLOUR3 ((3 << ME_HIGHBYTE))
  81. /* Bits in last argument to fn_format */
  82. #define MY_REPLACE_DIR 1 /* replace dir in name with 'dir' */
  83. #define MY_REPLACE_EXT 2 /* replace extension with 'ext' */
  84. #define MY_UNPACK_FILENAME 4 /* Unpack name (~ -> home) */
  85. #define MY_PACK_FILENAME 8 /* Pack name (home -> ~) */
  86. #define MY_RESOLVE_SYMLINKS 16 /* Resolve all symbolic links */
  87. #define MY_RETURN_REAL_PATH 32 /* return full path for file */
  88. #define MY_SAFE_PATH 64 /* Return NULL if too long path */
  89. #define MY_RELATIVE_PATH 128 /* name is relative to 'dir' */
  90. /* My seek flags */
  91. #define MY_SEEK_SET 0
  92. #define MY_SEEK_CUR 1
  93. #define MY_SEEK_END 2
  94. /* Some constants */
  95. #define MY_WAIT_FOR_USER_TO_FIX_PANIC 60 /* in seconds */
  96. #define MY_WAIT_GIVE_USER_A_MESSAGE 10 /* Every 10 times of prev */
  97. #define MIN_COMPRESS_LENGTH 50 /* Don't compress small bl. */
  98. #define DFLT_INIT_HITS  3
  99. /* root_alloc flags */
  100. #define MY_KEEP_PREALLOC 1
  101. #define MY_MARK_BLOCKS_FREE     2  /* move used to free list and reuse them */
  102. /* Internal error numbers (for assembler functions) */
  103. #define MY_ERRNO_EDOM 33
  104. #define MY_ERRNO_ERANGE 34
  105. /* defines when allocating data */
  106. #ifdef SAFEMALLOC
  107. #define my_malloc(SZ,FLAG) _mymalloc((SZ), __FILE__, __LINE__, FLAG )
  108. #define my_malloc_ci(SZ,FLAG) _mymalloc((SZ), sFile, uLine, FLAG )
  109. #define my_realloc(PTR,SZ,FLAG) _myrealloc((PTR), (SZ), __FILE__, __LINE__, FLAG )
  110. #define my_checkmalloc() _sanity( __FILE__, __LINE__ )
  111. #define my_free(PTR,FLAG) _myfree((PTR), __FILE__, __LINE__,FLAG)
  112. #define my_memdup(A,B,C) _my_memdup((A),(B), __FILE__,__LINE__,C)
  113. #define my_strdup(A,C) _my_strdup((A), __FILE__,__LINE__,C)
  114. #define my_strdup_with_length(A,B,C) _my_strdup_with_length((A),(B),__FILE__,__LINE__,C)
  115. #define QUICK_SAFEMALLOC sf_malloc_quick=1
  116. #define NORMAL_SAFEMALLOC sf_malloc_quick=0
  117. extern uint sf_malloc_prehunc,sf_malloc_endhunc,sf_malloc_quick;
  118. extern ulonglong sf_malloc_mem_limit;
  119. #define CALLER_INFO_PROTO   , const char *sFile, uint uLine
  120. #define CALLER_INFO         , __FILE__, __LINE__
  121. #define ORIG_CALLER_INFO    , sFile, uLine
  122. #else
  123. #define my_checkmalloc()
  124. #undef TERMINATE
  125. #define TERMINATE(A) {}
  126. #define QUICK_SAFEMALLOC
  127. #define NORMAL_SAFEMALLOC
  128. extern gptr my_malloc(uint Size,myf MyFlags);
  129. #define my_malloc_ci(SZ,FLAG) my_malloc( SZ, FLAG )
  130. extern gptr my_realloc(gptr oldpoint,uint Size,myf MyFlags);
  131. extern void my_no_flags_free(gptr ptr);
  132. extern gptr my_memdup(const byte *from,uint length,myf MyFlags);
  133. extern char *my_strdup(const char *from,myf MyFlags);
  134. extern char *my_strdup_with_length(const byte *from, uint length,
  135.    myf MyFlags);
  136. #define my_free(PTR,FG) my_no_flags_free(PTR)
  137. #define CALLER_INFO_PROTO   /* nothing */
  138. #define CALLER_INFO         /* nothing */
  139. #define ORIG_CALLER_INFO    /* nothing */
  140. #endif
  141. #ifdef HAVE_ALLOCA
  142. #if defined(_AIX) && !defined(__GNUC__) && !defined(_AIX43)
  143. #pragma alloca
  144. #endif /* _AIX */
  145. #if defined(__MWERKS__)
  146. #undef alloca
  147. #define alloca _alloca
  148. #endif /* __MWERKS__ */
  149. #if defined(__GNUC__) && !defined(HAVE_ALLOCA_H) && ! defined(alloca)
  150. #define alloca __builtin_alloca
  151. #endif /* GNUC */
  152. #define my_alloca(SZ) alloca((size_t) (SZ))
  153. #define my_afree(PTR) {}
  154. #else
  155. #define my_alloca(SZ) my_malloc(SZ,MYF(0))
  156. #define my_afree(PTR) my_free(PTR,MYF(MY_WME))
  157. #endif /* HAVE_ALLOCA */
  158. #ifdef MSDOS
  159. #ifdef __ZTC__
  160. void * __CDECL halloc(long count,size_t length);
  161. void   __CDECL hfree(void *ptr);
  162. #endif
  163. #if defined(USE_HALLOC)
  164. #if defined(_VCM_) || defined(M_IC80386)
  165. #undef USE_HALLOC
  166. #endif
  167. #endif
  168. #ifdef USE_HALLOC
  169. #define malloc(a) halloc((long) (a),1)
  170. #define free(a) hfree(a)
  171. #endif
  172. #endif /* MSDOS */
  173. #ifndef errno /* did we already get it? */
  174. #ifdef HAVE_ERRNO_AS_DEFINE
  175. #include <errno.h> /* errno is a define */
  176. #else
  177. extern int errno; /* declare errno */
  178. #endif
  179. #endif /* #ifndef errno */
  180. extern const char ** NEAR my_errmsg[];
  181. extern char NEAR errbuff[NRERRBUFFS][ERRMSGSIZE];
  182. extern char *home_dir; /* Home directory for user */
  183. extern char *my_progname; /* program-name (printed in errors) */
  184. extern char NEAR curr_dir[]; /* Current directory for user */
  185. extern int (*error_handler_hook)(uint my_err, const char *str,myf MyFlags);
  186. extern int (*fatal_error_handler_hook)(uint my_err, const char *str,
  187.        myf MyFlags);
  188. extern uint my_file_limit;
  189. /* charsets */
  190. extern CHARSET_INFO *default_charset_info;
  191. extern CHARSET_INFO *all_charsets[256];
  192. extern CHARSET_INFO compiled_charsets[];
  193. /* statistics */
  194. extern ulong my_file_opened,my_stream_opened, my_tmp_file_created;
  195. extern uint mysys_usage_id;
  196. extern my_bool my_init_done;
  197. /* Point to current my_message() */
  198. extern void (*my_sigtstp_cleanup)(void),
  199. /* Executed before jump to shell */
  200.     (*my_sigtstp_restart)(void),
  201.     (*my_abort_hook)(int);
  202. /* Executed when comming from shell */
  203. extern int NEAR my_umask, /* Default creation mask  */
  204.    NEAR my_umask_dir,
  205.    NEAR my_recived_signals, /* Signals we have got */
  206.    NEAR my_safe_to_handle_signal, /* Set when allowed to SIGTSTP */
  207.    NEAR my_dont_interrupt; /* call remember_intr when set */
  208. extern my_bool NEAR mysys_uses_curses, my_use_symdir;
  209. extern ulong sf_malloc_cur_memory, sf_malloc_max_memory;
  210. extern ulong my_default_record_cache_size;
  211. extern my_bool NEAR my_disable_locking,NEAR my_disable_async_io,
  212.                NEAR my_disable_flush_key_blocks, NEAR my_disable_symlinks;
  213. extern char wild_many,wild_one,wild_prefix;
  214. extern const char *charsets_dir;
  215. extern char *defaults_extra_file;
  216. typedef struct wild_file_pack /* Struct to hold info when selecting files */
  217. {
  218.   uint wilds; /* How many wildcards */
  219.   uint not_pos; /* Start of not-theese-files */
  220.   my_string *wild; /* Pointer to wildcards */
  221. } WF_PACK;
  222. enum loglevel {
  223.    ERROR_LEVEL,
  224.    WARNING_LEVEL,
  225.    INFORMATION_LEVEL
  226. };
  227. enum cache_type
  228. {
  229.   READ_CACHE,WRITE_CACHE,
  230.   SEQ_READ_APPEND /* sequential read or append */,
  231.   READ_FIFO, READ_NET,WRITE_NET};
  232. enum flush_type
  233. {
  234.   FLUSH_KEEP, FLUSH_RELEASE, FLUSH_IGNORE_CHANGED, FLUSH_FORCE_WRITE
  235. };
  236. typedef struct st_record_cache /* Used when cacheing records */
  237. {
  238.   File file;
  239.   int rc_seek,error,inited;
  240.   uint rc_length,read_length,reclength;
  241.   my_off_t rc_record_pos,end_of_file;
  242.   byte *rc_buff,*rc_buff2,*rc_pos,*rc_end,*rc_request_pos;
  243. #ifdef HAVE_AIOWAIT
  244.   int use_async_io;
  245.   my_aio_result aio_result;
  246. #endif
  247.   enum cache_type type;
  248. } RECORD_CACHE;
  249. enum file_type
  250. {
  251.   UNOPEN = 0, FILE_BY_OPEN, FILE_BY_CREATE, STREAM_BY_FOPEN, STREAM_BY_FDOPEN,
  252.   FILE_BY_MKSTEMP, FILE_BY_DUP
  253. };
  254. struct st_my_file_info
  255. {
  256.   my_string name;
  257.   enum file_type type;
  258. #if defined(THREAD) && !defined(HAVE_PREAD)
  259.   pthread_mutex_t mutex;
  260. #endif
  261. };
  262. extern struct st_my_file_info *my_file_info;
  263. typedef struct st_my_tmpdir
  264. {
  265.   char **list;
  266.   uint cur, max;
  267. #ifdef THREAD
  268.   pthread_mutex_t mutex;
  269. #endif
  270. } MY_TMPDIR;
  271. typedef struct st_dynamic_array
  272. {
  273.   char *buffer;
  274.   uint elements,max_element;
  275.   uint alloc_increment;
  276.   uint size_of_element;
  277. } DYNAMIC_ARRAY;
  278. typedef struct st_dynamic_string
  279. {
  280.   char *str;
  281.   uint length,max_length,alloc_increment;
  282. } DYNAMIC_STRING;
  283. struct st_io_cache;
  284. typedef int (*IO_CACHE_CALLBACK)(struct st_io_cache*);
  285. #ifdef THREAD
  286. typedef struct st_io_cache_share
  287. {
  288.   /* to sync on reads into buffer */
  289.   pthread_mutex_t mutex;
  290.   pthread_cond_t  cond;
  291.   int             count, total;
  292.   /* actual IO_CACHE that filled the buffer */
  293.   struct st_io_cache *active;
  294. #ifdef NOT_YET_IMPLEMENTED
  295.   /* whether the structure should be free'd */
  296.   my_bool alloced;
  297. #endif
  298. } IO_CACHE_SHARE;
  299. #endif
  300. typedef struct st_io_cache /* Used when cacheing files */
  301. {
  302.   /* Offset in file corresponding to the first byte of byte* buffer. */
  303.   my_off_t pos_in_file;
  304.   /*
  305.     The offset of end of file for READ_CACHE and WRITE_CACHE.
  306.     For SEQ_READ_APPEND it the maximum of the actual end of file and
  307.     the position represented by read_end.
  308.   */
  309.   my_off_t end_of_file;
  310.   /* Points to current read position in the buffer */
  311.   byte *read_pos;
  312.   /* the non-inclusive boundary in the buffer for the currently valid read */
  313.   byte  *read_end;
  314.   byte  *buffer; /* The read buffer */
  315.   /* Used in ASYNC_IO */
  316.   byte  *request_pos;
  317.   /* Only used in WRITE caches and in SEQ_READ_APPEND to buffer writes */
  318.   byte  *write_buffer;
  319.   /*
  320.     Only used in SEQ_READ_APPEND, and points to the current read position
  321.     in the write buffer. Note that reads in SEQ_READ_APPEND caches can
  322.     happen from both read buffer (byte* buffer) and write buffer
  323.     (byte* write_buffer).
  324.   */
  325.   byte *append_read_pos;
  326.   /* Points to current write position in the write buffer */
  327.   byte *write_pos;
  328.   /* The non-inclusive boundary of the valid write area */
  329.   byte *write_end;
  330.   /*
  331.     Current_pos and current_end are convenience variables used by
  332.     my_b_tell() and other routines that need to know the current offset
  333.     current_pos points to &write_pos, and current_end to &write_end in a
  334.     WRITE_CACHE, and &read_pos and &read_end respectively otherwise
  335.   */
  336.   byte  **current_pos, **current_end;
  337. #ifdef THREAD
  338.   /*
  339.     The lock is for append buffer used in SEQ_READ_APPEND cache
  340.     need mutex copying from append buffer to read buffer.
  341.   */
  342.   pthread_mutex_t append_buffer_lock;
  343.   /*
  344.     The following is used when several threads are reading the
  345.     same file in parallel. They are synchronized on disk
  346.     accesses reading the cached part of the file asynchronously.
  347.     It should be set to NULL to disable the feature.  Only
  348.     READ_CACHE mode is supported.
  349.   */
  350.   IO_CACHE_SHARE *share;
  351. #endif
  352.   /*
  353.     A caller will use my_b_read() macro to read from the cache
  354.     if the data is already in cache, it will be simply copied with
  355.     memcpy() and internal variables will be accordinging updated with
  356.     no functions invoked. However, if the data is not fully in the cache,
  357.     my_b_read() will call read_function to fetch the data. read_function
  358.     must never be invoked directly.
  359.   */
  360.   int (*read_function)(struct st_io_cache *,byte *,uint);
  361.   /*
  362.     Same idea as in the case of read_function, except my_b_write() needs to
  363.     be replaced with my_b_append() for a SEQ_READ_APPEND cache
  364.   */
  365.   int (*write_function)(struct st_io_cache *,const byte *,uint);
  366.   /*
  367.     Specifies the type of the cache. Depending on the type of the cache
  368.     certain operations might not be available and yield unpredicatable
  369.     results. Details to be documented later
  370.   */
  371.   enum cache_type type;
  372.   /*
  373.     Callbacks when the actual read I/O happens. These were added and
  374.     are currently used for binary logging of LOAD DATA INFILE - when a
  375.     block is read from the file, we create a block create/append event, and
  376.     when IO_CACHE is closed, we create an end event. These functions could,
  377.     of course be used for other things
  378.   */
  379.   IO_CACHE_CALLBACK pre_read;
  380.   IO_CACHE_CALLBACK post_read;
  381.   IO_CACHE_CALLBACK pre_close;
  382.   /*
  383.     Counts the number of times, when we were forced to use disk. We use it to
  384.     increase the binlog_cache_disk_use status variable.
  385.   */
  386.   ulong disk_writes;
  387.   void* arg; /* for use by pre/post_read */
  388.   char *file_name; /* if used with 'open_cached_file' */
  389.   char *dir,*prefix;
  390.   File file; /* file descriptor */
  391.   /*
  392.     seek_not_done is set by my_b_seek() to inform the upcoming read/write
  393.     operation that a seek needs to be preformed prior to the actual I/O
  394.     error is 0 if the cache operation was successful, -1 if there was a
  395.     "hard" error, and the actual number of I/O-ed bytes if the read/write was
  396.     partial.
  397.   */
  398.   int seek_not_done,error;
  399.   /* buffer_length is memory size allocated for buffer or write_buffer */
  400.   uint buffer_length;
  401.   /* read_length is the same as buffer_length except when we use async io */
  402.   uint  read_length;
  403.   myf myflags; /* Flags used to my_read/my_write */
  404.   /*
  405.     alloced_buffer is 1 if the buffer was allocated by init_io_cache() and
  406.     0 if it was supplied by the user.
  407.     Currently READ_NET is the only one that will use a buffer allocated
  408.     somewhere else
  409.   */
  410.   my_bool alloced_buffer;
  411. #ifdef HAVE_AIOWAIT
  412.   /*
  413.     As inidicated by ifdef, this is for async I/O, which is not currently
  414.     used (because it's not reliable on all systems)
  415.   */
  416.   uint inited;
  417.   my_off_t aio_read_pos;
  418.   my_aio_result aio_result;
  419. #endif
  420. } IO_CACHE;
  421. typedef int (*qsort2_cmp)(const void *, const void *, const void *);
  422. /* defines for mf_iocache */
  423. /* Test if buffer is inited */
  424. #define my_b_clear(info) (info)->buffer=0
  425. #define my_b_inited(info) (info)->buffer
  426. #define my_b_EOF INT_MIN
  427. #define my_b_read(info,Buffer,Count) 
  428.   ((info)->read_pos + (Count) <= (info)->read_end ?
  429.    (memcpy(Buffer,(info)->read_pos,(size_t) (Count)), 
  430.     ((info)->read_pos+=(Count)),0) :
  431.    (*(info)->read_function)((info),Buffer,Count))
  432. #define my_b_write(info,Buffer,Count) 
  433.  ((info)->write_pos + (Count) <=(info)->write_end ?
  434.   (memcpy((info)->write_pos, (Buffer), (size_t)(Count)),
  435.    ((info)->write_pos+=(Count)),0) : 
  436.    (*(info)->write_function)((info),(Buffer),(Count)))
  437. #define my_b_get(info) 
  438.   ((info)->read_pos != (info)->read_end ?
  439.    ((info)->read_pos++, (int) (uchar) (info)->read_pos[-1]) :
  440.    _my_b_get(info))
  441. /* my_b_write_byte dosn't have any err-check */
  442. #define my_b_write_byte(info,chr) 
  443.   (((info)->write_pos < (info)->write_end) ?
  444.    ((*(info)->write_pos++)=(chr)) :
  445.    (_my_b_write(info,0,0) , ((*(info)->write_pos++)=(chr))))
  446. #define my_b_fill_cache(info) 
  447.   (((info)->read_end=(info)->read_pos),(*(info)->read_function)(info,0,0))
  448. #define my_b_tell(info) ((info)->pos_in_file + 
  449.  (uint) (*(info)->current_pos - (info)->request_pos))
  450. /* tell write offset in the SEQ_APPEND cache */
  451. my_off_t my_b_append_tell(IO_CACHE* info);
  452. #define my_b_bytes_in_cache(info) (uint) (*(info)->current_end - 
  453.   *(info)->current_pos)
  454. typedef uint32 ha_checksum;
  455. #include <my_alloc.h>
  456. /* Prototypes for mysys and my_func functions */
  457. extern int my_copy(const char *from,const char *to,myf MyFlags);
  458. extern int my_append(const char *from,const char *to,myf MyFlags);
  459. extern int my_delete(const char *name,myf MyFlags);
  460. extern int my_getwd(my_string buf,uint size,myf MyFlags);
  461. extern int my_setwd(const char *dir,myf MyFlags);
  462. extern int my_lock(File fd,int op,my_off_t start, my_off_t length,myf MyFlags);
  463. extern gptr my_once_alloc(uint Size,myf MyFlags);
  464. extern void my_once_free(void);
  465. extern char *my_once_strdup(const char *src,myf myflags);
  466. extern char *my_once_memdup(const char *src, uint len, myf myflags);
  467. extern my_string my_tempnam(const char *dir,const char *pfx,myf MyFlags);
  468. extern File my_open(const char *FileName,int Flags,myf MyFlags);
  469. extern File my_register_filename(File fd, const char *FileName,
  470.  enum file_type type_of_file,
  471.  uint error_message_number, myf MyFlags);
  472. extern File my_create(const char *FileName,int CreateFlags,
  473.       int AccsesFlags, myf MyFlags);
  474. extern int my_close(File Filedes,myf MyFlags);
  475. extern File my_dup(File file, myf MyFlags);
  476. extern int my_mkdir(const char *dir, int Flags, myf MyFlags);
  477. extern int my_readlink(char *to, const char *filename, myf MyFlags);
  478. extern int my_realpath(char *to, const char *filename, myf MyFlags);
  479. extern File my_create_with_symlink(const char *linkname, const char *filename,
  480.    int createflags, int access_flags,
  481.    myf MyFlags);
  482. extern int my_delete_with_symlink(const char *name, myf MyFlags);
  483. extern int my_rename_with_symlink(const char *from,const char *to,myf MyFlags);
  484. extern int my_symlink(const char *content, const char *linkname, myf MyFlags);
  485. extern uint my_read(File Filedes,byte *Buffer,uint Count,myf MyFlags);
  486. extern uint my_pread(File Filedes,byte *Buffer,uint Count,my_off_t offset,
  487.      myf MyFlags);
  488. extern int my_rename(const char *from,const char *to,myf MyFlags);
  489. extern my_off_t my_seek(File fd,my_off_t pos,int whence,myf MyFlags);
  490. extern my_off_t my_tell(File fd,myf MyFlags);
  491. extern uint my_write(File Filedes,const byte *Buffer,uint Count,
  492.      myf MyFlags);
  493. extern uint my_pwrite(File Filedes,const byte *Buffer,uint Count,
  494.       my_off_t offset,myf MyFlags);
  495. extern uint my_fread(FILE *stream,byte *Buffer,uint Count,myf MyFlags);
  496. extern uint my_fwrite(FILE *stream,const byte *Buffer,uint Count,
  497.       myf MyFlags);
  498. extern my_off_t my_fseek(FILE *stream,my_off_t pos,int whence,myf MyFlags);
  499. extern my_off_t my_ftell(FILE *stream,myf MyFlags);
  500. extern gptr _mymalloc(uint uSize,const char *sFile,
  501.       uint uLine, myf MyFlag);
  502. extern gptr _myrealloc(gptr pPtr,uint uSize,const char *sFile,
  503.        uint uLine, myf MyFlag);
  504. extern gptr my_multi_malloc _VARARGS((myf MyFlags, ...));
  505. extern void _myfree(gptr pPtr,const char *sFile,uint uLine, myf MyFlag);
  506. extern int _sanity(const char *sFile,unsigned int uLine);
  507. extern gptr _my_memdup(const byte *from,uint length,
  508.        const char *sFile, uint uLine,myf MyFlag);
  509. extern my_string _my_strdup(const char *from, const char *sFile, uint uLine,
  510.     myf MyFlag);
  511. extern char *_my_strdup_with_length(const byte *from, uint length,
  512.     const char *sFile, uint uLine,
  513.     myf MyFlag);
  514. #ifdef __WIN__
  515. extern int my_access(const char *path, int amode);
  516. #else
  517. #define my_access access
  518. #endif
  519. extern int check_if_legal_filename(const char *path);
  520. #ifndef TERMINATE
  521. extern void TERMINATE(FILE *file);
  522. #endif
  523. extern void init_glob_errs(void);
  524. extern FILE *my_fopen(const char *FileName,int Flags,myf MyFlags);
  525. extern FILE *my_fdopen(File Filedes,const char *name, int Flags,myf MyFlags);
  526. extern int my_fclose(FILE *fd,myf MyFlags);
  527. extern int my_chsize(File fd,my_off_t newlength, int filler, myf MyFlags);
  528. extern int my_sync(File fd, myf my_flags);
  529. extern int my_error _VARARGS((int nr,myf MyFlags, ...));
  530. extern int my_printf_error _VARARGS((uint my_err, const char *format,
  531.      myf MyFlags, ...)
  532.     __attribute__ ((format (printf, 2, 4))));
  533. extern int my_message(uint my_err, const char *str,myf MyFlags);
  534. extern int my_message_no_curses(uint my_err, const char *str,myf MyFlags);
  535. extern int my_message_curses(uint my_err, const char *str,myf MyFlags);
  536. extern my_bool my_init(void);
  537. extern void my_end(int infoflag);
  538. extern int my_redel(const char *from, const char *to, int MyFlags);
  539. extern int my_copystat(const char *from, const char *to, int MyFlags);
  540. extern my_string my_filename(File fd);
  541. #ifndef THREAD
  542. extern void dont_break(void);
  543. extern void allow_break(void);
  544. #else
  545. #define dont_break()
  546. #define allow_break()
  547. #endif
  548. extern my_bool init_tmpdir(MY_TMPDIR *tmpdir, const char *pathlist);
  549. extern char *my_tmpdir(MY_TMPDIR *tmpdir);
  550. extern void free_tmpdir(MY_TMPDIR *tmpdir);
  551. extern void my_remember_signal(int signal_number,sig_handler (*func)(int));
  552. extern uint dirname_part(my_string to,const char *name);
  553. extern uint dirname_length(const char *name);
  554. #define base_name(A) (A+dirname_length(A))
  555. extern int test_if_hard_path(const char *dir_name);
  556. extern my_bool has_path(const char *name);
  557. extern char *convert_dirname(char *to, const char *from, const char *from_end);
  558. extern void to_unix_path(my_string name);
  559. extern my_string fn_ext(const char *name);
  560. extern my_string fn_same(my_string toname,const char *name,int flag);
  561. extern my_string fn_format(my_string to,const char *name,const char *dir,
  562.    const char *form, uint flag);
  563. extern size_s strlength(const char *str);
  564. extern void pack_dirname(my_string to,const char *from);
  565. extern uint unpack_dirname(my_string to,const char *from);
  566. extern uint cleanup_dirname(my_string to,const char *from);
  567. extern uint system_filename(my_string to,const char *from);
  568. extern uint unpack_filename(my_string to,const char *from);
  569. extern my_string intern_filename(my_string to,const char *from);
  570. extern my_string directory_file_name(my_string dst, const char *src);
  571. extern int pack_filename(my_string to, const char *name, size_s max_length);
  572. extern my_string my_path(my_string to,const char *progname,
  573.  const char *own_pathname_part);
  574. extern my_string my_load_path(my_string to, const char *path,
  575.       const char *own_path_prefix);
  576. extern int wild_compare(const char *str,const char *wildstr,pbool str_is_pattern);
  577. extern WF_PACK *wf_comp(my_string str);
  578. extern int wf_test(struct wild_file_pack *wf_pack,const char *name);
  579. extern void wf_end(struct wild_file_pack *buffer);
  580. extern size_s strip_sp(my_string str);
  581. extern void get_date(my_string to,int timeflag,time_t use_time);
  582. extern void soundex(CHARSET_INFO *, my_string out_pntr, my_string in_pntr,pbool remove_garbage);
  583. extern int init_record_cache(RECORD_CACHE *info,uint cachesize,File file,
  584.      uint reclength,enum cache_type type,
  585.      pbool use_async_io);
  586. extern int read_cache_record(RECORD_CACHE *info,byte *to);
  587. extern int end_record_cache(RECORD_CACHE *info);
  588. extern int write_cache_record(RECORD_CACHE *info,my_off_t filepos,
  589.       const byte *record,uint length);
  590. extern int flush_write_cache(RECORD_CACHE *info);
  591. extern long my_clock(void);
  592. extern sig_handler sigtstp_handler(int signal_number);
  593. extern void handle_recived_signals(void);
  594. extern sig_handler my_set_alarm_variable(int signo);
  595. extern void my_string_ptr_sort(void *base,uint items,size_s size);
  596. extern void radixsort_for_str_ptr(uchar* base[], uint number_of_elements,
  597.   size_s size_of_element,uchar *buffer[]);
  598. extern qsort_t qsort2(void *base_ptr, size_t total_elems, size_t size,
  599.       qsort2_cmp cmp, void *cmp_argument);
  600. extern qsort2_cmp get_ptr_compare(uint);
  601. extern int init_io_cache(IO_CACHE *info,File file,uint cachesize,
  602.  enum cache_type type,my_off_t seek_offset,
  603.  pbool use_async_io, myf cache_myflags);
  604. extern my_bool reinit_io_cache(IO_CACHE *info,enum cache_type type,
  605.        my_off_t seek_offset,pbool use_async_io,
  606.        pbool clear_cache);
  607. extern void setup_io_cache(IO_CACHE* info);
  608. extern int _my_b_read(IO_CACHE *info,byte *Buffer,uint Count);
  609. #ifdef THREAD
  610. extern int _my_b_read_r(IO_CACHE *info,byte *Buffer,uint Count);
  611. extern void init_io_cache_share(IO_CACHE *info,
  612. IO_CACHE_SHARE *s, uint num_threads);
  613. extern void remove_io_thread(IO_CACHE *info);
  614. #endif
  615. extern int _my_b_seq_read(IO_CACHE *info,byte *Buffer,uint Count);
  616. extern int _my_b_net_read(IO_CACHE *info,byte *Buffer,uint Count);
  617. extern int _my_b_get(IO_CACHE *info);
  618. extern int _my_b_async_read(IO_CACHE *info,byte *Buffer,uint Count);
  619. extern int _my_b_write(IO_CACHE *info,const byte *Buffer,uint Count);
  620. extern int my_b_append(IO_CACHE *info,const byte *Buffer,uint Count);
  621. extern int my_b_safe_write(IO_CACHE *info,const byte *Buffer,uint Count);
  622. extern int my_block_write(IO_CACHE *info, const byte *Buffer,
  623.   uint Count, my_off_t pos);
  624. extern int my_b_flush_io_cache(IO_CACHE *info, int need_append_buffer_lock);
  625. #define flush_io_cache(info) my_b_flush_io_cache((info),1)
  626. extern int end_io_cache(IO_CACHE *info);
  627. extern uint my_b_fill(IO_CACHE *info);
  628. extern void my_b_seek(IO_CACHE *info,my_off_t pos);
  629. extern uint my_b_gets(IO_CACHE *info, char *to, uint max_length);
  630. extern my_off_t my_b_filelength(IO_CACHE *info);
  631. extern uint my_b_printf(IO_CACHE *info, const char* fmt, ...);
  632. extern uint my_b_vprintf(IO_CACHE *info, const char* fmt, va_list ap);
  633. extern my_bool open_cached_file(IO_CACHE *cache,const char *dir,
  634.  const char *prefix, uint cache_size,
  635.  myf cache_myflags);
  636. extern my_bool real_open_cached_file(IO_CACHE *cache);
  637. extern void close_cached_file(IO_CACHE *cache);
  638. File create_temp_file(char *to, const char *dir, const char *pfx,
  639.       int mode, myf MyFlags);
  640. #define my_init_dynamic_array(A,B,C,D) init_dynamic_array(A,B,C,D CALLER_INFO)
  641. #define my_init_dynamic_array_ci(A,B,C,D) init_dynamic_array(A,B,C,D ORIG_CALLER_INFO)
  642. extern my_bool init_dynamic_array(DYNAMIC_ARRAY *array,uint element_size,
  643.   uint init_alloc,uint alloc_increment CALLER_INFO_PROTO);
  644. extern my_bool insert_dynamic(DYNAMIC_ARRAY *array,gptr element);
  645. extern byte *alloc_dynamic(DYNAMIC_ARRAY *array);
  646. extern byte *pop_dynamic(DYNAMIC_ARRAY*);
  647. extern my_bool set_dynamic(DYNAMIC_ARRAY *array,gptr element,uint array_index);
  648. extern void get_dynamic(DYNAMIC_ARRAY *array,gptr element,uint array_index);
  649. extern void delete_dynamic(DYNAMIC_ARRAY *array);
  650. extern void delete_dynamic_element(DYNAMIC_ARRAY *array, uint array_index);
  651. extern void freeze_size(DYNAMIC_ARRAY *array);
  652. #define dynamic_array_ptr(array,array_index) ((array)->buffer+(array_index)*(array)->size_of_element)
  653. #define dynamic_element(array,array_index,type) ((type)((array)->buffer) +(array_index))
  654. #define push_dynamic(A,B) insert_dynamic(A,B)
  655. #define reset_dynamic(array) ((array)->elements= 0)
  656. extern my_bool init_dynamic_string(DYNAMIC_STRING *str, const char *init_str,
  657.    uint init_alloc,uint alloc_increment);
  658. extern my_bool dynstr_append(DYNAMIC_STRING *str, const char *append);
  659. my_bool dynstr_append_mem(DYNAMIC_STRING *str, const char *append,
  660.   uint length);
  661. extern my_bool dynstr_set(DYNAMIC_STRING *str, const char *init_str);
  662. extern my_bool dynstr_realloc(DYNAMIC_STRING *str, ulong additional_size);
  663. extern void dynstr_free(DYNAMIC_STRING *str);
  664. #ifdef HAVE_MLOCK
  665. extern byte *my_malloc_lock(uint length,myf flags);
  666. extern void my_free_lock(byte *ptr,myf flags);
  667. #else
  668. #define my_malloc_lock(A,B) my_malloc((A),(B))
  669. #define my_free_lock(A,B) my_free((A),(B))
  670. #endif
  671. #define alloc_root_inited(A) ((A)->min_malloc != 0)
  672. #define ALLOC_ROOT_MIN_BLOCK_SIZE (MALLOC_OVERHEAD + sizeof(USED_MEM) + 8)
  673. #define clear_alloc_root(A) do { (A)->free= (A)->used= (A)->pre_alloc= 0; (A)->min_malloc=0;} while(0)
  674. extern void init_alloc_root(MEM_ROOT *mem_root, uint block_size,
  675.     uint pre_alloc_size);
  676. extern gptr alloc_root(MEM_ROOT *mem_root,unsigned int Size);
  677. extern void free_root(MEM_ROOT *root, myf MyFLAGS);
  678. extern void set_prealloc_root(MEM_ROOT *root, char *ptr);
  679. extern void reset_root_defaults(MEM_ROOT *mem_root, uint block_size,
  680.                                 uint prealloc_size);
  681. extern char *strdup_root(MEM_ROOT *root,const char *str);
  682. extern char *strmake_root(MEM_ROOT *root,const char *str,uint len);
  683. extern char *memdup_root(MEM_ROOT *root,const char *str,uint len);
  684. extern void get_defaults_files(int argc, char **argv,
  685.                                char **defaults, char **extra_defaults);
  686. extern int load_defaults(const char *conf_file, const char **groups,
  687.  int *argc, char ***argv);
  688. extern void free_defaults(char **argv);
  689. extern void print_defaults(const char *conf_file, const char **groups);
  690. extern my_bool my_compress(byte *, ulong *, ulong *);
  691. extern my_bool my_uncompress(byte *, ulong *, ulong *);
  692. extern byte *my_compress_alloc(const byte *packet, ulong *len, ulong *complen);
  693. extern ha_checksum my_checksum(ha_checksum crc, const byte *mem, uint count);
  694. extern uint my_bit_log2(ulong value);
  695. extern uint my_count_bits(ulonglong v);
  696. extern void my_sleep(ulong m_seconds);
  697. extern ulong crc32(ulong crc, const uchar *buf, uint len);
  698. extern uint my_set_max_open_files(uint files);
  699. void my_free_open_file_info(void);
  700. ulonglong my_getsystime(void);
  701. my_bool my_gethwaddr(uchar *to);
  702. /* character sets */
  703. extern uint get_charset_number(const char *cs_name, uint cs_flags);
  704. extern uint get_collation_number(const char *name);
  705. extern const char *get_charset_name(uint cs_number);
  706. extern CHARSET_INFO *get_charset(uint cs_number, myf flags);
  707. extern CHARSET_INFO *get_charset_by_name(const char *cs_name, myf flags);
  708. extern CHARSET_INFO *get_charset_by_csname(const char *cs_name,
  709.    uint cs_flags, myf my_flags);
  710. extern void free_charsets(void);
  711. extern char *get_charsets_dir(char *buf);
  712. extern my_bool my_charset_same(CHARSET_INFO *cs1, CHARSET_INFO *cs2);
  713. extern my_bool init_compiled_charsets(myf flags);
  714. extern void add_compiled_collation(CHARSET_INFO *cs);
  715. extern ulong escape_string_for_mysql(CHARSET_INFO *charset_info, char *to,
  716.                                      const char *from, ulong length);
  717. #ifdef __WIN__
  718. #define BACKSLASH_MBTAIL
  719. /* File system character set */
  720. extern CHARSET_INFO *fs_character_set(void);
  721. #endif
  722. #ifdef __WIN__
  723. extern my_bool have_tcpip; /* Is set if tcpip is used */
  724. /* implemented in my_windac.c */
  725. int my_security_attr_create(SECURITY_ATTRIBUTES **psa, const char **perror,
  726.                             DWORD owner_rights, DWORD everybody_rights);
  727. void my_security_attr_free(SECURITY_ATTRIBUTES *sa);
  728. /* implemented in my_conio.c */
  729. char* my_cgets(char *string, unsigned long clen, unsigned long* plen);
  730. #endif
  731. #ifdef __NETWARE__
  732. void netware_reg_user(const char *ip, const char *user,
  733.       const char *application);
  734. #endif
  735. C_MODE_END
  736. #include "raid.h"
  737. #endif /* _my_sys_h */