org.fuwjax.oss.util.function.Deferred Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of funco Show documentation
Show all versions of funco Show documentation
Java 8 Functional interface extentions, collection decorators, I/O interfaces, and assertions
The newest version!
/*
* Copyright (C) 2015 fuwjax.org ([email protected])
*
* 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.fuwjax.oss.util.function;
import java.util.concurrent.atomic.AtomicReference;
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
import java.util.function.Supplier;
public class Deferred implements Supplier {
private class Block implements Supplier {
private final Lock lock = new ReentrantLock();
private final Condition condition = lock.newCondition();
@Override
public T get() {
lock.lock();
try {
if (value.get() == this) {
condition.await();
}
return value.get().get();
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new UnsafeException(e, "Interrupted while initializing a deferred object");
} finally {
lock.unlock();
}
}
public void unblock() {
lock.lock();
try {
condition.signalAll();
} finally {
lock.unlock();
}
}
}
private final Supplier init;
private final AtomicReference> value = new AtomicReference<>();
public Deferred(final Supplier init) {
this.init = init;
}
@Override
public T get() {
Supplier p = value.get();
if (p != null) {
return p.get();
}
Block block = new Block();
if (value.compareAndSet(null, block)) {
try {
final T v = init.get();
if(value.compareAndSet(block, () -> v)){
return v;
}
} catch (final RuntimeException e) {
value.compareAndSet(block, () -> {
throw e;
});
throw e;
} finally {
block.unblock();
}
}
return value.get().get();
}
}