Store exception caught during computation as a result and rethrow it

This commit is contained in:
Nikolay Krasko
2013-08-07 14:14:08 +04:00
parent ca675290a8
commit 8d06a72157
4 changed files with 66 additions and 21 deletions
@@ -20,6 +20,9 @@ import java.io.Closeable;
public class ExceptionUtils {
private ExceptionUtils() {
}
/**
* Translate exception to unchecked exception.
*
@@ -43,7 +46,7 @@ public class ExceptionUtils {
if (closeable != null) {
try {
closeable.close();
} catch (Throwable e) {
} catch (Throwable ignored) {
}
}
}
@@ -50,11 +50,11 @@ public abstract class NullableMemoizedFunction<K, V> implements NullableFunction
@Nullable
public V fun(@NotNull K input) {
Object value = cache.get(input);
if (value != null) return Nulls.unescape(value);
if (value != null) return WrappedValues.unescapeNull(value);
V typedValue = compute(input);
Object oldValue = cache.put(input, Nulls.escape(typedValue));
Object oldValue = cache.put(input, WrappedValues.escapeNull(typedValue));
assert oldValue == null : "Race condition detected";
return typedValue;
@@ -19,19 +19,49 @@ package org.jetbrains.jet.utils;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public class Nulls {
public class WrappedValues {
private static final Object NULL_VALUE = new Object();
private final static class ThrowableWrapper {
private final Throwable throwable;
private ThrowableWrapper(@NotNull Throwable throwable) {
this.throwable = throwable;
}
@NotNull
public Throwable getThrowable() {
return throwable;
}
}
private WrappedValues() {
}
@Nullable
@SuppressWarnings("unchecked")
public static <V> V unescape(@NotNull Object value) {
public static <V> V unescapeNull(@NotNull Object value) {
if (value == NULL_VALUE) return null;
return (V) value;
}
@NotNull
public static <V> Object escape(@Nullable V value) {
public static <V> Object escapeNull(@Nullable V value) {
if (value == null) return NULL_VALUE;
return value;
}
@NotNull
public static Object escapeThrowable(@NotNull Throwable throwable) {
return new ThrowableWrapper(throwable);
}
@Nullable
public static <V> V unescapeExceptionOrNull(@NotNull Object value) {
if (value instanceof ThrowableWrapper) {
throw ExceptionUtils.rethrow(((ThrowableWrapper) value).getThrowable());
}
return unescapeNull(value);
}
}