org.gradle.cache.internal.FileLockManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2011 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
*
* http://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.gradle.cache.internal;
import org.gradle.cache.internal.filelock.LockOptions;
import java.io.File;
public interface FileLockManager {
/**
* Creates a locks for the given file with the given mode. Acquires a lock with the given mode, which is held until the lock is
* released by calling {@link org.gradle.cache.internal.FileLock#close()}. This method blocks until the lock can be acquired.
*
* @param target The file to be locked.
* @param options The lock options.
* @param targetDisplayName A display name for the target file. This is used in log and error messages.
*/
FileLock lock(File target, LockOptions options, String targetDisplayName) throws LockTimeoutException;
/**
* Creates a locks for the given file with the given mode. Acquires a lock with the given mode, which is held until the lock is
* released by calling {@link org.gradle.cache.internal.FileLock#close()}. This method blocks until the lock can be acquired.
*
* @param target The file to be locked.
* @param options The lock options.
* @param targetDisplayName A display name for the target file. This is used in log and error messages.
* @param operationDisplayName A display name for the operation being performed on the target file. This is used in log and error messages.
*/
FileLock lock(File target, LockOptions options, String targetDisplayName, String operationDisplayName) throws LockTimeoutException;
/**
* Enables other processes to request access to the provided lock. Provided action runs when the lock access request is received
* (it means that the lock is contended).
*
* @param fileLock the lock
* @param whenContended will be called asynchronously by the thread that listens for cache access requests, when such request is received.
* Note: currently, implementations are permitted to invoke the action after the lock as been closed.
*/
void allowContention(FileLock fileLock, Runnable whenContended);
enum LockMode {
/**
* No synchronisation is done.
*/
None,
/**
* Multiple readers, no writers.
*/
Shared,
/**
* Single writer, no readers.
*/
Exclusive,
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy