- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
107 lines
4.1 KiB
Java
107 lines
4.1 KiB
Java
package com.google.android.gms.common.internal;
|
|
|
|
import android.content.Context;
|
|
import android.content.ServiceConnection;
|
|
import android.os.Handler;
|
|
import android.os.Looper;
|
|
import androidx.annotation.Nullable;
|
|
import androidx.work.PeriodicWorkRequest;
|
|
import com.google.android.gms.common.stats.ConnectionTracker;
|
|
import java.util.HashMap;
|
|
import java.util.concurrent.Executor;
|
|
|
|
/* loaded from: classes2.dex */
|
|
final class zzs extends GmsClientSupervisor {
|
|
private final HashMap zzb = new HashMap();
|
|
private final Context zzc;
|
|
private volatile Handler zzd;
|
|
private final zzr zze;
|
|
private final ConnectionTracker zzf;
|
|
private final long zzg;
|
|
private final long zzh;
|
|
|
|
@Nullable
|
|
private volatile Executor zzi;
|
|
|
|
public zzs(Context context, Looper looper, @Nullable Executor executor) {
|
|
zzr zzrVar = new zzr(this, null);
|
|
this.zze = zzrVar;
|
|
this.zzc = context.getApplicationContext();
|
|
this.zzd = new com.google.android.gms.internal.common.zzi(looper, zzrVar);
|
|
this.zzf = ConnectionTracker.getInstance();
|
|
this.zzg = 5000L;
|
|
this.zzh = PeriodicWorkRequest.MIN_PERIODIC_FLEX_MILLIS;
|
|
this.zzi = executor;
|
|
}
|
|
|
|
@Override // com.google.android.gms.common.internal.GmsClientSupervisor
|
|
public final void zza(zzo zzoVar, ServiceConnection serviceConnection, String str) {
|
|
Preconditions.checkNotNull(serviceConnection, "ServiceConnection must not be null");
|
|
synchronized (this.zzb) {
|
|
try {
|
|
zzp zzpVar = (zzp) this.zzb.get(zzoVar);
|
|
if (zzpVar == null) {
|
|
throw new IllegalStateException("Nonexistent connection status for service config: " + zzoVar.toString());
|
|
}
|
|
if (!zzpVar.zzh(serviceConnection)) {
|
|
throw new IllegalStateException("Trying to unbind a GmsServiceConnection that was not bound before. config=" + zzoVar.toString());
|
|
}
|
|
zzpVar.zzf(serviceConnection, str);
|
|
if (zzpVar.zzi()) {
|
|
this.zzd.sendMessageDelayed(this.zzd.obtainMessage(0, zzoVar), this.zzg);
|
|
}
|
|
} catch (Throwable th) {
|
|
throw th;
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override // com.google.android.gms.common.internal.GmsClientSupervisor
|
|
public final boolean zzc(zzo zzoVar, ServiceConnection serviceConnection, String str, @Nullable Executor executor) {
|
|
boolean zzj;
|
|
Preconditions.checkNotNull(serviceConnection, "ServiceConnection must not be null");
|
|
synchronized (this.zzb) {
|
|
try {
|
|
zzp zzpVar = (zzp) this.zzb.get(zzoVar);
|
|
if (executor == null) {
|
|
executor = this.zzi;
|
|
}
|
|
if (zzpVar == null) {
|
|
zzpVar = new zzp(this, zzoVar);
|
|
zzpVar.zzd(serviceConnection, serviceConnection, str);
|
|
zzpVar.zze(str, executor);
|
|
this.zzb.put(zzoVar, zzpVar);
|
|
} else {
|
|
this.zzd.removeMessages(0, zzoVar);
|
|
if (zzpVar.zzh(serviceConnection)) {
|
|
throw new IllegalStateException("Trying to bind a GmsServiceConnection that was already connected before. config=" + zzoVar.toString());
|
|
}
|
|
zzpVar.zzd(serviceConnection, serviceConnection, str);
|
|
int zza = zzpVar.zza();
|
|
if (zza == 1) {
|
|
serviceConnection.onServiceConnected(zzpVar.zzb(), zzpVar.zzc());
|
|
} else if (zza == 2) {
|
|
zzpVar.zze(str, executor);
|
|
}
|
|
}
|
|
zzj = zzpVar.zzj();
|
|
} catch (Throwable th) {
|
|
throw th;
|
|
}
|
|
}
|
|
return zzj;
|
|
}
|
|
|
|
public final void zzi(@Nullable Executor executor) {
|
|
synchronized (this.zzb) {
|
|
this.zzi = executor;
|
|
}
|
|
}
|
|
|
|
public final void zzj(Looper looper) {
|
|
synchronized (this.zzb) {
|
|
this.zzd = new com.google.android.gms.internal.common.zzi(looper, this.zze);
|
|
}
|
|
}
|
|
}
|