ha_tina.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. #include <sys/types.h>
  14. #include <sys/stat.h>
  15. #include <my_dir.h>
  16. #define DEFAULT_CHAIN_LENGTH 512
  17. typedef struct st_tina_share {
  18.   char *table_name;
  19.   byte *mapped_file;                /* mapped region of file */
  20.   uint table_name_length,use_count;
  21.   MY_STAT file_stat;                /* Stat information for the data file */
  22.   File data_file;                   /* Current open data file */
  23.   pthread_mutex_t mutex;
  24.   THR_LOCK lock;
  25. } TINA_SHARE;
  26. typedef struct tina_set {
  27. off_t begin;
  28. off_t end;
  29. };
  30. class ha_tina: public handler
  31. {
  32.   THR_LOCK_DATA lock;      /* MySQL lock */
  33.   TINA_SHARE *share;       /* Shared lock info */
  34.   off_t current_position;  /* Current position in the file during a file scan */
  35.   off_t next_position;     /* Next position in the file scan */
  36.   byte byte_buffer[IO_SIZE];
  37.   String buffer;
  38.   tina_set chain_buffer[DEFAULT_CHAIN_LENGTH];
  39.   tina_set *chain;
  40.   tina_set *chain_ptr;
  41.   byte chain_alloced;
  42.   uint32 chain_size;
  43.   public:
  44.   ha_tina(TABLE *table): handler(table),
  45.   /* 
  46.      These definitions are found in hanler.h 
  47.      Theses are not probably completely right.
  48.    */
  49.   current_position(0), next_position(0), chain_alloced(0), chain_size(DEFAULT_CHAIN_LENGTH)
  50.   {
  51.     /* Set our original buffers from pre-allocated memory */
  52.     buffer.set(byte_buffer, IO_SIZE, system_charset_info);
  53.     chain = chain_buffer;
  54.   }
  55.   ~ha_tina() 
  56.   {
  57.     if (chain_alloced)
  58.       my_free((gptr)chain,0);
  59.   }
  60.   const char *table_type() const { return "CSV"; }
  61.   const char *index_type(uint inx) { return "NONE"; }
  62.   const char **bas_ext() const;
  63.   ulong table_flags() const
  64.   {
  65.     return (HA_REC_NOT_IN_SEQ | HA_NOT_EXACT_COUNT | 
  66.       HA_NO_AUTO_INCREMENT );
  67.   }
  68.   ulong index_flags(uint idx, uint part, bool all_parts) const
  69.   {
  70.     /* We will never have indexes so this will never be called(AKA we return zero) */
  71.     return 0;
  72.   }
  73.   uint max_record_length() const { return HA_MAX_REC_LENGTH; }
  74.   uint max_keys()          const { return 0; }
  75.   uint max_key_parts()     const { return 0; }
  76.   uint max_key_length()    const { return 0; }
  77.   /*
  78.      Called in test_quick_select to determine if indexes should be used.
  79.    */
  80.   virtual double scan_time() { return (double) (records+deleted) / 20.0+10; }
  81.   /* The next method will never be called */
  82.   virtual double read_time(ha_rows rows) { DBUG_ASSERT(0); return((double) rows /  20.0+1); }
  83.   virtual bool fast_key_read() { return 1;}
  84.   /* 
  85.     TODO: return actual upper bound of number of records in the table.
  86.     (e.g. save number of records seen on full table scan and/or use file size
  87.     as upper bound)
  88.   */
  89.   ha_rows estimate_rows_upper_bound() { return HA_POS_ERROR; }
  90.   int open(const char *name, int mode, uint test_if_locked);
  91.   int close(void);
  92.   int write_row(byte * buf);
  93.   int update_row(const byte * old_data, byte * new_data);
  94.   int delete_row(const byte * buf);
  95.   int index_read(byte * buf, const byte * key,
  96.       uint key_len, enum ha_rkey_function find_flag);
  97.   int index_read_idx(byte * buf, uint idx, const byte * key,
  98.       uint key_len, enum ha_rkey_function find_flag);
  99.   int index_next(byte * buf);
  100.   int index_prev(byte * buf);
  101.   int index_first(byte * buf);
  102.   int index_last(byte * buf);
  103.   int rnd_init(bool scan=1);
  104.   int rnd_next(byte *buf);
  105.   int rnd_pos(byte * buf, byte *pos);
  106.   int rnd_end();
  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.   int delete_all_rows(void);
  113.   ha_rows records_in_range(int inx, const byte *start_key,uint start_key_len,
  114.       enum ha_rkey_function start_search_flag,
  115.       const byte *end_key,uint end_key_len,
  116.       enum ha_rkey_function end_search_flag);
  117. //  int delete_table(const char *from);
  118. //  int rename_table(const char * from, const char * to);
  119.   int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info);
  120.   THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
  121.       enum thr_lock_type lock_type);
  122.   /* The following methods were added just for TINA */
  123.   int encode_quote(byte *buf);
  124.   int find_current_row(byte *buf);
  125.   int chain_append();
  126. };