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

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. /* open a MYMERGE_-database */
  14. #include "mymrgdef.h"
  15. #include <stddef.h>
  16. #include <errno.h>
  17. #ifdef VMS
  18. #include "mrg_static.c"
  19. #endif
  20. /* open a MYMERGE_-database.
  21. if handle_locking is 0 then exit with error if some database is locked
  22. if handle_locking is 1 then wait if database is locked
  23. */
  24. MYRG_INFO *myrg_open(name,mode,handle_locking)
  25. const char *name;
  26. int mode;
  27. int handle_locking;
  28. {
  29.   int save_errno,i,errpos;
  30.   uint files,dir_length,length;
  31.   ulonglong file_offset;
  32.   char name_buff[FN_REFLEN*2],buff[FN_REFLEN],*end;
  33.   MYRG_INFO info,*m_info;
  34.   File fd;
  35.   IO_CACHE file;
  36.   MI_INFO *isam,*last_isam;
  37.   DBUG_ENTER("myrg_open");
  38.   LINT_INIT(last_isam);
  39.   LINT_INIT(m_info);
  40.   isam=0;
  41.   errpos=files=0;
  42.   bzero((gptr) &info,sizeof(info));
  43.   bzero((char*) &file,sizeof(file));
  44.   if ((fd=my_open(fn_format(name_buff,name,"",MYRG_NAME_EXT,4),
  45.   O_RDONLY | O_SHARE,MYF(0))) < 0 ||
  46.       init_io_cache(&file, fd, IO_SIZE, READ_CACHE, 0, 0,
  47.     MYF(MY_WME | MY_NABP)))
  48.     goto err;
  49.   errpos=1;
  50.   dir_length=dirname_part(name_buff,name);
  51.   info.reclength=0;
  52.   while ((length=my_b_gets(&file,buff,FN_REFLEN-1)))
  53.   {
  54.     if ((end=buff+length)[-1] == 'n')
  55.       end[-1]='';
  56.     if (buff[0] && buff[0] != '#') /* Skipp empty lines and comments */
  57.     {
  58.       last_isam=isam;
  59.       if (!test_if_hard_path(buff))
  60.       {
  61. VOID(strmake(name_buff+dir_length,buff,
  62.      sizeof(name_buff)-1-dir_length));
  63. VOID(cleanup_dirname(buff,name_buff));
  64.       }
  65.       if (!(isam=mi_open(buff,mode,test(handle_locking))))
  66. goto err;
  67.       files++;
  68.     }
  69.     last_isam=isam;
  70.     if (info.reclength && info.reclength != isam->s->base.reclength)
  71.     {
  72.       my_errno=HA_ERR_WRONG_IN_RECORD;
  73.       goto err;
  74.     }
  75.     info.reclength=isam->s->base.reclength;
  76.   }
  77.   if (!(m_info= (MYRG_INFO*) my_malloc(sizeof(MYRG_INFO)+
  78.        files*sizeof(MYRG_TABLE),
  79.        MYF(MY_WME))))
  80.     goto err;
  81.   *m_info=info;
  82.   m_info->open_tables=(files) ? (MYRG_TABLE *) (m_info+1) : 0;
  83.   m_info->tables=files;
  84.   errpos=2;
  85.   for (i=files ; i-- > 0 ; )
  86.   {
  87.     m_info->open_tables[i].table=isam;
  88.     m_info->options|=isam->s->options;
  89.     m_info->records+=isam->state->records;
  90.     m_info->del+=isam->state->del;
  91.     m_info->data_file_length+=isam->state->data_file_length;
  92.     if (i)
  93.       isam=(MI_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->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.     goto err;
  106.   }
  107.   m_info->keys=(files) ? m_info->open_tables->table->s->base.keys : 0;
  108.   bzero((char*) &m_info->by_key,sizeof(m_info->by_key));
  109.   /* this works ok if the table list is empty */
  110.   m_info->end_table=m_info->open_tables+files;
  111.   m_info->last_used_table=m_info->open_tables;
  112.   VOID(my_close(fd,MYF(0)));
  113.   end_io_cache(&file);
  114.   m_info->open_list.data=(void*) m_info;
  115.   pthread_mutex_lock(&THR_LOCK_open);
  116.   myrg_open_list=list_add(myrg_open_list,&m_info->open_list);
  117.   pthread_mutex_unlock(&THR_LOCK_open);
  118.   DBUG_RETURN(m_info);
  119. err:
  120.   save_errno=my_errno;
  121.   switch (errpos) {
  122.   case 2:
  123.     my_free((char*) m_info,MYF(0));
  124.     /* Fall through */
  125.   case 1:
  126.     VOID(my_close(fd,MYF(0)));
  127.     end_io_cache(&file);
  128.     for (i=files ; i-- > 0 ; )
  129.     {
  130.       isam=last_isam;
  131.       if (i)
  132. last_isam=(MI_INFO*) (isam->open_list.next->data);
  133.       mi_close(isam);
  134.     }
  135.   }
  136.   my_errno=save_errno;
  137.   DBUG_RETURN (NULL);
  138. }