ha_isam.cc
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:12k
源码类别:

MySQL数据库

开发平台:

Visual C++

  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. #ifdef __GNUC__
  17. #pragma implementation // gcc: Class implementation
  18. #endif
  19. #include "mysql_priv.h"
  20. #include <m_ctype.h>
  21. #include <myisampack.h>
  22. #include "ha_isam.h"
  23. #ifndef MASTER
  24. #include "../srclib/isam/isamdef.h"
  25. #else
  26. #include "../isam/isamdef.h"
  27. #endif
  28. /*****************************************************************************
  29. ** isam tables
  30. *****************************************************************************/
  31. const char **ha_isam::bas_ext() const
  32. { static const char *ext[]= { ".ISD",".ISM", NullS }; return ext; }
  33. int ha_isam::open(const char *name, int mode, uint test_if_locked)
  34. {
  35.   char name_buff[FN_REFLEN];
  36.   if (!(file=nisam_open(fn_format(name_buff,name,"","",2 | 4), mode,
  37.      test_if_locked)))
  38.     return (my_errno ? my_errno : -1);
  39.   if (!(test_if_locked == HA_OPEN_WAIT_IF_LOCKED ||
  40. test_if_locked == HA_OPEN_ABORT_IF_LOCKED))
  41.     (void) nisam_extra(file,HA_EXTRA_NO_WAIT_LOCK);
  42.   info(HA_STATUS_NO_LOCK | HA_STATUS_VARIABLE | HA_STATUS_CONST);
  43.   if (!(test_if_locked & HA_OPEN_WAIT_IF_LOCKED))
  44.     (void) nisam_extra(file,HA_EXTRA_WAIT_LOCK);
  45.   if (!table->db_record_offset)
  46.     int_option_flag|=HA_REC_NOT_IN_SEQ;
  47.   return (0);
  48. }
  49. int ha_isam::close(void)
  50. {
  51.   return !nisam_close(file) ? 0 : my_errno ? my_errno : -1;
  52. }
  53. uint ha_isam::min_record_length(uint options) const
  54. {
  55.   return (options & HA_OPTION_PACK_RECORD) ? 1 : 5;
  56. }
  57. int ha_isam::write_row(byte * buf)
  58. {
  59.   statistic_increment(ha_write_count,&LOCK_status);
  60.   if (table->time_stamp)
  61.     update_timestamp(buf+table->time_stamp-1);
  62.   if (table->next_number_field && buf == table->record[0])
  63.     update_auto_increment();
  64.   return !nisam_write(file,buf) ? 0 : my_errno ? my_errno : -1;
  65. }
  66. int ha_isam::update_row(const byte * old_data, byte * new_data)
  67. {
  68.   statistic_increment(ha_update_count,&LOCK_status);
  69.   if (table->time_stamp)
  70.     update_timestamp(new_data+table->time_stamp-1);
  71.   return !nisam_update(file,old_data,new_data) ? 0 : my_errno ? my_errno : -1;
  72. }
  73. int ha_isam::delete_row(const byte * buf)
  74. {
  75.   statistic_increment(ha_delete_count,&LOCK_status);
  76.   return !nisam_delete(file,buf) ? 0 : my_errno ? my_errno : -1;
  77. }
  78. int ha_isam::index_read(byte * buf, const byte * key,
  79. uint key_len, enum ha_rkey_function find_flag)
  80. {
  81.   statistic_increment(ha_read_key_count,&LOCK_status);
  82.   int error=nisam_rkey(file, buf, active_index, key, key_len, find_flag);
  83.   table->status=error ? STATUS_NOT_FOUND: 0;
  84.   return !error ? 0 : my_errno ? my_errno : -1;
  85. }
  86. int ha_isam::index_read_idx(byte * buf, uint index, const byte * key,
  87.     uint key_len, enum ha_rkey_function find_flag)
  88. {
  89.   statistic_increment(ha_read_key_count,&LOCK_status);
  90.   int error=nisam_rkey(file, buf, index, key, key_len, find_flag);
  91.   table->status=error ? STATUS_NOT_FOUND: 0;
  92.   return !error ? 0 : my_errno ? my_errno : -1;
  93. }
  94. int ha_isam::index_next(byte * buf)
  95. {
  96.   statistic_increment(ha_read_next_count,&LOCK_status);
  97.   int error=nisam_rnext(file,buf,active_index);
  98.   table->status=error ? STATUS_NOT_FOUND: 0;
  99.   return !error ? 0 : my_errno ? my_errno : HA_ERR_END_OF_FILE;
  100. }
  101. int ha_isam::index_prev(byte * buf)
  102. {
  103.   statistic_increment(ha_read_prev_count,&LOCK_status);
  104.   int error=nisam_rprev(file,buf, active_index);
  105.   table->status=error ? STATUS_NOT_FOUND: 0;
  106.   return !error ? 0 : my_errno ? my_errno : HA_ERR_END_OF_FILE;
  107. }
  108.   
  109. int ha_isam::index_first(byte * buf)
  110. {
  111.   statistic_increment(ha_read_first_count,&LOCK_status);
  112.   int error=nisam_rfirst(file, buf, active_index);
  113.   table->status=error ? STATUS_NOT_FOUND: 0;
  114.   return !error ? 0 : my_errno ? my_errno : HA_ERR_END_OF_FILE;
  115. }
  116. int ha_isam::index_last(byte * buf)
  117. {
  118.   statistic_increment(ha_read_last_count,&LOCK_status);
  119.   int error=nisam_rlast(file, buf, active_index);
  120.   table->status=error ? STATUS_NOT_FOUND: 0;
  121.   return !error ? 0 : my_errno ? my_errno : HA_ERR_END_OF_FILE;
  122. }
  123. int ha_isam::rnd_init(bool scan)
  124. {
  125.   return nisam_extra(file,HA_EXTRA_RESET) ? 0 : my_errno ? my_errno : -1;;
  126. }
  127. int ha_isam::rnd_next(byte *buf)
  128. {
  129.   statistic_increment(ha_read_rnd_next_count,&LOCK_status);
  130.   int error=nisam_rrnd(file, buf, NI_POS_ERROR);
  131.   table->status=error ? STATUS_NOT_FOUND: 0;
  132.   return !error ? 0 : my_errno ? my_errno : -1;
  133. }
  134. int ha_isam::rnd_pos(byte * buf, byte *pos)
  135. {
  136.   statistic_increment(ha_read_rnd_count,&LOCK_status);
  137.   int error=nisam_rrnd(file, buf, (ulong) ha_get_ptr(pos,ref_length));
  138.   table->status=error ? STATUS_NOT_FOUND: 0;
  139.   return !error ? 0 : my_errno ? my_errno : -1;
  140. }
  141. void ha_isam::position(const byte *record)
  142. {
  143.   my_off_t position=nisam_position(file);
  144.   if (position == (my_off_t) ~ (ulong) 0)
  145.     position=HA_OFFSET_ERROR;
  146.   ha_store_ptr(ref, ref_length, position);
  147. }
  148. void ha_isam::info(uint flag)
  149. {
  150.   N_ISAMINFO info;
  151.   (void) nisam_info(file,&info,flag);
  152.   if (flag & HA_STATUS_VARIABLE)
  153.   {
  154.     records = info.records;
  155.     deleted = info.deleted;
  156.     data_file_length=info.data_file_length;
  157.     index_file_length=info.index_file_length;
  158.     delete_length = info.delete_length;
  159.     check_time  = info.isamchk_time;
  160.     mean_rec_length=info.mean_reclength;
  161.   }
  162.   if (flag & HA_STATUS_CONST)
  163.   {
  164.     max_data_file_length=info.max_data_file_length;
  165.     max_index_file_length=info.max_index_file_length;
  166.     create_time = info.create_time;
  167.     sortkey = info.sortkey;
  168.     block_size=nisam_block_size;
  169.     table->keys    = min(table->keys,info.keys);
  170.     table->keys_in_use= (((key_map) 1) << table->keys)- (key_map) 1;
  171.     table->db_options_in_use= info.options;
  172.     table->db_record_offset=
  173.       (table->db_options_in_use &
  174.        (HA_OPTION_PACK_RECORD | HA_OPTION_COMPRESS_RECORD)) ? 0 :
  175.       table->reclength;
  176.     if (!table->tmp_table)
  177.     {
  178.       ulong *rec_per_key=info.rec_per_key;
  179.       for (uint i=0 ; i < table->keys ; i++)
  180.       {
  181. table->key_info[i].rec_per_key[table->key_info[i].key_parts-1]=
  182.   *(rec_per_key++);
  183.       }
  184.     }
  185.     ref_length=4;
  186.   }
  187.   if (flag & HA_STATUS_ERRKEY)
  188.   {
  189.     errkey  = info.errkey;
  190.     ha_store_ptr(dupp_ref, ref_length, info.dupp_key_pos);
  191.   }
  192.   if (flag & HA_STATUS_TIME)
  193.     update_time = info.update_time;
  194. }
  195. int ha_isam::extra(enum ha_extra_function operation)
  196. {
  197.   if ((specialflag & SPECIAL_SAFE_MODE || test_flags & TEST_NO_EXTRA) &&
  198.       (operation == HA_EXTRA_WRITE_CACHE ||
  199.        operation == HA_EXTRA_KEYREAD))
  200.     return 0;
  201.   return nisam_extra(file,operation);
  202. }
  203. int ha_isam::reset(void)
  204. {
  205.   return nisam_extra(file,HA_EXTRA_RESET);
  206. }
  207. int ha_isam::external_lock(THD *thd, int lock_type)
  208. {
  209.   return nisam_lock_database(file,lock_type);
  210. }  
  211. THR_LOCK_DATA **ha_isam::store_lock(THD *thd,
  212.     THR_LOCK_DATA **to,
  213.     enum thr_lock_type lock_type)
  214. {
  215.   if (lock_type != TL_IGNORE && file->lock.type == TL_UNLOCK)
  216.     file->lock.type=lock_type;
  217.   *to++= &file->lock;
  218.   return to;
  219. }
  220. int ha_isam::create(const char *name, register TABLE *form,
  221.     HA_CREATE_INFO *create_info)
  222. {
  223.   uint options=form->db_options_in_use;
  224.   int error;
  225.   uint i,j,recpos,minpos,fieldpos,temp_length,length;
  226.   enum ha_base_keytype type;
  227.   char buff[FN_REFLEN];
  228.   KEY *pos;
  229.   N_KEYDEF keydef[MAX_KEY];
  230.   N_RECINFO *recinfo,*recinfo_pos;
  231.   DBUG_ENTER("ha_isam::create");
  232.   type=HA_KEYTYPE_BINARY; // Keep compiler happy
  233.   if (!(recinfo= (N_RECINFO*) my_malloc((form->fields*2+2)*sizeof(N_RECINFO),
  234. MYF(MY_WME))))
  235.     DBUG_RETURN(1);
  236.   pos=form->key_info;
  237.   for (i=0; i < form->keys ; i++, pos++)
  238.   {
  239.     keydef[i].base.flag= (pos->flags & HA_NOSAME);
  240.     for (j=0 ; (int7) j < pos->key_parts ; j++)
  241.     {
  242.       keydef[i].seg[j].base.flag=pos->key_part[j].key_part_flag;
  243.       Field *field=pos->key_part[j].field;
  244.       type=field->key_type();
  245.       if ((options & HA_OPTION_PACK_KEYS ||
  246.    (pos->flags & (HA_PACK_KEY | HA_BINARY_PACK_KEY |
  247.   HA_SPACE_PACK_USED))) &&
  248.   pos->key_part[j].length > 8 &&
  249.   (type == HA_KEYTYPE_TEXT ||
  250.    type == HA_KEYTYPE_NUM ||
  251.    (type == HA_KEYTYPE_BINARY && !field->zero_pack())))
  252.       {
  253. if (j == 0)
  254.   keydef[i].base.flag|=HA_PACK_KEY;
  255. if (!(field->flags & ZEROFILL_FLAG) &&
  256.     (field->type() == FIELD_TYPE_STRING ||
  257.      field->type() == FIELD_TYPE_VAR_STRING ||
  258.      ((int) (pos->key_part[j].length - field->decimals()))
  259.      >= 4))
  260.   keydef[i].seg[j].base.flag|=HA_SPACE_PACK;
  261.       }
  262.       keydef[i].seg[j].base.type=(int) type;
  263.       keydef[i].seg[j].base.start=  pos->key_part[j].offset;
  264.       keydef[i].seg[j].base.length= pos->key_part[j].length;
  265.     }
  266.     keydef[i].seg[j].base.type=(int) HA_KEYTYPE_END; /* End of key-parts */
  267.   }
  268.   recpos=0; recinfo_pos=recinfo;
  269.   while (recpos < (uint) form->reclength)
  270.   {
  271.     Field **field,*found=0;
  272.     minpos=form->reclength; length=0;
  273.     for (field=form->field ; *field ; field++)
  274.     {
  275.       if ((fieldpos=(*field)->offset()) >= recpos &&
  276.   fieldpos <= minpos)
  277.       {
  278. /* skip null fields */
  279. if (!(temp_length= (*field)->pack_length()))
  280.   continue; /* Skipp null-fields */
  281. if (! found || fieldpos < minpos ||
  282.     (fieldpos == minpos && temp_length < length))
  283. {
  284.   minpos=fieldpos; found= *field; length=temp_length;
  285. }
  286.       }
  287.     }
  288.     DBUG_PRINT("loop",("found: %lx  recpos: %d  minpos: %d  length: %d",
  289.        found,recpos,minpos,length));
  290.     if (recpos != minpos)
  291.     { // Reserved space (Null bits?)
  292.       recinfo_pos->base.type=(int) FIELD_NORMAL;
  293.       recinfo_pos++->base.length= (uint16) (minpos-recpos);
  294.     }
  295.     if (! found)
  296.       break;
  297.     if (found->flags & BLOB_FLAG)
  298.     {
  299.       /* ISAM can only handle blob pointers of sizeof(char(*)) */
  300.       recinfo_pos->base.type= (int) FIELD_BLOB;
  301.       if (options & HA_OPTION_LONG_BLOB_PTR)
  302. length= length-portable_sizeof_char_ptr+sizeof(char*);
  303.     }
  304.     else if (!(options & HA_OPTION_PACK_RECORD))
  305.       recinfo_pos->base.type= (int) FIELD_NORMAL;
  306.     else if (found->zero_pack())
  307.       recinfo_pos->base.type= (int) FIELD_SKIPP_ZERO;
  308.     else
  309.       recinfo_pos->base.type= (int) ((length <= 3 ||
  310.       (found->flags & ZEROFILL_FLAG)) ?
  311.      FIELD_NORMAL :
  312.      found->type() == FIELD_TYPE_STRING ||
  313.      found->type() == FIELD_TYPE_VAR_STRING ?
  314.      FIELD_SKIPP_ENDSPACE :
  315.      FIELD_SKIPP_PRESPACE);
  316.     recinfo_pos++ ->base.length=(uint16) length;
  317.     recpos=minpos+length;
  318.     DBUG_PRINT("loop",("length: %d  type: %d",
  319.        recinfo_pos[-1].base.length,recinfo_pos[-1].base.type));
  320.     if ((found->flags & BLOB_FLAG) && (options & HA_OPTION_LONG_BLOB_PTR) &&
  321. sizeof(char*) != portable_sizeof_char_ptr)
  322.     { // Not used space
  323.       recinfo_pos->base.type=(int) FIELD_ZERO;
  324.       recinfo_pos++->base.length=
  325. (uint16) (portable_sizeof_char_ptr-sizeof(char*));
  326.       recpos+= (portable_sizeof_char_ptr-sizeof(char*));
  327.     }
  328.   }
  329.   recinfo_pos->base.type= (int) FIELD_LAST; /* End of fieldinfo */
  330.   error=nisam_create(fn_format(buff,name,"","",2+4+16),form->keys,keydef,
  331.   recinfo,form->max_rows,form->min_rows,0,0,0L);
  332.   my_free((gptr) recinfo,MYF(0));
  333.   DBUG_RETURN(error);
  334. }
  335. ha_rows ha_isam::records_in_range(int inx,
  336.   const byte *start_key,uint start_key_len,
  337.   enum ha_rkey_function start_search_flag,
  338.   const byte *end_key,uint end_key_len,
  339.   enum ha_rkey_function end_search_flag)
  340. {
  341.   return (ha_rows) nisam_records_in_range(file,
  342.        inx,
  343.        start_key,start_key_len,
  344.        start_search_flag,
  345.        end_key,end_key_len,
  346.        end_search_flag);
  347. }