Initial version -- added millennium read funcionality
This commit is contained in:
+77
@@ -0,0 +1,77 @@
|
||||
package com.google.android.gms.common.server.converter;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.Parcelable;
|
||||
import android.util.SparseArray;
|
||||
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
|
||||
import com.google.android.gms.common.internal.safeparcel.SafeParcelWriter;
|
||||
import com.google.android.gms.common.server.response.FastJsonResponse;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class StringToIntConverter extends AbstractSafeParcelable implements FastJsonResponse.FieldConverter<String, Integer> {
|
||||
public static final Parcelable.Creator<StringToIntConverter> CREATOR = new zad();
|
||||
final int zaa;
|
||||
private final HashMap zab;
|
||||
private final SparseArray zac;
|
||||
|
||||
public StringToIntConverter() {
|
||||
this.zaa = 1;
|
||||
this.zab = new HashMap();
|
||||
this.zac = new SparseArray();
|
||||
}
|
||||
|
||||
public StringToIntConverter add(String str, int i) {
|
||||
this.zab.put(str, Integer.valueOf(i));
|
||||
this.zac.put(i, str);
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override // android.os.Parcelable
|
||||
public final void writeToParcel(Parcel parcel, int i) {
|
||||
int i2 = this.zaa;
|
||||
int iBeginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
|
||||
SafeParcelWriter.writeInt(parcel, 1, i2);
|
||||
ArrayList arrayList = new ArrayList();
|
||||
for (String str : this.zab.keySet()) {
|
||||
arrayList.add(new zac(str, ((Integer) this.zab.get(str)).intValue()));
|
||||
}
|
||||
SafeParcelWriter.writeTypedList(parcel, 2, arrayList, false);
|
||||
SafeParcelWriter.finishObjectHeader(parcel, iBeginObjectHeader);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.common.server.response.FastJsonResponse.FieldConverter
|
||||
public final int zaa() {
|
||||
return 7;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.common.server.response.FastJsonResponse.FieldConverter
|
||||
public final int zab() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.common.server.response.FastJsonResponse.FieldConverter
|
||||
public final /* bridge */ /* synthetic */ Object zac(Object obj) {
|
||||
Integer num = (Integer) this.zab.get((String) obj);
|
||||
return num == null ? (Integer) this.zab.get("gms_unknown") : num;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.common.server.response.FastJsonResponse.FieldConverter
|
||||
public final /* bridge */ /* synthetic */ Object zad(Object obj) {
|
||||
String str = (String) this.zac.get(((Integer) obj).intValue());
|
||||
return (str == null && this.zab.containsKey("gms_unknown")) ? "gms_unknown" : str;
|
||||
}
|
||||
|
||||
StringToIntConverter(int i, ArrayList arrayList) {
|
||||
this.zaa = i;
|
||||
this.zab = new HashMap();
|
||||
this.zac = new SparseArray();
|
||||
int size = arrayList.size();
|
||||
for (int i2 = 0; i2 < size; i2++) {
|
||||
zac zacVar = (zac) arrayList.get(i2);
|
||||
add(zacVar.zab, zacVar.zac);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user