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