mi_statrec.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:9k
源码类别:

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