/** * Logback: the reliable, generic, fast and flexible logging framework. * Copyright (C) 1999-2015, QOS.ch. All rights reserved. * * This program and the accompanying materials are dual-licensed under * either the terms of the Eclipse Public License v1.0 as published by * the Eclipse Foundation * * or (per the licensee's choosing) * * under the terms of the GNU Lesser General Public License version 2.1 * as published by the Free Software Foundation. */ package ch.qos.logback.core.rolling.helper;
/** * A relatively robust file renaming method which in case of failure due to * src and target being on different volumes, falls back onto * renaming by copying. * * @param src * @param target * @throws RolloverFailure */ publicvoidrename(String src, String target)throws RolloverFailure { if (src.equals(target)) { addWarn("Source and target files are the same [" + src + "]. Skipping."); return; } File srcFile = new File(src);
if (srcFile.exists()) { File targetFile = new File(target); createMissingTargetDirsIfNecessary(targetFile);
// 首先,尝试直接重命名 boolean result = srcFile.renameTo(targetFile);
if (!result) { // 如果重命名失败,对文件执行复制清空操作 try { FileCopyUtils.copy(srcFile, targetFile); FileWriter fileWriter = new FileWriter(srcFile); fileWriter.write(""); fileWriter.flush(); fileWriter.close(); } catch (IOException e) { // 如果复制清空操作也执行失败,执行其原本的重试机制 addWarn("Failed to rename file [" + srcFile + "] as [" + targetFile + "]."); Boolean areOnDifferentVolumes = areOnDifferentVolumes(srcFile, targetFile); if (Boolean.TRUE.equals(areOnDifferentVolumes)) { addWarn("Detected different file systems for source [" + src + "] and target [" + target + "]. Attempting rename by copying."); renameByCopying(src, target); return; } else { addWarn("Please consider leaving the [file] option of " + RollingFileAppender.class.getSimpleName() + " empty."); addWarn("See also " + RENAMING_ERROR_URL); } } } } else { thrownew RolloverFailure("File [" + src + "] does not exist."); } }
/** * Attempts to determine whether both files are on different volumes. Returns true if we could determine that * the files are on different volumes. Returns false otherwise or if an error occurred while doing the check. * * @param srcFile * @param targetFile * @return true if on different volumes, false otherwise or if an error occurred */ Boolean areOnDifferentVolumes(File srcFile, File targetFile)throws RolloverFailure { if (!EnvUtil.isJDK7OrHigher()) returnfalse;
// target file is not certain to exist but its parent has to exist given the call hierarchy of this method File parentOfTarget = targetFile.getAbsoluteFile().getParentFile();
if(parentOfTarget == null) { addWarn("Parent of target file ["+targetFile+"] is null"); returnnull; } if(!parentOfTarget.exists()) { addWarn("Parent of target file ["+targetFile+"] does not exist"); returnnull; }