Lock.java
/*******************************************************************************
* Copyright (c) 2015 Eclipse RDF4J contributors, Aduna, and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Distribution License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
package org.eclipse.rdf4j.common.concurrent.locks;
/**
* A lock on a specific monitor that can be used for synchronization purposes.
*/
public interface Lock {
/**
* Checks whether the lock is still active.
*/
boolean isActive();
/**
* Release the lock, making it inactive.
*/
void release();
/**
* Functional interface for supplying a lock with support for InterruptedException.
*/
interface Supplier<T extends Lock> {
T getLock() throws InterruptedException;
}
/**
* Extension of the Lock.Supplier interface to support tryLock().
*/
interface ExtendedSupplier<T extends Lock> extends Supplier<T> {
T tryLock();
static <T extends Lock> Wrapper<T> wrap(Supplier<T> getLockSupplier, Supplier<T> tryLockSupplier) {
return new Wrapper<>(getLockSupplier, tryLockSupplier);
}
class Wrapper<T extends Lock> implements ExtendedSupplier<T> {
Supplier<T> getLockSupplier;
Supplier<T> tryLockSupplier;
private Wrapper(Supplier<T> getLockSupplier, Supplier<T> tryLockSupplier) {
this.getLockSupplier = getLockSupplier;
this.tryLockSupplier = tryLockSupplier;
}
@Override
public T tryLock() {
try {
return tryLockSupplier.getLock();
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new IllegalStateException(e);
}
}
@Override
public T getLock() throws InterruptedException {
return getLockSupplier.getLock();
}
}
}
}