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

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