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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. #ifdef __GNUC__
  17. #pragma interface /* gcc class implementation */
  18. #endif
  19. /* class for the the myisam handler */
  20. #include <nisam.h>
  21. class ha_isam: public handler
  22. {
  23.   N_INFO *file;
  24.   uint    int_option_flag;
  25.  public:
  26.   ha_isam(TABLE *table): handler(table), file(0),
  27.     int_option_flag(HA_READ_NEXT+HA_READ_PREV+HA_READ_RND_SAME+
  28.     HA_KEYPOS_TO_RNDPOS+ HA_READ_ORDER+ HA_LASTKEY_ORDER+
  29.     HA_HAVE_KEY_READ_ONLY+HA_READ_NOT_EXACT_KEY+
  30.     HA_LONGLONG_KEYS+HA_KEY_READ_WRONG_STR + HA_DUPP_POS +
  31.     HA_NOT_DELETE_WITH_CACHE)
  32.     {}
  33.   ~ha_isam() {}
  34.   const char *table_type() const { return "ISAM"; }
  35.   const char **bas_ext() const;
  36.   ulong option_flag() const { return int_option_flag; }
  37.   uint max_record_length() const { return HA_MAX_REC_LENGTH; }
  38.   uint max_keys()          const { return N_MAXKEY; }
  39.   uint max_key_parts()     const { return N_MAXKEY_SEG; }
  40.   uint max_key_length()    const { return N_MAX_KEY_LENGTH; }
  41.   uint min_record_length(uint options) const;
  42.   bool low_byte_first() const { return 0; }
  43.   int open(const char *name, int mode, uint test_if_locked);
  44.   int close(void);
  45.   int write_row(byte * buf);
  46.   int update_row(const byte * old_data, byte * new_data);
  47.   int delete_row(const byte * buf);
  48.   int index_read(byte * buf, const byte * key,
  49.  uint key_len, enum ha_rkey_function find_flag);
  50.   int index_read_idx(byte * buf, uint idx, const byte * key,
  51.      uint key_len, enum ha_rkey_function find_flag);
  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=1);
  57.   int rnd_next(byte *buf);
  58.   int rnd_pos(byte * buf, byte *pos);
  59.   void position(const byte *record);
  60.   my_off_t row_position() { return nisam_position(file); }
  61.   void info(uint);
  62.   int extra(enum ha_extra_function operation);
  63.   int reset(void);
  64.   int external_lock(THD *thd, int lock_type);
  65.   ha_rows records_in_range(int inx,
  66.    const byte *start_key,uint start_key_len,
  67.    enum ha_rkey_function start_search_flag,
  68.    const byte *end_key,uint end_key_len,
  69.    enum ha_rkey_function end_search_flag);
  70.   int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info);
  71.   THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
  72.      enum thr_lock_type lock_type);
  73. };