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

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 USE_PRAGMA_INTERFACE
  14. #pragma interface /* gcc class implementation */
  15. #endif
  16. /* class for the the myisam handler */
  17. #include <nisam.h>
  18. class ha_isam: public handler
  19. {
  20.   N_INFO *file;
  21.   /* We need this as table_flags() may change after open() */
  22.   ulong int_table_flags;
  23.  public:
  24.   ha_isam(TABLE *table)
  25.     :handler(table), file(0),
  26.     int_table_flags(HA_READ_RND_SAME |
  27.     HA_DUPP_POS | HA_NOT_DELETE_WITH_CACHE | HA_FILE_BASED)
  28.   {}
  29.   ~ha_isam() {}
  30.   ulong index_flags(uint idx, uint part, bool all_parts) const
  31.   { return HA_READ_NEXT; } // but no HA_READ_PREV here!!!
  32.   const char *table_type() const { return "ISAM"; }
  33.   const char *index_type(uint key_number) { return "BTREE"; }
  34.   const char **bas_ext() const;
  35.   ulong table_flags() const { return int_table_flags; }
  36.   uint max_supported_record_length() const { return HA_MAX_REC_LENGTH; }
  37.   uint max_supported_keys()          const { return N_MAXKEY; }
  38.   uint max_supported_key_parts()     const { return N_MAXKEY_SEG; }
  39.   uint max_supported_key_length()    const { return N_MAX_KEY_LENGTH; }
  40.   uint min_record_length(uint options) const;
  41.   bool low_byte_first() const { return 0; }
  42.   int open(const char *name, int mode, uint test_if_locked);
  43.   int close(void);
  44.   int write_row(byte * buf);
  45.   int update_row(const byte * old_data, byte * new_data);
  46.   int delete_row(const byte * buf);
  47.   int index_read(byte * buf, const byte * key,
  48.  uint key_len, enum ha_rkey_function find_flag);
  49.   int index_read_idx(byte * buf, uint idx, const byte * key,
  50.      uint key_len, enum ha_rkey_function find_flag);
  51.   int index_read_last(byte * buf, const byte * key, uint key_len);
  52.   int index_next(byte * buf);
  53.   int index_prev(byte * buf);
  54.   int index_first(byte * buf);
  55.   int index_last(byte * buf);
  56.   int rnd_init(bool scan);
  57.   int rnd_next(byte *buf);
  58.   int rnd_pos(byte * buf, byte *pos);
  59.   void position(const byte *record);
  60.   void info(uint);
  61.   int extra(enum ha_extra_function operation);
  62.   int external_lock(THD *thd, int lock_type);
  63.   ha_rows records_in_range(uint inx, key_range *min_key, key_range *max_key);
  64.   int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info);
  65.   THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
  66.      enum thr_lock_type lock_type);
  67. };