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

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 <db.h>
  18. #define BDB_HIDDEN_PRIMARY_KEY_LENGTH 5
  19. typedef struct st_berkeley_share {
  20.   ulonglong auto_ident;
  21.   ha_rows rows, org_rows;
  22.   ulong *rec_per_key;
  23.   THR_LOCK lock;
  24.   pthread_mutex_t mutex;
  25.   char *table_name;
  26.   DB *status_block, *file, **key_file;
  27.   u_int32_t *key_type;
  28.   uint table_name_length,use_count;
  29.   uint status,version;
  30.   uint ref_length;
  31.   bool fixed_length_primary_key, fixed_length_row;
  32. } BDB_SHARE;
  33. class ha_berkeley: public handler
  34. {
  35.   THR_LOCK_DATA lock;
  36.   DBT last_key,current_row;
  37.   gptr alloc_ptr;
  38.   byte *rec_buff;
  39.   char *key_buff, *key_buff2, *primary_key_buff;
  40.   DB *file, **key_file;
  41.   DB_TXN *transaction;
  42.   u_int32_t *key_type;
  43.   DBC *cursor;
  44.   BDB_SHARE *share;
  45.   ulong int_table_flags;
  46.   ulong alloced_rec_buff_length;
  47.   ulong changed_rows;
  48.   uint primary_key,last_dup_key, hidden_primary_key, version;
  49.   u_int32_t lock_on_read;
  50.   bool key_read, using_ignore;
  51.   bool fix_rec_buff_for_blob(ulong length);
  52.   byte current_ident[BDB_HIDDEN_PRIMARY_KEY_LENGTH];
  53.   ulong max_row_length(const byte *buf);
  54.   int pack_row(DBT *row,const  byte *record, bool new_row);
  55.   void unpack_row(char *record, DBT *row);
  56.   void unpack_key(char *record, DBT *key, uint index);
  57.   DBT *create_key(DBT *key, uint keynr, char *buff, const byte *record,
  58.   int key_length = MAX_KEY_LENGTH);
  59.   DBT *pack_key(DBT *key, uint keynr, char *buff, const byte *key_ptr,
  60. uint key_length);
  61.   int remove_key(DB_TXN *trans, uint keynr, const byte *record, DBT *prim_key);
  62.   int remove_keys(DB_TXN *trans,const byte *record, DBT *new_record,
  63.   DBT *prim_key, key_map *keys);
  64.   int restore_keys(DB_TXN *trans, key_map *changed_keys, uint primary_key,
  65.    const byte *old_row, DBT *old_key,
  66.    const byte *new_row, DBT *new_key,
  67.    ulong thd_options);
  68.   int key_cmp(uint keynr, const byte * old_row, const byte * new_row);
  69.   int update_primary_key(DB_TXN *trans, bool primary_key_changed,
  70.  const byte * old_row, DBT *old_key,
  71.  const byte * new_row, DBT *prim_key,
  72.  ulong thd_options, bool local_using_ignore);
  73.   int read_row(int error, char *buf, uint keynr, DBT *row, DBT *key, bool);
  74.   DBT *get_pos(DBT *to, byte *pos);
  75.  public:
  76.   ha_berkeley(TABLE *table): handler(table), alloc_ptr(0),rec_buff(0), file(0),
  77.     int_table_flags(HA_REC_NOT_IN_SEQ | HA_FAST_KEY_READ |
  78.     HA_NULL_IN_KEY | HA_CAN_INDEX_BLOBS | HA_NOT_EXACT_COUNT |
  79.     HA_PRIMARY_KEY_IN_READ_INDEX | HA_FILE_BASED |
  80.     HA_AUTO_PART_KEY | HA_TABLE_SCAN_ON_INDEX),
  81.     changed_rows(0),last_dup_key((uint) -1),version(0),using_ignore(0) {}
  82.   ~ha_berkeley() {}
  83.   const char *table_type() const { return "BerkeleyDB"; }
  84.   ulong index_flags(uint idx, uint part, bool all_parts) const;
  85.   const char *index_type(uint key_number) { return "BTREE"; }
  86.   const char **bas_ext() const;
  87.   ulong table_flags(void) const { return int_table_flags; }
  88.   uint max_supported_keys()        const { return MAX_KEY-1; }
  89.   uint extra_rec_buf_length()  { return BDB_HIDDEN_PRIMARY_KEY_LENGTH; }
  90.   ha_rows estimate_rows_upper_bound();
  91.   const key_map *keys_to_use_for_scanning() { return &key_map_full; }
  92.   bool has_transactions()  { return 1;}
  93.   int open(const char *name, int mode, uint test_if_locked);
  94.   int close(void);
  95.   double scan_time();
  96.   int write_row(byte * buf);
  97.   int update_row(const byte * old_data, byte * new_data);
  98.   int delete_row(const byte * buf);
  99.   int index_init(uint index);
  100.   int index_end();
  101.   int index_read(byte * buf, const byte * key,
  102.  uint key_len, enum ha_rkey_function find_flag);
  103.   int index_read_idx(byte * buf, uint index, const byte * key,
  104.      uint key_len, enum ha_rkey_function find_flag);
  105.   int index_read_last(byte * buf, const byte * key, uint key_len);
  106.   int index_next(byte * buf);
  107.   int index_next_same(byte * buf, const byte *key, uint keylen);
  108.   int index_prev(byte * buf);
  109.   int index_first(byte * buf);
  110.   int index_last(byte * buf);
  111.   int rnd_init(bool scan);
  112.   int rnd_end();
  113.   int rnd_next(byte *buf);
  114.   int rnd_pos(byte * buf, byte *pos);
  115.   void position(const byte *record);
  116.   void info(uint);
  117.   int extra(enum ha_extra_function operation);
  118.   int reset(void);
  119.   int external_lock(THD *thd, int lock_type);
  120.   int start_stmt(THD *thd);
  121.   void position(byte *record);
  122.   int analyze(THD* thd,HA_CHECK_OPT* check_opt);
  123.   int optimize(THD* thd, HA_CHECK_OPT* check_opt);
  124.   int check(THD* thd, HA_CHECK_OPT* check_opt);
  125.   ha_rows records_in_range(uint inx, key_range *min_key, key_range *max_key);
  126.   int create(const char *name, register TABLE *form,
  127.      HA_CREATE_INFO *create_info);
  128.   int delete_table(const char *name);
  129.   int rename_table(const char* from, const char* to);
  130.   THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
  131.      enum thr_lock_type lock_type);
  132.   void get_status();
  133.   inline void get_auto_primary_key(byte *to)
  134.   {
  135.     pthread_mutex_lock(&share->mutex);
  136.     share->auto_ident++;
  137.     int5store(to,share->auto_ident);
  138.     pthread_mutex_unlock(&share->mutex);
  139.   }
  140.   longlong get_auto_increment();
  141.   void print_error(int error, myf errflag);
  142.   uint8 table_cache_type() { return HA_CACHE_TBL_TRANSACT; }
  143. };
  144. extern bool berkeley_shared_data;
  145. extern u_int32_t berkeley_init_flags,berkeley_env_flags, berkeley_lock_type,
  146.                  berkeley_lock_types[];
  147. extern ulong berkeley_cache_size, berkeley_max_lock, berkeley_log_buffer_size;
  148. extern char *berkeley_home, *berkeley_tmpdir, *berkeley_logdir;
  149. extern long berkeley_lock_scan_time;
  150. extern TYPELIB berkeley_lock_typelib;
  151. bool berkeley_init(void);
  152. bool berkeley_end(void);
  153. bool berkeley_flush_logs(void);
  154. int berkeley_commit(THD *thd, void *trans);
  155. int berkeley_rollback(THD *thd, void *trans);
  156. int berkeley_show_logs(Protocol *protocol);