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

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. /* This file should be included when using myisam_funktions */
  14. #ifndef _myisam_h
  15. #define _myisam_h
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. #ifndef _my_base_h
  20. #include <my_base.h>
  21. #endif
  22. #ifndef _m_ctype_h
  23. #include <m_ctype.h>
  24. #endif
  25. #ifndef _keycache_h
  26. #include "keycache.h"
  27. #endif
  28. #include "my_handler.h"
  29. /* defines used by myisam-funktions */
  30. /* The following defines can be increased if necessary */
  31. #define MI_MAX_KEY 64 /* Max allowed keys */
  32. #define MI_MAX_KEY_SEG 16 /* Max segments for key */
  33. #define MI_MAX_KEY_LENGTH 1000
  34. #define MI_MAX_KEY_BUFF  (MI_MAX_KEY_LENGTH+MI_MAX_KEY_SEG*6+8+8)
  35. #define MI_MAX_POSSIBLE_KEY_BUFF (1024+6+6) /* For myisam_chk */
  36. #define MI_MAX_POSSIBLE_KEY 64 /* For myisam_chk */
  37. #define MI_MAX_MSG_BUF      1024 /* used in CHECK TABLE, REPAIR TABLE */
  38. #define MI_NAME_IEXT ".MYI"
  39. #define MI_NAME_DEXT ".MYD"
  40. /* Max extra space to use when sorting keys */
  41. #define MI_MAX_TEMP_LENGTH 2*1024L*1024L*1024L
  42. /* Possible values for myisam_block_size (must be power of 2) */
  43. #define MI_KEY_BLOCK_LENGTH 1024 /* default key block length */
  44. #define MI_MIN_KEY_BLOCK_LENGTH 1024 /* Min key block length */
  45. #define MI_MAX_KEY_BLOCK_LENGTH 16384
  46. #define mi_portable_sizeof_char_ptr 8
  47. /* Param to/from mi_info */
  48. typedef struct st_mi_isaminfo /* Struct from h_info */
  49. {
  50.   ha_rows records; /* Records in database */
  51.   ha_rows deleted; /* Deleted records in database */
  52.   my_off_t recpos; /* Pos for last used record */
  53.   my_off_t newrecpos; /* Pos if we write new record */
  54.   my_off_t dupp_key_pos; /* Position to record with dupp key */
  55.   my_off_t data_file_length, /* Length of data file */
  56.            max_data_file_length,
  57.            index_file_length,
  58.            max_index_file_length,
  59.            delete_length;
  60.   ulong reclength; /* Recordlength */
  61.   ulong mean_reclength; /* Mean recordlength (if packed) */
  62.   ulonglong auto_increment;
  63.   ulonglong key_map; /* Which keys are used */
  64.   char  *data_file_name, *index_file_name;
  65.   uint  keys; /* Number of keys in use */
  66.   uint options; /* HA_OPTION_... used */
  67.   int errkey, /* With key was dupplicated on err */
  68. sortkey; /* clustered by this key */
  69.   File filenr; /* (uniq) filenr for datafile */
  70.   time_t create_time; /* When table was created */
  71.   time_t check_time;
  72.   time_t update_time;
  73.   uint  reflength;
  74.   ulong record_offset;
  75.   ulong *rec_per_key; /* for sql optimizing */
  76.   uint raid_type,raid_chunks;
  77.   ulong raid_chunksize;
  78. } MI_ISAMINFO;
  79. typedef struct st_mi_create_info
  80. {
  81.   const char *index_file_name, *data_file_name; /* If using symlinks */
  82.   ha_rows max_rows;
  83.   ha_rows reloc_rows;
  84.   ulonglong auto_increment;
  85.   ulonglong data_file_length;
  86.   ulonglong key_file_length;
  87.   uint raid_type,raid_chunks;
  88.   ulong raid_chunksize;
  89.   uint old_options;
  90.   uint8 language;
  91.   my_bool with_auto_increment;
  92. } MI_CREATE_INFO;
  93. struct st_myisam_info; /* For referense */
  94. typedef struct st_myisam_info MI_INFO;
  95. struct st_mi_s_param;
  96. typedef struct st_mi_keydef /* Key definition with open & info */
  97. {
  98.   uint16 keysegs; /* Number of key-segment */
  99.   uint16 flag; /* NOSAME, PACK_USED */
  100.   uint8  key_alg; /* BTREE, RTREE */
  101.   uint16 block_length; /* Length of keyblock (auto) */
  102.   uint16 underflow_block_length; /* When to execute underflow */
  103.   uint16 keylength; /* Tot length of keyparts (auto) */
  104.   uint16 minlength; /* min length of (packed) key (auto) */
  105.   uint16 maxlength; /* max length of (packed) key (auto) */
  106.   uint16 block_size; /* block_size (auto) */
  107.   uint32 version; /* For concurrent read/write */
  108.   HA_KEYSEG *seg,*end;
  109.   int (*bin_search)(struct st_myisam_info *info,struct st_mi_keydef *keyinfo,
  110.     uchar *page,uchar *key,
  111.     uint key_len,uint comp_flag,uchar * *ret_pos,
  112.     uchar *buff, my_bool *was_last_key);
  113.   uint (*get_key)(struct st_mi_keydef *keyinfo,uint nod_flag,uchar * *page,
  114.   uchar *key);
  115.   int (*pack_key)(struct st_mi_keydef *keyinfo,uint nod_flag,uchar *next_key,
  116.   uchar *org_key, uchar *prev_key, uchar *key,
  117.   struct st_mi_s_param *s_temp);
  118.   void (*store_key)(struct st_mi_keydef *keyinfo, uchar *key_pos,
  119.     struct st_mi_s_param *s_temp);
  120.   int (*ck_insert)(struct st_myisam_info *inf, uint k_nr, uchar *k, uint klen);
  121.   int (*ck_delete)(struct st_myisam_info *inf, uint k_nr, uchar *k, uint klen);
  122. } MI_KEYDEF;
  123. #define MI_UNIQUE_HASH_LENGTH 4
  124. typedef struct st_unique_def /* Segment definition of unique */
  125. {
  126.   uint16 keysegs; /* Number of key-segment */
  127.   uchar key; /* Mapped to which key */
  128.   uint8 null_are_equal;
  129.   HA_KEYSEG *seg,*end;
  130. } MI_UNIQUEDEF;
  131. typedef struct st_mi_decode_tree /* Decode huff-table */
  132. {
  133.   uint16 *table;
  134.   uint  quick_table_bits;
  135.   byte  *intervalls;
  136. } MI_DECODE_TREE;
  137. struct st_mi_bit_buff;
  138. /*
  139.   Note that null markers should always be first in a row !
  140.   When creating a column, one should only specify:
  141.   type, length, null_bit and null_pos
  142. */
  143. typedef struct st_columndef /* column information */
  144. {
  145.   int16  type; /* en_fieldtype */
  146.   uint16 length; /* length of field */
  147.   uint32 offset; /* Offset to position in row */
  148.   uint8  null_bit; /* If column may be 0 */
  149.   uint16 null_pos; /* position for null marker */
  150. #ifndef NOT_PACKED_DATABASES
  151.   void (*unpack)(struct st_columndef *rec,struct st_mi_bit_buff *buff,
  152.  uchar *start,uchar *end);
  153.   enum en_fieldtype base_type;
  154.   uint space_length_bits,pack_type;
  155.   MI_DECODE_TREE *huff_tree;
  156. #endif
  157. } MI_COLUMNDEF;
  158. /* invalidator function reference for Query Cache */
  159. typedef void (* invalidator_by_filename)(const char * filename);
  160. extern my_string myisam_log_filename; /* Name of logfile */
  161. extern uint myisam_block_size;
  162. extern my_bool myisam_flush,myisam_delay_key_write,myisam_single_user;
  163. extern my_bool myisam_concurrent_insert;
  164. extern my_off_t myisam_max_temp_length,myisam_max_extra_temp_length;
  165. extern ulong myisam_bulk_insert_tree_size, myisam_data_pointer_size;
  166. /* Prototypes for myisam-functions */
  167. extern int mi_close(struct st_myisam_info *file);
  168. extern int mi_delete(struct st_myisam_info *file,const byte *buff);
  169. extern struct st_myisam_info *mi_open(const char *name,int mode,
  170.       uint wait_if_locked);
  171. extern int mi_panic(enum ha_panic_function function);
  172. extern int mi_rfirst(struct st_myisam_info *file,byte *buf,int inx);
  173. extern int mi_rkey(struct st_myisam_info *file,byte *buf,int inx,
  174.    const byte *key,
  175.    uint key_len, enum ha_rkey_function search_flag);
  176. extern int mi_rlast(struct st_myisam_info *file,byte *buf,int inx);
  177. extern int mi_rnext(struct st_myisam_info *file,byte *buf,int inx);
  178. extern int mi_rnext_same(struct st_myisam_info *info, byte *buf);
  179. extern int mi_rprev(struct st_myisam_info *file,byte *buf,int inx);
  180. extern int mi_rrnd(struct st_myisam_info *file,byte *buf, my_off_t pos);
  181. extern int mi_scan_init(struct st_myisam_info *file);
  182. extern int mi_scan(struct st_myisam_info *file,byte *buf);
  183. extern int mi_rsame(struct st_myisam_info *file,byte *record,int inx);
  184. extern int mi_rsame_with_pos(struct st_myisam_info *file,byte *record,
  185.      int inx, my_off_t pos);
  186. extern int mi_update(struct st_myisam_info *file,const byte *old,
  187.      byte *new_record);
  188. extern int mi_write(struct st_myisam_info *file,byte *buff);
  189. extern my_off_t mi_position(struct st_myisam_info *file);
  190. extern int mi_status(struct st_myisam_info *info, MI_ISAMINFO *x, uint flag);
  191. extern int mi_lock_database(struct st_myisam_info *file,int lock_type);
  192. extern int mi_create(const char *name,uint keys,MI_KEYDEF *keydef,
  193.      uint columns, MI_COLUMNDEF *columndef,
  194.      uint uniques, MI_UNIQUEDEF *uniquedef,
  195.      MI_CREATE_INFO *create_info, uint flags);
  196. extern int mi_delete_table(const char *name);
  197. extern int mi_rename(const char *from, const char *to);
  198. extern int mi_extra(struct st_myisam_info *file,
  199.     enum ha_extra_function function,
  200.     void *extra_arg);
  201. extern ha_rows mi_records_in_range(struct st_myisam_info *info,int inx,
  202.                                    key_range *min_key, key_range *max_key);
  203. extern int mi_log(int activate_log);
  204. extern int mi_is_changed(struct st_myisam_info *info);
  205. extern int mi_delete_all_rows(struct st_myisam_info *info);
  206. extern ulong _mi_calc_blob_length(uint length , const byte *pos);
  207. extern uint mi_get_pointer_length(ulonglong file_length, uint def);
  208. /* this is used to pass to mysql_myisamchk_table -- by Sasha Pachev */
  209. #define   MYISAMCHK_REPAIR 1  /* equivalent to myisamchk -r */
  210. #define   MYISAMCHK_VERIFY 2  /* Verify, run repair if failure */
  211. /*
  212.   Definitions needed for myisamchk.c
  213.   Entries marked as "QQ to be removed" are NOT used to
  214.   pass check/repair options to mi_check.c. They are used
  215.   internally by myisamchk.c or/and ha_myisam.cc and should NOT
  216.   be stored together with other flags. They should be removed
  217.   from the following list to make addition of new flags possible.
  218. */
  219. #define T_AUTO_INC              1
  220. #define T_AUTO_REPAIR           2              /* QQ to be removed */
  221. #define T_BACKUP_DATA           4
  222. #define T_CALC_CHECKSUM         8
  223. #define T_CHECK                 16             /* QQ to be removed */
  224. #define T_CHECK_ONLY_CHANGED    32             /* QQ to be removed */
  225. #define T_CREATE_MISSING_KEYS   64
  226. #define T_DESCRIPT              128
  227. #define T_DONT_CHECK_CHECKSUM   256
  228. #define T_EXTEND                512
  229. #define T_FAST                  (1L << 10)     /* QQ to be removed */
  230. #define T_FORCE_CREATE          (1L << 11)     /* QQ to be removed */
  231. #define T_FORCE_UNIQUENESS      (1L << 12)
  232. #define T_INFO                  (1L << 13)
  233. #define T_MEDIUM                (1L << 14)
  234. #define T_QUICK                 (1L << 15)     /* QQ to be removed */
  235. #define T_READONLY              (1L << 16)     /* QQ to be removed */
  236. #define T_REP                   (1L << 17)
  237. #define T_REP_BY_SORT           (1L << 18)     /* QQ to be removed */
  238. #define T_REP_PARALLEL          (1L << 19)     /* QQ to be removed */
  239. #define T_RETRY_WITHOUT_QUICK   (1L << 20)
  240. #define T_SAFE_REPAIR           (1L << 21)
  241. #define T_SILENT                (1L << 22)
  242. #define T_SORT_INDEX            (1L << 23)     /* QQ to be removed */
  243. #define T_SORT_RECORDS          (1L << 24)     /* QQ to be removed */
  244. #define T_STATISTICS            (1L << 25)
  245. #define T_UNPACK                (1L << 26)
  246. #define T_UPDATE_STATE          (1L << 27)
  247. #define T_VERBOSE               (1L << 28)
  248. #define T_VERY_SILENT           (1L << 29)
  249. #define T_WAIT_FOREVER          (1L << 30)
  250. #define T_WRITE_LOOP            ((ulong) 1L << 31)
  251. #define T_REP_ANY               (T_REP | T_REP_BY_SORT | T_REP_PARALLEL)
  252. /*
  253.   Flags used by myisamchk.c or/and ha_myisam.cc that are NOT passed
  254.   to mi_check.c follows:
  255. */
  256. #define TT_USEFRM               1
  257. #define O_NEW_INDEX 1 /* Bits set in out_flag */
  258. #define O_NEW_DATA 2
  259. #define O_DATA_LOST 4
  260. /* these struct is used by my_check to tell it what to do */
  261. typedef struct st_sort_key_blocks /* Used when sorting */
  262. {
  263.   uchar *buff,*end_pos;
  264.   uchar lastkey[MI_MAX_POSSIBLE_KEY_BUFF];
  265.   uint last_length;
  266.   int inited;
  267. } SORT_KEY_BLOCKS;
  268. /* 
  269.   MyISAM supports several statistics collection methods. Currently statistics 
  270.   collection method is not stored in MyISAM file and has to be specified for 
  271.   each table analyze/repair operation in  MI_CHECK::stats_method.
  272. */
  273. typedef enum 
  274. {
  275.   /* Treat NULLs as inequal when collecting statistics (default for 4.1/5.0) */
  276.   MI_STATS_METHOD_NULLS_NOT_EQUAL,
  277.   /* Treat NULLs as equal when collecting statistics (like 4.0 did) */
  278.   MI_STATS_METHOD_NULLS_EQUAL,
  279.   /* Ignore NULLs - count only tuples without NULLs in the index components */
  280.   MI_STATS_METHOD_IGNORE_NULLS
  281. } enum_mi_stats_method;
  282. typedef struct st_mi_check_param
  283. {
  284.   ulonglong auto_increment_value;
  285.   ulonglong max_data_file_length;
  286.   ulonglong keys_in_use;
  287.   ulonglong max_record_length;
  288.   my_off_t search_after_block;
  289.   my_off_t new_file_pos,key_file_blocks;
  290.   my_off_t keydata,totaldata,key_blocks,start_check_pos;
  291.   ha_rows total_records,total_deleted;
  292.   ha_checksum record_checksum,glob_crc;
  293.   ulong use_buffers,read_buffer_length,write_buffer_length,
  294. sort_buffer_length,sort_key_blocks;
  295.   uint out_flag,warning_printed,error_printed,verbose;
  296.   uint opt_sort_key,total_files,max_level;
  297.   uint testflag, key_cache_block_size;
  298.   uint8 language;
  299.   my_bool using_global_keycache, opt_lock_memory, opt_follow_links;
  300.   my_bool retry_repair, force_sort, calc_checksum;
  301.   char temp_filename[FN_REFLEN],*isam_file_name;
  302.   MY_TMPDIR *tmpdir;
  303.   int tmpfile_createflag;
  304.   myf myf_rw;
  305.   IO_CACHE read_cache;
  306.   
  307.   /* 
  308.     The next two are used to collect statistics, see update_key_parts for
  309.     description.
  310.   */
  311.   ulonglong unique_count[MI_MAX_KEY_SEG+1];
  312.   ulonglong notnull_count[MI_MAX_KEY_SEG+1];
  313.   
  314.   ha_checksum key_crc[MI_MAX_POSSIBLE_KEY];
  315.   ulong rec_per_key_part[MI_MAX_KEY_SEG*MI_MAX_POSSIBLE_KEY];
  316.   void *thd;
  317.   char *db_name,*table_name;
  318.   char *op_name;
  319.   enum_mi_stats_method stats_method;
  320. } MI_CHECK;
  321. typedef struct st_sort_ft_buf
  322. {
  323.   uchar *buf, *end;
  324.   int   count;
  325.   uchar lastkey[MI_MAX_KEY_BUFF];
  326. } SORT_FT_BUF;
  327. typedef struct st_sort_info
  328. {
  329.   my_off_t filelength,dupp,buff_length;
  330.   ha_rows max_records;
  331.   uint current_key, total_keys;
  332.   myf myf_rw;
  333.   enum data_file_type new_data_file_type;
  334.   MI_INFO *info;
  335.   MI_CHECK *param;
  336.   char *buff;
  337.   SORT_KEY_BLOCKS *key_block,*key_block_end;
  338.   SORT_FT_BUF *ft_buf;
  339.   /* sync things */
  340.   uint got_error, threads_running;
  341. #ifdef THREAD
  342.   pthread_mutex_t mutex;
  343.   pthread_cond_t  cond;
  344. #endif
  345. } SORT_INFO;
  346. /* functions in mi_check */
  347. void myisamchk_init(MI_CHECK *param);
  348. int chk_status(MI_CHECK *param, MI_INFO *info);
  349. int chk_del(MI_CHECK *param, register MI_INFO *info, uint test_flag);
  350. int chk_size(MI_CHECK *param, MI_INFO *info);
  351. int chk_key(MI_CHECK *param, MI_INFO *info);
  352. int chk_data_link(MI_CHECK *param, MI_INFO *info,int extend);
  353. int mi_repair(MI_CHECK *param, register MI_INFO *info,
  354.       my_string name, int rep_quick);
  355. int mi_sort_index(MI_CHECK *param, register MI_INFO *info, my_string name);
  356. int mi_repair_by_sort(MI_CHECK *param, register MI_INFO *info,
  357.       const char * name, int rep_quick);
  358. int mi_repair_parallel(MI_CHECK *param, register MI_INFO *info,
  359.       const char * name, int rep_quick);
  360. int change_to_newfile(const char * filename, const char * old_ext,
  361.       const char * new_ext, uint raid_chunks,
  362.       myf myflags);
  363. int lock_file(MI_CHECK *param, File file, my_off_t start, int lock_type,
  364.       const char *filetype, const char *filename);
  365. void lock_memory(MI_CHECK *param);
  366. void update_auto_increment_key(MI_CHECK *param, MI_INFO *info,
  367.        my_bool repair);
  368. int update_state_info(MI_CHECK *param, MI_INFO *info,uint update);
  369. void update_key_parts(MI_KEYDEF *keyinfo, ulong *rec_per_key_part,
  370.                       ulonglong *unique, ulonglong *notnull, 
  371.                       ulonglong records);
  372. int filecopy(MI_CHECK *param, File to,File from,my_off_t start,
  373.      my_off_t length, const char *type);
  374. int movepoint(MI_INFO *info,byte *record,my_off_t oldpos,
  375.       my_off_t newpos, uint prot_key);
  376. int write_data_suffix(SORT_INFO *sort_info, my_bool fix_datafile);
  377. int test_if_almost_full(MI_INFO *info);
  378. int recreate_table(MI_CHECK *param, MI_INFO **org_info, char *filename);
  379. void mi_disable_non_unique_index(MI_INFO *info, ha_rows rows);
  380. my_bool mi_test_if_sort_rep(MI_INFO *info, ha_rows rows, ulonglong key_map,
  381.     my_bool force);
  382. int mi_init_bulk_insert(MI_INFO *info, ulong cache_size, ha_rows rows);
  383. void mi_flush_bulk_insert(MI_INFO *info, uint inx);
  384. void mi_end_bulk_insert(MI_INFO *info);
  385. int mi_assign_to_key_cache(MI_INFO *info, ulonglong key_map, 
  386.    KEY_CACHE *key_cache);
  387. void mi_change_key_cache(KEY_CACHE *old_key_cache,
  388.  KEY_CACHE *new_key_cache);
  389. int mi_preload(MI_INFO *info, ulonglong key_map, my_bool ignore_leaves);
  390. #ifdef __cplusplus
  391. }
  392. #endif
  393. #endif