home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / sql / ha_berkeley.h < prev    next >
C/C++ Source or Header  |  2000-11-14  |  6KB  |  161 lines

  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.  
  17.  
  18. #ifdef __GNUC__
  19. #pragma interface            /* gcc class implementation */
  20. #endif
  21.  
  22. /* class for the the myisam handler */
  23.  
  24. #include <db.h>
  25.  
  26. #define BDB_HIDDEN_PRIMARY_KEY_LENGTH 5
  27.  
  28. typedef struct st_berkeley_share {
  29.   ulonglong auto_ident;
  30.   THR_LOCK lock;
  31.   pthread_mutex_t mutex;
  32.   char *table_name;
  33.   uint table_name_length,use_count;
  34.   bool primary_key_inited;
  35. } BDB_SHARE;
  36.  
  37.  
  38. class ha_berkeley: public handler
  39. {
  40.   THR_LOCK_DATA lock;
  41.   DBT last_key,current_row;
  42.   gptr alloc_ptr;
  43.   byte *rec_buff;
  44.   char *key_buff, *key_buff2, *primary_key_buff;
  45.   DB *file, **key_file;
  46.   DB_TXN *transaction;
  47.   u_int32_t *key_type;
  48.   DBC *cursor;
  49.   BDB_SHARE *share;
  50.   ulong int_option_flag;
  51.   ulong alloced_rec_buff_length;
  52.   uint primary_key,last_dup_key, hidden_primary_key;
  53.   bool fixed_length_row, fixed_length_primary_key, key_read;
  54.   bool  fix_rec_buff_for_blob(ulong length);
  55.   byte current_ident[BDB_HIDDEN_PRIMARY_KEY_LENGTH];
  56.  
  57.   ulong max_row_length(const byte *buf);
  58.   int pack_row(DBT *row,const  byte *record, bool new_row);
  59.   void unpack_row(char *record, DBT *row);
  60.   void ha_berkeley::unpack_key(char *record, DBT *key, uint index);
  61.   DBT *pack_key(DBT *key, uint keynr, char *buff, const byte *record);
  62.   DBT *pack_key(DBT *key, uint keynr, char *buff, const byte *key_ptr,
  63.         uint key_length);
  64.   int remove_key(DB_TXN *trans, uint keynr, const byte *record,
  65.          DBT *packed_record, DBT *prim_key);
  66.   int remove_keys(DB_TXN *trans,const byte *record, DBT *new_record,
  67.           DBT *prim_key, key_map keys, int result);
  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, const byte * new_row,
  71.              DBT *prim_key);
  72.   int read_row(int error, char *buf, uint keynr, DBT *row, DBT *key, bool);
  73.   DBT *get_pos(DBT *to, byte *pos);
  74.  
  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.     last_dup_key((uint) -1)
  84.   {
  85.   }
  86.   ~ha_berkeley() {}
  87.   const char *table_type() const { return "BerkeleyDB"; }
  88.   const char **bas_ext() const;
  89.   ulong option_flag() const { return int_option_flag; }
  90.   uint max_record_length() const { return HA_MAX_REC_LENGTH; }
  91.   uint max_keys()          const { return MAX_KEY-1; }
  92.   uint max_key_parts()     const { return MAX_REF_PARTS; }
  93.   uint max_key_length()    const { return MAX_KEY_LENGTH; }
  94.   uint extra_rec_buf_length()     { return BDB_HIDDEN_PRIMARY_KEY_LENGTH; }
  95.   ha_rows estimate_number_of_rows();
  96.   bool fast_key_read()       { return 1;}
  97.   bool has_transactions()  { return 1;}
  98.  
  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.   ha_rows records_in_range(int inx,
  127.                const byte *start_key,uint start_key_len,
  128.                enum ha_rkey_function start_search_flag,
  129.                const byte *end_key,uint end_key_len,
  130.                enum ha_rkey_function end_search_flag);
  131.  
  132.   int create(const char *name, register TABLE *form,
  133.          HA_CREATE_INFO *create_info);
  134.   int delete_table(const char *name);
  135.   THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
  136.                  enum thr_lock_type lock_type);
  137.  
  138.   void update_auto_primary_key();
  139.   inline void get_auto_primary_key(byte *to)
  140.   {
  141.     ulonglong tmp;
  142.     pthread_mutex_lock(&share->mutex);
  143.     share->auto_ident++;
  144.     int5store(to,share->auto_ident);
  145.     pthread_mutex_unlock(&share->mutex);
  146.   }
  147. };
  148.  
  149. extern bool berkeley_skip;
  150. extern u_int32_t berkeley_init_flags,berkeley_lock_type,berkeley_lock_types[];
  151. extern ulong berkeley_cache_size, berkeley_lock_max;
  152. extern char *berkeley_home, *berkeley_tmpdir, *berkeley_logdir;
  153. extern long berkeley_lock_scan_time;
  154. extern TYPELIB berkeley_lock_typelib;
  155.  
  156. bool berkeley_init(void);
  157. bool berkeley_end(void);
  158. bool berkeley_flush_logs(void);
  159. int berkeley_commit(THD *thd);
  160. int berkeley_rollback(THD *thd);
  161.