From d90c5acd1a3eebe453b18422f18bcbd543a4d32a Mon Sep 17 00:00:00 2001 From: brinn <brinn> Date: Fri, 22 Feb 2008 20:01:54 +0000 Subject: [PATCH] change: lastChanged() and lastChangedRelative() now look for files younger than specified with stopWhenFindYounger (previous semantics was that files needed to be as young as or younger) SVN: 4427 --- .../cisd/common/utilities/FileUtilities.java | 20 +++++++++---------- .../FileUtilitiesLastChangedTest.java | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/common/source/java/ch/systemsx/cisd/common/utilities/FileUtilities.java b/common/source/java/ch/systemsx/cisd/common/utilities/FileUtilities.java index af65a6fe58d..51cdd4e42b3 100644 --- a/common/source/java/ch/systemsx/cisd/common/utilities/FileUtilities.java +++ b/common/source/java/ch/systemsx/cisd/common/utilities/FileUtilities.java @@ -493,10 +493,10 @@ public final class FileUtilities { if (referenceIsRelative) { - return reference > 0 && currentLastChanged >= System.currentTimeMillis() - reference; + return reference > 0 && currentLastChanged > System.currentTimeMillis() - reference; } else { - return reference > 0 && currentLastChanged >= reference; + return reference > 0 && currentLastChanged > reference; } } @@ -561,9 +561,9 @@ public final class FileUtilities * considering what this parameter is good for, note that the mtime of a directory is changed when an * entry in the directory changes. * @param stopWhenFindYounger If > 0, the recursive search for younger file will be stopped when a file or - * directory is found that is as young as or younger than the time specified in this parameter. Supposed - * to be used when one does not care about the absolute youngest entry, but only, if there are entries - * that are "young enough". + * directory is found that is younger than the time specified in this parameter. Supposed to be used when + * one does not care about the absolute youngest entry, but only, if there are entries that are "young + * enough". * @return The time when any file in (or below) <var>path</var> has last been changed in the file system. * @throws CheckedExceptionTunnel of an {@link IOException} if the <var>path</var> does not exist or is not * readable. @@ -585,7 +585,7 @@ public final class FileUtilities * considering what this parameter is good for, note that the mtime of a directory is changed when an * entry in the directory changes. * @param stopWhenFindYoungerRelative If > 0, the recursive search for younger file will be stopped when a file - * or directory is found that is as young as or younger than + * or directory is found that is younger than * <code>System.currentTimeMillis() - stopWhenYoungerRelative</code>. Supposed to be used when one * does not care about the absolute youngest entry, but only, if there are entries that are "young * enough". @@ -785,15 +785,15 @@ public final class FileUtilities "Failed to get listing of directory '%s' (path is file instead of directory).", directory)); } else { - logger.log(LogLevel.ERROR, String.format( - "Failed to get listing of directory '%s' (path not found).", directory)); + logger.log(LogLevel.ERROR, String.format("Failed to get listing of directory '%s' (path not found).", + directory)); } } else { StringWriter exStackWriter = new StringWriter(); exOrNull.printStackTrace(new PrintWriter(exStackWriter)); - logger.log(LogLevel.ERROR, String.format( - "Failed to get listing of directory '%s'. Exception: %s", directory, exStackWriter.toString())); + logger.log(LogLevel.ERROR, String.format("Failed to get listing of directory '%s'. Exception: %s", + directory, exStackWriter.toString())); } } diff --git a/common/sourceTest/java/ch/systemsx/cisd/common/utilities/FileUtilitiesLastChangedTest.java b/common/sourceTest/java/ch/systemsx/cisd/common/utilities/FileUtilitiesLastChangedTest.java index 4d11ece165f..ac0742c593c 100644 --- a/common/sourceTest/java/ch/systemsx/cisd/common/utilities/FileUtilitiesLastChangedTest.java +++ b/common/sourceTest/java/ch/systemsx/cisd/common/utilities/FileUtilitiesLastChangedTest.java @@ -124,8 +124,8 @@ public class FileUtilitiesLastChangedTest dirA.setLastModified(1000L); assertEquals(3000L, FileUtilities.lastChanged(dirA, false, 0L)); assertEquals(2000L, FileUtilities.lastChanged(dirA, true, 0L)); - assertEquals(1000L, FileUtilities.lastChanged(dirA, false, 1000L)); - assertEquals(1000L, FileUtilities.lastChanged(dirA, true, 1000L)); + assertEquals(1000L, FileUtilities.lastChanged(dirA, false, 999L)); + assertEquals(1000L, FileUtilities.lastChanged(dirA, true, 999L)); } @Test -- GitLab