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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult 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. /*
  14.   Gives a approximated number of how many records there is between two keys.
  15.   Used when optimizing querries.
  16.  */
  17. #include "isamdef.h"
  18. static ulong _nisam_record_pos(N_INFO *info,const byte *key,uint key_len,
  19.     enum ha_rkey_function search_flag);
  20. static double _nisam_search_pos(N_INFO *info,N_KEYDEF *keyinfo,uchar *key,
  21.      uint key_len,uint nextflag,ulong pos);
  22. static uint _nisam_keynr(N_INFO *info,N_KEYDEF *keyinfo,uchar *page,
  23.       uchar *keypos,uint *ret_max_key);
  24. /* If start_key = 0 assume read from start */
  25. /* If end_key = 0 assume read to end */
  26. /* Returns NI_POS_ERROR on error */
  27. ulong nisam_records_in_range(N_INFO *info, int inx, const byte *start_key,
  28.   uint start_key_len,
  29.   enum ha_rkey_function start_search_flag,
  30.   const byte *end_key, uint end_key_len,
  31.   enum ha_rkey_function end_search_flag)
  32. {
  33.   ulong start_pos,end_pos;
  34.   DBUG_ENTER("nisam_records_in_range");
  35.   if ((inx = _nisam_check_index(info,inx)) < 0)
  36.     DBUG_RETURN(NI_POS_ERROR);
  37. #ifndef NO_LOCKING
  38.   if (_nisam_readinfo(info,F_RDLCK,1))
  39.     DBUG_RETURN(NI_POS_ERROR);
  40. #endif
  41.   info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  42.   start_pos= (start_key ?
  43.       _nisam_record_pos(info,start_key,start_key_len,start_search_flag) :
  44.       0L);
  45.   end_pos=   (end_key ?
  46.       _nisam_record_pos(info,end_key,end_key_len,end_search_flag) :
  47.       info->s->state.records+1L);
  48.   VOID(_nisam_writeinfo(info,0));
  49.   if (start_pos == NI_POS_ERROR || end_pos == NI_POS_ERROR)
  50.     DBUG_RETURN(NI_POS_ERROR);
  51.   DBUG_PRINT("info",("records: %ld",end_pos-start_pos));
  52.   DBUG_RETURN(end_pos < start_pos ? 0L :
  53.       (end_pos == start_pos ? 1L : end_pos-start_pos));
  54. }
  55. /* Find relative position (in records) for key in index-tree */
  56. static ulong _nisam_record_pos(N_INFO *info, const byte *key, uint key_len,
  57.     enum ha_rkey_function search_flag)
  58. {
  59.   uint inx=(uint) info->lastinx;
  60.   N_KEYDEF *keyinfo=info->s->keyinfo+inx;
  61.   uchar *key_buff;
  62.   double pos;
  63.   DBUG_ENTER("_nisam_record_pos");
  64.   DBUG_PRINT("enter",("search_flag: %d",search_flag));
  65.   if (key_len >= (keyinfo->base.keylength-info->s->rec_reflength)
  66.       && !(keyinfo->base.flag & HA_SPACE_PACK_USED))
  67.     key_len=USE_HOLE_KEY;
  68.   key_buff=info->lastkey+info->s->base.max_key_length;
  69.   key_len=_nisam_pack_key(info,inx,key_buff,(uchar*) key,key_len);
  70.   DBUG_EXECUTE("key",_nisam_print_key(DBUG_FILE,keyinfo->seg,
  71.     (uchar*) key_buff););
  72.   pos=_nisam_search_pos(info,keyinfo,key_buff,key_len,
  73.      nisam_read_vec[search_flag] | SEARCH_SAVE_BUFF,
  74.      info->s->state.key_root[inx]);
  75.   if (pos >= 0.0)
  76.   {
  77.     DBUG_PRINT("exit",("pos: %ld",(ulong) (pos*info->s->state.records)));
  78.     DBUG_RETURN((ulong) (pos*info->s->state.records+0.5));
  79.   }
  80.   DBUG_RETURN(NI_POS_ERROR);
  81. }
  82. /* This is a modified version of _nisam_search */
  83. /* Returns offset for key in indextable (decimal 0.0 <= x <= 1.0) */
  84. static double _nisam_search_pos(register N_INFO *info, register N_KEYDEF *keyinfo,
  85.      uchar *key, uint key_len, uint nextflag,
  86.      register ulong pos)
  87. {
  88.   int flag;
  89.   uint nod_flag,keynr,max_keynr;
  90.   uchar *keypos,*buff;
  91.   double offset;
  92.   DBUG_ENTER("_nisam_search_pos");
  93.   if (pos == NI_POS_ERROR)
  94.     DBUG_RETURN(0.5);
  95.   if (!(buff=_nisam_fetch_keypage(info,keyinfo,pos,info->buff,1)))
  96.     goto err;
  97.   flag=(*keyinfo->bin_search)(info,keyinfo,buff,key,key_len,nextflag,
  98.       &keypos,info->lastkey);
  99.   nod_flag=test_if_nod(buff);
  100.   keynr=_nisam_keynr(info,keyinfo,buff,keypos,&max_keynr);
  101.   if (flag)
  102.   {
  103.     /*
  104.     ** Didn't found match. keypos points at next (bigger) key
  105.     *  Try to find a smaller, better matching key.
  106.     ** Matches keynr + [0-1]
  107.     */
  108.     if ((offset=_nisam_search_pos(info,keyinfo,key,key_len,nextflag,
  109.        _nisam_kpos(nod_flag,keypos))) < 0)
  110.       DBUG_RETURN(offset);
  111.   }
  112.   else
  113.   {
  114.     /*
  115.     ** Found match. Keypos points at the start of the found key
  116.     ** Matches keynr+1
  117.     */
  118.     offset=1.0; /* Matches keynr+1 */
  119.     if (nextflag & SEARCH_FIND && (!(keyinfo->base.flag & HA_NOSAME)
  120.    || key_len) && nod_flag)
  121.     {
  122.       /*
  123.       ** There may be identical keys in the tree. Try to match on of those.
  124.       ** Matches keynr + [0-1]
  125.       */
  126.       if ((offset=_nisam_search_pos(info,keyinfo,key,key_len,SEARCH_FIND,
  127.  _nisam_kpos(nod_flag,keypos))) < 0)
  128. DBUG_RETURN(offset); /* Read error */
  129.     }
  130.   }
  131.   DBUG_PRINT("info",("keynr: %d  offset: %g  max_keynr: %d  nod: %d  flag: %d",
  132.      keynr,offset,max_keynr,nod_flag,flag));
  133.   DBUG_RETURN((keynr+offset)/(max_keynr+1));
  134. err:
  135.   DBUG_PRINT("exit",("Error: %d",my_errno));
  136.   DBUG_RETURN (-1.0);
  137. }
  138. /* Get keynummer of current key and max number of keys in nod */
  139. static uint _nisam_keynr(N_INFO *info, register N_KEYDEF *keyinfo, uchar *page, uchar *keypos, uint *ret_max_key)
  140. {
  141.   uint nod_flag,keynr,max_key;
  142.   uchar t_buff[N_MAX_KEY_BUFF],*end;
  143.   end= page+getint(page);
  144.   nod_flag=test_if_nod(page);
  145.   page+=2+nod_flag;
  146.   if (!(keyinfo->base.flag &
  147. (HA_PACK_KEY | HA_SPACE_PACK | HA_SPACE_PACK_USED)))
  148.   {
  149.     *ret_max_key= (uint) (end-page)/(keyinfo->base.keylength+nod_flag);
  150.     return (uint) (keypos-page)/(keyinfo->base.keylength+nod_flag);
  151.   }
  152.   max_key=keynr=0;
  153.   while (page < end)
  154.   {
  155.     t_buff[0]=0; /* Don't move packed key */
  156.     VOID((*keyinfo->get_key)(keyinfo,nod_flag,&page,t_buff));
  157.     max_key++;
  158.     if (page == keypos)
  159.       keynr=max_key;
  160.   }
  161.   *ret_max_key=max_key;
  162.   return(keynr);
  163. }