ha_berkeley.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小: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 __GNUC__
  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, *rec_per_key;
  22.   THR_LOCK lock;
  23.   pthread_mutex_t mutex;
  24.   char *table_name;
  25.   DB *status_block, *file, **key_file;
  26.   u_int32_t *key_type;
  27.   uint table_name_length,use_count;
  28.   uint status,version;
  29.   uint ref_length;
  30.   bool fixed_length_primary_key, fixed_length_row;
  31. } BDB_SHARE;
  32. class ha_berkeley: public handler
  33. {
  34.   THR_LOCK_DATA lock;
  35.   DBT last_key,current_row;
  36.   gptr alloc_ptr;
  37.   byte *rec_buff;
  38.   char *key_buff, *key_buff2, *primary_key_buff;
  39.   DB *file, **key_file;
  40.   DB_TXN *transaction;
  41.   u_int32_t *key_type;
  42.   DBC *cursor;
  43.   BDB_SHARE *share;
  44.   ulong int_option_flag;
  45.   ulong alloced_rec_buff_length;
  46.   ulong changed_rows;
  47.   uint primary_key,last_dup_key, hidden_primary_key, version;
  48.   u_int32_t lock_on_read;
  49.   bool key_read, using_ignore;
  50.   bool fix_rec_buff_for_blob(ulong length);
  51.   byte current_ident[BDB_HIDDEN_PRIMARY_KEY_LENGTH];
  52.   ulong max_row_length(const byte *buf);
  53.   int pack_row(DBT *row,const  byte *record, bool new_row);
  54.   void unpack_row(char *record, DBT *row);
  55.   void unpack_key(char *record, DBT *key, uint index);
  56.   DBT *create_key(DBT *key, uint keynr, char *buff, const byte *record,
  57.   int key_length = MAX_KEY_LENGTH);
  58.   DBT *pack_key(DBT *key, uint keynr, char *buff, const byte *key_ptr,
  59. uint key_length);
  60.   int remove_key(DB_TXN *trans, uint keynr, const byte *record,
  61.  DBT *packed_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_option_flag(HA_READ_NEXT | HA_READ_PREV |
  78.     HA_REC_NOT_IN_SEQ |
  79.     HA_KEYPOS_TO_RNDPOS | HA_READ_ORDER | HA_LASTKEY_ORDER |
  80.     HA_LONGLONG_KEYS | HA_NULL_KEY | HA_HAVE_KEY_READ_ONLY |
  81.     HA_BLOB_KEY | HA_NOT_EXACT_COUNT |
  82.     HA_PRIMARY_KEY_IN_READ_INDEX | HA_DROP_BEFORE_CREATE |
  83.     HA_AUTO_PART_KEY),
  84.     last_dup_key((uint) -1),version(0),using_ignore(0)
  85.   {
  86.   }
  87.   ~ha_berkeley() {}
  88.   const char *table_type() const { return "BerkeleyDB"; }
  89.   const char **bas_ext() const;
  90.   ulong option_flag() const { return int_option_flag; }
  91.   uint max_record_length() const { return HA_MAX_REC_LENGTH; }
  92.   uint max_keys()    const { return MAX_KEY-1; }
  93.   uint max_key_parts()    const { return MAX_REF_PARTS; }
  94.   uint max_key_length()    const { return MAX_KEY_LENGTH; }
  95.   uint extra_rec_buf_length()  { return BDB_HIDDEN_PRIMARY_KEY_LENGTH; }
  96.   ha_rows estimate_number_of_rows();
  97.   bool fast_key_read()    { return 1;}
  98.   bool has_transactions()  { return 1;}
  99.   int open(const char *name, int mode, uint test_if_locked);
  100.   int close(void);
  101.   double scan_time();
  102.   int write_row(byte * buf);
  103.   int update_row(const byte * old_data, byte * new_data);
  104.   int delete_row(const byte * buf);
  105.   int index_init(uint index);
  106.   int index_end();
  107.   int index_read(byte * buf, const byte * key,
  108.  uint key_len, enum ha_rkey_function find_flag);
  109.   int index_read_idx(byte * buf, uint index, const byte * key,
  110.      uint key_len, enum ha_rkey_function find_flag);
  111.   int index_next(byte * buf);
  112.   int index_next_same(byte * buf, const byte *key, uint keylen);
  113.   int index_prev(byte * buf);
  114.   int index_first(byte * buf);
  115.   int index_last(byte * buf);
  116.   int rnd_init(bool scan=1);
  117.   int rnd_end();
  118.   int rnd_next(byte *buf);
  119.   int rnd_pos(byte * buf, byte *pos);
  120.   void position(const byte *record);
  121.   void info(uint);
  122.   int extra(enum ha_extra_function operation);
  123.   int reset(void);
  124.   int external_lock(THD *thd, int lock_type);
  125.   void position(byte *record);
  126.   int analyze(THD* thd,HA_CHECK_OPT* check_opt);
  127.   int optimize(THD* thd, HA_CHECK_OPT* check_opt);
  128.   int check(THD* thd, HA_CHECK_OPT* check_opt);
  129.   ha_rows records_in_range(int inx,
  130.    const byte *start_key,uint start_key_len,
  131.    enum ha_rkey_function start_search_flag,
  132.    const byte *end_key,uint end_key_len,
  133.    enum ha_rkey_function end_search_flag);
  134.   int create(const char *name, register TABLE *form,
  135.      HA_CREATE_INFO *create_info);
  136.   int delete_table(const char *name);
  137.   THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
  138.      enum thr_lock_type lock_type);
  139.   void get_status();
  140.   inline void get_auto_primary_key(byte *to)
  141.   {
  142.     pthread_mutex_lock(&share->mutex);
  143.     share->auto_ident++;
  144.     int5store(to,share->auto_ident);
  145.     pthread_mutex_unlock(&share->mutex);
  146.   }
  147.   longlong get_auto_increment();
  148. };
  149. extern bool berkeley_skip, berkeley_shared_data;
  150. extern u_int32_t berkeley_init_flags,berkeley_env_flags, berkeley_lock_type,
  151.                  berkeley_lock_types[];
  152. extern ulong berkeley_cache_size, berkeley_max_lock, berkeley_log_buffer_size;
  153. extern char *berkeley_home, *berkeley_tmpdir, *berkeley_logdir;
  154. extern long berkeley_lock_scan_time;
  155. extern TYPELIB berkeley_lock_typelib;
  156. bool berkeley_init(void);
  157. bool berkeley_end(void);
  158. bool berkeley_flush_logs(void);
  159. int berkeley_commit(THD *thd, void *trans);
  160. int berkeley_rollback(THD *thd, void *trans);
  161. int berkeley_show_logs(THD *thd);