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

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 heap handler */
  17. #include <heap.h>
  18. class ha_heap: public handler
  19. {
  20.   HP_INFO *file;
  21.   key_map btree_keys;
  22.   /* number of records changed since last statistics update */
  23.   uint    records_changed;
  24.   bool    key_stats_ok;
  25. public:
  26.   ha_heap(TABLE *table): handler(table), file(0), records_changed(0),
  27.       key_stats_ok(0) {}
  28.   ~ha_heap() {}
  29.   const char *table_type() const { return "HEAP"; }
  30.   const char *index_type(uint inx)
  31.   {
  32.     return ((table->key_info[inx].algorithm == HA_KEY_ALG_BTREE) ? "BTREE" :
  33.     "HASH");
  34.   }
  35.   const char **bas_ext() const;
  36.   ulong table_flags() const
  37.   {
  38.     return (HA_FAST_KEY_READ | HA_NO_BLOBS | HA_NULL_IN_KEY |
  39.             HA_REC_NOT_IN_SEQ | HA_READ_RND_SAME |
  40.             HA_CAN_INSERT_DELAYED);
  41.   }
  42.   ulong index_flags(uint inx, uint part, bool all_parts) const
  43.   {
  44.     return ((table->key_info[inx].algorithm == HA_KEY_ALG_BTREE) ?
  45.     HA_READ_NEXT | HA_READ_PREV | HA_READ_ORDER | HA_READ_RANGE :
  46.     HA_ONLY_WHOLE_INDEX);
  47.   }
  48.   const key_map *keys_to_use_for_scanning() { return &btree_keys; }
  49.   uint max_supported_keys()          const { return MAX_KEY; }
  50.   uint max_supported_key_part_length() const { return MAX_KEY_LENGTH; }
  51.   double scan_time() { return (double) (records+deleted) / 20.0+10; }
  52.   double read_time(uint index, uint ranges, ha_rows rows)
  53.   { return (double) rows /  20.0+1; }
  54.   int open(const char *name, int mode, uint test_if_locked);
  55.   int close(void);
  56.   void set_keys_for_scanning(void);
  57.   int write_row(byte * buf);
  58.   int update_row(const byte * old_data, byte * new_data);
  59.   int delete_row(const byte * buf);
  60.   longlong get_auto_increment();
  61.   int index_read(byte * buf, const byte * key,
  62.  uint key_len, enum ha_rkey_function find_flag);
  63.   int index_read_idx(byte * buf, uint idx, const byte * key,
  64.      uint key_len, enum ha_rkey_function find_flag);
  65.   int index_read_last(byte * buf, const byte * key, uint key_len);
  66.   int index_next(byte * buf);
  67.   int index_prev(byte * buf);
  68.   int index_first(byte * buf);
  69.   int index_last(byte * buf);
  70.   int rnd_init(bool scan);
  71.   int rnd_next(byte *buf);
  72.   int rnd_pos(byte * buf, byte *pos);
  73.   void position(const byte *record);
  74.   void info(uint);
  75.   int extra(enum ha_extra_function operation);
  76.   int external_lock(THD *thd, int lock_type);
  77.   int delete_all_rows(void);
  78.   int disable_indexes(uint mode);
  79.   int enable_indexes(uint mode);
  80.   int indexes_are_disabled(void);
  81.   ha_rows records_in_range(uint inx, key_range *min_key, key_range *max_key);
  82.   int delete_table(const char *from);
  83.   int rename_table(const char * from, const char * to);
  84.   int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info);
  85.   void update_create_info(HA_CREATE_INFO *create_info);
  86.   THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
  87.      enum thr_lock_type lock_type);
  88. private:
  89.   void update_key_stats();
  90. };