home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / merge / open.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  4KB  |  139 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. /* open a MERGE-database */
  18.  
  19. #include "mrgdef.h"
  20. #include <stddef.h>
  21. #include <errno.h>
  22. #ifdef VMS
  23. #include "static.c"
  24. #endif
  25.  
  26. /*    open a MERGE-database.
  27.  
  28.     if handle_locking is 0 then exit with error if some database is locked
  29.     if handle_locking is 1 then wait if database is locked
  30. */
  31.  
  32.  
  33. MRG_INFO *mrg_open(name,mode,handle_locking)
  34. const char *name;
  35. int mode;
  36. int handle_locking;
  37. {
  38.   int save_errno,i,errpos;
  39.   uint files,dir_length;
  40.   ulonglong file_offset;
  41.   char name_buff[FN_REFLEN*2],buff[FN_REFLEN],*end;
  42.   MRG_INFO info,*m_info;
  43.   FILE *file;
  44.   N_INFO *isam,*last_isam;
  45.   DBUG_ENTER("mrg_open");
  46.  
  47.   LINT_INIT(last_isam);
  48.   isam=0;
  49.   errpos=files=0;
  50.   bzero((gptr) &info,sizeof(info));
  51.   if (!(file=my_fopen(fn_format(name_buff,name,"",MRG_NAME_EXT,4),
  52.               O_RDONLY | O_SHARE,MYF(0))))
  53.     goto err;
  54.   errpos=1;
  55.   dir_length=dirname_part(name_buff,name);
  56.   info.reclength=0;
  57.   while (fgets(buff,FN_REFLEN-1,file))
  58.   {
  59.     if ((end=strend(buff))[-1] == '\n')
  60.       end[-1]='\0';
  61.     if (buff[0])        /* Skipp empty lines */
  62.     {
  63.       last_isam=isam;
  64.       if (!test_if_hard_path(buff))
  65.       {
  66.     VOID(strmake(name_buff+dir_length,buff,
  67.              sizeof(name_buff)-1-dir_length));
  68.     VOID(cleanup_dirname(buff,name_buff));
  69.       }
  70.       if (!(isam=nisam_open(buff,mode,test(handle_locking))))
  71.     goto err;
  72.       files++;
  73.     }
  74.     last_isam=isam;
  75.     if (info.reclength && info.reclength != isam->s->base.reclength)
  76.     {
  77.       my_errno=HA_ERR_WRONG_IN_RECORD;
  78.       goto err;
  79.     }
  80.     info.reclength=isam->s->base.reclength;
  81.   }
  82.   if (!(m_info= (MRG_INFO*) my_malloc(sizeof(MRG_INFO)+files*sizeof(MRG_TABLE),
  83.                       MYF(MY_WME))))
  84.     goto err;
  85.   *m_info=info;
  86.   m_info->open_tables=(MRG_TABLE *) (m_info+1);
  87.   m_info->tables=files;
  88.  
  89.   for (i=files ; i-- > 0 ; )
  90.   {
  91.     m_info->open_tables[i].table=isam;
  92.     m_info->options|=isam->s->base.options;
  93.     m_info->records+=isam->s->state.records;
  94.     m_info->del+=isam->s->state.del;
  95.     m_info->data_file_length=isam->s->state.data_file_length;
  96.     if (i)
  97.       isam=(N_INFO*) (isam->open_list.next->data);
  98.   }
  99.   /* Fix fileinfo for easyer debugging (actually set by rrnd) */
  100.   file_offset=0;
  101.   for (i=0 ; (uint) i < files ; i++)
  102.   {
  103.     m_info->open_tables[i].file_offset=(my_off_t) file_offset;
  104.     file_offset+=m_info->open_tables[i].table->s->state.data_file_length;
  105.   }
  106.   if (sizeof(my_off_t) == 4 && file_offset > (ulonglong) (ulong) ~0L)
  107.   {
  108.     my_errno=HA_ERR_RECORD_FILE_FULL;
  109.     my_free((char*) m_info,MYF(0));
  110.     goto err;
  111.   }
  112.  
  113.   m_info->end_table=m_info->open_tables+files;
  114.   m_info->last_used_table=m_info->open_tables;
  115.  
  116.   VOID(my_fclose(file,MYF(0)));
  117.   m_info->open_list.data=(void*) m_info;
  118.   pthread_mutex_lock(&THR_LOCK_open);
  119.   mrg_open_list=list_add(mrg_open_list,&m_info->open_list);
  120.   pthread_mutex_unlock(&THR_LOCK_open);
  121.   DBUG_RETURN(m_info);
  122.  
  123. err:
  124.   save_errno=my_errno;
  125.   switch (errpos) {
  126.   case 1:
  127.     VOID(my_fclose(file,MYF(0)));
  128.     for (i=files ; i-- > 0 ; )
  129.     {
  130.       isam=last_isam;
  131.       if (i)
  132.     last_isam=(N_INFO*) (isam->open_list.next->data);
  133.       nisam_close(isam);
  134.     }
  135.   }
  136.   my_errno=save_errno;
  137.   DBUG_RETURN (NULL);
  138. }
  139.