home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / myisammrg / myrg_create.c < prev    next >
C/C++ Source or Header  |  2000-09-14  |  2KB  |  65 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. /* Create a MYMERGE_-file */
  18.  
  19. #include "mymrgdef.h"
  20.  
  21.     /* create file named 'name' and save filenames in it
  22.        table_names should be NULL or a vector of string-pointers with
  23.        a NULL-pointer last
  24.        */
  25.  
  26. int myrg_create(const char *name, const char **table_names, my_bool fix_names)
  27. {
  28.   int save_errno;
  29.   uint errpos;
  30.   File file;
  31.   char buff[FN_REFLEN],*end;
  32.   DBUG_ENTER("myrg_create");
  33.  
  34.   errpos=0;
  35.   if ((file = my_create(fn_format(buff,name,"",MYRG_NAME_EXT,4),0,
  36.        O_RDWR | O_TRUNC,MYF(MY_WME))) < 0)
  37.     goto err;
  38.   errpos=1;
  39.   if (table_names)
  40.   {
  41.     for ( ; *table_names ; table_names++)
  42.     {
  43.       strmov(buff,*table_names);
  44.       if (fix_names)
  45.     fn_same(buff,name,4);
  46.       *(end=strend(buff))='\n';
  47.       end[1]=0;
  48.       if (my_write(file,buff,(uint) (end-buff+1),
  49.            MYF(MY_WME | MY_NABP)))
  50.     goto err;
  51.     }
  52.   }
  53.   if (my_close(file,MYF(0)))
  54.     goto err;
  55.   DBUG_RETURN(0);
  56.  
  57. err:
  58.   save_errno=my_errno ? my_errno : -1;
  59.   switch (errpos) {
  60.   case 1:
  61.     VOID(my_close(file,MYF(0)));
  62.   }
  63.   DBUG_RETURN(my_errno=save_errno);
  64. } /* myrg_create */
  65.