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

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. /* Ger tillbaka en struct med information om isam-filen */
  17. #include "myisamdef.h"
  18. #ifdef __WIN__
  19. #include <sys/stat.h>
  20. #endif
  21. /* Get position to last record */
  22. my_off_t mi_position(MI_INFO *info)
  23. {
  24.   return info->lastpos;
  25. }
  26. /* Get information about the table */
  27. /* if flag == 2 one get current info (no sync from database */
  28. int mi_status(MI_INFO *info, register MI_ISAMINFO *x, uint flag)
  29. {
  30.   MY_STAT state;
  31.   MYISAM_SHARE *share=info->s;
  32.   DBUG_ENTER("mi_status");
  33.   x->recpos  = info->lastpos;
  34.   if (flag == HA_STATUS_POS)
  35.     DBUG_RETURN(0); /* Compatible with ISAM */
  36.   if (!(flag & HA_STATUS_NO_LOCK))
  37.   {
  38.     pthread_mutex_lock(&share->intern_lock);
  39.     VOID(_mi_readinfo(info,F_RDLCK,0));
  40.     VOID(_mi_writeinfo(info,0));
  41.     pthread_mutex_unlock(&share->intern_lock);
  42.   }
  43.   if (flag & HA_STATUS_VARIABLE)
  44.   {
  45.     x->records   = info->state->records;
  46.     x->deleted   = info->state->del;
  47.     x->delete_length = info->state->empty;
  48.     x->data_file_length =info->state->data_file_length;
  49.     x->index_file_length=info->state->key_file_length;
  50.     x->keys   = share->state.header.keys;
  51.     x->check_time = share->state.check_time;
  52.     x->mean_reclength = info->state->records ?
  53.       (ulong) ((info->state->data_file_length-info->state->empty)/
  54.        info->state->records) : (ulong) share->min_pack_length;
  55.   }
  56.   if (flag & HA_STATUS_ERRKEY)
  57.   {
  58.     x->errkey  = info->errkey;
  59.     x->dupp_key_pos= info->dupp_key_pos;
  60.   }
  61.   if (flag & HA_STATUS_CONST)
  62.   {
  63.     x->reclength = share->base.reclength;
  64.     x->max_data_file_length=share->base.max_data_file_length;
  65.     x->max_index_file_length=info->s->base.max_key_file_length;
  66.     x->filenr  = info->dfile;
  67.     x->options  = share->options;
  68.     x->create_time=share->state.create_time;
  69.     x->reflength= mi_get_pointer_length(share->base.max_data_file_length,4);
  70.     x->record_offset= ((share->options &
  71. (HA_OPTION_PACK_RECORD | HA_OPTION_COMPRESS_RECORD)) ?
  72.        0L : share->base.pack_reclength);
  73.     x->sortkey= -1; /* No clustering */
  74.     /* The following should be included even if we are not compiling with
  75.        USE_RAID as the client must be able to request it! */
  76.     x->rec_per_key = share->state.rec_per_key_part;
  77.     x->raid_type= share->base.raid_type;
  78.     x->raid_chunks= share->base.raid_chunks;
  79.     x->raid_chunksize= share->base.raid_chunksize;
  80.     x->key_map   = share->state.key_map;
  81.   }
  82.   if ((flag & HA_STATUS_TIME) && !my_fstat(info->dfile,&state,MYF(0)))
  83.     x->update_time=state.st_mtime;
  84.   else
  85.     x->update_time=0;
  86.   if (flag & HA_STATUS_AUTO)
  87.   {
  88.     x->auto_increment= share->state.auto_increment+1;
  89.     if (!x->auto_increment) /* This shouldn't happen */
  90.       x->auto_increment= ~(ulonglong) 0;
  91.   }
  92.   DBUG_RETURN(0);
  93. }