Skip to content

GH-3076: Add file existence check #3077

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Oct 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,14 @@
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;

import org.springframework.lang.Nullable;

/**
* Static cache of FileLocks that can be used to ensure that only a single lock is used inside this ClassLoader.
*
* @author Iwein Fuld
* @author Gary Russell
* @author Emmanuel Roux
* @since 2.0
*/
final class FileChannelCache {
Expand All @@ -49,9 +52,10 @@ private FileChannelCache() {
* <p>
* Thread safe.
*/
@Nullable
public static FileLock tryLockFor(File fileToLock) throws IOException {
FileChannel channel = channelCache.get(fileToLock);
if (channel == null) {
if (channel == null && fileToLock.exists()) {
@SuppressWarnings("resource")
FileChannel newChannel = new RandomAccessFile(fileToLock, "rw").getChannel();
FileChannel original = channelCache.putIfAbsent(fileToLock, newChannel);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/*
* Copyright 2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.springframework.integration.file.locking;

import static org.assertj.core.api.Assertions.assertThat;

import java.io.File;
import java.io.IOException;

import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;

/**
* @author Emmanuel Roux
* @since 4.3.22
*/
public class FileChannelCacheTests {

@Rule
public TemporaryFolder temp = new TemporaryFolder();

@Test
public void throwsExceptionWhenFileNotExists() throws IOException {
File testFile = new File(temp.getRoot(), "test0");
assertThat(testFile.exists()).isFalse();
assertThat(FileChannelCache.tryLockFor(testFile)).isNull();
assertThat(testFile.exists()).isFalse();
}

@Test
public void fileLocked() throws IOException {
File testFile = temp.newFile("test1");
testFile.createNewFile();
assertThat(testFile.exists()).isTrue();
assertThat(FileChannelCache.tryLockFor(testFile)).isNotNull();
FileChannelCache.closeChannelFor(testFile);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
/**
* @author Iwein Fuld
* @author Gary Russell
* @author Emmanuel Roux
*/
public class NioFileLockerTests {

Expand Down Expand Up @@ -76,4 +77,21 @@ public void fileNotListedWhenLockedByOtherFilter() throws IOException {
filter1.unlock(testFile);
}

@Test
public void fileLockedWhenNotAlreadyLockedAndExists() throws IOException {
NioFileLocker locker = new NioFileLocker();
File testFile = new File(workdir, "test2");
testFile.createNewFile();
assertThat(locker.lock(testFile)).isTrue();
locker.unlock(testFile);
}

@Test
public void fileNotLockedWhenNotExists() throws IOException {
NioFileLocker locker = new NioFileLocker();
File testFile = new File(workdir, "test3");
assertThat(locker.lock(testFile)).isFalse();
assertThat(testFile.exists()).isFalse();
}

}