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

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. /* Create a MYMERGE_-file */
  17. #include "mymrgdef.h"
  18. /* create file named 'name' and save filenames in it
  19.    table_names should be NULL or a vector of string-pointers with
  20.    a NULL-pointer last
  21.    */
  22. int myrg_create(const char *name, const char **table_names, my_bool fix_names)
  23. {
  24.   int save_errno;
  25.   uint errpos;
  26.   File file;
  27.   char buff[FN_REFLEN],*end;
  28.   DBUG_ENTER("myrg_create");
  29.   errpos=0;
  30.   if ((file = my_create(fn_format(buff,name,"",MYRG_NAME_EXT,4),0,
  31.        O_RDWR | O_TRUNC,MYF(MY_WME))) < 0)
  32.     goto err;
  33.   errpos=1;
  34.   if (table_names)
  35.   {
  36.     for ( ; *table_names ; table_names++)
  37.     {
  38.       strmov(buff,*table_names);
  39.       if (fix_names)
  40. fn_same(buff,name,4);
  41.       *(end=strend(buff))='n';
  42.       end[1]=0;
  43.       if (my_write(file,buff,(uint) (end-buff+1),
  44.    MYF(MY_WME | MY_NABP)))
  45. goto err;
  46.     }
  47.   }
  48.   if (my_close(file,MYF(0)))
  49.     goto err;
  50.   DBUG_RETURN(0);
  51. err:
  52.   save_errno=my_errno ? my_errno : -1;
  53.   switch (errpos) {
  54.   case 1:
  55.     VOID(my_close(file,MYF(0)));
  56.   }
  57.   DBUG_RETURN(my_errno=save_errno);
  58. } /* myrg_create */