puntobip/sources/android/support/v4/util/Pools.java
2022-12-04 18:05:41 -03:00

89 lines
2.6 KiB
Java

package android.support.v4.util;
/* loaded from: classes.dex */
public final class Pools {
/* loaded from: classes.dex */
public interface Pool<T> {
T acquire();
boolean release(T t);
}
private Pools() {
}
/* loaded from: classes.dex */
public static class SimplePool<T> implements Pool<T> {
private final Object[] mPool;
private int mPoolSize;
public SimplePool(int maxPoolSize) {
if (maxPoolSize <= 0) {
throw new IllegalArgumentException("The max pool size must be > 0");
}
this.mPool = new Object[maxPoolSize];
}
@Override // android.support.v4.util.Pools.Pool
public T acquire() {
if (this.mPoolSize > 0) {
int lastPooledIndex = this.mPoolSize - 1;
T instance = (T) this.mPool[lastPooledIndex];
this.mPool[lastPooledIndex] = null;
this.mPoolSize--;
return instance;
}
return null;
}
@Override // android.support.v4.util.Pools.Pool
public boolean release(T instance) {
if (isInPool(instance)) {
throw new IllegalStateException("Already in the pool!");
}
if (this.mPoolSize >= this.mPool.length) {
return false;
}
this.mPool[this.mPoolSize] = instance;
this.mPoolSize++;
return true;
}
private boolean isInPool(T instance) {
for (int i = 0; i < this.mPoolSize; i++) {
if (this.mPool[i] == instance) {
return true;
}
}
return false;
}
}
/* loaded from: classes.dex */
public static class SynchronizedPool<T> extends SimplePool<T> {
private final Object mLock;
public SynchronizedPool(int maxPoolSize) {
super(maxPoolSize);
this.mLock = new Object();
}
@Override // android.support.v4.util.Pools.SimplePool, android.support.v4.util.Pools.Pool
public T acquire() {
T t;
synchronized (this.mLock) {
t = (T) super.acquire();
}
return t;
}
@Override // android.support.v4.util.Pools.SimplePool, android.support.v4.util.Pools.Pool
public boolean release(T element) {
boolean release;
synchronized (this.mLock) {
release = super.release(element);
}
return release;
}
}
}