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

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. /*
  17.   Gives a approximated number of how many records there is between two keys.
  18.   Used when optimizing querries.
  19.  */
  20. #include "myisamdef.h"
  21. static ha_rows _mi_record_pos(MI_INFO *info,const byte *key,uint key_len,
  22.       enum ha_rkey_function search_flag);
  23. static double _mi_search_pos(MI_INFO *info,MI_KEYDEF *keyinfo,uchar *key,
  24.      uint key_len,uint nextflag,my_off_t pos);
  25. static uint _mi_keynr(MI_INFO *info,MI_KEYDEF *keyinfo,uchar *page,
  26.       uchar *keypos,uint *ret_max_key);
  27. /* If start_key = 0 assume read from start */
  28. /* If end_key = 0 assume read to end */
  29. /* Returns HA_POS_ERROR on error */
  30. ha_rows mi_records_in_range(MI_INFO *info, int inx, const byte *start_key,
  31.     uint start_key_len,
  32.     enum ha_rkey_function start_search_flag,
  33.     const byte *end_key, uint end_key_len,
  34.     enum ha_rkey_function end_search_flag)
  35. {
  36.   ha_rows start_pos,end_pos;
  37.   DBUG_ENTER("mi_records_in_range");
  38.   if ((inx = _mi_check_index(info,inx)) < 0)
  39.     DBUG_RETURN(HA_POS_ERROR);
  40.   if (_mi_readinfo(info,F_RDLCK,1))
  41.     DBUG_RETURN(HA_POS_ERROR);
  42.   info->update&= (HA_STATE_CHANGED+HA_STATE_ROW_CHANGED);
  43.   if (info->s->concurrent_insert)
  44.     rw_rdlock(&info->s->key_root_lock[inx]);
  45.   start_pos= (start_key ?
  46.       _mi_record_pos(info,start_key,start_key_len,start_search_flag) :
  47.       (ha_rows) 0);
  48.   end_pos=   (end_key ?
  49.       _mi_record_pos(info,end_key,end_key_len,end_search_flag) :
  50.       info->state->records+ (ha_rows) 1);
  51.   if (info->s->concurrent_insert)
  52.     rw_unlock(&info->s->key_root_lock[inx]);
  53.   VOID(_mi_writeinfo(info,0));
  54.   if (start_pos == HA_POS_ERROR || end_pos == HA_POS_ERROR)
  55.     DBUG_RETURN(HA_POS_ERROR);
  56.   DBUG_PRINT("info",("records: %ld",(ulong) (end_pos-start_pos)));
  57.   DBUG_RETURN(end_pos < start_pos ? (ha_rows) 0 :
  58.       (end_pos == start_pos ? (ha_rows) 1 : end_pos-start_pos));
  59. }
  60. /* Find relative position (in records) for key in index-tree */
  61. static ha_rows _mi_record_pos(MI_INFO *info, const byte *key, uint key_len,
  62.       enum ha_rkey_function search_flag)
  63. {
  64.   uint inx=(uint) info->lastinx;
  65.   MI_KEYDEF *keyinfo=info->s->keyinfo+inx;
  66.   uchar *key_buff;
  67.   double pos;
  68.   DBUG_ENTER("_mi_record_pos");
  69.   DBUG_PRINT("enter",("search_flag: %d",search_flag));
  70.   if (key_len == 0)
  71.     key_len=USE_WHOLE_KEY;
  72.   key_buff=info->lastkey+info->s->base.max_key_length;
  73.   key_len=_mi_pack_key(info,inx,key_buff,(uchar*) key,key_len);
  74.   DBUG_EXECUTE("key",_mi_print_key(DBUG_FILE,keyinfo->seg,
  75.     (uchar*) key_buff,key_len););
  76.   pos=_mi_search_pos(info,keyinfo,key_buff,key_len,
  77.      myisam_read_vec[search_flag] | SEARCH_SAVE_BUFF,
  78.      info->s->state.key_root[inx]);
  79.   if (pos >= 0.0)
  80.   {
  81.     DBUG_PRINT("exit",("pos: %ld",(ulong) (pos*info->state->records)));
  82.     DBUG_RETURN((ulong) (pos*info->state->records+0.5));
  83.   }
  84.   DBUG_RETURN(HA_POS_ERROR);
  85. }
  86. /* This is a modified version of _mi_search */
  87. /* Returns offset for key in indextable (decimal 0.0 <= x <= 1.0) */
  88. static double _mi_search_pos(register MI_INFO *info,
  89.      register MI_KEYDEF *keyinfo,
  90.      uchar *key, uint key_len, uint nextflag,
  91.      register my_off_t pos)
  92. {
  93.   int flag;
  94.   uint nod_flag,keynr,max_keynr;
  95.   my_bool after_key;
  96.   uchar *keypos,*buff;
  97.   double offset;
  98.   DBUG_ENTER("_mi_search_pos");
  99.   if (pos == HA_OFFSET_ERROR)
  100.     DBUG_RETURN(0.5);
  101.   if (!(buff=_mi_fetch_keypage(info,keyinfo,pos,info->buff,1)))
  102.     goto err;
  103.   flag=(*keyinfo->bin_search)(info,keyinfo,buff,key,key_len,nextflag,
  104.       &keypos,info->lastkey, &after_key);
  105.   nod_flag=mi_test_if_nod(buff);
  106.   keynr=_mi_keynr(info,keyinfo,buff,keypos,&max_keynr);
  107.   if (flag)
  108.   {
  109.     if (flag == MI_FOUND_WRONG_KEY)
  110.       DBUG_RETURN(-1); /* error */
  111.     /*
  112.     ** Didn't found match. keypos points at next (bigger) key
  113.     *  Try to find a smaller, better matching key.
  114.     ** Matches keynr + [0-1]
  115.     */
  116.     if (flag > 0 && ! nod_flag)
  117.       offset= 1.0;
  118.     else if ((offset=_mi_search_pos(info,keyinfo,key,key_len,nextflag,
  119.     _mi_kpos(nod_flag,keypos))) < 0)
  120.       DBUG_RETURN(offset);
  121.   }
  122.   else
  123.   {
  124.     /*
  125.     ** Found match. Keypos points at the start of the found key
  126.     ** Matches keynr+1
  127.     */
  128.     offset=1.0; /* Matches keynr+1 */
  129.     if (nextflag & SEARCH_FIND &&
  130. ((keyinfo->flag & (HA_NOSAME | HA_NULL_PART)) != HA_NOSAME ||
  131.  key_len) && nod_flag)
  132.     {
  133.       /*
  134.       ** There may be identical keys in the tree. Try to match on of those.
  135.       ** Matches keynr + [0-1]
  136.       */
  137.       if ((offset=_mi_search_pos(info,keyinfo,key,key_len,SEARCH_FIND,
  138.  _mi_kpos(nod_flag,keypos))) < 0)
  139. DBUG_RETURN(offset); /* Read error */
  140.     }
  141.   }
  142.   DBUG_PRINT("info",("keynr: %d  offset: %g  max_keynr: %d  nod: %d  flag: %d",
  143.      keynr,offset,max_keynr,nod_flag,flag));
  144.   DBUG_RETURN((keynr+offset)/(max_keynr+1));
  145. err:
  146.   DBUG_PRINT("exit",("Error: %d",my_errno));
  147.   DBUG_RETURN (-1.0);
  148. }
  149. /* Get keynummer of current key and max number of keys in nod */
  150. static uint _mi_keynr(MI_INFO *info, register MI_KEYDEF *keyinfo, uchar *page, uchar *keypos, uint *ret_max_key)
  151. {
  152.   uint nod_flag,keynr,max_key;
  153.   uchar t_buff[MI_MAX_KEY_BUFF],*end;
  154.   end= page+mi_getint(page);
  155.   nod_flag=mi_test_if_nod(page);
  156.   page+=2+nod_flag;
  157.   if (!(keyinfo->flag & (HA_VAR_LENGTH_KEY| HA_BINARY_PACK_KEY)))
  158.   {
  159.     *ret_max_key= (uint) (end-page)/(keyinfo->keylength+nod_flag);
  160.     return (uint) (keypos-page)/(keyinfo->keylength+nod_flag);
  161.   }
  162.   max_key=keynr=0;
  163.   t_buff[0]=0; /* Safety */
  164.   while (page < end)
  165.   {
  166.     if (!(*keyinfo->get_key)(keyinfo,nod_flag,&page,t_buff))
  167.       return 0; /* Error */
  168.     max_key++;
  169.     if (page == keypos)
  170.       keynr=max_key;
  171.   }
  172.   *ret_max_key=max_key;
  173.   return(keynr);
  174. }