mi_search.c 51.9 KB
Newer Older
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
2

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3 4 5 6
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
7

bk@work.mysql.com's avatar
bk@work.mysql.com committed
8 9 10 11
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
12

bk@work.mysql.com's avatar
bk@work.mysql.com committed
13 14 15 16 17 18 19 20 21 22
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */

/* key handling functions */

#include "fulltext.h"
#include "m_ctype.h"

static my_bool _mi_get_prev_key(MI_INFO *info, MI_KEYDEF *keyinfo, uchar *page,
23 24
                                uchar *key, uchar *keypos,
                                uint *return_key_length);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
25

26
        /* Check index */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
27 28 29

int _mi_check_index(MI_INFO *info, int inx)
{
30
  if (inx == -1)                        /* Use last index */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
31 32 33 34 35 36
    inx=info->lastinx;
  if (inx < 0 || ! (((ulonglong) 1 << inx) & info->s->state.key_map))
  {
    my_errno=HA_ERR_WRONG_INDEX;
    return -1;
  }
37
  if (info->lastinx != inx)             /* Index changed */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
38 39 40 41
  {
    info->lastinx = inx;
    info->page_changed=1;
    info->update= ((info->update & (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED)) |
42
                   HA_STATE_NEXT_FOUND | HA_STATE_PREV_FOUND);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
43 44 45 46 47 48 49
  }
  if (info->opt_flag & WRITE_CACHE_USED && flush_io_cache(&info->rec_cache))
    return(-1);
  return(inx);
} /* mi_check_index */


50 51 52 53 54 55
        /*
        ** Search after row by a key
        ** Position to row is stored in info->lastpos
        ** Return: -1 if not found
        **          1 if one should continue search on higher level
        */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
56 57

int _mi_search(register MI_INFO *info, register MI_KEYDEF *keyinfo,
58
               uchar *key, uint key_len, uint nextflag, register my_off_t pos)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
59 60 61 62 63 64 65 66
{
  my_bool last_key;
  int error,flag;
  uint nod_flag;
  uchar *keypos,*maxpos;
  uchar lastkey[MI_MAX_KEY_BUFF],*buff;
  DBUG_ENTER("_mi_search");
  DBUG_PRINT("enter",("pos: %ld  nextflag: %d  lastpos: %ld",
67
                      pos,nextflag,info->lastpos));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
68 69 70 71
  DBUG_EXECUTE("key",_mi_print_key(DBUG_FILE,keyinfo->seg,key,key_len););

  if (pos == HA_OFFSET_ERROR)
  {
72
    my_errno=HA_ERR_KEY_NOT_FOUND;                      /* Didn't find key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
73 74
    info->lastpos= HA_OFFSET_ERROR;
    if (!(nextflag & (SEARCH_SMALLER | SEARCH_BIGGER | SEARCH_LAST)))
75 76
      DBUG_RETURN(-1);                          /* Not found ; return error */
    DBUG_RETURN(1);                             /* Search at upper levels */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
77 78 79
  }

  if (!(buff=_mi_fetch_keypage(info,keyinfo,pos,info->buff,
80
                               test(!(nextflag & SEARCH_SAVE_BUFF)))))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
81 82 83 84
    goto err;
  DBUG_DUMP("page",(byte*) buff,mi_getint(buff));

  flag=(*keyinfo->bin_search)(info,keyinfo,buff,key,key_len,nextflag,
85
                              &keypos,lastkey, &last_key);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
86 87 88 89 90 91 92 93
  if (flag == MI_FOUND_WRONG_KEY)
    DBUG_RETURN(-1);
  nod_flag=mi_test_if_nod(buff);
  maxpos=buff+mi_getint(buff)-1;

  if (flag)
  {
    if ((error=_mi_search(info,keyinfo,key,key_len,nextflag,
94
                          _mi_kpos(nod_flag,keypos))) <= 0)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
95 96 97 98 99
      DBUG_RETURN(error);

    if (flag >0)
    {
      if (nextflag & (SEARCH_SMALLER | SEARCH_LAST) &&
100 101
          keypos == buff+2+nod_flag)
        DBUG_RETURN(1);                                 /* Bigger than key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
102 103
    }
    else if (nextflag & SEARCH_BIGGER && keypos >= maxpos)
104
      DBUG_RETURN(1);                                   /* Smaller than key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
105 106 107
  }
  else
  {
108 109 110
    if ((nextflag & SEARCH_FIND) && nod_flag &&
	((keyinfo->flag & (HA_NOSAME | HA_NULL_PART)) != HA_NOSAME ||
	 key_len != USE_WHOLE_KEY))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
111 112
    {
      if ((error=_mi_search(info,keyinfo,key,key_len,SEARCH_FIND,
113 114 115
                            _mi_kpos(nod_flag,keypos))) >= 0 ||
          my_errno != HA_ERR_KEY_NOT_FOUND)
        DBUG_RETURN(error);
116
      info->last_keypage= HA_OFFSET_ERROR;              /* Buffer not in mem */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
117 118 119 120 121 122
    }
  }
  if (pos != info->last_keypage)
  {
    uchar *old_buff=buff;
    if (!(buff=_mi_fetch_keypage(info,keyinfo,pos,info->buff,
123
                                 test(!(nextflag & SEARCH_SAVE_BUFF)))))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
124 125 126 127 128 129 130 131 132
      goto err;
    keypos=buff+(keypos-old_buff);
    maxpos=buff+(maxpos-old_buff);
  }

  if ((nextflag & (SEARCH_SMALLER | SEARCH_LAST)) && flag != 0)
  {
    uint not_used;
    if (_mi_get_prev_key(info,keyinfo, buff, info->lastkey, keypos,
133
                         &info->lastkey_length))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
134
      goto err;
135
    if (!(nextflag & SEARCH_SMALLER) &&
136
        ha_key_cmp(keyinfo->seg, info->lastkey, key, key_len, SEARCH_FIND,
137
                    &not_used))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
138
    {
139
      my_errno=HA_ERR_KEY_NOT_FOUND;                    /* Didn't find key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
      goto err;
    }
  }
  else
  {
    info->lastkey_length=(*keyinfo->get_key)(keyinfo,nod_flag,&keypos,lastkey);
    if (!info->lastkey_length)
      goto err;
    memcpy(info->lastkey,lastkey,info->lastkey_length);
  }
  info->lastpos=_mi_dpos(info,0,info->lastkey+info->lastkey_length);
  /* Save position for a possible read next / previous */
  info->int_keypos=info->buff+ (keypos-buff);
  info->int_maxpos=info->buff+ (maxpos-buff);
  info->int_nod_flag=nod_flag;
  info->int_keytree_version=keyinfo->version;
  info->last_search_keypage=info->last_keypage;
  info->page_changed=0;
158
  info->buff_used= (info->buff != buff);        /* If we have to reread buff */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
159

160
  DBUG_PRINT("exit",("found key at %lu",(ulong) info->lastpos));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
161 162 163 164 165 166 167 168 169
  DBUG_RETURN(0);
err:
  DBUG_PRINT("exit",("Error: %d",my_errno));
  info->lastpos= HA_OFFSET_ERROR;
  info->page_changed=1;
  DBUG_RETURN (-1);
} /* _mi_search */


170 171 172 173
        /* Search after key in page-block */
        /* If packed key puts smaller or identical key in buff */
        /* ret_pos point to where find or bigger key starts */
        /* ARGSUSED */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
174 175

int _mi_bin_search(MI_INFO *info, register MI_KEYDEF *keyinfo, uchar *page,
176 177
                   uchar *key, uint key_len, uint comp_flag, uchar **ret_pos,
                   uchar *buff __attribute__((unused)), my_bool *last_key)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
{
  reg4 int start,mid,end,save_end;
  int flag;
  uint totlength,nod_flag,not_used;
  DBUG_ENTER("_mi_bin_search");

  LINT_INIT(flag);
  totlength=keyinfo->keylength+(nod_flag=mi_test_if_nod(page));
  start=0; mid=1;
  save_end=end=(int) ((mi_getint(page)-2-nod_flag)/totlength-1);
  DBUG_PRINT("test",("mi_getint: %d  end: %d",mi_getint(page),end));
  page+=2+nod_flag;

  while (start != end)
  {
    mid= (start+end)/2;
194
    if ((flag=ha_key_cmp(keyinfo->seg,page+(uint) mid*totlength,key,key_len,
195 196
                          comp_flag,&not_used))
        >= 0)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
197 198 199 200 201
      end=mid;
    else
      start=mid+1;
  }
  if (mid != start)
202
    flag=ha_key_cmp(keyinfo->seg,page+(uint) start*totlength,key,key_len,
203
                     comp_flag,&not_used);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
204
  if (flag < 0)
205
    start++;                    /* point at next, bigger key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
206 207 208 209 210 211 212
  *ret_pos=page+(uint) start*totlength;
  *last_key= end == save_end;
  DBUG_PRINT("exit",("flag: %d  keypos: %d",flag,start));
  DBUG_RETURN(flag);
} /* _mi_bin_search */


213 214 215
        /* Used instead of _mi_bin_search() when key is packed */
        /* Puts smaller or identical key in buff */
        /* Key is searched sequentially */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
216 217

int _mi_seq_search(MI_INFO *info, register MI_KEYDEF *keyinfo, uchar *page,
218 219
                   uchar *key, uint key_len, uint comp_flag, uchar **ret_pos,
                   uchar *buff, my_bool *last_key)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
220 221 222 223 224 225 226 227 228 229 230
{
  int flag;
  uint nod_flag,length,not_used;
  uchar t_buff[MI_MAX_KEY_BUFF],*end;
  DBUG_ENTER("_mi_seq_search");

  LINT_INIT(flag); LINT_INIT(length);
  end= page+mi_getint(page);
  nod_flag=mi_test_if_nod(page);
  page+=2+nod_flag;
  *ret_pos=page;
231
  t_buff[0]=0;                                  /* Avoid bugs */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
232 233 234 235 236 237 238
  while (page < end)
  {
    length=(*keyinfo->get_key)(keyinfo,nod_flag,&page,t_buff);
    if (length == 0 || page > end)
    {
      my_errno=HA_ERR_CRASHED;
      DBUG_PRINT("error",("Found wrong key:  length: %d  page: %lx  end: %lx",
239
                          length,page,end));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
240 241
      DBUG_RETURN(MI_FOUND_WRONG_KEY);
    }
242
    if ((flag=ha_key_cmp(keyinfo->seg,t_buff,key,key_len,comp_flag,
243
                          &not_used)) >= 0)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
244 245 246 247 248 249 250 251
      break;
#ifdef EXTRA_DEBUG
    DBUG_PRINT("loop",("page: %lx  key: '%s'  flag: %d",page,t_buff,flag));
#endif
    memcpy(buff,t_buff,length);
    *ret_pos=page;
  }
  if (flag == 0)
252
    memcpy(buff,t_buff,length);                 /* Result is first key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
253 254 255 256 257
  *last_key= page == end;
  DBUG_PRINT("exit",("flag: %d  ret_pos: %lx",flag,*ret_pos));
  DBUG_RETURN(flag);
} /* _mi_seq_search */

258

259 260 261 262 263 264
int _mi_prefix_search(MI_INFO *info, register MI_KEYDEF *keyinfo, uchar *page,
                      uchar *key, uint key_len, uint nextflag, uchar **ret_pos,
                      uchar *buff, my_bool *last_key)
{
  /* my_flag is raw comparison result to be changed according to
     SEARCH_NO_FIND,SEARCH_LAST and HA_REVERSE_SORT flags.
265
     flag is the value returned by ha_key_cmp and as treated as final */
266
  int flag=0, my_flag=-1;
267
  uint nod_flag, length, len, matched, cmplen, kseg_len;
268
  uint prefix_len,suffix_len;
269
  int key_len_skip, seg_len_pack, key_len_left;
270 271 272 273 274 275 276
  uchar *end, *kseg, *vseg;
  uchar *sort_order=keyinfo->seg->charset->sort_order;
  uchar tt_buff[MI_MAX_KEY_BUFF+2], *t_buff=tt_buff+2;
  uchar *saved_from, *saved_to, *saved_vseg;
  uint   saved_length=0, saved_prefix_len=0;
  DBUG_ENTER("_mi_prefix_search");

277 278 279 280 281 282 283
  LINT_INIT(length);
  LINT_INIT(prefix_len);
  LINT_INIT(seg_len_pack);
  LINT_INIT(saved_from);
  LINT_INIT(saved_to);
  LINT_INIT(saved_vseg);

284 285 286 287 288 289 290 291 292 293
  t_buff[0]=0;                                  /* Avoid bugs */
  end= page+mi_getint(page);
  nod_flag=mi_test_if_nod(page);
  page+=2+nod_flag;
  *ret_pos=page;
  kseg=key;
  {
    uint lenght_pack;
    get_key_pack_length(kseg_len,lenght_pack,kseg);
    key_len_skip=lenght_pack+kseg_len;
294
    key_len_left=(int) key_len- (int) key_len_skip;
295
    cmplen=(key_len_left>=0) ? kseg_len : key_len-lenght_pack;
296
    DBUG_PRINT("info",("key: '%.*s'",kseg_len,kseg));
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
  }

/*
  Keys are compressed the following way:

  If the max length of first key segment <= 127 characters the prefix is
  1 byte else it's 2 byte

  prefix         The high bit is set if this is a prefix for the prev key
  length         Packed length if the previous was a prefix byte
  [length]       Length character of data
  next-key-seg   Next key segments
*/

  matched=0;  /* how many char's from prefix were alredy matched */
  len=0;      /* length of previous key unpacked */

  while (page < end)
  {
    uint packed= *page & 128;
317

318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
    vseg=page;
    if (keyinfo->seg->length >= 127)
    {
      suffix_len=mi_uint2korr(vseg) & 32767;
      vseg+=2;
    }
    else
      suffix_len= *vseg++ & 127;

    if (packed)
    {
      if (suffix_len == 0)                      /* Same key */
        prefix_len=len;
      else
      {
333
        prefix_len=suffix_len;
334 335 336 337 338 339 340 341 342 343
        get_key_length(suffix_len,vseg);
      }
    }
    else
      prefix_len=0;

    len=prefix_len+suffix_len;
    seg_len_pack=get_pack_length(len);
    t_buff=tt_buff+3-seg_len_pack;
    store_key_length(t_buff,len);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
344

345 346 347 348 349 350
    if (prefix_len > saved_prefix_len)
      memcpy(t_buff+seg_len_pack+saved_prefix_len,saved_vseg,
             prefix_len-saved_prefix_len);
    saved_vseg=vseg;
    saved_prefix_len=prefix_len;

351
    DBUG_PRINT("loop",("page: '%.*s%.*s'",prefix_len,t_buff+seg_len_pack,suffix_len,vseg));
352 353
    {
      uchar *from=vseg+suffix_len;
354
      HA_KEYSEG *keyseg;
355 356 357 358
      uint l;

      for (keyseg=keyinfo->seg+1 ; keyseg->type ; keyseg++ )
      {
359

360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
        if (keyseg->flag & HA_NULL_PART)
        {
          if (!(*from++))
            continue;
        }
        if (keyseg->flag & (HA_VAR_LENGTH | HA_BLOB_PART | HA_SPACE_PACK))
        {
          get_key_length(l,from);
        }
        else
          l=keyseg->length;

        from+=l;
      }
      from+=keyseg->length;
      page=from+nod_flag;
      length=from-vseg;
    }

    if (page > end)
    {
      my_errno=HA_ERR_CRASHED;
      DBUG_PRINT("error",("Found wrong key:  length: %d  page: %lx  end: %lx",
                          length,page,end));
      DBUG_RETURN(MI_FOUND_WRONG_KEY);
    }

    if (matched >= prefix_len)
    {
      /* We have to compare. But we can still skip part of the key */
      uint  left;
      uchar *k=kseg+prefix_len;

      left=(len>cmplen) ? cmplen-prefix_len : suffix_len;

      matched=prefix_len+left;

      for(my_flag=0;left;left--)
        if ((my_flag= (int) sort_order[*vseg++] - (int) sort_order[*k++]))
          break;

      if (my_flag>0)      /* mismatch */
        break;
      else if (my_flag==0) /* match */
      { /*
        **  len cmplen seg_left_len more_segs
        **     <                               matched=len; continue search
        **     >      =                        prefix ? found : (matched=len; continue search)
        **     >      <                 -      ok, found
        **     =      <                 -      ok, found
        **     =      =                 -      ok, found
        **     =      =                 +      next seg
        */
        if (len < cmplen)
        {
415
          my_flag= -1;
416 417 418
        }
        else if (len > cmplen)
        {
419
          if ((my_flag= (!(nextflag & SEARCH_PREFIX) || key_len_left>0)))
420 421 422 423 424 425
            break;
          goto fix_flag;
        }
        else if (key_len_left>0)
        {
          uint not_used;
426
          if ((flag = ha_key_cmp(keyinfo->seg+1,vseg,
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
                                  k,key_len_left,nextflag,&not_used)) >= 0)
            break;
        }
        else
        {
          /* at this line flag==-1 if the following lines were already
             visited and 0 otherwise,  i.e. flag <=0 here always !!! */
  fix_flag:
          if (nextflag & (SEARCH_NO_FIND | SEARCH_LAST))
            flag=(nextflag & (SEARCH_BIGGER | SEARCH_LAST)) ? -1 : 1;
          if (flag>=0) break;
        }
      }
      matched-=left;
    }
    /* else (matched < prefix_len) ---> do nothing. */

    memcpy(buff,t_buff,saved_length=seg_len_pack+prefix_len);
    saved_to=buff+saved_length;
    saved_from=saved_vseg;
    saved_length=length;
    *ret_pos=page;
  }
  if (my_flag)
    flag=(keyinfo->seg->flag & HA_REVERSE_SORT) ? -my_flag : my_flag;
  if (flag == 0)
  {
    memcpy(buff,t_buff,saved_length=seg_len_pack+prefix_len);
    saved_to=buff+saved_length;
    saved_from=saved_vseg;
    saved_length=length;
  }
  if (saved_length)
    memcpy(saved_to,saved_from,saved_length);

  *last_key= page == end;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
463

464 465 466 467 468 469
  DBUG_PRINT("exit",("flag: %d  ret_pos: %lx",flag,*ret_pos));
  DBUG_RETURN(flag);
} /* _mi_prefix_search */


        /* Get pos to a key_block */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
470 471 472 473 474 475 476

my_off_t _mi_kpos(uint nod_flag, uchar *after_key)
{
  after_key-=nod_flag;
  switch (nod_flag) {
#if SIZEOF_OFF_T > 4
  case 7:
477
    return mi_uint7korr(after_key)*MI_MIN_KEY_BLOCK_LENGTH;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
478
  case 6:
479
    return mi_uint6korr(after_key)*MI_MIN_KEY_BLOCK_LENGTH;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
480
  case 5:
481
    return mi_uint5korr(after_key)*MI_MIN_KEY_BLOCK_LENGTH;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
482 483 484 485 486 487 488 489 490
#else
  case 7:
    after_key++;
  case 6:
    after_key++;
  case 5:
    after_key++;
#endif
  case 4:
491
    return ((my_off_t) mi_uint4korr(after_key))*MI_MIN_KEY_BLOCK_LENGTH;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
492
  case 3:
493
    return ((my_off_t) mi_uint3korr(after_key))*MI_MIN_KEY_BLOCK_LENGTH;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
494
  case 2:
495
    return (my_off_t) (mi_uint2korr(after_key)*MI_MIN_KEY_BLOCK_LENGTH);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
496
  case 1:
497
    return (uint) (*after_key)*MI_MIN_KEY_BLOCK_LENGTH;
498 499
  case 0:                                       /* At leaf page */
  default:                                      /* Impossible */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
500 501 502 503 504
    return(HA_OFFSET_ERROR);
  }
} /* _kpos */


505
        /* Save pos to a key_block */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
506 507 508

void _mi_kpointer(register MI_INFO *info, register uchar *buff, my_off_t pos)
{
509
  pos/=MI_MIN_KEY_BLOCK_LENGTH;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
  switch (info->s->base.key_reflength) {
#if SIZEOF_OFF_T > 4
  case 7: mi_int7store(buff,pos); break;
  case 6: mi_int6store(buff,pos); break;
  case 5: mi_int5store(buff,pos); break;
#else
  case 7: *buff++=0;
    /* fall trough */
  case 6: *buff++=0;
    /* fall trough */
  case 5: *buff++=0;
    /* fall trough */
#endif
  case 4: mi_int4store(buff,pos); break;
  case 3: mi_int3store(buff,pos); break;
  case 2: mi_int2store(buff,(uint) pos); break;
  case 1: buff[0]= (uchar) pos; break;
527
  default: abort();                             /* impossible */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
528 529 530 531
  }
} /* _mi_kpointer */


532
        /* Calc pos to a data-record from a key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
533 534 535 536 537 538 539 540 541 542 543 544 545 546


my_off_t _mi_dpos(MI_INFO *info, uint nod_flag, uchar *after_key)
{
  my_off_t pos;
  after_key-=(nod_flag + info->s->rec_reflength);
  switch (info->s->rec_reflength) {
#if SIZEOF_OFF_T > 4
  case 8:  pos= (my_off_t) mi_uint5korr(after_key);  break;
  case 7:  pos= (my_off_t) mi_uint7korr(after_key);  break;
  case 6:  pos= (my_off_t) mi_uint6korr(after_key);  break;
  case 5:  pos= (my_off_t) mi_uint5korr(after_key);  break;
#else
  case 8:  pos= (my_off_t) mi_uint4korr(after_key+4);   break;
547 548 549
  case 7:  pos= (my_off_t) mi_uint4korr(after_key+3);   break;
  case 6:  pos= (my_off_t) mi_uint4korr(after_key+2);   break;
  case 5:  pos= (my_off_t) mi_uint4korr(after_key+1);   break;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
550 551 552 553 554
#endif
  case 4:  pos= (my_off_t) mi_uint4korr(after_key);  break;
  case 3:  pos= (my_off_t) mi_uint3korr(after_key);  break;
  case 2:  pos= (my_off_t) mi_uint2korr(after_key);  break;
  default:
555
    pos=0L;                                     /* Shut compiler up */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
556 557
  }
  return (info->s->options &
558 559
          (HA_OPTION_PACK_RECORD | HA_OPTION_COMPRESS_RECORD)) ? pos :
            pos*info->s->base.pack_reclength;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
560 561 562 563 564 565 566 567 568 569 570 571 572
}


/* Calc position from a record pointer ( in delete link chain ) */

my_off_t _mi_rec_pos(MYISAM_SHARE *s, uchar *ptr)
{
  my_off_t pos;
  switch (s->rec_reflength) {
#if SIZEOF_OFF_T > 4
  case 8:
    pos= (my_off_t) mi_uint8korr(ptr);
    if (pos == HA_OFFSET_ERROR)
573
      return HA_OFFSET_ERROR;                   /* end of list */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
574 575 576 577
    break;
  case 7:
    pos= (my_off_t) mi_uint7korr(ptr);
    if (pos == (((my_off_t) 1) << 56) -1)
578
      return HA_OFFSET_ERROR;                   /* end of list */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
579 580 581 582
    break;
  case 6:
    pos= (my_off_t) mi_uint6korr(ptr);
    if (pos == (((my_off_t) 1) << 48) -1)
583
      return HA_OFFSET_ERROR;                   /* end of list */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
584 585 586 587
    break;
  case 5:
    pos= (my_off_t) mi_uint5korr(ptr);
    if (pos == (((my_off_t) 1) << 40) -1)
588
      return HA_OFFSET_ERROR;                   /* end of list */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
    break;
#else
  case 8:
  case 7:
  case 6:
  case 5:
    ptr+= (s->rec_reflength-4);
    /* fall through */
#endif
  case 4:
    pos= (my_off_t) mi_uint4korr(ptr);
    if (pos == (my_off_t) (uint32) ~0L)
      return  HA_OFFSET_ERROR;
    break;
  case 3:
    pos= (my_off_t) mi_uint3korr(ptr);
    if (pos == (my_off_t) (1 << 24) -1)
      return HA_OFFSET_ERROR;
    break;
  case 2:
    pos= (my_off_t) mi_uint2korr(ptr);
    if (pos == (my_off_t) (1 << 16) -1)
      return HA_OFFSET_ERROR;
    break;
613
  default: abort();                             /* Impossible */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
614 615
  }
  return ((s->options &
616 617
          (HA_OPTION_PACK_RECORD | HA_OPTION_COMPRESS_RECORD)) ? pos :
          pos*s->base.pack_reclength);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
618 619 620
}


621
        /* save position to record */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
622 623 624 625

void _mi_dpointer(MI_INFO *info, uchar *buff, my_off_t pos)
{
  if (!(info->s->options &
626
        (HA_OPTION_PACK_RECORD | HA_OPTION_COMPRESS_RECORD)) &&
bk@work.mysql.com's avatar
bk@work.mysql.com committed
627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
      pos != HA_OFFSET_ERROR)
    pos/=info->s->base.pack_reclength;

  switch (info->s->rec_reflength) {
#if SIZEOF_OFF_T > 4
  case 8: mi_int8store(buff,pos); break;
  case 7: mi_int7store(buff,pos); break;
  case 6: mi_int6store(buff,pos); break;
  case 5: mi_int5store(buff,pos); break;
#else
  case 8: *buff++=0;
    /* fall trough */
  case 7: *buff++=0;
    /* fall trough */
  case 6: *buff++=0;
    /* fall trough */
  case 5: *buff++=0;
    /* fall trough */
#endif
  case 4: mi_int4store(buff,pos); break;
  case 3: mi_int3store(buff,pos); break;
  case 2: mi_int2store(buff,(uint) pos); break;
649
  default: abort();                             /* Impossible */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
650 651 652 653
  }
} /* _mi_dpointer */


654 655 656 657 658
        /* Get key from key-block */
        /* page points at previous key; its advanced to point at next key */
        /* key should contain previous key */
        /* Returns length of found key + pointers */
        /* nod_flag is a flag if we are on nod */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
659

660
        /* same as _mi_get_key but used with fixed length keys */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
661 662

uint _mi_get_static_key(register MI_KEYDEF *keyinfo, uint nod_flag,
663
                       register uchar **page, register uchar *key)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
664 665
{
  memcpy((byte*) key,(byte*) *page,
666
         (size_t) (keyinfo->keylength+nod_flag));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
667 668 669 670 671
  *page+=keyinfo->keylength+nod_flag;
  return(keyinfo->keylength);
} /* _mi_get_static_key */


672
/* Key with is packed against previous key or key with a NULL column */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
673 674

uint _mi_get_pack_key(register MI_KEYDEF *keyinfo, uint nod_flag,
675
                      register uchar **page_pos, register uchar *key)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
676
{
677
  reg1 HA_KEYSEG *keyseg;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
678 679 680 681 682 683 684 685 686 687 688 689 690
  uchar *start_key,*page=*page_pos;
  uint length;

  start_key=key;
  for (keyseg=keyinfo->seg ; keyseg->type ;keyseg++)
  {
    if (keyseg->flag & HA_PACK_KEY)
    {
      /* key with length, packed to previous key */
      uchar *start=key;
      uint packed= *page & 128,tot_length,rest_length;
      if (keyseg->length >= 127)
      {
691 692
        length=mi_uint2korr(page) & 32767;
        page+=2;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
693 694
      }
      else
695
        length= *page++ & 127;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720

      if (packed)
      {
	if (length > (uint) keyseg->length)
	{
	  my_errno=HA_ERR_CRASHED;
	  return 0;				/* Error */
	}
	if (length == 0)			/* Same key */
	{
	  if (keyseg->flag & HA_NULL_PART)
	    *key++=1;				/* Can't be NULL */
	  get_key_length(length,key);
	  key+= length;				/* Same diff_key as prev */
	  if (length > keyseg->length)
	  {
	    DBUG_PRINT("error",("Found too long null packed key: %d of %d at %lx",
				length, keyseg->length, *page_pos));
	    DBUG_DUMP("key",(char*) *page_pos,16);
	    my_errno=HA_ERR_CRASHED;
	    return 0;
	  }
	  continue;
	}
	if (keyseg->flag & HA_NULL_PART)
721
	{
bk@work.mysql.com's avatar
bk@work.mysql.com committed
722
	  key++;				/* Skipp null marker*/
723 724
	  start++;
	}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749

	get_key_length(rest_length,page);
	tot_length=rest_length+length;

	/* If the stored length has changed, we must move the key */
	if (tot_length >= 255 && *start != 255)
	{
	  /* length prefix changed from a length of one to a length of 3 */
	  bmove_upp((char*) key+length+3,(char*) key+length+1,length);
	  *key=255;
	  mi_int2store(key+1,tot_length);
	  key+=3+length;
	}
	else if (tot_length < 255 && *start == 255)
	{
	  bmove(key+1,key+3,length);
	  *key=tot_length;
	  key+=1+length;
	}
	else
	{
	  store_key_length_inc(key,tot_length);
	  key+=length;
	}
	memcpy(key,page,rest_length);
750 751 752
	page+=rest_length;
	key+=rest_length;
	continue;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
753 754 755
      }
      else
      {
756 757 758 759 760 761 762 763 764
        if (keyseg->flag & HA_NULL_PART)
        {
          if (!length--)                        /* Null part */
          {
            *key++=0;
            continue;
          }
          *key++=1;                             /* Not null */
        }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
765 766 767
      }
      if (length > (uint) keyseg->length)
      {
768 769 770 771 772
        DBUG_PRINT("error",("Found too long packed key: %d of %d at %lx",
                            length, keyseg->length, *page_pos));
        DBUG_DUMP("key",(char*) *page_pos,16);
        my_errno=HA_ERR_CRASHED;
        return 0;                               /* Error */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
773 774 775 776 777 778 779
      }
      store_key_length_inc(key,length);
    }
    else
    {
      if (keyseg->flag & HA_NULL_PART)
      {
780 781
        if (!(*key++ = *page++))
          continue;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
782 783
      }
      if (keyseg->flag &
784
          (HA_VAR_LENGTH | HA_BLOB_PART | HA_SPACE_PACK))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
785
      {
786 787 788
        uchar *tmp=page;
        get_key_length(length,tmp);
        length+=(uint) (tmp-page);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
789 790
      }
      else
791
        length=keyseg->length;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807
    }
    memcpy((byte*) key,(byte*) page,(size_t) length);
    key+=length;
    page+=length;
  }
  length=keyseg->length+nod_flag;
  bmove((byte*) key,(byte*) page,length);
  *page_pos= page+length;
  return ((uint) (key-start_key)+keyseg->length);
} /* _mi_get_pack_key */



/* key that is packed relatively to previous */

uint _mi_get_binary_pack_key(register MI_KEYDEF *keyinfo, uint nod_flag,
808
                             register uchar **page_pos, register uchar *key)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
809
{
810
  reg1 HA_KEYSEG *keyseg;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
811 812 813 814 815 816 817 818 819 820 821 822
  uchar *start_key,*page=*page_pos,*page_end,*from,*from_end;
  uint length,tmp;

  page_end=page+MI_MAX_KEY_BUFF+1;
  start_key=key;

  get_key_length(length,page);
  if (length)
  {
    if (length > keyinfo->maxlength)
    {
      DBUG_PRINT("error",("Found too long binary packed key: %d of %d at %lx",
823
                          length, keyinfo->maxlength, *page_pos));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
824 825
      DBUG_DUMP("key",(char*) *page_pos,16);
      my_errno=HA_ERR_CRASHED;
826
      return 0;                                 /* Wrong key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
827 828 829 830 831
    }
    from=key;  from_end=key+length;
  }
  else
  {
832
    from=page; from_end=page_end;               /* Not packed key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
833 834 835 836 837 838 839 840 841 842 843 844 845
  }

  /*
    The trouble is that key is split in two parts:
     The first part is in from ...from_end-1.
     The second part starts at page
  */
  for (keyseg=keyinfo->seg ; keyseg->type ;keyseg++)
  {
    if (keyseg->flag & HA_NULL_PART)
    {
      if (from == from_end) { from=page;  from_end=page_end; }
      if (!(*key++ = *from++))
846
        continue;                               /* Null part */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
847 848 849 850 851 852 853
    }
    if (keyseg->flag & (HA_VAR_LENGTH | HA_BLOB_PART | HA_SPACE_PACK))
    {
      /* Get length of dynamic length key part */
      if (from == from_end) { from=page;  from_end=page_end; }
      if ((length= (*key++ = *from++)) == 255)
      {
854 855 856 857
        if (from == from_end) { from=page;  from_end=page_end; }
        length= (uint) ((*key++ = *from++)) << 8;
        if (from == from_end) { from=page;  from_end=page_end; }
        length+= (uint) ((*key++ = *from++));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
858 859 860 861 862 863 864
      }
    }
    else
      length=keyseg->length;

    if ((tmp=(uint) (from_end-from)) <= length)
    {
865
      key+=tmp;                                 /* Use old key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
866 867 868 869 870 871 872 873 874 875
      length-=tmp;
      from=page; from_end=page_end;
    }
    memcpy((byte*) key,(byte*) from,(size_t) length);
    key+=length;
    from+=length;
  }
  length=keyseg->length+nod_flag;
  if ((tmp=(uint) (from_end-from)) <= length)
  {
876
    memcpy(key+tmp,page,length-tmp);            /* Get last part of key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
877 878 879 880 881 882 883 884
    *page_pos= page+length-tmp;
  }
  else
  {
    if (from_end != page_end)
    {
      DBUG_PRINT("error",("Error when unpacking key"));
      my_errno=HA_ERR_CRASHED;
885
      return 0;                                 /* Error */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
886 887 888 889 890 891 892 893
    }
    memcpy((byte*) key,(byte*) from,(size_t) length);
    *page_pos= from+length;
  }
  return((uint) (key-start_key)+keyseg->length);
}


894 895
        /* Get key at position without knowledge of previous key */
        /* Returns pointer to next key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
896 897

uchar *_mi_get_key(MI_INFO *info, MI_KEYDEF *keyinfo, uchar *page,
898
                   uchar *key, uchar *keypos, uint *return_key_length)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
899 900 901 902 903 904 905 906 907 908 909 910 911
{
  uint nod_flag;
  DBUG_ENTER("_mi_get_key");

  nod_flag=mi_test_if_nod(page);
  if (! (keyinfo->flag & (HA_VAR_LENGTH_KEY | HA_BINARY_PACK_KEY)))
  {
    bmove((byte*) key,(byte*) keypos,keyinfo->keylength+nod_flag);
    DBUG_RETURN(keypos+keyinfo->keylength+nod_flag);
  }
  else
  {
    page+=2+nod_flag;
912
    key[0]=0;                                   /* safety */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
913 914 915 916 917
    while (page <= keypos)
    {
      *return_key_length=(*keyinfo->get_key)(keyinfo,nod_flag,&page,key);
      if (*return_key_length == 0)
      {
918 919
        my_errno=HA_ERR_CRASHED;
        DBUG_RETURN(0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
920 921 922 923 924 925 926 927
      }
    }
  }
  DBUG_PRINT("exit",("page: %lx  length: %d",page,*return_key_length));
  DBUG_RETURN(page);
} /* _mi_get_key */


928 929
        /* Get key at position without knowledge of previous key */
        /* Returns 0 if ok */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
930 931

static my_bool _mi_get_prev_key(MI_INFO *info, MI_KEYDEF *keyinfo, uchar *page,
932 933
                                uchar *key, uchar *keypos,
                                uint *return_key_length)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
934 935 936 937 938 939 940 941 942
{
  uint nod_flag;
  DBUG_ENTER("_mi_get_prev_key");

  nod_flag=mi_test_if_nod(page);
  if (! (keyinfo->flag & (HA_VAR_LENGTH_KEY | HA_BINARY_PACK_KEY)))
  {
    *return_key_length=keyinfo->keylength;
    bmove((byte*) key,(byte*) keypos- *return_key_length-nod_flag,
943
          *return_key_length);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
944 945 946 947 948
    DBUG_RETURN(0);
  }
  else
  {
    page+=2+nod_flag;
949
    key[0]=0;                                   /* safety */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
950 951 952 953 954
    while (page < keypos)
    {
      *return_key_length=(*keyinfo->get_key)(keyinfo,nod_flag,&page,key);
      if (*return_key_length == 0)
      {
955 956
        my_errno=HA_ERR_CRASHED;
        DBUG_RETURN(1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
957 958 959 960 961 962 963 964
      }
    }
  }
  DBUG_RETURN(0);
} /* _mi_get_key */



965 966
        /* Get last key from key-page */
        /* Return pointer to where key starts */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
967 968

uchar *_mi_get_last_key(MI_INFO *info, MI_KEYDEF *keyinfo, uchar *page,
969
                        uchar *lastkey, uchar *endpos, uint *return_key_length)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993
{
  uint nod_flag;
  uchar *lastpos;
  DBUG_ENTER("_mi_get_last_key");
  DBUG_PRINT("enter",("page: %lx  endpos:  %lx",page,endpos));

  nod_flag=mi_test_if_nod(page);
  if (! (keyinfo->flag & (HA_VAR_LENGTH_KEY | HA_BINARY_PACK_KEY)))
  {
    lastpos=endpos-keyinfo->keylength-nod_flag;
    *return_key_length=keyinfo->keylength;
    if (lastpos > page)
      bmove((byte*) lastkey,(byte*) lastpos,keyinfo->keylength+nod_flag);
  }
  else
  {
    lastpos=(page+=2+nod_flag);
    lastkey[0]=0;
    while (page < endpos)
    {
      lastpos=page;
      *return_key_length=(*keyinfo->get_key)(keyinfo,nod_flag,&page,lastkey);
      if (*return_key_length == 0)
      {
994 995 996
        DBUG_PRINT("error",("Couldn't find last key:  page: %lx",page));
        my_errno=HA_ERR_CRASHED;
        DBUG_RETURN(0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
997 998 999 1000 1001 1002 1003 1004
      }
    }
  }
  DBUG_PRINT("exit",("lastpos: %lx  length: %d",lastpos,*return_key_length));
  DBUG_RETURN(lastpos);
} /* _mi_get_last_key */


1005
        /* Calculate length of key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1006 1007 1008

uint _mi_keylength(MI_KEYDEF *keyinfo, register uchar *key)
{
1009
  reg1 HA_KEYSEG *keyseg;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
  uchar *start;

  if (! (keyinfo->flag & (HA_VAR_LENGTH_KEY | HA_BINARY_PACK_KEY)))
    return (keyinfo->keylength);

  start=key;
  for (keyseg=keyinfo->seg ; keyseg->type ; keyseg++)
  {
    if (keyseg->flag & HA_NULL_PART)
      if (!*key++)
1020
        continue;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
    if (keyseg->flag & (HA_SPACE_PACK | HA_BLOB_PART | HA_VAR_LENGTH))
    {
      uint length;
      get_key_length(length,key);
      key+=length;
    }
    else
      key+= keyseg->length;
  }
  return((uint) (key-start)+keyseg->length);
} /* _mi_keylength */


1034
        /* Move a key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1035 1036 1037 1038 1039

uchar *_mi_move_key(MI_KEYDEF *keyinfo, uchar *to, uchar *from)
{
  reg1 uint length;
  memcpy((byte*) to, (byte*) from,
1040
         (size_t) (length=_mi_keylength(keyinfo,from)));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1041 1042 1043
  return to+length;
}

1044 1045
        /* Find next/previous record with same key */
        /* This can't be used when database is touched after last read */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1046 1047

int _mi_search_next(register MI_INFO *info, register MI_KEYDEF *keyinfo,
1048
                    uchar *key, uint key_length, uint nextflag, my_off_t pos)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1049 1050 1051 1052 1053 1054
{
  int error;
  uint nod_flag;
  uchar lastkey[MI_MAX_KEY_BUFF];
  DBUG_ENTER("_mi_search_next");
  DBUG_PRINT("enter",("nextflag: %d  lastpos: %ld  int_keypos: %lx",
1055
                       nextflag,(long) info->lastpos,info->int_keypos));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1056 1057 1058
  DBUG_EXECUTE("key",_mi_print_key(DBUG_FILE,keyinfo->seg,key,key_length););

  /* Force full read if we are at last key or if we are not on a leaf
1059 1060 1061 1062 1063
     and the key tree has changed since we used it last time
     Note that even if the key tree has changed since last read, we can use
     the last read data from the leaf if we haven't used the buffer for
     something else.
  */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1064 1065 1066 1067 1068

  if (((nextflag & SEARCH_BIGGER) && info->int_keypos >= info->int_maxpos) ||
      info->page_changed ||
      (info->int_keytree_version != keyinfo->version &&
       (info->int_nod_flag || info->buff_used)))
1069
    DBUG_RETURN(_mi_search(info,keyinfo,key, USE_WHOLE_KEY,
1070
                           nextflag | SEARCH_SAVE_BUFF, pos));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1071 1072 1073 1074

  if (info->buff_used)
  {
    if (!_mi_fetch_keypage(info,keyinfo,info->last_search_keypage,
1075
                           info->buff,0))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1076 1077 1078 1079 1080 1081 1082
      DBUG_RETURN(-1);
    info->buff_used=0;
  }

  /* Last used buffer is in info->buff */
  nod_flag=mi_test_if_nod(info->buff);

1083
  if (nextflag & SEARCH_BIGGER)                                 /* Next key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1084 1085 1086 1087
  {
    my_off_t tmp_pos=_mi_kpos(nod_flag,info->int_keypos);
    if (tmp_pos != HA_OFFSET_ERROR)
    {
1088
      if ((error=_mi_search(info,keyinfo,key, USE_WHOLE_KEY,
1089 1090
                            nextflag | SEARCH_SAVE_BUFF, tmp_pos)) <=0)
        DBUG_RETURN(error);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1091
    }
1092
    memcpy(lastkey,key,key_length);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1093
    if (!(info->lastkey_length=(*keyinfo->get_key)(keyinfo,nod_flag,
1094
                                                   &info->int_keypos,lastkey)))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1095 1096
      DBUG_RETURN(-1);
  }
1097
  else                                                  /* Previous key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1098 1099 1100 1101
  {
    uint length;
    /* Find start of previous key */
    info->int_keypos=_mi_get_last_key(info,keyinfo,info->buff,lastkey,
1102
                                      info->int_keypos, &length);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1103 1104 1105
    if (!info->int_keypos)
      DBUG_RETURN(-1);
    if (info->int_keypos == info->buff+2)
1106
      DBUG_RETURN(_mi_search(info,keyinfo,key, USE_WHOLE_KEY,
1107
                             nextflag | SEARCH_SAVE_BUFF, pos));
1108 1109
    if ((error=_mi_search(info,keyinfo,key, USE_WHOLE_KEY,
			  nextflag | SEARCH_SAVE_BUFF,
1110
                          _mi_kpos(nod_flag,info->int_keypos))) <= 0)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1111 1112
      DBUG_RETURN(error);

1113
    /* QQ: We should be able to optimize away the following call */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1114
    if (! _mi_get_last_key(info,keyinfo,info->buff,lastkey,
1115
                           info->int_keypos,&info->lastkey_length))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1116 1117 1118 1119
      DBUG_RETURN(-1);
  }
  memcpy(info->lastkey,lastkey,info->lastkey_length);
  info->lastpos=_mi_dpos(info,0,info->lastkey+info->lastkey_length);
1120
  DBUG_PRINT("exit",("found key at %lu",(ulong) info->lastpos));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1121 1122 1123 1124
  DBUG_RETURN(0);
} /* _mi_search_next */


1125 1126
        /* Search after position for the first row in an index */
        /* This is stored in info->lastpos */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1127 1128

int _mi_search_first(register MI_INFO *info, register MI_KEYDEF *keyinfo,
1129
                     register my_off_t pos)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
{
  uint nod_flag;
  uchar *page;
  DBUG_ENTER("_mi_search_first");

  if (pos == HA_OFFSET_ERROR)
  {
    my_errno=HA_ERR_KEY_NOT_FOUND;
    info->lastpos= HA_OFFSET_ERROR;
    DBUG_RETURN(-1);
  }

  do
  {
    if (!_mi_fetch_keypage(info,keyinfo,pos,info->buff,0))
    {
      info->lastpos= HA_OFFSET_ERROR;
      DBUG_RETURN(-1);
    }
    nod_flag=mi_test_if_nod(info->buff);
    page=info->buff+2+nod_flag;
  } while ((pos=_mi_kpos(nod_flag,page)) != HA_OFFSET_ERROR);

  info->lastkey_length=(*keyinfo->get_key)(keyinfo,nod_flag,&page,
1154
                                           info->lastkey);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1155 1156 1157 1158 1159 1160 1161
  info->int_keypos=page; info->int_maxpos=info->buff+mi_getint(info->buff)-1;
  info->int_nod_flag=nod_flag;
  info->int_keytree_version=keyinfo->version;
  info->last_search_keypage=info->last_keypage;
  info->page_changed=info->buff_used=0;
  info->lastpos=_mi_dpos(info,0,info->lastkey+info->lastkey_length);

1162
  DBUG_PRINT("exit",("found key at %ld",(ulong) info->lastpos));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1163 1164 1165 1166
  DBUG_RETURN(0);
} /* _mi_search_first */


1167 1168
        /* Search after position for the last row in an index */
        /* This is stored in info->lastpos */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1169 1170

int _mi_search_last(register MI_INFO *info, register MI_KEYDEF *keyinfo,
1171
                    register my_off_t pos)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1172 1173 1174 1175 1176 1177 1178
{
  uint nod_flag;
  uchar *buff,*page;
  DBUG_ENTER("_mi_search_last");

  if (pos == HA_OFFSET_ERROR)
  {
1179
    my_errno=HA_ERR_KEY_NOT_FOUND;                      /* Didn't find key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
    info->lastpos= HA_OFFSET_ERROR;
    DBUG_RETURN(-1);
  }

  buff=info->buff;
  do
  {
    if (!_mi_fetch_keypage(info,keyinfo,pos,buff,0))
    {
      info->lastpos= HA_OFFSET_ERROR;
      DBUG_RETURN(-1);
    }
    page= buff+mi_getint(buff);
    nod_flag=mi_test_if_nod(buff);
  } while ((pos=_mi_kpos(nod_flag,page)) != HA_OFFSET_ERROR);

  if (!_mi_get_last_key(info,keyinfo,buff,info->lastkey,page,
1197
                        &info->lastkey_length))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1198 1199 1200 1201 1202 1203 1204 1205
    DBUG_RETURN(-1);
  info->lastpos=_mi_dpos(info,0,info->lastkey+info->lastkey_length);
  info->int_keypos=info->int_maxpos=page;
  info->int_nod_flag=nod_flag;
  info->int_keytree_version=keyinfo->version;
  info->last_search_keypage=info->last_keypage;
  info->page_changed=info->buff_used=0;

1206
  DBUG_PRINT("exit",("found key at %lu",(ulong) info->lastpos));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
  DBUG_RETURN(0);
} /* _mi_search_last */



/****************************************************************************
**
** Functions to store and pack a key in a page
**
** mi_calc_xx_key_length takes the following arguments:
1217 1218 1219 1220 1221 1222
**  nod_flag    If nod: Length of nod-pointer
**  next_key    Position to pos after the new key in buffer
**  org_key     Key that was before the next key in buffer
**  prev_key    Last key before current key
**  key         Key that will be stored
**  s_temp      Information how next key will be packed
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1223 1224 1225 1226 1227 1228
****************************************************************************/

/* Static length key */

int
_mi_calc_static_key_length(MI_KEYDEF *keyinfo,uint nod_flag,
1229 1230 1231 1232
                           uchar *next_pos  __attribute__((unused)),
                           uchar *org_key  __attribute__((unused)),
                           uchar *prev_key __attribute__((unused)),
                           uchar *key, MI_KEY_PARAM *s_temp)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1233 1234 1235 1236 1237 1238 1239 1240 1241
{
  s_temp->key=key;
  return (int) (s_temp->totlength=keyinfo->keylength+nod_flag);
}

/* Variable length key */

int
_mi_calc_var_key_length(MI_KEYDEF *keyinfo,uint nod_flag,
1242 1243 1244 1245
                        uchar *next_pos  __attribute__((unused)),
                        uchar *org_key  __attribute__((unused)),
                        uchar *prev_key __attribute__((unused)),
                        uchar *key, MI_KEY_PARAM *s_temp)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257
{
  s_temp->key=key;
  return (int) (s_temp->totlength=_mi_keylength(keyinfo,key)+nod_flag);
}

/*
  length of key with a variable length first segment which is prefix
  compressed (myisamchk reports 'packed + stripped')

  Keys are compressed the following way:

  If the max length of first key segment <= 127 characters the prefix is
1258
  1 byte else it's 2 byte
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1259

1260 1261 1262 1263
  prefix byte    The high bit is set if this is a prefix for the prev key
  length         Packed length if the previous was a prefix byte
  [length]       Length character of data
  next-key-seg   Next key segments
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1264 1265 1266 1267 1268 1269 1270 1271

  If the first segment can have NULL:
  The length is 0 for NULLS and 1+length for not null columns.

*/

int
_mi_calc_var_pack_key_length(MI_KEYDEF *keyinfo,uint nod_flag,uchar *next_key,
1272 1273
                             uchar *org_key, uchar *prev_key, uchar *key,
                             MI_KEY_PARAM *s_temp)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1274
{
1275
  reg1 HA_KEYSEG *keyseg;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289
  int length;
  uint key_length,ref_length,org_key_length=0,
       length_pack,new_key_length,diff_flag,pack_marker;
  uchar *start,*end,*key_end,*sort_order;
  bool same_length;

  length_pack=s_temp->ref_length=s_temp->n_ref_length=s_temp->n_length=0;
  same_length=0; keyseg=keyinfo->seg;
  key_length=_mi_keylength(keyinfo,key)+nod_flag;

  sort_order=0;
  if ((keyinfo->flag & HA_FULLTEXT) &&
      ((keyseg->type == HA_KEYTYPE_TEXT) ||
       (keyseg->type == HA_KEYTYPE_VARTEXT)) &&
1290
      !use_strnxfrm(keyseg->charset))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313
    sort_order=keyseg->charset->sort_order;

  /* diff flag contains how many bytes is needed to pack key */
  if (keyseg->length >= 127)
  {
    diff_flag=2;
    pack_marker=32768;
  }
  else
  {
    diff_flag= 1;
    pack_marker=128;
  }
  s_temp->pack_marker=pack_marker;

  /* Handle the case that the first part have NULL values */
  if (keyseg->flag & HA_NULL_PART)
  {
    if (!*key++)
    {
      s_temp->key=key;
      s_temp->ref_length=s_temp->key_length=0;
      s_temp->totlength=key_length-1+diff_flag;
1314
      s_temp->next_key_pos=0;                   /* No next key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1315 1316 1317
      return (s_temp->totlength);
    }
    s_temp->store_not_null=1;
1318
    key_length--;                               /* We don't store NULL */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1319
    if (prev_key && !*prev_key++)
1320
      org_key=prev_key=0;                       /* Can't pack against prev */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1321
    else if (org_key)
1322
      org_key++;                                /* Skipp NULL */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337
  }
  else
    s_temp->store_not_null=0;
  s_temp->prev_key=org_key;

  /* The key part will start with a packed length */

  get_key_pack_length(new_key_length,length_pack,key);
  end=key_end= key+ new_key_length;
  start=key;

  /* Calc how many characters are identical between this and the prev. key */
  if (prev_key)
  {
    get_key_length(org_key_length,prev_key);
1338
    s_temp->prev_key=prev_key;          /* Pointer at data */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1339 1340 1341 1342
    /* Don't use key-pack if length == 0 */
    if (new_key_length && new_key_length == org_key_length)
      same_length=1;
    else if (new_key_length > org_key_length)
1343
      end=key + org_key_length;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1344

1345
    if (sort_order)                             /* SerG */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1346 1347 1348 1349 1350 1351 1352 1353 1354 1355
    {
      while (key < end && sort_order[*key] == sort_order[*prev_key])
      {
        key++; prev_key++;
      }
    }
    else
    {
      while (key < end && *key == *prev_key)
      {
1356
        key++; prev_key++;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370
      }
    }
  }

  s_temp->key=key;
  s_temp->key_length= (uint) (key_end-key);

  if (same_length && key == key_end)
  {
    /* identical variable length key */
    s_temp->ref_length= pack_marker;
    length=(int) key_length-(int) (key_end-start)-length_pack;
    length+= diff_flag;
    if (next_key)
1371 1372
    {                                           /* Can't combine with next */
      s_temp->n_length= *next_key;              /* Needed by _mi_store_key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1373 1374 1375 1376 1377 1378
      next_key=0;
    }
  }
  else
  {
    if (start != key)
1379
    {                                           /* Starts as prev key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1380 1381 1382 1383 1384 1385 1386 1387 1388 1389
      ref_length= (uint) (key-start);
      s_temp->ref_length= ref_length + pack_marker;
      length= (int) (key_length - ref_length);

      length-= length_pack;
      length+= diff_flag;
      length+= ((new_key_length-ref_length) >= 255) ? 3 : 1;/* Rest_of_key */
    }
    else
    {
1390
      s_temp->key_length+=s_temp->store_not_null;       /* If null */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1391 1392 1393 1394 1395 1396
      length= key_length - length_pack+ diff_flag;
    }
  }
  s_temp->totlength=(uint) length;
  s_temp->prev_length=0;
  DBUG_PRINT("test",("tot_length: %d  length: %d  uniq_key_length: %d",
1397
                     key_length,length,s_temp->key_length));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1398

1399
        /* If something after that hasn't length=0, test if we can combine */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414
  if ((s_temp->next_key_pos=next_key))
  {
    uint packed,n_length;

    packed = *next_key & 128;
    if (diff_flag == 2)
    {
      n_length= mi_uint2korr(next_key) & 32767; /* Length of next key */
      next_key+=2;
    }
    else
      n_length= *next_key++ & 127;
    if (!packed)
      n_length-= s_temp->store_not_null;

1415
    if (n_length || packed)             /* Don't pack 0 length keys */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1416 1417 1418 1419 1420
    {
      uint next_length_pack, new_ref_length=s_temp->ref_length;

      if (packed)
      {
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495
        /* If first key and next key is packed (only on delete) */
        if (!prev_key && org_key)
        {
          get_key_length(org_key_length,org_key);
          key=start;
          if (sort_order)                       /* SerG */
          {
            while (key < end && sort_order[*key] == sort_order[*org_key])
            {
              key++; org_key++;
            }
          }
          else
          {
            while (key < end && *key == *org_key)
            {
              key++; org_key++;
            }
          }
          if ((new_ref_length= (uint) (key - start)))
            new_ref_length+=pack_marker;
        }

        if (!n_length)
        {
          /*
            We put a different key between two identical variable length keys
            Extend next key to have same prefix as this key
          */
          if (new_ref_length)                   /* prefix of previus key */
          {                                     /* make next key longer */
            s_temp->part_of_prev_key= new_ref_length;
            s_temp->prev_length=          org_key_length -
              (new_ref_length-pack_marker);
            s_temp->n_ref_length= s_temp->n_length= s_temp->prev_length;
            n_length=             get_pack_length(s_temp->prev_length);
            s_temp->prev_key+=    (new_ref_length - pack_marker);
            length+=              s_temp->prev_length + n_length;
          }
          else
          {                                     /* Can't use prev key */
            s_temp->part_of_prev_key=0;
            s_temp->prev_length= org_key_length;
            s_temp->n_ref_length=s_temp->n_length=  org_key_length;
            length+=           org_key_length;
            /* +get_pack_length(org_key_length); */
          }
          return (int) length;
        }

        ref_length=n_length;
        get_key_pack_length(n_length,next_length_pack,next_key);

        /* Test if new keys has fewer characters that match the previous key */
        if (!new_ref_length)
        {                                       /* Can't use prev key */
          s_temp->part_of_prev_key=     0;
          s_temp->prev_length=          ref_length;
          s_temp->n_ref_length= s_temp->n_length= n_length+ref_length;
          /* s_temp->prev_key+=         get_pack_length(org_key_length); */
          return (int) length+ref_length-next_length_pack;
        }
        if (ref_length+pack_marker > new_ref_length)
        {
          uint new_pack_length=new_ref_length-pack_marker;
          /* We must copy characters from the original key to the next key */
          s_temp->part_of_prev_key= new_ref_length;
          s_temp->prev_length=      ref_length - new_pack_length;
          s_temp->n_ref_length=s_temp->n_length=n_length + s_temp->prev_length;
          s_temp->prev_key+=        new_pack_length;
/*                                  +get_pack_length(org_key_length); */
          length= length-get_pack_length(ref_length)+
            get_pack_length(new_pack_length);
          return (int) length + s_temp->prev_length;
        }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1496 1497 1498
      }
      else
      {
1499 1500 1501
        /* Next key wasn't a prefix of previous key */
        ref_length=0;
        next_length_pack=0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1502 1503 1504 1505
     }
      DBUG_PRINT("test",("length: %d  next_key: %lx",length,next_key));

      {
1506 1507 1508 1509 1510 1511
        uint tmp_length;
        key=(start+=ref_length);
        if (key+n_length < key_end)             /* Normalize length based */
          key_end=key+n_length;
        if (sort_order)                         /* SerG */
        {
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1512
          while (key < key_end && sort_order[*key] ==
1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532
                 sort_order[*next_key])
          {
            key++; next_key++;
          }
        }
        else
        {
          while (key < key_end && *key == *next_key)
          {
            key++; next_key++;
          }
        }
        if (!(tmp_length=(uint) (key-start)))
        {                                       /* Key can't be re-packed */
          s_temp->next_key_pos=0;
          return length;
        }
        ref_length+=tmp_length;
        n_length-=tmp_length;
        length-=tmp_length+next_length_pack;    /* We gained these chars */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1533 1534 1535
      }
      if (n_length == 0)
      {
1536
        s_temp->n_ref_length=pack_marker;       /* Same as prev key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1537 1538 1539
      }
      else
      {
1540 1541 1542
        s_temp->n_ref_length=ref_length | pack_marker;
        length+= get_pack_length(n_length);
        s_temp->n_length=n_length;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553
      }
    }
  }
  return length;
}


/* Length of key which is prefix compressed */

int
_mi_calc_bin_pack_key_length(MI_KEYDEF *keyinfo,uint nod_flag,uchar *next_key,
1554 1555
                             uchar *org_key, uchar *prev_key, uchar *key,
                             MI_KEY_PARAM *s_temp)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1556 1557 1558 1559 1560 1561
{
  uint length,key_length,ref_length;

  s_temp->totlength=key_length=_mi_keylength(keyinfo,key)+nod_flag;
  s_temp->key=key;
  s_temp->prev_key=org_key;
1562
  if (prev_key)                                 /* If not first key in block */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580
  {
    /* pack key against previous key */
    /*
      As keys may be identical when running a sort in myisamchk, we
      have to guard against the case where keys may be identical
    */
    uchar *end;
    end=key+key_length;
    for ( ; *key == *prev_key && key < end; key++,prev_key++) ;
    s_temp->ref_length= ref_length=(uint) (key-s_temp->key);
    length=key_length - ref_length + get_pack_length(ref_length);
  }
  else
  {
    /* No previous key */
    s_temp->ref_length=ref_length=0;
    length=key_length+1;
  }
1581
  if ((s_temp->next_key_pos=next_key))          /* If another key after */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1582 1583 1584 1585 1586 1587 1588 1589 1590 1591
  {
    /* pack key against next key */
    uint next_length,next_length_pack;
    get_key_pack_length(next_length,next_length_pack,next_key);

    /* If first key and next key is packed (only on delete) */
    if (!prev_key && org_key && next_length)
    {
      uchar *end;
      for (key= s_temp->key, end=key+next_length ;
1592 1593
           *key == *org_key && key < end;
           key++,org_key++) ;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1594 1595 1596 1597 1598 1599
      ref_length= (uint) (key - s_temp->key);
    }

    if (next_length > ref_length)
    {
      /* We put a key with different case between two keys with the same prefix
1600 1601
         Extend next key to have same prefix as
         this key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1602 1603 1604 1605
      s_temp->n_ref_length= ref_length;
      s_temp->prev_length=  next_length-ref_length;
      s_temp->prev_key+=    ref_length;
      return (int) (length+ s_temp->prev_length - next_length_pack +
1606
                    get_pack_length(ref_length));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1607 1608 1609 1610 1611 1612 1613
    }
    /* Check how many characters are identical to next key */
    key= s_temp->key+next_length;
    while (*key++ == *next_key++) ;
    if ((ref_length= (uint) (key - s_temp->key)-1) == next_length)
    {
      s_temp->next_key_pos=0;
1614
      return length;                            /* can't pack next key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1615 1616 1617 1618
    }
    s_temp->prev_length=0;
    s_temp->n_ref_length=ref_length;
    return (int) (length-(ref_length - next_length) - next_length_pack +
1619
                  get_pack_length(ref_length));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631
  }
  return (int) length;
}


/*
** store a key packed with _mi_calc_xxx_key_length in page-buffert
*/

/* store key without compression */

void _mi_store_static_key(MI_KEYDEF *keyinfo __attribute__((unused)),
1632 1633
                          register uchar *key_pos,
                          register MI_KEY_PARAM *s_temp)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646
{
  memcpy((byte*) key_pos,(byte*) s_temp->key,(size_t) s_temp->totlength);
}


/* store variable length key with prefix compression */

#define store_pack_length(test,pos,length) { \
  if (test) { *((pos)++) = (uchar) (length); } else \
  { *((pos)++) = (uchar) ((length) >> 8); *((pos)++) = (uchar) (length);  } }


void _mi_store_var_pack_key(MI_KEYDEF *keyinfo  __attribute__((unused)),
1647 1648
                            register uchar *key_pos,
                            register MI_KEY_PARAM *s_temp)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668
{
  uint length;
  uchar *start;

  start=key_pos;

  if (s_temp->ref_length)
  {
    /* Packed against previous key */
    store_pack_length(s_temp->pack_marker == 128,key_pos,s_temp->ref_length);
    /* If not same key after */
    if (s_temp->ref_length != s_temp->pack_marker)
      store_key_length_inc(key_pos,s_temp->key_length);
  }
  else
  {
    /* Not packed against previous key */
    store_pack_length(s_temp->pack_marker == 128,key_pos,s_temp->key_length);
  }
  bmove((byte*) key_pos,(byte*) s_temp->key,
1669
        (length=s_temp->totlength-(uint) (key_pos-start)));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1670

1671
  if (!s_temp->next_key_pos)                    /* No following key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1672 1673 1674 1675 1676 1677 1678 1679 1680
    return;
  key_pos+=length;

  if (s_temp->prev_length)
  {
    /* Extend next key because new key didn't have same prefix as prev key */
    if (s_temp->part_of_prev_key)
    {
      store_pack_length(s_temp->pack_marker == 128,key_pos,
1681
                        s_temp->part_of_prev_key);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1682 1683 1684 1685 1686 1687
      store_key_length_inc(key_pos,s_temp->n_length);
    }
    else
    {
      s_temp->n_length+= s_temp->store_not_null;
      store_pack_length(s_temp->pack_marker == 128,key_pos,
1688
                        s_temp->n_length);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1689 1690 1691 1692 1693 1694 1695
    }
    memcpy(key_pos, s_temp->prev_key, s_temp->prev_length);
  }
  else if (s_temp->n_ref_length)
  {
    store_pack_length(s_temp->pack_marker == 128,key_pos,s_temp->n_ref_length);
    if (s_temp->n_ref_length == s_temp->pack_marker)
1696
      return;                                   /* Identical key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709
    store_key_length(key_pos,s_temp->n_length);
  }
  else
  {
    s_temp->n_length+= s_temp->store_not_null;
    store_pack_length(s_temp->pack_marker == 128,key_pos,s_temp->n_length);
  }
}


/* variable length key with prefix compression */

void _mi_store_bin_pack_key(MI_KEYDEF *keyinfo  __attribute__((unused)),
1710 1711
                            register uchar *key_pos,
                            register MI_KEY_PARAM *s_temp)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1712 1713 1714
{
  store_key_length_inc(key_pos,s_temp->ref_length);
  memcpy((char*) key_pos,(char*) s_temp->key+s_temp->ref_length,
1715
          (size_t) s_temp->totlength-s_temp->ref_length);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1716 1717 1718 1719 1720

  if (s_temp->next_key_pos)
  {
    key_pos+=(uint) (s_temp->totlength-s_temp->ref_length);
    store_key_length_inc(key_pos,s_temp->n_ref_length);
1721
    if (s_temp->prev_length)                    /* If we must extend key */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1722 1723 1724 1725 1726
    {
      memcpy(key_pos,s_temp->prev_key,s_temp->prev_length);
    }
  }
}