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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL 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. #define USES_TYPES /* sys/types is included */
  14. #include "mysys_priv.h"
  15. #include <sys/stat.h>
  16. #include <m_string.h>
  17. #if defined(HAVE_UTIME_H)
  18. #include <utime.h>
  19. #elif defined(HAVE_SYS_UTIME_H)
  20. #include <sys/utime.h>
  21. #elif !defined(HPUX10)
  22. #include <time.h>
  23. struct utimbuf {
  24.   time_t actime;
  25.   time_t modtime;
  26. };
  27. #endif
  28. /*
  29.   int my_copy(const char *from, const char *to, myf MyFlags)
  30.   NOTES
  31.     Ordinary ownership and accesstimes are copied from 'from-file'
  32.     If MyFlags & MY_HOLD_ORIGINAL_MODES is set and to-file exists then
  33.     the modes of to-file isn't changed
  34.     If MyFlags & MY_DONT_OVERWRITE_FILE is set, we will give an error
  35.     if the file existed.
  36.   WARNING
  37.     Don't set MY_FNABP or MY_NABP bits on when calling this function !
  38.   RETURN
  39.     0 ok
  40.     # Error
  41. */
  42. int my_copy(const char *from, const char *to, myf MyFlags)
  43. {
  44.   uint Count;
  45.   int new_file_stat, create_flag;
  46.   File from_file,to_file;
  47.   char buff[IO_SIZE];
  48.   struct stat stat_buff,new_stat_buff;
  49.   DBUG_ENTER("my_copy");
  50.   DBUG_PRINT("my",("from %s to %s MyFlags %d", from, to, MyFlags));
  51.   from_file=to_file= -1;
  52.   new_file_stat=0;
  53.   if (MyFlags & MY_HOLD_ORIGINAL_MODES) /* Copy stat if possible */
  54.     new_file_stat=stat((char*) to, &new_stat_buff);
  55.   if ((from_file=my_open(from,O_RDONLY | O_SHARE,MyFlags)) >= 0)
  56.   {
  57.     if (stat(from,&stat_buff))
  58.     {
  59.       my_errno=errno;
  60.       goto err;
  61.     }
  62.     if (MyFlags & MY_HOLD_ORIGINAL_MODES && !new_file_stat)
  63.       stat_buff=new_stat_buff;
  64.     create_flag= (MyFlags & MY_DONT_OVERWRITE_FILE) ? O_EXCL : O_TRUNC;
  65.     if ((to_file=  my_create(to,(int) stat_buff.st_mode,
  66.      O_WRONLY | create_flag | O_BINARY | O_SHARE,
  67.      MyFlags)) < 0)
  68.       goto err;
  69.     while ((Count=my_read(from_file,buff,IO_SIZE,MyFlags)) != 0)
  70. if (Count == (uint) -1 ||
  71.     my_write(to_file,buff,Count,MYF(MyFlags | MY_NABP)))
  72. goto err;
  73.     if (my_close(from_file,MyFlags) | my_close(to_file,MyFlags))
  74.       DBUG_RETURN(-1); /* Error on close */
  75.     /* Copy modes if possible */
  76.     if (MyFlags & MY_HOLD_ORIGINAL_MODES && new_file_stat)
  77. DBUG_RETURN(0); /* File copyed but not stat */
  78.     VOID(chmod(to, stat_buff.st_mode & 07777)); /* Copy modes */
  79. #if !defined(MSDOS) && !defined(__WIN__) && !defined(__EMX__) && !defined(OS2) && !defined(__NETWARE__)
  80.     VOID(chown(to, stat_buff.st_uid,stat_buff.st_gid)); /* Copy ownership */
  81. #endif
  82. #if !defined(VMS) && !defined(__ZTC__)
  83.     if (MyFlags & MY_COPYTIME)
  84.     {
  85.       struct utimbuf timep;
  86.       timep.actime  = stat_buff.st_atime;
  87.       timep.modtime = stat_buff.st_mtime;
  88.       VOID(utime((char*) to, &timep)); /* last accessed and modified times */
  89.     }
  90. #endif
  91.     DBUG_RETURN(0);
  92.   }
  93. err:
  94.   if (from_file >= 0) VOID(my_close(from_file,MyFlags));
  95.   if (to_file >= 0)   VOID(my_close(to_file,MyFlags));
  96.   DBUG_RETURN(-1);
  97. } /* my_copy */