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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2005 MySQL 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. /*
  17.   Class definition for the blackhole storage engine
  18.   "Dumbest named feature ever"
  19. */
  20. class ha_blackhole: public handler
  21. {
  22.   THR_LOCK_DATA lock;      /* MySQL lock */
  23.   THR_LOCK thr_lock;
  24. public:
  25.   ha_blackhole(TABLE *table): handler(table)
  26.   {
  27.   }
  28.   ~ha_blackhole()
  29.   {
  30.   }
  31.   /* The name that will be used for display purposes */
  32.   const char *table_type() const { return "BLACKHOLE"; }
  33.   /*
  34.     The name of the index type that will be used for display
  35.     don't implement this method unless you really have indexes
  36.   */
  37.   const char *index_type(uint key_number);
  38.   const char **bas_ext() const;
  39.   ulong table_flags() const
  40.   {
  41.     return(HA_NULL_IN_KEY | HA_CAN_FULLTEXT | HA_CAN_SQL_HANDLER |
  42.            HA_DUPP_POS | HA_CAN_INDEX_BLOBS | HA_AUTO_PART_KEY |
  43.            HA_FILE_BASED | HA_CAN_GEOMETRY | HA_READ_RND_SAME |
  44.            HA_CAN_INSERT_DELAYED);
  45.   }
  46.   ulong index_flags(uint inx, uint part, bool all_parts) const
  47.   {
  48.     return ((table->key_info[inx].algorithm == HA_KEY_ALG_FULLTEXT) ?
  49.             0 : HA_READ_NEXT | HA_READ_PREV | HA_READ_RANGE |
  50.             HA_READ_ORDER | HA_KEYREAD_ONLY);
  51.   }
  52.   /* The following defines can be increased if necessary */
  53. #define BLACKHOLE_MAX_KEY 64 /* Max allowed keys */
  54. #define BLACKHOLE_MAX_KEY_SEG 16 /* Max segments for key */
  55. #define BLACKHOLE_MAX_KEY_LENGTH 1000
  56.   uint max_supported_keys()          const { return BLACKHOLE_MAX_KEY; }
  57.   uint max_supported_key_length()    const { return BLACKHOLE_MAX_KEY_LENGTH; }
  58.   uint max_supported_key_part_length() const { return BLACKHOLE_MAX_KEY_LENGTH; }
  59.   int open(const char *name, int mode, uint test_if_locked);
  60.   int close(void);
  61.   int write_row(byte * buf);
  62.   int rnd_init(bool scan);
  63.   int rnd_next(byte *buf);
  64.   int rnd_pos(byte * buf, byte *pos);
  65.   int index_read(byte * buf, const byte * key,
  66.                  uint key_len, enum ha_rkey_function find_flag);
  67.   int index_read_idx(byte * buf, uint idx, const byte * key,
  68.                      uint key_len, enum ha_rkey_function find_flag);
  69.   int index_read_last(byte * buf, const byte * key, uint key_len);
  70.   int index_next(byte * buf);
  71.   int index_prev(byte * buf);
  72.   int index_first(byte * buf);
  73.   int index_last(byte * buf);
  74.   void position(const byte *record);
  75.   void info(uint flag);
  76.   int external_lock(THD *thd, int lock_type);
  77.   uint lock_count(void) const;
  78.   int create(const char *name, TABLE *table_arg,
  79.              HA_CREATE_INFO *create_info);
  80.   THR_LOCK_DATA **store_lock(THD *thd,
  81.                              THR_LOCK_DATA **to,
  82.                              enum thr_lock_type lock_type);
  83. };