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_myisam.h < prev    next >
C/C++ Source or Header  |  2000-11-16  |  5KB  |  116 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 <myisam.h>
  25. #include <ft_global.h>
  26.  
  27. #define HA_RECOVER_NONE        0    // No automatic recover
  28. #define HA_RECOVER_DEFAULT    1    // Automatic recover active
  29. #define HA_RECOVER_BACKUP    2    // Make a backupfile on recover
  30. #define HA_RECOVER_FORCE    4    // Recover even if we loose rows
  31. #define HA_RECOVER_QUICK    8    // Don't check rows in data file
  32.  
  33. extern ulong myisam_sort_buffer_size;
  34. extern TYPELIB myisam_recover_typelib;
  35. extern ulong myisam_recover_options;
  36.  
  37. class ha_myisam: public handler
  38. {
  39.   MI_INFO *file;
  40.   uint    int_option_flag;
  41.   int repair(THD *thd, MI_CHECK ¶m, bool optimize);
  42.  
  43.  public:
  44.   ha_myisam(TABLE *table): handler(table), file(0),
  45.     int_option_flag(HA_READ_NEXT | HA_READ_PREV | HA_READ_RND_SAME |
  46.             HA_KEYPOS_TO_RNDPOS | HA_READ_ORDER |  HA_LASTKEY_ORDER |
  47.             HA_HAVE_KEY_READ_ONLY | HA_READ_NOT_EXACT_KEY |
  48.             HA_LONGLONG_KEYS |  HA_NULL_KEY |
  49.             HA_DUPP_POS | HA_BLOB_KEY | HA_AUTO_PART_KEY)
  50.   {}
  51.   ~ha_myisam() {}
  52.   const char *table_type() const { return "MyISAM"; }
  53.   const char **bas_ext() const;
  54.   ulong option_flag() const { return int_option_flag; }
  55.   uint max_record_length() const { return HA_MAX_REC_LENGTH; }
  56.   uint max_keys()          const { return MI_MAX_KEY; }
  57.   uint max_key_parts()     const { return MAX_REF_PARTS; }
  58.   uint max_key_length()    const { return MAX_KEY_LENGTH; }
  59.  
  60.   int open(const char *name, int mode, uint test_if_locked);
  61.   int close(void);
  62.   int write_row(byte * buf);
  63.   int update_row(const byte * old_data, byte * new_data);
  64.   int delete_row(const byte * buf);
  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_next(byte * buf);
  70.   int index_prev(byte * buf);
  71.   int index_first(byte * buf);
  72.   int index_last(byte * buf);
  73.   int index_next_same(byte *buf, const byte *key, uint keylen);
  74.   int ft_init()
  75.          { if(!ft_handler) return 1; ft_reinit_search(ft_handler); return 0; }
  76.   void *ft_init_ext(uint inx,const byte *key, uint keylen, bool presort)
  77.                { return ft_init_search(file,inx,(byte*) key,keylen,presort); }
  78.   int ft_read(byte *buf);
  79.   int rnd_init(bool scan=1);
  80.   int rnd_next(byte *buf);
  81.   int rnd_pos(byte * buf, byte *pos);
  82.   int restart_rnd_next(byte *buf, byte *pos);
  83.   void position(const byte *record);
  84.   my_off_t row_position() { return mi_position(file); }
  85.   void info(uint);
  86.   int extra(enum ha_extra_function operation);
  87.   int reset(void);
  88.   int external_lock(THD *thd, int lock_type);
  89.   int delete_all_rows(void);
  90.   void deactivate_non_unique_index(ha_rows rows);
  91.   bool activate_all_index(THD *thd);
  92.   ha_rows records_in_range(int inx,
  93.                const byte *start_key,uint start_key_len,
  94.                enum ha_rkey_function start_search_flag,
  95.                const byte *end_key,uint end_key_len,
  96.                enum ha_rkey_function end_search_flag);
  97.   void update_create_info(HA_CREATE_INFO *create_info);
  98.   int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info);
  99.   THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
  100.                  enum thr_lock_type lock_type);
  101.   longlong get_auto_increment();
  102.   int rename_table(const char * from, const char * to);
  103.   int delete_table(const char *name);
  104.   int check(THD* thd, HA_CHECK_OPT* check_opt);
  105.   int analyze(THD* thd,HA_CHECK_OPT* check_opt);
  106.   int repair(THD* thd, HA_CHECK_OPT* check_opt);
  107.   bool check_and_repair(THD *thd);
  108.   bool is_crashed() const;
  109.   bool auto_repair() const { return myisam_recover_options != 0; }
  110.   int optimize(THD* thd, HA_CHECK_OPT* check_opt);
  111.   int restore(THD* thd, HA_CHECK_OPT* check_opt);
  112.   int backup(THD* thd, HA_CHECK_OPT* check_opt);
  113.   int dump(THD* thd, int fd);
  114.   int net_read_dump(NET* net);
  115. };
  116.