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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 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. #include <zlib.h>
  17. /*
  18.   Please read ha_archive.cc first. If you are looking for more general
  19.   answers on how storage engines work, look at ha_example.cc and
  20.   ha_example.h.
  21. */
  22. typedef struct st_archive_share {
  23.   char *table_name;
  24.   char data_file_name[FN_REFLEN];
  25.   uint table_name_length,use_count;
  26.   pthread_mutex_t mutex;
  27.   THR_LOCK lock;
  28.   File meta_file;                   /* Meta file we use */
  29.   gzFile archive_write;             /* Archive file we are working with */
  30.   bool dirty;                       /* Flag for if a flush should occur */
  31.   ulonglong rows_recorded;          /* Number of rows in tables */
  32. } ARCHIVE_SHARE;
  33. /*
  34.   Version for file format.
  35.   1 - Initial Version
  36. */
  37. #define ARCHIVE_VERSION 1
  38. class ha_archive: public handler
  39. {
  40.   THR_LOCK_DATA lock;        /* MySQL lock */
  41.   ARCHIVE_SHARE *share;      /* Shared lock info */
  42.   gzFile archive;            /* Archive file we are working with */
  43.   z_off_t current_position;  /* The position of the row we just read */
  44.   byte byte_buffer[IO_SIZE]; /* Initial buffer for our string */
  45.   String buffer;             /* Buffer used for blob storage */
  46.   ulonglong scan_rows;       /* Number of rows left in scan */
  47. public:
  48.   ha_archive(TABLE *table): handler(table)
  49.   {
  50.     /* Set our original buffer from pre-allocated memory */
  51.     buffer.set((char*)byte_buffer, IO_SIZE, system_charset_info);
  52.     /* The size of the offset value we will use for position() */
  53.     ref_length = sizeof(z_off_t);
  54.   }
  55.   ~ha_archive()
  56.   {
  57.   }
  58.   const char *table_type() const { return "ARCHIVE"; }
  59.   const char *index_type(uint inx) { return "NONE"; }
  60.   const char **bas_ext() const;
  61.   ulong table_flags() const
  62.   {
  63.     return (HA_REC_NOT_IN_SEQ | HA_NOT_EXACT_COUNT | HA_NO_AUTO_INCREMENT |
  64.             HA_FILE_BASED);
  65.   }
  66.   ulong index_flags(uint idx, uint part, bool all_parts) const
  67.   {
  68.     return 0;
  69.   }
  70.   /*
  71.     Have to put something here, there is no real limit as far as
  72.     archive is concerned.
  73.   */
  74.   uint max_supported_record_length() const { return UINT_MAX; }
  75.   /*
  76.     Called in test_quick_select to determine if indexes should be used.
  77.   */
  78.   virtual double scan_time() { return (double) (records) / 20.0+10; }
  79.   /* The next method will never be called */
  80.   virtual double read_time(uint index, uint ranges, ha_rows rows)
  81.   { return (double) rows /  20.0+1; }
  82.   int open(const char *name, int mode, uint test_if_locked);
  83.   int close(void);
  84.   int write_row(byte * buf);
  85.   int update_row(const byte * old_data, byte * new_data);
  86.   int delete_row(const byte * buf);
  87.   int delete_all_rows();
  88.   int index_read(byte * buf, const byte * key,
  89.                  uint key_len, enum ha_rkey_function find_flag);
  90.   int index_read_idx(byte * buf, uint idx, const byte * key,
  91.                      uint key_len, enum ha_rkey_function find_flag);
  92.   int index_next(byte * buf);
  93.   int index_prev(byte * buf);
  94.   int index_first(byte * buf);
  95.   int index_last(byte * buf);
  96.   int rnd_init(bool scan=1);
  97.   int rnd_next(byte *buf);
  98.   int rnd_pos(byte * buf, byte *pos);
  99.   int get_row(gzFile file_to_read, byte *buf);
  100.   int read_meta_file(File meta_file, ulonglong *rows);
  101.   int write_meta_file(File meta_file, ulonglong rows, bool dirty);
  102.   ARCHIVE_SHARE *get_share(const char *table_name, TABLE *table);
  103.   int free_share(ARCHIVE_SHARE *share);
  104.   int rebuild_meta_file(char *table_name, File meta_file);
  105.   int read_data_header(gzFile file_to_read);
  106.   int write_data_header(gzFile file_to_write);
  107.   void position(const byte *record);
  108.   void info(uint);
  109.   int extra(enum ha_extra_function operation);
  110.   int reset(void);
  111.   int external_lock(THD *thd, int lock_type);
  112.   ha_rows records_in_range(uint inx, key_range *min_key, key_range *max_key);
  113.   int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info);
  114.   int optimize(THD* thd, HA_CHECK_OPT* check_opt);
  115.   THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
  116.                              enum thr_lock_type lock_type);
  117. };
  118. bool archive_db_init(void);
  119. bool archive_db_end(void);