my_redel.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 <my_dir.h>
  16. #include <m_string.h>
  17. #include "mysys_err.h"
  18. #if defined(HAVE_UTIME_H)
  19. #include <utime.h>
  20. #elif defined(HAVE_SYS_UTIME_H)
  21. #include <sys/utime.h>
  22. #elif !defined(HPUX10)
  23. struct utimbuf {
  24.   time_t actime;
  25.   time_t modtime;
  26. };
  27. #endif
  28. /*
  29.   Rename with copy stat form old file
  30.   Copy stats from old file to new file, deletes orginal and
  31.   changes new file name to old file name
  32.   if MY_REDEL_MAKE_COPY is given, then the orginal file
  33.   is renamed to org_name-'current_time'.BAK
  34. */
  35. #define REDEL_EXT ".BAK"
  36. int my_redel(const char *org_name, const char *tmp_name, myf MyFlags)
  37. {
  38.   int error=1;
  39.   DBUG_ENTER("my_redel");
  40.   DBUG_PRINT("my",("org_name: '%s' tmp_name: '%s'  MyFlags: %d",
  41.    org_name,tmp_name,MyFlags));
  42.   if (my_copystat(org_name,tmp_name,MyFlags) < 0)
  43.     goto end;
  44.   if (MyFlags & MY_REDEL_MAKE_BACKUP)
  45.   {
  46.     char name_buff[FN_REFLEN+20];    
  47.     char ext[20];
  48.     ext[0]='-';
  49.     get_date(ext+1,2+4,(time_t) 0);
  50.     strmov(strend(ext),REDEL_EXT);
  51.     if (my_rename(org_name, fn_format(name_buff, org_name, "", ext, 2),
  52.   MyFlags))
  53.       goto end;
  54.   }
  55.   else if (my_delete(org_name,MyFlags))
  56.       goto end;
  57.   if (my_rename(tmp_name,org_name,MyFlags))
  58.     goto end;
  59.   error=0;
  60. end:
  61.   DBUG_RETURN(error);
  62. } /* my_redel */
  63. /* Copy stat from one file to another */
  64. /* Return -1 if can't get stat, 1 if wrong type of file */
  65. int my_copystat(const char *from, const char *to, int MyFlags)
  66. {
  67.   struct stat statbuf;
  68.   if (stat((char*) from, &statbuf))
  69.   {
  70.     my_errno=errno;
  71.     if (MyFlags & (MY_FAE+MY_WME))
  72.       my_error(EE_STAT, MYF(ME_BELL+ME_WAITTANG),from,errno);
  73.     return -1; /* Can't get stat on input file */
  74.   }
  75.   if ((statbuf.st_mode & S_IFMT) != S_IFREG)
  76.     return 1;
  77.   VOID(chmod(to, statbuf.st_mode & 07777)); /* Copy modes */
  78. #if !defined(MSDOS) && !defined(__WIN__) && !defined(__EMX__) && !defined(OS2) && !defined(__NETWARE__)
  79.   if (statbuf.st_nlink > 1 && MyFlags & MY_LINK_WARNING)
  80.   {
  81.     if (MyFlags & MY_LINK_WARNING)
  82.       my_error(EE_LINK_WARNING,MYF(ME_BELL+ME_WAITTANG),from,statbuf.st_nlink);
  83.   }
  84.   VOID(chown(to, statbuf.st_uid, statbuf.st_gid)); /* Copy ownership */
  85. #endif /* MSDOS */
  86. #ifndef VMS
  87. #ifndef __ZTC__
  88.   if (MyFlags & MY_COPYTIME)
  89.   {
  90.     struct utimbuf timep;
  91.     timep.actime  = statbuf.st_atime;
  92.     timep.modtime = statbuf.st_mtime;
  93.     VOID(utime((char*) to, &timep));/* Update last accessed and modified times */
  94.   }
  95. #else
  96.   if (MyFlags & MY_COPYTIME)
  97.   {
  98.     time_t time[2];
  99.     time[0]= statbuf.st_atime;
  100.     time[1]= statbuf.st_mtime;
  101.     VOID(utime((char*) to, time));/* Update last accessed and modified times */
  102.   }
  103. #endif
  104. #endif
  105.   return 0;
  106. } /* my_copystat */