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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000,2004 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #ifdef USE_PRAGMA_INTERFACE
  14. #pragma interface /* gcc class implementation */
  15. #endif
  16. /* class for the the myisam handler */
  17. #include <myisam.h>
  18. #include <ft_global.h>
  19. #define HA_RECOVER_NONE 0 /* No automatic recover */
  20. #define HA_RECOVER_DEFAULT 1 /* Automatic recover active */
  21. #define HA_RECOVER_BACKUP 2 /* Make a backupfile on recover */
  22. #define HA_RECOVER_FORCE 4 /* Recover even if we loose rows */
  23. #define HA_RECOVER_QUICK 8 /* Don't check rows in data file */
  24. extern ulong myisam_sort_buffer_size;
  25. extern TYPELIB myisam_recover_typelib;
  26. extern ulong myisam_recover_options;
  27. class ha_myisam: public handler
  28. {
  29.   MI_INFO *file;
  30.   ulong   int_table_flags;
  31.   char    *data_file_name, *index_file_name;
  32.   bool can_enable_indexes;
  33.   int repair(THD *thd, MI_CHECK &param, bool optimize);
  34.  public:
  35.   ha_myisam(TABLE *table): handler(table), file(0),
  36.     int_table_flags(HA_NULL_IN_KEY | HA_CAN_FULLTEXT | HA_CAN_SQL_HANDLER |
  37.     HA_DUPP_POS | HA_CAN_INDEX_BLOBS | HA_AUTO_PART_KEY |
  38.     HA_FILE_BASED | HA_CAN_GEOMETRY | HA_READ_RND_SAME |
  39.                     HA_CAN_INSERT_DELAYED),
  40.     can_enable_indexes(1)
  41.   {}
  42.   ~ha_myisam() {}
  43.   const char *table_type() const { return "MyISAM"; }
  44.   const char *index_type(uint key_number);
  45.   const char **bas_ext() const;
  46.   ulong table_flags() const { return int_table_flags; }
  47.   ulong index_flags(uint inx, uint part, bool all_parts) const
  48.   {
  49.     return ((table->key_info[inx].algorithm == HA_KEY_ALG_FULLTEXT) ?
  50.             0 : HA_READ_NEXT | HA_READ_PREV | HA_READ_RANGE |
  51.             HA_READ_ORDER | HA_KEYREAD_ONLY);
  52.   }
  53.   uint max_supported_keys()          const { return MI_MAX_KEY; }
  54.   uint max_supported_key_length()    const { return MI_MAX_KEY_LENGTH; }
  55.   uint max_supported_key_part_length() const { return MI_MAX_KEY_LENGTH; }
  56.   uint checksum() const;
  57.   int open(const char *name, int mode, uint test_if_locked);
  58.   int close(void);
  59.   int write_row(byte * buf);
  60.   int update_row(const byte * old_data, byte * new_data);
  61.   int delete_row(const byte * buf);
  62.   int index_read(byte * buf, const byte * key,
  63.  uint key_len, enum ha_rkey_function find_flag);
  64.   int index_read_idx(byte * buf, uint idx, const byte * key,
  65.      uint key_len, enum ha_rkey_function find_flag);
  66.   int index_read_last(byte * buf, const byte * key, uint key_len);
  67.   int index_next(byte * buf);
  68.   int index_prev(byte * buf);
  69.   int index_first(byte * buf);
  70.   int index_last(byte * buf);
  71.   int index_next_same(byte *buf, const byte *key, uint keylen);
  72.   int ft_init()
  73.   {
  74.     if (!ft_handler)
  75.       return 1;
  76.     ft_handler->please->reinit_search(ft_handler);
  77.     return 0;
  78.   }
  79.   FT_INFO *ft_init_ext(uint flags, uint inx,String *key)
  80.   {
  81.     return ft_init_search(flags,file,inx,
  82.                           (byte *)key->ptr(), key->length(), key->charset(),
  83.                           table->record[0]);
  84.   }
  85.   int ft_read(byte *buf);
  86.   int rnd_init(bool scan);
  87.   int rnd_next(byte *buf);
  88.   int rnd_pos(byte * buf, byte *pos);
  89.   int restart_rnd_next(byte *buf, byte *pos);
  90.   void position(const byte *record);
  91.   void info(uint);
  92.   int extra(enum ha_extra_function operation);
  93.   int extra_opt(enum ha_extra_function operation, ulong cache_size);
  94.   int external_lock(THD *thd, int lock_type);
  95.   int delete_all_rows(void);
  96.   int disable_indexes(uint mode);
  97.   int enable_indexes(uint mode);
  98.   int indexes_are_disabled(void);
  99.   void start_bulk_insert(ha_rows rows);
  100.   int end_bulk_insert();
  101.   ha_rows records_in_range(uint inx, key_range *min_key, key_range *max_key);
  102.   void update_create_info(HA_CREATE_INFO *create_info);
  103.   int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info);
  104.   THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
  105.      enum thr_lock_type lock_type);
  106.   longlong get_auto_increment();
  107.   int rename_table(const char * from, const char * to);
  108.   int delete_table(const char *name);
  109.   int check(THD* thd, HA_CHECK_OPT* check_opt);
  110.   int analyze(THD* thd,HA_CHECK_OPT* check_opt);
  111.   int repair(THD* thd, HA_CHECK_OPT* check_opt);
  112.   bool check_and_repair(THD *thd);
  113.   bool is_crashed() const;
  114.   bool auto_repair() const { return myisam_recover_options != 0; }
  115.   int optimize(THD* thd, HA_CHECK_OPT* check_opt);
  116.   int restore(THD* thd, HA_CHECK_OPT* check_opt);
  117.   int backup(THD* thd, HA_CHECK_OPT* check_opt);
  118.   int assign_to_keycache(THD* thd, HA_CHECK_OPT* check_opt);
  119.   int preload_keys(THD* thd, HA_CHECK_OPT* check_opt);
  120. #ifdef HAVE_REPLICATION
  121.   int dump(THD* thd, int fd);
  122.   int net_read_dump(NET* net);
  123. #endif
  124. };