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

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. /*
  14.   Advanced symlink handling.
  15.   This is used in MyISAM to let users symlinks tables to different disk.
  16.   The main idea with these functions is to automaticly create, delete and
  17.   rename files and symlinks like they would be one unit.
  18. */
  19. #include "mysys_priv.h"
  20. #include "mysys_err.h"
  21. #include <m_string.h>
  22. File my_create_with_symlink(const char *linkname, const char *filename,
  23.     int createflags, int access_flags, myf MyFlags)
  24. {
  25.   File file;
  26.   int tmp_errno;
  27.   /* Test if we should create a link */
  28.   int create_link;
  29.   char abs_linkname[FN_REFLEN];
  30.   DBUG_ENTER("my_create_with_symlink");
  31.   if (my_disable_symlinks)
  32.   {
  33.     /* Create only the file, not the link and file */
  34.     create_link= 0;
  35.     if (linkname)
  36.       filename= linkname;
  37.   }
  38.   else
  39.   {
  40.     if (linkname)
  41.       my_realpath(abs_linkname, linkname, MYF(0));
  42.     create_link= (linkname && strcmp(abs_linkname,filename));
  43.   }
  44.   if (!(MyFlags & MY_DELETE_OLD))
  45.   {
  46.     if (!access(filename,F_OK))
  47.     {
  48.       my_error(EE_CANTCREATEFILE, MYF(0), filename, EEXIST);
  49.       DBUG_RETURN(-1);
  50.     }
  51.     if (create_link && !access(linkname,F_OK))
  52.     {
  53.       my_error(EE_CANTCREATEFILE, MYF(0), linkname, EEXIST);
  54.       DBUG_RETURN(-1);
  55.     }
  56.   }
  57.   if ((file=my_create(filename, createflags, access_flags, MyFlags)) >= 0)
  58.   {
  59.     if (create_link)
  60.     {
  61.       /* Delete old link/file */
  62.       if (MyFlags & MY_DELETE_OLD)
  63. my_delete(linkname, MYF(0));
  64.       /* Create link */
  65.       if (my_symlink(filename, linkname, MyFlags))
  66.       {
  67. /* Fail, remove everything we have done */
  68. tmp_errno=my_errno;
  69. my_close(file,MYF(0));
  70. my_delete(filename, MYF(0));
  71. file= -1;
  72. my_errno=tmp_errno;
  73.       }
  74.     }
  75.   }
  76.   DBUG_RETURN(file);
  77. }
  78. /*
  79.   If the file was a symlink, delete both symlink and the file which the
  80.   symlink pointed to.
  81. */
  82. int my_delete_with_symlink(const char *name, myf MyFlags)
  83. {
  84.   char link_name[FN_REFLEN];
  85.   int was_symlink= (!my_disable_symlinks &&
  86.     !my_readlink(link_name, name, MYF(0)));
  87.   int result;
  88.   DBUG_ENTER("my_delete_with_symlink");
  89.   if (!(result=my_delete(name, MyFlags)))
  90.   {
  91.     if (was_symlink)
  92.       result=my_delete(link_name, MyFlags);
  93.   }
  94.   DBUG_RETURN(result);
  95. }
  96. /*
  97.   If the file is a normal file, just rename it.
  98.   If the file is a symlink:
  99.    - Create a new file with the name 'to' that points at
  100.      symlink_dir/basename(to)
  101.    - Rename the symlinked file to symlink_dir/basename(to)
  102.    - Delete 'from'
  103.    If something goes wrong, restore everything.
  104. */
  105. int my_rename_with_symlink(const char *from, const char *to, myf MyFlags)
  106. {
  107. #ifndef HAVE_READLINK
  108.   return my_rename(from, to, MyFlags);
  109. #else
  110.   char link_name[FN_REFLEN], tmp_name[FN_REFLEN];
  111.   int was_symlink= (!my_disable_symlinks &&
  112.     !my_readlink(link_name, from, MYF(0)));
  113.   int result=0;
  114.   DBUG_ENTER("my_rename_with_symlink");
  115.   if (!was_symlink)
  116.     DBUG_RETURN(my_rename(from, to, MyFlags));
  117.   /* Change filename that symlink pointed to */
  118.   strmov(tmp_name, to);
  119.   fn_same(tmp_name,link_name,1); /* Copy dir */
  120.   /* Create new symlink */
  121.   if (my_symlink(tmp_name, to, MyFlags))
  122.     DBUG_RETURN(1);
  123.   /*
  124.     Rename symlinked file if the base name didn't change.
  125.     This can happen if you use this function where 'from' and 'to' has
  126.     the same basename and different directories.
  127.    */
  128.   if (strcmp(link_name, tmp_name) && my_rename(link_name, tmp_name, MyFlags))
  129.   {
  130.     int save_errno=my_errno;
  131.     my_delete(to, MyFlags); /* Remove created symlink */
  132.     my_errno=save_errno;
  133.     DBUG_RETURN(1);
  134.   }
  135.   /* Remove original symlink */
  136.   if (my_delete(from, MyFlags))
  137.   {
  138.     int save_errno=my_errno;
  139.     /* Remove created link */
  140.     my_delete(to, MyFlags);
  141.     /* Rename file back */
  142.     if (strcmp(link_name, tmp_name))
  143.       (void) my_rename(tmp_name, link_name, MyFlags);
  144.     my_errno=save_errno;
  145.     result= 1;
  146.   }
  147.   DBUG_RETURN(result);
  148. #endif /* HAVE_READLINK */
  149. }