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

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. /* Functions to handle fixed-length-records */
  17. #include "myisamdef.h"
  18. int _mi_write_static_record(MI_INFO *info, const byte *record)
  19. {
  20.   uchar temp[8]; /* max pointer length */
  21.   if (info->s->state.dellink != HA_OFFSET_ERROR)
  22.   {
  23.     my_off_t filepos=info->s->state.dellink;
  24.     info->rec_cache.seek_not_done=1; /* We have done a seek */
  25.     VOID(my_seek(info->dfile,info->s->state.dellink+1,MY_SEEK_SET,MYF(0)));
  26.     if (my_read(info->dfile,(char*) &temp[0],info->s->base.rec_reflength,
  27. MYF(MY_NABP)))
  28.       goto err;
  29.     info->s->state.dellink= _mi_rec_pos(info->s,temp);
  30.     info->state->del--;
  31.     info->state->empty-=info->s->base.pack_reclength;
  32.     VOID(my_seek(info->dfile,filepos,MY_SEEK_SET,MYF(0)));
  33.     if (my_write(info->dfile, (char*) record, info->s->base.reclength,
  34.  MYF(MY_NABP)))
  35.       goto err;
  36.   }
  37.   else
  38.   {
  39.     if (info->state->data_file_length > info->s->base.max_data_file_length-
  40. info->s->base.pack_reclength)
  41.     {
  42.       my_errno=HA_ERR_RECORD_FILE_FULL;
  43.       return(2);
  44.     }
  45.     if (info->opt_flag & WRITE_CACHE_USED)
  46.     { /* Cash in use */
  47.       if (my_b_write(&info->rec_cache, (byte*) record,
  48.      info->s->base.reclength))
  49. goto err;
  50.       if (info->s->base.pack_reclength != info->s->base.reclength)
  51.       {
  52. uint length=info->s->base.pack_reclength - info->s->base.reclength;
  53. bzero((char*) temp,length);
  54. if (my_b_write(&info->rec_cache, (byte*) temp,length))
  55.   goto err;
  56.       }
  57.     }
  58.     else
  59.     {
  60.       info->rec_cache.seek_not_done=1; /* We have done a seek */
  61.       VOID(my_seek(info->dfile,info->state->data_file_length,
  62.    MY_SEEK_SET,MYF(0)));
  63.       if (my_write(info->dfile,(char*) record,info->s->base.reclength,
  64.    info->s->write_flag))
  65. goto err;
  66.       if (info->s->base.pack_reclength != info->s->base.reclength)
  67.       {
  68. uint length=info->s->base.pack_reclength - info->s->base.reclength;
  69. bzero((char*) temp,length);
  70. if (my_write(info->dfile, (byte*) temp,length, info->s->write_flag))
  71.   goto err;
  72.       }
  73.     }
  74.     info->state->data_file_length+=info->s->base.pack_reclength;
  75.     info->s->state.split++;
  76.   }
  77.   return 0;
  78.  err:
  79.   return 1;
  80. }
  81. int _mi_update_static_record(MI_INFO *info, my_off_t pos, const byte *record)
  82. {
  83.   info->rec_cache.seek_not_done=1; /* We have done a seek */
  84.   VOID(my_seek(info->dfile,pos,MY_SEEK_SET,MYF(0)));
  85.   return (my_write(info->dfile,(char*) record,info->s->base.reclength,
  86.    MYF(MY_NABP)) != 0);
  87. }
  88. int _mi_delete_static_record(MI_INFO *info)
  89. {
  90.   uchar temp[9]; /* 1+sizeof(uint32) */
  91.   info->state->del++;
  92.   info->state->empty+=info->s->base.pack_reclength;
  93.   temp[0]= ''; /* Mark that record is deleted */
  94.   _mi_dpointer(info,temp+1,info->s->state.dellink);
  95.   info->s->state.dellink = info->lastpos;
  96.   info->rec_cache.seek_not_done=1;
  97.   VOID(my_seek(info->dfile,info->lastpos,MY_SEEK_SET,MYF(0)));
  98.   return (my_write(info->dfile,(byte*) temp, 1+info->s->rec_reflength,
  99.    MYF(MY_NABP)) != 0);
  100. }
  101. int _mi_cmp_static_record(register MI_INFO *info, register const byte *old)
  102. {
  103.   DBUG_ENTER("_mi_cmp_static_record");
  104.   /* We are going to do changes; dont let anybody disturb */
  105.   dont_break(); /* Dont allow SIGHUP or SIGINT */
  106.   if (info->opt_flag & WRITE_CACHE_USED)
  107.   {
  108.     if (flush_io_cache(&info->rec_cache))
  109.     {
  110.       DBUG_RETURN(-1);
  111.     }
  112.     info->rec_cache.seek_not_done=1; /* We have done a seek */
  113.   }
  114.   if ((info->opt_flag & READ_CHECK_USED))
  115.   { /* If check isn't disabled  */
  116.     info->rec_cache.seek_not_done=1; /* We have done a seek */
  117.     VOID(my_seek(info->dfile,info->lastpos,MY_SEEK_SET,MYF(0)));
  118.     if (my_read(info->dfile, (char*) info->rec_buff, info->s->base.reclength,
  119. MYF(MY_NABP)))
  120.       DBUG_RETURN(-1);
  121.     if (memcmp((byte*) info->rec_buff, (byte*) old,
  122.        (uint) info->s->base.reclength))
  123.     {
  124.       DBUG_DUMP("read",old,info->s->base.reclength);
  125.       DBUG_DUMP("disk",info->rec_buff,info->s->base.reclength);
  126.       my_errno=HA_ERR_RECORD_CHANGED; /* Record have changed */
  127.       DBUG_RETURN(1);
  128.     }
  129.   }
  130.   DBUG_RETURN(0);
  131. }
  132. int _mi_cmp_static_unique(MI_INFO *info, MI_UNIQUEDEF *def,
  133.   const byte *record, my_off_t pos)
  134. {
  135.   DBUG_ENTER("_mi_cmp_static_unique");
  136.   info->rec_cache.seek_not_done=1; /* We have done a seek */
  137.   VOID(my_seek(info->dfile,pos,MY_SEEK_SET,MYF(0)));
  138.   if (my_read(info->dfile, (char*) info->rec_buff, info->s->base.reclength,
  139.       MYF(MY_NABP)))
  140.     DBUG_RETURN(-1);
  141.   DBUG_RETURN(mi_unique_comp(def, record, info->rec_buff,
  142.      def->null_are_equal));
  143. }
  144. /* Read a fixed-length-record */
  145. /* Returns 0 if Ok. */
  146. /*    1 if record is deleted */
  147. /*   MY_FILE_ERROR on read-error or locking-error */
  148. int _mi_read_static_record(register MI_INFO *info, register my_off_t pos,
  149.    register byte *record)
  150. {
  151.   int error;
  152.   if (pos != HA_OFFSET_ERROR)
  153.   {
  154.     if (info->opt_flag & WRITE_CACHE_USED &&
  155. info->rec_cache.pos_in_file <= pos &&
  156. flush_io_cache(&info->rec_cache))
  157.       return(-1);
  158.     info->rec_cache.seek_not_done=1; /* We have done a seek */
  159.     error=my_pread(info->dfile,(char*) record,info->s->base.reclength,
  160.    pos,MYF(MY_NABP)) != 0;
  161.     if (info->s->r_locks == 0 && info->s->w_locks == 0)
  162.       VOID(_mi_writeinfo(info,0));
  163.     if (! error)
  164.     {
  165.       if (!*record)
  166.       {
  167. my_errno=HA_ERR_RECORD_DELETED;
  168. return(1); /* Record is deleted */
  169.       }
  170.       info->update|= HA_STATE_AKTIV; /* Record is read */
  171.       return(0);
  172.     }
  173.     return(-1); /* Error on read */
  174.   }
  175.   VOID(_mi_writeinfo(info,0)); /* No such record */
  176.   return(-1);
  177. }
  178. int _mi_read_rnd_static_record(MI_INFO *info, byte *buf,
  179.        register my_off_t filepos,
  180.        my_bool skipp_deleted_blocks)
  181. {
  182.   int locked,error,cache_read;
  183.   uint cache_length;
  184.   MYISAM_SHARE *share=info->s;
  185.   DBUG_ENTER("_mi_read_rnd_static_record");
  186.   cache_read=0;
  187.   cache_length=0;
  188.   if (info->opt_flag & WRITE_CACHE_USED &&
  189.       (info->rec_cache.pos_in_file <= filepos || skipp_deleted_blocks) &&
  190.       flush_io_cache(&info->rec_cache))
  191.     DBUG_RETURN(my_errno);
  192.   if (info->opt_flag & READ_CACHE_USED)
  193.   { /* Cache in use */
  194.     if (filepos == my_b_tell(&info->rec_cache) &&
  195. (skipp_deleted_blocks || !filepos))
  196.     {
  197.       cache_read=1; /* Read record using cache */
  198.       cache_length=(uint) (info->rec_cache.rc_end - info->rec_cache.rc_pos);
  199.     }
  200.     else
  201.       info->rec_cache.seek_not_done=1; /* Filepos is changed */
  202.   }
  203.   locked=0;
  204.   if (info->lock_type == F_UNLCK)
  205.   {
  206.     if (filepos >= info->state->data_file_length)
  207.     { /* Test if new records */
  208.       if (_mi_readinfo(info,F_RDLCK,0))
  209. DBUG_RETURN(my_errno);
  210.       locked=1;
  211.     }
  212.     else
  213.     { /* We don't nead new info */
  214. #ifndef UNSAFE_LOCKING
  215.       if ((! cache_read || share->base.reclength > cache_length) &&
  216.   share->r_locks == 0 && share->w_locks == 0)
  217.       { /* record not in cache */
  218. if (my_lock(share->kfile,F_RDLCK,0L,F_TO_EOF,
  219.     MYF(MY_SEEK_NOT_DONE) | info->lock_wait))
  220.   DBUG_RETURN(my_errno);
  221. locked=1;
  222.       }
  223. #else
  224.       info->tmp_lock_type=F_RDLCK;
  225. #endif
  226.     }
  227.   }
  228.   if (filepos >= info->state->data_file_length)
  229.   {
  230.     DBUG_PRINT("test",("filepos: %ld (%ld)  records: %ld  del: %ld",
  231.        filepos/share->base.reclength,filepos,
  232.        info->state->records, info->state->del));
  233.     VOID(_mi_writeinfo(info,0));
  234.     DBUG_RETURN(my_errno=HA_ERR_END_OF_FILE);
  235.   }
  236.   info->lastpos= filepos;
  237.   info->nextpos= filepos+share->base.pack_reclength;
  238.   if (! cache_read) /* No cacheing */
  239.   {
  240.     if ((error=_mi_read_static_record(info,filepos,buf)))
  241.     {
  242.       if (error > 0)
  243. error=my_errno=HA_ERR_RECORD_DELETED;
  244.       else
  245. error=my_errno;
  246.     }
  247.     DBUG_RETURN(error);
  248.   }
  249. /* Read record with cacheing */
  250.   error=my_b_read(&info->rec_cache,(byte*) buf,share->base.reclength);
  251.   if (info->s->base.pack_reclength != info->s->base.reclength && !error)
  252.   {
  253.     char tmp[8]; /* Skill fill bytes */
  254.     error=my_b_read(&info->rec_cache,(byte*) tmp,
  255.     info->s->base.pack_reclength - info->s->base.reclength);
  256.   }
  257.   if (locked)
  258.     VOID(_mi_writeinfo(info,0)); /* Unlock keyfile */
  259.   if (!error)
  260.   {
  261.     if (!buf[0])
  262.     { /* Record is removed */
  263.       DBUG_RETURN(my_errno=HA_ERR_RECORD_DELETED);
  264.     }
  265. /* Found and may be updated */
  266.     info->update|= HA_STATE_AKTIV | HA_STATE_KEY_CHANGED;
  267.     DBUG_RETURN(0);
  268.   }
  269.   /* my_errno should be set if rec_cache.error == -1 */
  270.   if (info->rec_cache.error != -1 || my_errno == 0)
  271.     my_errno=HA_ERR_WRONG_IN_RECORD;
  272.   DBUG_RETURN(my_errno); /* Something wrong (EOF?) */
  273. }