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

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. /* Read and write key blocks */
  17. #include "myisamdef.h"
  18. #ifdef __WIN__
  19. #include <errno.h>
  20. #endif
  21. /* Fetch a key-page in memory */
  22. uchar *_mi_fetch_keypage(register MI_INFO *info, MI_KEYDEF *keyinfo,
  23.  my_off_t page, uchar *buff, int return_buffer)
  24. {
  25.   uchar *tmp;
  26.   uint page_size;
  27.   tmp=(uchar*) key_cache_read(info->s->kfile,page,(byte*) buff,
  28.      (uint) keyinfo->block_length,
  29.      (uint) keyinfo->block_length,
  30.      return_buffer);
  31.   if (tmp == info->buff)
  32.     info->buff_used=1;
  33.   else if (!tmp)
  34.   {
  35.     DBUG_PRINT("error",("Got errno: %d from key_cache_read",my_errno));
  36.     info->last_keypage=HA_OFFSET_ERROR;
  37.     my_errno=HA_ERR_CRASHED;
  38.     return 0;
  39.   }
  40.   info->last_keypage=page;
  41.   page_size=mi_getint(tmp);
  42.   if (page_size < 4 || page_size > keyinfo->block_length)
  43.   {
  44.     DBUG_PRINT("error",("page %lu had wrong page length: %u",
  45. (ulong) page, page_size));
  46.     info->last_keypage = HA_OFFSET_ERROR;
  47.     my_errno = HA_ERR_CRASHED;
  48.     tmp = 0;
  49.   }
  50.   return tmp;
  51. } /* _mi_fetch_keypage */
  52. /* Write a key-page on disk */
  53. int _mi_write_keypage(register MI_INFO *info, register MI_KEYDEF *keyinfo,
  54.       my_off_t page, uchar *buff)
  55. {
  56.   reg3 uint length;
  57. #ifndef FAST /* Safety check */
  58.   if (page < info->s->base.keystart ||
  59.       page+keyinfo->block_length > info->state->key_file_length ||
  60.       page & (myisam_block_size-1))
  61.   {
  62.     DBUG_PRINT("error",("Trying to write outside key region: %lu",
  63. (long) page));
  64.     my_errno=EINVAL;
  65.     return(-1);
  66.   }
  67.   DBUG_PRINT("page",("write page at: %lu",(long) page,buff));
  68.   DBUG_DUMP("buff",(byte*) buff,mi_getint(buff));
  69. #endif
  70.   if ((length=keyinfo->block_length) > IO_SIZE*2 &&
  71.       info->state->key_file_length != page+length)
  72.     length= ((mi_getint(buff)+IO_SIZE-1) & (uint) ~(IO_SIZE-1));
  73. #ifdef HAVE_purify
  74.   {
  75.     length=mi_getint(buff);
  76.     bzero((byte*) buff+length,keyinfo->block_length-length);
  77.     length=keyinfo->block_length;
  78.   }
  79. #endif
  80.   return (key_cache_write(info->s->kfile,page,(byte*) buff,length,
  81.  (uint) keyinfo->block_length,
  82.  (int) ((info->lock_type != F_UNLCK) ||
  83. info->s->delay_key_write)));
  84. } /* mi_write_keypage */
  85. /* Remove page from disk */
  86. int _mi_dispose(register MI_INFO *info, MI_KEYDEF *keyinfo, my_off_t pos)
  87. {
  88.   my_off_t old_link;
  89.   char buff[8];
  90.   DBUG_ENTER("_mi_dispose");
  91.   DBUG_PRINT("enter",("pos: %ld", (long) pos));
  92.   old_link=info->s->state.key_del[keyinfo->block_size];
  93.   info->s->state.key_del[keyinfo->block_size]=pos;
  94.   mi_sizestore(buff,old_link);
  95.   info->s->state.changed|= STATE_NOT_SORTED_PAGES;
  96.   DBUG_RETURN(key_cache_write(info->s->kfile,pos,buff,
  97.       sizeof(buff),
  98.       (uint) keyinfo->block_length,
  99.       (int) (info->lock_type != F_UNLCK)));
  100. } /* _mi_dispose */
  101. /* Make new page on disk */
  102. my_off_t _mi_new(register MI_INFO *info, MI_KEYDEF *keyinfo)
  103. {
  104.   my_off_t pos;
  105.   char buff[8];
  106.   DBUG_ENTER("_mi_new");
  107.   if ((pos=info->s->state.key_del[keyinfo->block_size]) == HA_OFFSET_ERROR)
  108.   {
  109.     if (info->state->key_file_length >=
  110. info->s->base.max_key_file_length - keyinfo->block_length)
  111.     {
  112.       my_errno=HA_ERR_INDEX_FILE_FULL;
  113.       DBUG_RETURN(HA_OFFSET_ERROR);
  114.     }
  115.     pos=info->state->key_file_length;
  116.     info->state->key_file_length+= keyinfo->block_length;
  117.   }
  118.   else
  119.   {
  120.     if (!key_cache_read(info->s->kfile,pos,
  121. buff,
  122. (uint) sizeof(buff),
  123. (uint) keyinfo->block_length,0))
  124.       pos= HA_OFFSET_ERROR;
  125.     else
  126.       info->s->state.key_del[keyinfo->block_size]=mi_sizekorr(buff);
  127.   }
  128.   info->s->state.changed|= STATE_NOT_SORTED_PAGES;
  129.   DBUG_PRINT("exit",("Pos: %ld",(long) pos));
  130.   DBUG_RETURN(pos);
  131. } /* _mi_new */