Files
rr3-apk/decompiled/sources/com/google/android/gms/internal/ads/zzfw.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

105 lines
3.0 KiB
Java

package com.google.android.gms.internal.ads;
import android.net.Uri;
import android.util.Base64;
import androidx.annotation.Nullable;
import java.io.IOException;
import java.net.URLDecoder;
import java.nio.charset.StandardCharsets;
/* loaded from: classes3.dex */
public final class zzfw extends zzfr {
@Nullable
private zzgd zza;
@Nullable
private byte[] zzb;
private int zzc;
private int zzd;
public zzfw() {
super(false);
}
@Override // com.google.android.gms.internal.ads.zzl
public final int zza(byte[] bArr, int i, int i2) {
if (i2 == 0) {
return 0;
}
int i3 = this.zzd;
if (i3 == 0) {
return -1;
}
int min = Math.min(i2, i3);
byte[] bArr2 = this.zzb;
int i4 = zzei.zza;
System.arraycopy(bArr2, this.zzc, bArr, i, min);
this.zzc += min;
this.zzd -= min;
zzg(min);
return min;
}
@Override // com.google.android.gms.internal.ads.zzfy
public final long zzb(zzgd zzgdVar) throws IOException {
zzi(zzgdVar);
this.zza = zzgdVar;
Uri normalizeScheme = zzgdVar.zza.normalizeScheme();
String scheme = normalizeScheme.getScheme();
zzcw.zze("data".equals(scheme), "Unsupported scheme: ".concat(String.valueOf(scheme)));
String schemeSpecificPart = normalizeScheme.getSchemeSpecificPart();
int i = zzei.zza;
String[] split = schemeSpecificPart.split(",", -1);
if (split.length != 2) {
throw zzbc.zzb("Unexpected URI format: ".concat(String.valueOf(normalizeScheme)), null);
}
String str = split[1];
if (split[0].contains(";base64")) {
try {
this.zzb = Base64.decode(str, 0);
} catch (IllegalArgumentException e) {
throw zzbc.zzb("Error while parsing Base64 encoded string: ".concat(String.valueOf(str)), e);
}
} else {
this.zzb = URLDecoder.decode(str, StandardCharsets.US_ASCII.name()).getBytes(StandardCharsets.UTF_8);
}
long j = zzgdVar.zze;
int length = this.zzb.length;
if (j > length) {
this.zzb = null;
throw new zzfz(2008);
}
int i2 = (int) j;
this.zzc = i2;
int i3 = length - i2;
this.zzd = i3;
long j2 = zzgdVar.zzf;
if (j2 != -1) {
this.zzd = (int) Math.min(i3, j2);
}
zzj(zzgdVar);
long j3 = zzgdVar.zzf;
return j3 != -1 ? j3 : this.zzd;
}
@Override // com.google.android.gms.internal.ads.zzfy
@Nullable
public final Uri zzc() {
zzgd zzgdVar = this.zza;
if (zzgdVar != null) {
return zzgdVar.zza;
}
return null;
}
@Override // com.google.android.gms.internal.ads.zzfy
public final void zzd() {
if (this.zzb != null) {
this.zzb = null;
zzh();
}
this.zza = null;
}
}