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

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. /* Read record based on a key */
  14. /*
  15.  *    HA_READ_KEY_EXACT   => SEARCH_BIGGER
  16.  *    HA_READ_KEY_OR_NEXT => SEARCH_BIGGER
  17.  *    HA_READ_AFTER_KEY   => SEARCH_BIGGER
  18.  *    HA_READ_PREFIX      => SEARCH_BIGGER
  19.  *    HA_READ_KEY_OR_PREV => SEARCH_SMALLER
  20.  *    HA_READ_BEFORE_KEY  => SEARCH_SMALLER
  21.  *    HA_READ_PREFIX_LAST => SEARCH_SMALLER
  22.  */
  23. #include "mymrgdef.h"
  24. /* todo: we could store some additional info to speedup lookups:
  25.          column (key, keyseg) can be constant per table
  26.          it can also be increasing (table1.val > table2.val > ...),
  27.          or decreasing, <=, >=, etc.
  28.                                                                    SerG
  29. */
  30. int myrg_rkey(MYRG_INFO *info,byte *record,int inx, const byte *key,
  31.             uint key_len, enum ha_rkey_function search_flag)
  32. {
  33.   byte *key_buff;
  34.   uint pack_key_length;
  35.   MYRG_TABLE *table;
  36.   MI_INFO *mi;
  37.   int err;
  38.   byte *buf=((search_flag == HA_READ_KEY_EXACT) ? record: 0);
  39.   LINT_INIT(key_buff);
  40.   LINT_INIT(pack_key_length);
  41.   if (_myrg_init_queue(info,inx,search_flag))
  42.     return my_errno;
  43.   for (table=info->open_tables ; table != info->end_table ; table++)
  44.   {
  45.     mi=table->table;
  46.     if (table == info->open_tables)
  47.     {
  48.       err=mi_rkey(mi,buf,inx,key,key_len,search_flag);
  49.       key_buff=(byte*) mi->lastkey+mi->s->base.max_key_length;
  50.       pack_key_length=mi->last_rkey_length;
  51.     }
  52.     else
  53.     {
  54.       err=_mi_rkey(mi,buf,inx,key_buff,pack_key_length,search_flag,FALSE);
  55.     }
  56.     info->last_used_table=table+1;
  57.     if (err)
  58.     {
  59.       if (err == HA_ERR_KEY_NOT_FOUND)
  60. continue;
  61.       return err;
  62.     }
  63.     /* adding to queue */
  64.     queue_insert(&(info->by_key),(byte *)table);
  65.     /* if looking for KEY_EXACT, return first matched now */
  66.     if (buf)
  67.     {
  68.       info->current_table=table;
  69.       return 0;
  70.     }
  71.   }
  72.   if (!info->by_key.elements)
  73.     return HA_ERR_KEY_NOT_FOUND;
  74.   mi=(info->current_table=(MYRG_TABLE *)queue_top(&(info->by_key)))->table;
  75.   return mi_rrnd(mi,record,mi->lastpos);
  76. }