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

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. /* Ger tillbaka en struct med information om isam-filen */
  14. #include "isamdef.h"
  15. #ifdef __WIN__
  16. #include <sys/stat.h>
  17. #endif
  18. ulong nisam_position(N_INFO *info)
  19. {
  20.   return info->lastpos;
  21. }
  22. /* If flag == 1 one only gets pos of last record */
  23. /* if flag == 2 one get current info (no sync from database */
  24. int nisam_info(N_INFO *info, register N_ISAMINFO *x, int flag)
  25. {
  26.   struct stat state;
  27.   ISAM_SHARE *share=info->s;
  28.   DBUG_ENTER("nisam_info");
  29.   x->recpos  = info->lastpos;
  30.   if (flag & (HA_STATUS_TIME | HA_STATUS_CONST | HA_STATUS_VARIABLE |
  31.       HA_STATUS_ERRKEY | HA_STATUS_NO_LOCK))
  32.   {
  33. #ifndef NO_LOCKING
  34.     if (!(flag & HA_STATUS_NO_LOCK))
  35.     {
  36.       pthread_mutex_lock(&share->intern_lock);
  37.       VOID(_nisam_readinfo(info,F_RDLCK,0));
  38.       VOID(_nisam_writeinfo(info,0));
  39.       pthread_mutex_unlock(&share->intern_lock);
  40.     }
  41. #endif
  42.     x->records  = share->state.records;
  43.     x->deleted  = share->state.del;
  44.     x->delete_length= share->state.empty;
  45.     x->keys  = share->state.keys;
  46.     x->reclength = share->base.reclength;
  47.     x->mean_reclength= share->state.records ?
  48.       (share->state.data_file_length-share->state.empty)/share->state.records :
  49.       share->min_pack_length;
  50.     x->data_file_length=share->state.data_file_length;
  51.     x->max_data_file_length=share->base.max_data_file_length;
  52.     x->index_file_length=share->state.key_file_length;
  53.     x->max_index_file_length=share->base.max_key_file_length;
  54.     x->filenr  = info->dfile;
  55.     x->errkey  = info->errkey;
  56.     x->dupp_key_pos= info->dupp_key_pos;
  57.     x->options  = share->base.options;
  58.     x->create_time=share->base.create_time;
  59.     x->isamchk_time=share->base.isamchk_time;
  60.     x->rec_per_key=share->base.rec_per_key;
  61.     if ((flag & HA_STATUS_TIME) && !fstat(info->dfile,&state))
  62.       x->update_time=state.st_mtime;
  63.     else
  64.       x->update_time=0;
  65.     x->sortkey= -1; /* No clustering */
  66.   }
  67.   DBUG_RETURN(0);
  68. } /* nisam_info */