my_sys.h
上传用户:jxpjxmjjw
上传日期:2009-12-07
资源大小:5877k
文件大小:31k
源码类别:

模拟服务器

开发平台:

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