mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 00:52:31 -06:00
286 lines
10 KiB
Java
286 lines
10 KiB
Java
package com.google.common.base;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.concurrent.TimeUnit;
|
|
import javax.annotation.CheckForNull;
|
|
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes2.dex */
|
|
public final class Suppliers {
|
|
|
|
/* loaded from: classes2.dex */
|
|
private interface SupplierFunction<T> extends Function<Supplier<T>, T> {
|
|
}
|
|
|
|
private Suppliers() {
|
|
}
|
|
|
|
public static <F, T> Supplier<T> compose(Function<? super F, T> function, Supplier<F> supplier) {
|
|
return new SupplierComposition(function, supplier);
|
|
}
|
|
|
|
/* loaded from: classes2.dex */
|
|
private static class SupplierComposition<F, T> implements Supplier<T>, Serializable {
|
|
private static final long serialVersionUID = 0;
|
|
final Function<? super F, T> function;
|
|
final Supplier<F> supplier;
|
|
|
|
SupplierComposition(Function<? super F, T> function, Supplier<F> supplier) {
|
|
this.function = (Function) Preconditions.checkNotNull(function);
|
|
this.supplier = (Supplier) Preconditions.checkNotNull(supplier);
|
|
}
|
|
|
|
@Override // com.google.common.base.Supplier
|
|
@ParametricNullness
|
|
public T get() {
|
|
return this.function.apply(this.supplier.get());
|
|
}
|
|
|
|
public boolean equals(@CheckForNull Object obj) {
|
|
if (!(obj instanceof SupplierComposition)) {
|
|
return false;
|
|
}
|
|
SupplierComposition supplierComposition = (SupplierComposition) obj;
|
|
return this.function.equals(supplierComposition.function) && this.supplier.equals(supplierComposition.supplier);
|
|
}
|
|
|
|
public int hashCode() {
|
|
return Objects.hashCode(this.function, this.supplier);
|
|
}
|
|
|
|
public String toString() {
|
|
String valueOf = String.valueOf(this.function);
|
|
String valueOf2 = String.valueOf(this.supplier);
|
|
return new StringBuilder(String.valueOf(valueOf).length() + 21 + String.valueOf(valueOf2).length()).append("Suppliers.compose(").append(valueOf).append(", ").append(valueOf2).append(")").toString();
|
|
}
|
|
}
|
|
|
|
public static <T> Supplier<T> memoize(Supplier<T> supplier) {
|
|
if ((supplier instanceof NonSerializableMemoizingSupplier) || (supplier instanceof MemoizingSupplier)) {
|
|
return supplier;
|
|
}
|
|
if (supplier instanceof Serializable) {
|
|
return new MemoizingSupplier(supplier);
|
|
}
|
|
return new NonSerializableMemoizingSupplier(supplier);
|
|
}
|
|
|
|
/* loaded from: classes2.dex */
|
|
static class MemoizingSupplier<T> implements Supplier<T>, Serializable {
|
|
private static final long serialVersionUID = 0;
|
|
final Supplier<T> delegate;
|
|
volatile transient boolean initialized;
|
|
|
|
@CheckForNull
|
|
transient T value;
|
|
|
|
MemoizingSupplier(Supplier<T> supplier) {
|
|
this.delegate = (Supplier) Preconditions.checkNotNull(supplier);
|
|
}
|
|
|
|
@Override // com.google.common.base.Supplier
|
|
@ParametricNullness
|
|
public T get() {
|
|
if (!this.initialized) {
|
|
synchronized (this) {
|
|
if (!this.initialized) {
|
|
T t = this.delegate.get();
|
|
this.value = t;
|
|
this.initialized = true;
|
|
return t;
|
|
}
|
|
}
|
|
}
|
|
return (T) NullnessCasts.uncheckedCastNullableTToT(this.value);
|
|
}
|
|
|
|
public String toString() {
|
|
Object obj;
|
|
if (this.initialized) {
|
|
String valueOf = String.valueOf(this.value);
|
|
obj = new StringBuilder(String.valueOf(valueOf).length() + 25).append("<supplier that returned ").append(valueOf).append(">").toString();
|
|
} else {
|
|
obj = this.delegate;
|
|
}
|
|
String valueOf2 = String.valueOf(obj);
|
|
return new StringBuilder(String.valueOf(valueOf2).length() + 19).append("Suppliers.memoize(").append(valueOf2).append(")").toString();
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes2.dex */
|
|
static class NonSerializableMemoizingSupplier<T> implements Supplier<T> {
|
|
|
|
@CheckForNull
|
|
volatile Supplier<T> delegate;
|
|
volatile boolean initialized;
|
|
|
|
@CheckForNull
|
|
T value;
|
|
|
|
NonSerializableMemoizingSupplier(Supplier<T> supplier) {
|
|
this.delegate = (Supplier) Preconditions.checkNotNull(supplier);
|
|
}
|
|
|
|
@Override // com.google.common.base.Supplier
|
|
@ParametricNullness
|
|
public T get() {
|
|
if (!this.initialized) {
|
|
synchronized (this) {
|
|
if (!this.initialized) {
|
|
T t = (T) ((Supplier) java.util.Objects.requireNonNull(this.delegate)).get();
|
|
this.value = t;
|
|
this.initialized = true;
|
|
this.delegate = null;
|
|
return t;
|
|
}
|
|
}
|
|
}
|
|
return (T) NullnessCasts.uncheckedCastNullableTToT(this.value);
|
|
}
|
|
|
|
public String toString() {
|
|
Object obj = this.delegate;
|
|
if (obj == null) {
|
|
String valueOf = String.valueOf(this.value);
|
|
obj = new StringBuilder(String.valueOf(valueOf).length() + 25).append("<supplier that returned ").append(valueOf).append(">").toString();
|
|
}
|
|
String valueOf2 = String.valueOf(obj);
|
|
return new StringBuilder(String.valueOf(valueOf2).length() + 19).append("Suppliers.memoize(").append(valueOf2).append(")").toString();
|
|
}
|
|
}
|
|
|
|
public static <T> Supplier<T> memoizeWithExpiration(Supplier<T> supplier, long j, TimeUnit timeUnit) {
|
|
return new ExpiringMemoizingSupplier(supplier, j, timeUnit);
|
|
}
|
|
|
|
/* loaded from: classes2.dex */
|
|
static class ExpiringMemoizingSupplier<T> implements Supplier<T>, Serializable {
|
|
private static final long serialVersionUID = 0;
|
|
final Supplier<T> delegate;
|
|
final long durationNanos;
|
|
volatile transient long expirationNanos;
|
|
|
|
@CheckForNull
|
|
volatile transient T value;
|
|
|
|
ExpiringMemoizingSupplier(Supplier<T> supplier, long j, TimeUnit timeUnit) {
|
|
this.delegate = (Supplier) Preconditions.checkNotNull(supplier);
|
|
this.durationNanos = timeUnit.toNanos(j);
|
|
Preconditions.checkArgument(j > 0, "duration (%s %s) must be > 0", j, timeUnit);
|
|
}
|
|
|
|
@Override // com.google.common.base.Supplier
|
|
@ParametricNullness
|
|
public T get() {
|
|
long j = this.expirationNanos;
|
|
long systemNanoTime = Platform.systemNanoTime();
|
|
if (j == 0 || systemNanoTime - j >= 0) {
|
|
synchronized (this) {
|
|
if (j == this.expirationNanos) {
|
|
T t = this.delegate.get();
|
|
this.value = t;
|
|
long j2 = systemNanoTime + this.durationNanos;
|
|
if (j2 == 0) {
|
|
j2 = 1;
|
|
}
|
|
this.expirationNanos = j2;
|
|
return t;
|
|
}
|
|
}
|
|
}
|
|
return (T) NullnessCasts.uncheckedCastNullableTToT(this.value);
|
|
}
|
|
|
|
public String toString() {
|
|
String valueOf = String.valueOf(this.delegate);
|
|
return new StringBuilder(String.valueOf(valueOf).length() + 62).append("Suppliers.memoizeWithExpiration(").append(valueOf).append(", ").append(this.durationNanos).append(", NANOS)").toString();
|
|
}
|
|
}
|
|
|
|
public static <T> Supplier<T> ofInstance(@ParametricNullness T t) {
|
|
return new SupplierOfInstance(t);
|
|
}
|
|
|
|
/* loaded from: classes2.dex */
|
|
private static class SupplierOfInstance<T> implements Supplier<T>, Serializable {
|
|
private static final long serialVersionUID = 0;
|
|
|
|
@ParametricNullness
|
|
final T instance;
|
|
|
|
@Override // com.google.common.base.Supplier
|
|
@ParametricNullness
|
|
public T get() {
|
|
return this.instance;
|
|
}
|
|
|
|
SupplierOfInstance(@ParametricNullness T t) {
|
|
this.instance = t;
|
|
}
|
|
|
|
public boolean equals(@CheckForNull Object obj) {
|
|
if (obj instanceof SupplierOfInstance) {
|
|
return Objects.equal(this.instance, ((SupplierOfInstance) obj).instance);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return Objects.hashCode(this.instance);
|
|
}
|
|
|
|
public String toString() {
|
|
String valueOf = String.valueOf(this.instance);
|
|
return new StringBuilder(String.valueOf(valueOf).length() + 22).append("Suppliers.ofInstance(").append(valueOf).append(")").toString();
|
|
}
|
|
}
|
|
|
|
public static <T> Supplier<T> synchronizedSupplier(Supplier<T> supplier) {
|
|
return new ThreadSafeSupplier(supplier);
|
|
}
|
|
|
|
/* loaded from: classes2.dex */
|
|
private static class ThreadSafeSupplier<T> implements Supplier<T>, Serializable {
|
|
private static final long serialVersionUID = 0;
|
|
final Supplier<T> delegate;
|
|
|
|
ThreadSafeSupplier(Supplier<T> supplier) {
|
|
this.delegate = (Supplier) Preconditions.checkNotNull(supplier);
|
|
}
|
|
|
|
@Override // com.google.common.base.Supplier
|
|
@ParametricNullness
|
|
public T get() {
|
|
T t;
|
|
synchronized (this.delegate) {
|
|
t = this.delegate.get();
|
|
}
|
|
return t;
|
|
}
|
|
|
|
public String toString() {
|
|
String valueOf = String.valueOf(this.delegate);
|
|
return new StringBuilder(String.valueOf(valueOf).length() + 32).append("Suppliers.synchronizedSupplier(").append(valueOf).append(")").toString();
|
|
}
|
|
}
|
|
|
|
public static <T> Function<Supplier<T>, T> supplierFunction() {
|
|
return SupplierFunctionImpl.INSTANCE;
|
|
}
|
|
|
|
/* loaded from: classes2.dex */
|
|
private enum SupplierFunctionImpl implements SupplierFunction<Object> {
|
|
INSTANCE;
|
|
|
|
@Override // java.lang.Enum
|
|
public String toString() {
|
|
return "Suppliers.supplierFunction()";
|
|
}
|
|
|
|
@Override // com.google.common.base.Function
|
|
@CheckForNull
|
|
public Object apply(Supplier<Object> supplier) {
|
|
return supplier.get();
|
|
}
|
|
}
|
|
}
|