myrg_create.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

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