package com.google.firebase.crashlytics.internal.common; import com.google.firebase.crashlytics.internal.model.CrashlyticsReport; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.util.zip.GZIPOutputStream; /* loaded from: classes2.dex */ class FileBackedNativeSessionFile implements NativeSessionFile { private final String dataTransportFilename; private final File file; private final String reportsEndpointFilename; /* JADX INFO: Access modifiers changed from: package-private */ public FileBackedNativeSessionFile(String str, String str2, File file) { this.dataTransportFilename = str; this.reportsEndpointFilename = str2; this.file = file; } @Override // com.google.firebase.crashlytics.internal.common.NativeSessionFile public InputStream getStream() { if (!this.file.exists() || !this.file.isFile()) { return null; } try { return new FileInputStream(this.file); } catch (FileNotFoundException unused) { return null; } } @Override // com.google.firebase.crashlytics.internal.common.NativeSessionFile public CrashlyticsReport.FilesPayload.File asFilePayload() { byte[] asGzippedBytes = asGzippedBytes(); if (asGzippedBytes != null) { return CrashlyticsReport.FilesPayload.File.builder().setContents(asGzippedBytes).setFilename(this.dataTransportFilename).build(); } return null; } private byte[] asGzippedBytes() { byte[] bArr = new byte[8192]; try { InputStream stream = getStream(); try { ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); try { GZIPOutputStream gZIPOutputStream = new GZIPOutputStream(byteArrayOutputStream); if (stream == null) { byteArrayOutputStream.close(); if (stream != null) { stream.close(); } return null; } while (true) { try { int read = stream.read(bArr); if (read <= 0) { break; } gZIPOutputStream.write(bArr, 0, read); } finally { try { gZIPOutputStream.close(); } catch (Throwable unused) { } } } gZIPOutputStream.finish(); byte[] byteArray = byteArrayOutputStream.toByteArray(); gZIPOutputStream.close(); byteArrayOutputStream.close(); if (stream != null) { stream.close(); } return byteArray; } catch (Throwable th) { try { byteArrayOutputStream.close(); } catch (Throwable unused2) { } throw th; } } catch (Throwable th2) { if (stream != null) { try { stream.close(); } catch (Throwable unused3) { } } throw th2; } } catch (IOException unused4) { return null; } } @Override // com.google.firebase.crashlytics.internal.common.NativeSessionFile public String getReportsEndpointFilename() { return this.reportsEndpointFilename; } }