home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / isam / info.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  3KB  |  78 lines

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