open.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

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