what-the-bank/sources/com/google/android/gms/measurement/internal/zzfs.java

157 lines
5.6 KiB
Java

package com.google.android.gms.measurement.internal;
import com.google.android.gms.common.internal.Preconditions;
import java.lang.Thread;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.Callable;
import java.util.concurrent.Future;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.PriorityBlockingQueue;
import java.util.concurrent.Semaphore;
import java.util.concurrent.atomic.AtomicLong;
import java.util.concurrent.atomic.AtomicReference;
/* loaded from: classes.dex */
public final class zzfs extends zzgp {
private static final AtomicLong zza = new AtomicLong(Long.MIN_VALUE);
private zzfr zzb;
private zzfr zzc;
private final PriorityBlockingQueue<zzfq<?>> zzd;
private final BlockingQueue<zzfq<?>> zze;
private final Thread.UncaughtExceptionHandler zzf;
private final Thread.UncaughtExceptionHandler zzg;
private final Object zzh;
private final Semaphore zzi;
private volatile boolean zzj;
/* JADX INFO: Access modifiers changed from: package-private */
public zzfs(zzfv zzfvVar) {
super(zzfvVar);
this.zzh = new Object();
this.zzi = new Semaphore(2);
this.zzd = new PriorityBlockingQueue<>();
this.zze = new LinkedBlockingQueue();
this.zzf = new zzfp(this, "Thread death: Uncaught exception on worker thread");
this.zzg = new zzfp(this, "Thread death: Uncaught exception on network thread");
}
private final void zzt(zzfq<?> zzfqVar) {
synchronized (this.zzh) {
this.zzd.add(zzfqVar);
zzfr zzfrVar = this.zzb;
if (zzfrVar != null) {
zzfrVar.zza();
} else {
zzfr zzfrVar2 = new zzfr(this, "Measurement Worker", this.zzd);
this.zzb = zzfrVar2;
zzfrVar2.setUncaughtExceptionHandler(this.zzf);
this.zzb.start();
}
}
}
@Override // com.google.android.gms.measurement.internal.zzgo
public final void zzax() {
if (Thread.currentThread() != this.zzc) {
throw new IllegalStateException("Call expected from network thread");
}
}
/* JADX INFO: Access modifiers changed from: package-private */
public final <T> T zzd(AtomicReference<T> atomicReference, long j, String str, Runnable runnable) {
synchronized (atomicReference) {
this.zzs.zzaz().zzp(runnable);
try {
atomicReference.wait(j);
} catch (InterruptedException unused) {
this.zzs.zzay().zzk().zza(str.length() != 0 ? "Interrupted waiting for ".concat(str) : new String("Interrupted waiting for "));
return null;
}
}
T t = atomicReference.get();
if (t == null) {
this.zzs.zzay().zzk().zza(str.length() != 0 ? "Timed out waiting for ".concat(str) : new String("Timed out waiting for "));
}
return t;
}
@Override // com.google.android.gms.measurement.internal.zzgp
protected final boolean zzf() {
return false;
}
@Override // com.google.android.gms.measurement.internal.zzgo
public final void zzg() {
if (Thread.currentThread() != this.zzb) {
throw new IllegalStateException("Call expected from worker thread");
}
}
public final <V> Future<V> zzh(Callable<V> callable) throws IllegalStateException {
zzu();
Preconditions.checkNotNull(callable);
zzfq<?> zzfqVar = new zzfq<>(this, (Callable<?>) callable, false, "Task exception on worker thread");
if (Thread.currentThread() == this.zzb) {
if (!this.zzd.isEmpty()) {
this.zzs.zzay().zzk().zza("Callable skipped the worker queue.");
}
zzfqVar.run();
} else {
zzt(zzfqVar);
}
return zzfqVar;
}
public final <V> Future<V> zzi(Callable<V> callable) throws IllegalStateException {
zzu();
Preconditions.checkNotNull(callable);
zzfq<?> zzfqVar = new zzfq<>(this, (Callable<?>) callable, true, "Task exception on worker thread");
if (Thread.currentThread() == this.zzb) {
zzfqVar.run();
} else {
zzt(zzfqVar);
}
return zzfqVar;
}
public final void zzo(Runnable runnable) throws IllegalStateException {
zzu();
Preconditions.checkNotNull(runnable);
zzfq<?> zzfqVar = new zzfq<>(this, runnable, false, "Task exception on network thread");
synchronized (this.zzh) {
this.zze.add(zzfqVar);
zzfr zzfrVar = this.zzc;
if (zzfrVar != null) {
zzfrVar.zza();
} else {
zzfr zzfrVar2 = new zzfr(this, "Measurement Network", this.zze);
this.zzc = zzfrVar2;
zzfrVar2.setUncaughtExceptionHandler(this.zzg);
this.zzc.start();
}
}
}
public final void zzp(Runnable runnable) throws IllegalStateException {
zzu();
Preconditions.checkNotNull(runnable);
zzt(new zzfq<>(this, runnable, false, "Task exception on worker thread"));
}
public final void zzq(Runnable runnable) throws IllegalStateException {
zzu();
Preconditions.checkNotNull(runnable);
zzt(new zzfq<>(this, runnable, true, "Task exception on worker thread"));
}
public final boolean zzs() {
return Thread.currentThread() == this.zzb;
}
/* JADX INFO: Access modifiers changed from: package-private */
public static /* bridge */ /* synthetic */ boolean zzr(zzfs zzfsVar) {
boolean z = zzfsVar.zzj;
return false;
}
}