_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. /* L{ser och skriver nyckelblock */
  17. #include "isamdef.h"
  18. #ifdef __WIN__
  19. #include <errno.h>
  20. #endif
  21. /* Fetch a key-page in memory */
  22. uchar *_nisam_fetch_keypage(register N_INFO *info, N_KEYDEF *keyinfo,
  23.     my_off_t page, uchar *buff, int return_buffer)
  24. {
  25.   uchar *tmp;
  26.   tmp=(uchar*) key_cache_read(info->s->kfile,page,(byte*) buff,
  27.      (uint) keyinfo->base.block_length,
  28.      (uint) keyinfo->base.block_length,
  29.      return_buffer);
  30.   if (tmp == info->buff)
  31.   {
  32.     info->update|=HA_STATE_BUFF_SAVED;
  33.     info->int_pos=(ulong) page;
  34.     info->buff_used=1;
  35.   }
  36.   else
  37.   {
  38.     info->update&= ~HA_STATE_BUFF_SAVED;
  39.     if (tmp)
  40.       info->int_pos=(ulong) page;
  41.     else
  42.     {
  43.       info->int_pos=NI_POS_ERROR;
  44.       DBUG_PRINT("error",("Got errno: %d from key_cache_read",my_errno));
  45.       my_errno=HA_ERR_CRASHED;
  46.     }
  47.   }
  48.   return tmp;
  49. } /* _nisam_fetch_keypage */
  50. /* Write a key-page on disk */
  51. int _nisam_write_keypage(register N_INFO *info, register N_KEYDEF *keyinfo,
  52.       my_off_t page, uchar *buff)
  53. {
  54.   reg3 uint length;
  55. #ifndef QQ /* Safety check */
  56.   if (page < info->s->base.keystart ||
  57.       page+keyinfo->base.block_length > info->s->state.key_file_length ||
  58.       page & (nisam_block_size-1))
  59.   {
  60.     DBUG_PRINT("error",("Trying to write outside key region: %lu",
  61. (long) page));
  62.     my_errno=EINVAL;
  63.     return(-1);
  64.   }
  65.   DBUG_PRINT("page",("write page at: %lu",(long) page,buff));
  66.   DBUG_DUMP("buff",(byte*) buff,getint(buff));
  67. #endif
  68.   if ((length=keyinfo->base.block_length) > IO_SIZE*2 &&
  69.        info->s->state.key_file_length != page+length)
  70.     length= ((getint(buff)+IO_SIZE-1) & (uint) ~(IO_SIZE-1));
  71. #ifdef HAVE_purify
  72.   {
  73.     length=getint(buff);
  74.     bzero((byte*) buff+length,keyinfo->base.block_length-length);
  75.     length=keyinfo->base.block_length;
  76.   }
  77. #endif
  78.   return (key_cache_write(info->s->kfile,page,(byte*) buff,length,
  79.  (uint) keyinfo->base.block_length,
  80.  (int) (info->lock_type != F_UNLCK)));
  81. } /* nisam_write_keypage */
  82. /* Remove page from disk */
  83. int _nisam_dispose(register N_INFO *info, N_KEYDEF *keyinfo, my_off_t pos)
  84. {
  85.   uint keynr= (uint) (keyinfo - info->s->keyinfo);
  86.   ulong old_link; /* ulong is ok here */
  87.   DBUG_ENTER("_nisam_dispose");
  88.   old_link=info->s->state.key_del[keynr];
  89.   info->s->state.key_del[keynr]=(ulong) pos;
  90.   DBUG_RETURN(key_cache_write(info->s->kfile,pos,(byte*) &old_link,
  91.       sizeof(long),
  92.       (uint) keyinfo->base.block_length,
  93.       (int) (info->lock_type != F_UNLCK)));
  94. } /* _nisam_dispose */
  95. /* Make new page on disk */
  96. ulong _nisam_new(register N_INFO *info, N_KEYDEF *keyinfo)
  97. {
  98.   uint keynr= (uint) (keyinfo - info->s->keyinfo);
  99.   ulong pos;
  100.   DBUG_ENTER("_nisam_new");
  101.   if ((pos=info->s->state.key_del[keynr]) == NI_POS_ERROR)
  102.   {
  103.     if (info->s->state.key_file_length >= info->s->base.max_key_file_length)
  104.     {
  105.       my_errno=HA_ERR_INDEX_FILE_FULL;
  106.       DBUG_RETURN(NI_POS_ERROR);
  107.     }
  108.     pos=info->s->state.key_file_length;
  109.     info->s->state.key_file_length+= keyinfo->base.block_length;
  110.   }
  111.   else
  112.   {
  113.     if (!key_cache_read(info->s->kfile,pos,
  114. (byte*) &info->s->state.key_del[keynr],
  115. (uint) sizeof(long),
  116. (uint) keyinfo->base.block_length,0))
  117.       pos= NI_POS_ERROR;
  118.   }
  119.   DBUG_PRINT("exit",("Pos: %d",pos));
  120.   DBUG_RETURN(pos);
  121. } /* _nisam_new */