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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library 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 GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. #define USES_TYPES /* sys/types is included */
  18. #include "mysys_priv.h"
  19. #include <my_dir.h>
  20. #include <m_string.h>
  21. #include "mysys_err.h"
  22. #if defined(HAVE_SYS_UTIME_H)
  23. #include <sys/utime.h>
  24. #elif defined(HAVE_UTIME_H)
  25. #include <utime.h>
  26. #elif !defined(HPUX)
  27. struct utimbuf {
  28.   time_t actime;
  29.   time_t modtime;
  30. };
  31. #endif
  32. /*
  33.   Rename with copy stat form old file
  34.   Copy stats from old file to new file, deletes orginal and
  35.   changes new file name to old file name
  36.   if MY_REDEL_MAKE_COPY is given, then the orginal file
  37.   is renamed to org_name-'current_time'.BAK
  38. */
  39. #define REDEL_EXT ".BAK"
  40. int my_redel(const char *org_name, const char *tmp_name, myf MyFlags)
  41. {
  42.   int error=1;
  43.   DBUG_ENTER("my_redel");
  44.   DBUG_PRINT("my",("org_name: '%s' tmp_name: '%s'  MyFlags: %d",
  45.    org_name,tmp_name,MyFlags));
  46.   if (my_copystat(org_name,tmp_name,MyFlags) < 0)
  47.     goto end;
  48.   if (MyFlags & MY_REDEL_MAKE_BACKUP)
  49.   {
  50.     char name_buff[FN_REFLEN+20];    
  51.     char ext[20];
  52.     ext[0]='-';
  53.     get_date(ext+1,2+4,(time_t) 0);
  54.     strmov(strend(ext),REDEL_EXT);
  55.     if (my_rename(org_name, fn_format(name_buff, org_name, "", ext, 2),
  56.   MyFlags))
  57.       goto end;
  58.   }
  59.   else if (my_delete(org_name,MyFlags))
  60.       goto end;
  61.   if (my_rename(tmp_name,org_name,MyFlags))
  62.     goto end;
  63.   error=0;
  64. end:
  65.   DBUG_RETURN(error);
  66. } /* my_redel */
  67. /* Copy stat from one file to another */
  68. /* Return -1 if can't get stat, 1 if wrong type of file */
  69. int my_copystat(const char *from, const char *to, int MyFlags)
  70. {
  71.   struct stat statbuf;
  72.   if (stat((char*) from, &statbuf))
  73.   {
  74.     my_errno=errno;
  75.     if (MyFlags & (MY_FAE+MY_WME))
  76.       my_error(EE_STAT, MYF(ME_BELL+ME_WAITTANG),from,errno);
  77.     return -1; /* Can't get stat on input file */
  78.   }
  79.   if ((statbuf.st_mode & S_IFMT) != S_IFREG)
  80.     return 1;
  81.   VOID(chmod(to, statbuf.st_mode & 07777)); /* Copy modes */
  82. #if !defined(MSDOS) && !defined(__WIN__) && !defined(__EMX__)
  83.   if (statbuf.st_nlink > 1 && MyFlags & MY_LINK_WARNING)
  84.   {
  85.     if (MyFlags & MY_LINK_WARNING)
  86.       my_error(EE_LINK_WARNING,MYF(ME_BELL+ME_WAITTANG),from,statbuf.st_nlink);
  87.   }
  88.   VOID(chown(to, statbuf.st_uid, statbuf.st_gid)); /* Copy ownership */
  89. #endif /* MSDOS */
  90. #ifndef VMS
  91. #ifndef __ZTC__
  92.   if (MyFlags & MY_COPYTIME)
  93.   {
  94.     struct utimbuf timep;
  95.     timep.actime  = statbuf.st_atime;
  96.     timep.modtime = statbuf.st_mtime;
  97.     VOID(utime((char*) to, &timep));/* Update last accessed and modified times */
  98.   }
  99. #else
  100.   if (MyFlags & MY_COPYTIME)
  101.   {
  102.     time_t time[2];
  103.     time[0]= statbuf.st_atime;
  104.     time[1]= statbuf.st_mtime;
  105.     VOID(utime((char*) to, time));/* Update last accessed and modified times */
  106.   }
  107. #endif
  108. #endif
  109.   return 0;
  110. } /* my_copystat */