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