ha_myisam.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 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 __GNUC__
  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.   uint    int_option_flag;
  31.   int repair(THD *thd, MI_CHECK &param, bool optimize);
  32.  public:
  33.   ha_myisam(TABLE *table): handler(table), file(0),
  34.     int_option_flag(HA_READ_NEXT | HA_READ_PREV | HA_READ_RND_SAME |
  35.     HA_KEYPOS_TO_RNDPOS | HA_READ_ORDER |  HA_LASTKEY_ORDER |
  36.     HA_HAVE_KEY_READ_ONLY | HA_READ_NOT_EXACT_KEY |
  37.     HA_LONGLONG_KEYS |  HA_NULL_KEY |
  38.     HA_DUPP_POS | HA_BLOB_KEY | HA_AUTO_PART_KEY)
  39.   {}
  40.   ~ha_myisam() {}
  41.   const char *table_type() const { return "MyISAM"; }
  42.   const char **bas_ext() const;
  43.   ulong option_flag() const { return int_option_flag; }
  44.   uint max_record_length() const { return HA_MAX_REC_LENGTH; }
  45.   uint max_keys()          const { return MI_MAX_KEY; }
  46.   uint max_key_parts()     const { return MAX_REF_PARTS; }
  47.   uint max_key_length()    const { return MAX_KEY_LENGTH; }
  48.   int open(const char *name, int mode, uint test_if_locked);
  49.   int close(void);
  50.   int write_row(byte * buf);
  51.   int update_row(const byte * old_data, byte * new_data);
  52.   int delete_row(const byte * buf);
  53.   int index_read(byte * buf, const byte * key,
  54.  uint key_len, enum ha_rkey_function find_flag);
  55.   int index_read_idx(byte * buf, uint idx, const byte * key,
  56.      uint key_len, enum ha_rkey_function find_flag);
  57.   int index_next(byte * buf);
  58.   int index_prev(byte * buf);
  59.   int index_first(byte * buf);
  60.   int index_last(byte * buf);
  61.   int index_next_same(byte *buf, const byte *key, uint keylen);
  62.   int index_end() { ft_handler=NULL; return 0; }
  63.   int ft_init()
  64.          { if(!ft_handler) return 1; ft_reinit_search(ft_handler); return 0; }
  65.   void *ft_init_ext(uint inx,const byte *key, uint keylen, bool presort)
  66.                { return ft_init_search(file,inx,(byte*) key,keylen,presort); }
  67.   int ft_read(byte *buf);
  68.   int rnd_init(bool scan=1);
  69.   int rnd_next(byte *buf);
  70.   int rnd_pos(byte * buf, byte *pos);
  71.   int restart_rnd_next(byte *buf, byte *pos);
  72.   void position(const byte *record);
  73.   my_off_t row_position() { return mi_position(file); }
  74.   void info(uint);
  75.   int extra(enum ha_extra_function operation);
  76.   int reset(void);
  77.   int external_lock(THD *thd, int lock_type);
  78.   int delete_all_rows(void);
  79.   void deactivate_non_unique_index(ha_rows rows);
  80.   bool activate_all_index(THD *thd);
  81.   ha_rows records_in_range(int inx,
  82.    const byte *start_key,uint start_key_len,
  83.    enum ha_rkey_function start_search_flag,
  84.    const byte *end_key,uint end_key_len,
  85.    enum ha_rkey_function end_search_flag);
  86.   void update_create_info(HA_CREATE_INFO *create_info);
  87.   int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info);
  88.   THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
  89.      enum thr_lock_type lock_type);
  90.   longlong get_auto_increment();
  91.   int rename_table(const char * from, const char * to);
  92.   int delete_table(const char *name);
  93.   int check(THD* thd, HA_CHECK_OPT* check_opt);
  94.   int analyze(THD* thd,HA_CHECK_OPT* check_opt);
  95.   int repair(THD* thd, HA_CHECK_OPT* check_opt);
  96.   bool check_and_repair(THD *thd);
  97.   bool is_crashed() const;
  98.   bool auto_repair() const { return myisam_recover_options != 0; }
  99.   int optimize(THD* thd, HA_CHECK_OPT* check_opt);
  100.   int restore(THD* thd, HA_CHECK_OPT* check_opt);
  101.   int backup(THD* thd, HA_CHECK_OPT* check_opt);
  102.   int dump(THD* thd, int fd);
  103.   int net_read_dump(NET* net);
  104. };