148 lines
5.9 KiB
Java
148 lines
5.9 KiB
Java
package com.google.android.gms.common.internal.safeparcel;
|
|
|
|
import android.content.Intent;
|
|
import android.os.Bundle;
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import com.google.android.gms.common.internal.Preconditions;
|
|
import com.google.android.gms.common.util.Base64Utils;
|
|
import com.google.android.gms.internal.common.zzag;
|
|
import java.util.ArrayList;
|
|
import java.util.Iterator;
|
|
|
|
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
public final class SafeParcelableSerializer {
|
|
private SafeParcelableSerializer() {
|
|
}
|
|
|
|
public static <T extends SafeParcelable> T deserializeFromBytes(byte[] bArr, Parcelable.Creator<T> creator) {
|
|
Preconditions.checkNotNull(creator);
|
|
Parcel parcelObtain = Parcel.obtain();
|
|
parcelObtain.unmarshall(bArr, 0, bArr.length);
|
|
parcelObtain.setDataPosition(0);
|
|
T tCreateFromParcel = creator.createFromParcel(parcelObtain);
|
|
parcelObtain.recycle();
|
|
return tCreateFromParcel;
|
|
}
|
|
|
|
public static <T extends SafeParcelable> T deserializeFromIntentExtra(Intent intent, String str, Parcelable.Creator<T> creator) {
|
|
byte[] byteArrayExtra = intent.getByteArrayExtra(str);
|
|
if (byteArrayExtra == null) {
|
|
return null;
|
|
}
|
|
return (T) deserializeFromBytes(byteArrayExtra, creator);
|
|
}
|
|
|
|
public static <T extends SafeParcelable> T deserializeFromString(String str, Parcelable.Creator<T> creator) {
|
|
return (T) deserializeFromBytes(Base64Utils.decodeUrlSafe(str), creator);
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
@Deprecated
|
|
public static <T extends SafeParcelable> ArrayList<T> deserializeIterableFromBundle(Bundle bundle, String str, Parcelable.Creator<T> creator) {
|
|
ArrayList arrayList = (ArrayList) bundle.getSerializable(str);
|
|
if (arrayList == null) {
|
|
return null;
|
|
}
|
|
ArrayList<T> arrayList2 = (ArrayList<T>) new ArrayList(arrayList.size());
|
|
int size = arrayList.size();
|
|
for (int i = 0; i < size; i++) {
|
|
arrayList2.add(deserializeFromBytes((byte[]) arrayList.get(i), creator));
|
|
}
|
|
return arrayList2;
|
|
}
|
|
|
|
public static <T extends SafeParcelable> ArrayList<T> deserializeIterableFromBundleSafe(Bundle bundle, String str, Parcelable.Creator<T> creator) {
|
|
return deserializeIterableFromBytes(bundle.getByteArray(str), creator);
|
|
}
|
|
|
|
public static <T extends SafeParcelable> ArrayList<T> deserializeIterableFromBytes(byte[] bArr, Parcelable.Creator<T> creator) {
|
|
if (bArr == null) {
|
|
return null;
|
|
}
|
|
Parcel parcelObtain = Parcel.obtain();
|
|
parcelObtain.unmarshall(bArr, 0, bArr.length);
|
|
parcelObtain.setDataPosition(0);
|
|
try {
|
|
ArrayList<T> arrayList = new ArrayList<>();
|
|
parcelObtain.readTypedList(arrayList, creator);
|
|
return arrayList;
|
|
} finally {
|
|
parcelObtain.recycle();
|
|
}
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
@Deprecated
|
|
public static <T extends SafeParcelable> ArrayList<T> deserializeIterableFromIntentExtra(Intent intent, String str, Parcelable.Creator<T> creator) {
|
|
ArrayList arrayList = (ArrayList) intent.getSerializableExtra(str);
|
|
if (arrayList == null) {
|
|
return null;
|
|
}
|
|
ArrayList<T> arrayList2 = (ArrayList<T>) new ArrayList(arrayList.size());
|
|
int size = arrayList.size();
|
|
for (int i = 0; i < size; i++) {
|
|
arrayList2.add(deserializeFromBytes((byte[]) arrayList.get(i), creator));
|
|
}
|
|
return arrayList2;
|
|
}
|
|
|
|
public static <T extends SafeParcelable> ArrayList<T> deserializeIterableFromIntentExtraSafe(Intent intent, String str, Parcelable.Creator<T> creator) {
|
|
return deserializeIterableFromBytes(intent.getByteArrayExtra(str), creator);
|
|
}
|
|
|
|
@Deprecated
|
|
public static <T extends SafeParcelable> void serializeIterableToBundle(Iterable<T> iterable, Bundle bundle, String str) {
|
|
ArrayList arrayList = new ArrayList();
|
|
Iterator<T> it = iterable.iterator();
|
|
while (it.hasNext()) {
|
|
arrayList.add(serializeToBytes(it.next()));
|
|
}
|
|
bundle.putSerializable(str, arrayList);
|
|
}
|
|
|
|
public static <T extends SafeParcelable> void serializeIterableToBundleSafe(Iterable<T> iterable, Bundle bundle, String str) {
|
|
bundle.putByteArray(str, zza(iterable));
|
|
}
|
|
|
|
@Deprecated
|
|
public static <T extends SafeParcelable> void serializeIterableToIntentExtra(Iterable<T> iterable, Intent intent, String str) {
|
|
ArrayList arrayList = new ArrayList();
|
|
Iterator<T> it = iterable.iterator();
|
|
while (it.hasNext()) {
|
|
arrayList.add(serializeToBytes(it.next()));
|
|
}
|
|
intent.putExtra(str, arrayList);
|
|
}
|
|
|
|
public static <T extends SafeParcelable> void serializeIterableToIntentExtraSafe(Iterable<T> iterable, Intent intent, String str) {
|
|
intent.putExtra(str, zza(iterable));
|
|
}
|
|
|
|
public static <T extends SafeParcelable> byte[] serializeToBytes(T t) {
|
|
Parcel parcelObtain = Parcel.obtain();
|
|
t.writeToParcel(parcelObtain, 0);
|
|
byte[] bArrMarshall = parcelObtain.marshall();
|
|
parcelObtain.recycle();
|
|
return bArrMarshall;
|
|
}
|
|
|
|
public static <T extends SafeParcelable> void serializeToIntentExtra(T t, Intent intent, String str) {
|
|
intent.putExtra(str, serializeToBytes(t));
|
|
}
|
|
|
|
public static <T extends SafeParcelable> String serializeToString(T t) {
|
|
return Base64Utils.encodeUrlSafe(serializeToBytes(t));
|
|
}
|
|
|
|
private static byte[] zza(Iterable iterable) {
|
|
Parcel parcelObtain = Parcel.obtain();
|
|
try {
|
|
parcelObtain.writeTypedList(zzag.zzj(iterable));
|
|
return parcelObtain.marshall();
|
|
} finally {
|
|
parcelObtain.recycle();
|
|
}
|
|
}
|
|
} |