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

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 "myisamdef.h"
  18. #include "rt_index.h"
  19. static ha_rows _mi_record_pos(MI_INFO *info,const byte *key,uint key_len,
  20.       enum ha_rkey_function search_flag);
  21. static double _mi_search_pos(MI_INFO *info,MI_KEYDEF *keyinfo,uchar *key,
  22.      uint key_len,uint nextflag,my_off_t pos);
  23. static uint _mi_keynr(MI_INFO *info,MI_KEYDEF *keyinfo,uchar *page,
  24.       uchar *keypos,uint *ret_max_key);
  25. /*
  26.   Estimate how many records there is in a given range
  27.   SYNOPSIS
  28.     mi_records_in_range()
  29.     info MyISAM handler
  30.     inx Index to use
  31.     min_key Min key. Is = 0 if no min range
  32.     max_key Max key. Is = 0 if no max range
  33.   NOTES
  34.     We should ONLY return 0 if there is no rows in range
  35.   RETURN
  36.     HA_POS_ERROR  error (or we can't estimate number of rows)
  37.     number   Estimated number of rows
  38. */
  39.   
  40. ha_rows mi_records_in_range(MI_INFO *info, int inx, key_range *min_key,
  41.                             key_range *max_key)
  42. {
  43.   ha_rows start_pos,end_pos,res;
  44.   DBUG_ENTER("mi_records_in_range");
  45.   if ((inx = _mi_check_index(info,inx)) < 0)
  46.     DBUG_RETURN(HA_POS_ERROR);
  47.   if (fast_mi_readinfo(info))
  48.     DBUG_RETURN(HA_POS_ERROR);
  49.   info->update&= (HA_STATE_CHANGED+HA_STATE_ROW_CHANGED);
  50.   if (info->s->concurrent_insert)
  51.     rw_rdlock(&info->s->key_root_lock[inx]);
  52.   switch(info->s->keyinfo[inx].key_alg){
  53. #ifdef HAVE_RTREE_KEYS
  54.   case HA_KEY_ALG_RTREE:
  55.   {
  56.     uchar * key_buff;
  57.     uint start_key_len;
  58.     key_buff= info->lastkey+info->s->base.max_key_length;
  59.     start_key_len= _mi_pack_key(info,inx, key_buff,
  60.                                 (uchar*) min_key->key, min_key->length,
  61.                                 (HA_KEYSEG**) 0);
  62.     res= rtree_estimate(info, inx, key_buff, start_key_len,
  63.                         myisam_read_vec[min_key->flag]);
  64.     res= res ? res : 1;                       /* Don't return 0 */
  65.     break;
  66.   }
  67. #endif
  68.   case HA_KEY_ALG_BTREE:
  69.   default:
  70.     start_pos= (min_key ?
  71.                 _mi_record_pos(info, min_key->key, min_key->length, 
  72.                                min_key->flag) :
  73.                 (ha_rows) 0);
  74.     end_pos=   (max_key ?
  75.                 _mi_record_pos(info, max_key->key, max_key->length,
  76.                                max_key->flag) :
  77.                 info->state->records+ (ha_rows) 1);
  78.     res= (end_pos < start_pos ? (ha_rows) 0 :
  79.           (end_pos == start_pos ? (ha_rows) 1 : end_pos-start_pos));
  80.     if (start_pos == HA_POS_ERROR || end_pos == HA_POS_ERROR)
  81.       res=HA_POS_ERROR;
  82.   }
  83.   
  84.   if (info->s->concurrent_insert)
  85.     rw_unlock(&info->s->key_root_lock[inx]);
  86.   fast_mi_writeinfo(info);
  87.   
  88.   DBUG_PRINT("info",("records: %ld",(ulong) (res)));
  89.   DBUG_RETURN(res);
  90. }
  91. /* Find relative position (in records) for key in index-tree */
  92. static ha_rows _mi_record_pos(MI_INFO *info, const byte *key, uint key_len,
  93.       enum ha_rkey_function search_flag)
  94. {
  95.   uint inx=(uint) info->lastinx, nextflag;
  96.   MI_KEYDEF *keyinfo=info->s->keyinfo+inx;
  97.   uchar *key_buff;
  98.   double pos;
  99.   DBUG_ENTER("_mi_record_pos");
  100.   DBUG_PRINT("enter",("search_flag: %d",search_flag));
  101.   if (key_len == 0)
  102.     key_len=USE_WHOLE_KEY;
  103.   key_buff=info->lastkey+info->s->base.max_key_length;
  104.   key_len=_mi_pack_key(info,inx,key_buff,(uchar*) key,key_len,
  105.        (HA_KEYSEG**) 0);
  106.   DBUG_EXECUTE("key",_mi_print_key(DBUG_FILE,keyinfo->seg,
  107.     (uchar*) key_buff,key_len););
  108.   nextflag=myisam_read_vec[search_flag];
  109.   if (!(nextflag & (SEARCH_FIND | SEARCH_NO_FIND | SEARCH_LAST)))
  110.     key_len=USE_WHOLE_KEY;
  111.   pos=_mi_search_pos(info,keyinfo,key_buff,key_len,
  112.      nextflag | SEARCH_SAVE_BUFF,
  113.      info->s->state.key_root[inx]);
  114.   if (pos >= 0.0)
  115.   {
  116.     DBUG_PRINT("exit",("pos: %ld",(ulong) (pos*info->state->records)));
  117.     DBUG_RETURN((ulong) (pos*info->state->records+0.5));
  118.   }
  119.   DBUG_RETURN(HA_POS_ERROR);
  120. }
  121. /* This is a modified version of _mi_search */
  122. /* Returns offset for key in indextable (decimal 0.0 <= x <= 1.0) */
  123. static double _mi_search_pos(register MI_INFO *info,
  124.      register MI_KEYDEF *keyinfo,
  125.      uchar *key, uint key_len, uint nextflag,
  126.      register my_off_t pos)
  127. {
  128.   int flag;
  129.   uint nod_flag,keynr,max_keynr;
  130.   my_bool after_key;
  131.   uchar *keypos,*buff;
  132.   double offset;
  133.   DBUG_ENTER("_mi_search_pos");
  134.   if (pos == HA_OFFSET_ERROR)
  135.     DBUG_RETURN(0.5);
  136.   if (!(buff=_mi_fetch_keypage(info,keyinfo,pos,DFLT_INIT_HITS,info->buff,1)))
  137.     goto err;
  138.   flag=(*keyinfo->bin_search)(info,keyinfo,buff,key,key_len,nextflag,
  139.       &keypos,info->lastkey, &after_key);
  140.   nod_flag=mi_test_if_nod(buff);
  141.   keynr=_mi_keynr(info,keyinfo,buff,keypos,&max_keynr);
  142.   if (flag)
  143.   {
  144.     if (flag == MI_FOUND_WRONG_KEY)
  145.       DBUG_RETURN(-1); /* error */
  146.     /*
  147.     ** Didn't found match. keypos points at next (bigger) key
  148.     *  Try to find a smaller, better matching key.
  149.     ** Matches keynr + [0-1]
  150.     */
  151.     if (flag > 0 && ! nod_flag)
  152.       offset= 1.0;
  153.     else if ((offset=_mi_search_pos(info,keyinfo,key,key_len,nextflag,
  154.     _mi_kpos(nod_flag,keypos))) < 0)
  155.       DBUG_RETURN(offset);
  156.   }
  157.   else
  158.   {
  159.     /*
  160.     ** Found match. Keypos points at the start of the found key
  161.     ** Matches keynr+1
  162.     */
  163.     offset=1.0; /* Matches keynr+1 */
  164.     if ((nextflag & SEARCH_FIND) && nod_flag &&
  165. ((keyinfo->flag & (HA_NOSAME | HA_NULL_PART)) != HA_NOSAME ||
  166.  key_len != USE_WHOLE_KEY))
  167.     {
  168.       /*
  169.       ** There may be identical keys in the tree. Try to match on of those.
  170.       ** Matches keynr + [0-1]
  171.       */
  172.       if ((offset=_mi_search_pos(info,keyinfo,key,key_len,SEARCH_FIND,
  173.  _mi_kpos(nod_flag,keypos))) < 0)
  174. DBUG_RETURN(offset); /* Read error */
  175.     }
  176.   }
  177.   DBUG_PRINT("info",("keynr: %d  offset: %g  max_keynr: %d  nod: %d  flag: %d",
  178.      keynr,offset,max_keynr,nod_flag,flag));
  179.   DBUG_RETURN((keynr+offset)/(max_keynr+1));
  180. err:
  181.   DBUG_PRINT("exit",("Error: %d",my_errno));
  182.   DBUG_RETURN (-1.0);
  183. }
  184. /* Get keynummer of current key and max number of keys in nod */
  185. static uint _mi_keynr(MI_INFO *info, register MI_KEYDEF *keyinfo, uchar *page, uchar *keypos, uint *ret_max_key)
  186. {
  187.   uint nod_flag,keynr,max_key;
  188.   uchar t_buff[MI_MAX_KEY_BUFF],*end;
  189.   end= page+mi_getint(page);
  190.   nod_flag=mi_test_if_nod(page);
  191.   page+=2+nod_flag;
  192.   if (!(keyinfo->flag & (HA_VAR_LENGTH_KEY| HA_BINARY_PACK_KEY)))
  193.   {
  194.     *ret_max_key= (uint) (end-page)/(keyinfo->keylength+nod_flag);
  195.     return (uint) (keypos-page)/(keyinfo->keylength+nod_flag);
  196.   }
  197.   max_key=keynr=0;
  198.   t_buff[0]=0; /* Safety */
  199.   while (page < end)
  200.   {
  201.     if (!(*keyinfo->get_key)(keyinfo,nod_flag,&page,t_buff))
  202.       return 0; /* Error */
  203.     max_key++;
  204.     if (page == keypos)
  205.       keynr=max_key;
  206.   }
  207.   *ret_max_key=max_key;
  208.   return(keynr);
  209. }