From b30e17f44264b5e99da530a5e893d85ceb9bbecc Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Sun, 16 Apr 2017 00:43:25 +0800 Subject: [PATCH] Improved error messages --- source/net/filebot/cli/CmdlineOperations.java | 60 ++++++++++++------- 1 file changed, 38 insertions(+), 22 deletions(-) diff --git a/source/net/filebot/cli/CmdlineOperations.java b/source/net/filebot/cli/CmdlineOperations.java index 0bbca2a2..14481da7 100644 --- a/source/net/filebot/cli/CmdlineOperations.java +++ b/source/net/filebot/cli/CmdlineOperations.java @@ -592,9 +592,15 @@ public class CmdlineOperations implements CmdlineInterface { if (!destination.equals(source) && destination.exists()) { if (conflictAction == ConflictAction.FAIL) { - throw new CmdlineException("File already exists: " + destination); + throw new CmdlineException(String.format("Failed to process [%s] because [%s] already exists", source, destination)); } + // do not allow abuse of online databases by repeatedly processing the same files + if (matches != null && equalsFileContent(source, destination)) { + throw new CmdlineException(String.format("Failed to process [%s] because [%s] is an exact copy and already exists", source, destination)); + } + + // delete existing destination path if necessary if (conflictAction == ConflictAction.OVERRIDE || (conflictAction == ConflictAction.AUTO && VideoQuality.isBetter(source, destination))) { // do not delete files in test mode if (renameAction.canRevert()) { @@ -605,7 +611,10 @@ public class CmdlineOperations implements CmdlineInterface { log.warning(format("[%s] Failed to delete [%s]: %s", conflictAction, destination, e)); } } - } else if (conflictAction == ConflictAction.INDEX) { + } + + // generate indexed destination path if necessary + if (conflictAction == ConflictAction.INDEX) { destination = nextAvailableIndexedName(destination); } } @@ -626,34 +635,41 @@ public class CmdlineOperations implements CmdlineInterface { } } } finally { - // update rename history - if (renameAction.canRevert()) { - HistorySpooler.getInstance().append(renameLog.entrySet()); - } + // update history and xattr metadata + writeHistory(renameAction, renameLog, matches); - // printer number of renamed files if any + // print number of processed files log.fine(format("Processed %d files", renameLog.size())); } - // write metadata into xattr if xattr is enabled - if (matches != null && renameLog.size() > 0 && renameAction.canRevert()) { - for (Match match : matches) { - File source = match.getValue(); - Object infoObject = match.getCandidate(); - if (infoObject != null) { - File destination = renameLog.get(source); - if (destination != null && destination.isFile()) { - xattr.setMetaInfo(destination, infoObject, source.getName()); - } - } - } - } - // new file names return new ArrayList(renameLog.values()); } - protected static File nextAvailableIndexedName(File file) { + protected void writeHistory(RenameAction action, Map log, List> matches) { + if (log.isEmpty() || !action.canRevert()) { + return; + } + + // write rename history + HistorySpooler.getInstance().append(log.entrySet()); + + // write xattr metadata + if (matches != null) { + for (Match match : matches) { + File source = match.getValue(); + Object infoObject = match.getCandidate(); + if (infoObject != null) { + File destination = log.get(source); + if (destination != null && destination.isFile()) { + xattr.setMetaInfo(destination, infoObject, source.getName()); + } + } + } + } + } + + protected File nextAvailableIndexedName(File file) { File parent = file.getParentFile(); String name = getName(file); String ext = getExtension(file);