63 lines
2.1 KiB
Java
63 lines
2.1 KiB
Java
package com.google.firebase.crashlytics.internal.common;
|
|
|
|
import java.io.File;
|
|
import java.io.FileOutputStream;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.util.List;
|
|
import java.util.zip.GZIPOutputStream;
|
|
|
|
/* loaded from: classes2.dex */
|
|
class NativeSessionFileGzipper {
|
|
NativeSessionFileGzipper() {
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public static void processNativeSessions(File file, List<NativeSessionFile> list) {
|
|
for (NativeSessionFile nativeSessionFile : list) {
|
|
InputStream inputStream = null;
|
|
try {
|
|
inputStream = nativeSessionFile.getStream();
|
|
if (inputStream != null) {
|
|
gzipInputStream(inputStream, new File(file, nativeSessionFile.getReportsEndpointFilename()));
|
|
}
|
|
} catch (IOException unused) {
|
|
} catch (Throwable th) {
|
|
CommonUtils.closeQuietly(inputStream);
|
|
throw th;
|
|
}
|
|
CommonUtils.closeQuietly(inputStream);
|
|
}
|
|
}
|
|
|
|
private static void gzipInputStream(InputStream inputStream, File file) throws IOException {
|
|
GZIPOutputStream gZIPOutputStream;
|
|
if (inputStream == null) {
|
|
return;
|
|
}
|
|
byte[] bArr = new byte[8192];
|
|
try {
|
|
gZIPOutputStream = new GZIPOutputStream(new FileOutputStream(file));
|
|
while (true) {
|
|
try {
|
|
int read = inputStream.read(bArr);
|
|
if (read > 0) {
|
|
gZIPOutputStream.write(bArr, 0, read);
|
|
} else {
|
|
gZIPOutputStream.finish();
|
|
CommonUtils.closeQuietly(gZIPOutputStream);
|
|
return;
|
|
}
|
|
} catch (Throwable th) {
|
|
th = th;
|
|
CommonUtils.closeQuietly(gZIPOutputStream);
|
|
throw th;
|
|
}
|
|
}
|
|
} catch (Throwable th2) {
|
|
th = th2;
|
|
gZIPOutputStream = null;
|
|
}
|
|
}
|
|
}
|