Files
rr3-apk/decompiled-community/sources/com/google/android/gms/internal/appset/zzl.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

144 lines
6.1 KiB
Java

package com.google.android.gms.internal.appset;
import android.content.Context;
import android.content.SharedPreferences;
import android.util.Log;
import androidx.annotation.GuardedBy;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.VisibleForTesting;
import com.google.android.gms.appset.AppSetIdClient;
import com.google.android.gms.appset.AppSetIdInfo;
import com.google.android.gms.common.internal.Preconditions;
import com.google.android.gms.common.util.DefaultClock;
import com.google.android.gms.tasks.Task;
import com.google.android.gms.tasks.TaskCompletionSource;
import java.util.UUID;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;
/* loaded from: classes3.dex */
public final class zzl implements AppSetIdClient {
@Nullable
@GuardedBy("InternalAppSetAppSideClientImpl.class")
private static AppSetIdClient zza;
private final Context zzb;
private boolean zzc;
private final ScheduledExecutorService zzd;
private final ExecutorService zze;
public zzl(Context context) {
this.zzc = false;
ScheduledExecutorService newSingleThreadScheduledExecutor = Executors.newSingleThreadScheduledExecutor();
this.zzd = newSingleThreadScheduledExecutor;
this.zze = Executors.newSingleThreadExecutor();
this.zzb = context;
if (this.zzc) {
return;
}
newSingleThreadScheduledExecutor.scheduleAtFixedRate(new zzj(this, null), 0L, 86400L, TimeUnit.SECONDS);
this.zzc = true;
}
@NonNull
public static synchronized AppSetIdClient zzc(@NonNull Context context) {
AppSetIdClient appSetIdClient;
synchronized (zzl.class) {
try {
Preconditions.checkNotNull(context, "Context must not be null");
if (zza == null) {
zza = new zzl(context.getApplicationContext());
}
appSetIdClient = zza;
} catch (Throwable th) {
throw th;
}
}
return appSetIdClient;
}
@VisibleForTesting
public static final void zze(Context context) {
if (!zzf(context).edit().remove("app_set_id").commit()) {
String valueOf = String.valueOf(context.getPackageName());
Log.e("AppSet", valueOf.length() != 0 ? "Failed to clear app set ID generated for App ".concat(valueOf) : new String("Failed to clear app set ID generated for App "));
}
if (zzf(context).edit().remove("app_set_id_last_used_time").commit()) {
return;
}
String valueOf2 = String.valueOf(context.getPackageName());
Log.e("AppSet", valueOf2.length() != 0 ? "Failed to clear app set ID last used time for App ".concat(valueOf2) : new String("Failed to clear app set ID last used time for App "));
}
private static final SharedPreferences zzf(Context context) {
return context.getSharedPreferences("app_set_id_storage", 0);
}
private static final void zzg(Context context) throws zzk {
if (zzf(context).edit().putLong("app_set_id_last_used_time", DefaultClock.getInstance().currentTimeMillis()).commit()) {
return;
}
String valueOf = String.valueOf(context.getPackageName());
Log.e("AppSet", valueOf.length() != 0 ? "Failed to store app set ID last used time for App ".concat(valueOf) : new String("Failed to store app set ID last used time for App "));
throw new zzk("Failed to store the app set ID last used time.");
}
@Override // com.google.android.gms.appset.AppSetIdClient
public final Task<AppSetIdInfo> getAppSetIdInfo() {
final TaskCompletionSource taskCompletionSource = new TaskCompletionSource();
this.zze.execute(new Runnable() { // from class: com.google.android.gms.internal.appset.zzh
@Override // java.lang.Runnable
public final void run() {
zzl.this.zzd(taskCompletionSource);
}
});
return taskCompletionSource.getTask();
}
@VisibleForTesting
public final long zza() {
long j = zzf(this.zzb).getLong("app_set_id_last_used_time", -1L);
if (j != -1) {
return j + 33696000000L;
}
return -1L;
}
public final /* synthetic */ void zzd(TaskCompletionSource taskCompletionSource) {
String string = zzf(this.zzb).getString("app_set_id", null);
long zza2 = zza();
if (string == null || DefaultClock.getInstance().currentTimeMillis() > zza2) {
string = UUID.randomUUID().toString();
try {
Context context = this.zzb;
if (!zzf(context).edit().putString("app_set_id", string).commit()) {
String valueOf = String.valueOf(context.getPackageName());
Log.e("AppSet", valueOf.length() != 0 ? "Failed to store app set ID generated for App ".concat(valueOf) : new String("Failed to store app set ID generated for App "));
throw new zzk("Failed to store the app set ID.");
}
zzg(context);
Context context2 = this.zzb;
if (!zzf(context2).edit().putLong("app_set_id_creation_time", DefaultClock.getInstance().currentTimeMillis()).commit()) {
String valueOf2 = String.valueOf(context2.getPackageName());
Log.e("AppSet", valueOf2.length() != 0 ? "Failed to store app set ID creation time for App ".concat(valueOf2) : new String("Failed to store app set ID creation time for App "));
throw new zzk("Failed to store the app set ID creation time.");
}
} catch (zzk e) {
taskCompletionSource.setException(e);
return;
}
} else {
try {
zzg(this.zzb);
} catch (zzk e2) {
taskCompletionSource.setException(e2);
return;
}
}
taskCompletionSource.setResult(new AppSetIdInfo(string, 1));
}
}