Rabbit-R1/original r1/java/sources/kotlin/io/encoding/DecodeInputStream.java
2024-05-21 17:08:36 -04:00

185 lines
8.7 KiB
Java

package kotlin.io.encoding;
import io.sentry.SentryEnvelopeItemHeader;
import java.io.IOException;
import java.io.InputStream;
import kotlin.Metadata;
import kotlin.collections.ArraysKt;
import kotlin.jvm.internal.Intrinsics;
/* compiled from: Base64IOStream.kt */
@Metadata(d1 = {"\u00002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0012\n\u0000\n\u0002\u0010\b\n\u0002\b\u0005\n\u0002\u0010\u000b\n\u0002\b\u0004\n\u0002\u0010\u0002\n\u0002\b\u000f\b\u0003\u0018\u00002\u00020\u0001B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0001\u0012\u0006\u0010\u0003\u001a\u00020\u0004¢\u0006\u0002\u0010\u0005J\b\u0010\u0013\u001a\u00020\u0014H\u0016J \u0010\u0015\u001a\u00020\u00142\u0006\u0010\u0016\u001a\u00020\u00072\u0006\u0010\u0017\u001a\u00020\t2\u0006\u0010\u0018\u001a\u00020\tH\u0002J(\u0010\u0019\u001a\u00020\t2\u0006\u0010\u0016\u001a\u00020\u00072\u0006\u0010\u0017\u001a\u00020\t2\u0006\u0010\u001a\u001a\u00020\t2\u0006\u0010\u001b\u001a\u00020\tH\u0002J\u0010\u0010\u001c\u001a\u00020\t2\u0006\u0010\u001b\u001a\u00020\tH\u0002J\b\u0010\u001d\u001a\u00020\tH\u0016J \u0010\u001d\u001a\u00020\t2\u0006\u0010\u001e\u001a\u00020\u00072\u0006\u0010\u001f\u001a\u00020\t2\u0006\u0010\u0018\u001a\u00020\tH\u0016J\b\u0010 \u001a\u00020\tH\u0002J\b\u0010!\u001a\u00020\u0014H\u0002J\b\u0010\"\u001a\u00020\u0014H\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082\u0004¢\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0007X\u0082\u0004¢\u0006\u0002\n\u0000R\u000e\u0010\b\u001a\u00020\tX\u0082\u000e¢\u0006\u0002\n\u0000R\u0014\u0010\n\u001a\u00020\t8BX\u0082\u0004¢\u0006\u0006\u001a\u0004\b\u000b\u0010\fR\u000e\u0010\r\u001a\u00020\tX\u0082\u000e¢\u0006\u0002\n\u0000R\u000e\u0010\u0002\u001a\u00020\u0001X\u0082\u0004¢\u0006\u0002\n\u0000R\u000e\u0010\u000e\u001a\u00020\u000fX\u0082\u000e¢\u0006\u0002\n\u0000R\u000e\u0010\u0010\u001a\u00020\u000fX\u0082\u000e¢\u0006\u0002\n\u0000R\u000e\u0010\u0011\u001a\u00020\u0007X\u0082\u0004¢\u0006\u0002\n\u0000R\u000e\u0010\u0012\u001a\u00020\u0007X\u0082\u0004¢\u0006\u0002\n\u0000¨\u0006#"}, d2 = {"Lkotlin/io/encoding/DecodeInputStream;", "Ljava/io/InputStream;", "input", "base64", "Lkotlin/io/encoding/Base64;", "(Ljava/io/InputStream;Lkotlin/io/encoding/Base64;)V", "byteBuffer", "", "byteBufferEndIndex", "", "byteBufferLength", "getByteBufferLength", "()I", "byteBufferStartIndex", "isClosed", "", "isEOF", "singleByteBuffer", "symbolBuffer", "close", "", "copyByteBufferInto", "dst", "dstOffset", SentryEnvelopeItemHeader.JsonKeys.LENGTH, "decodeSymbolBufferInto", "dstEndIndex", "symbolBufferLength", "handlePaddingSymbol", "read", "destination", "offset", "readNextSymbol", "resetByteBufferIfEmpty", "shiftByteBufferToStartIfNeeded", "kotlin-stdlib"}, k = 1, mv = {1, 9, 0}, xi = 48)
/* loaded from: classes3.dex */
final class DecodeInputStream extends InputStream {
private final Base64 base64;
private final byte[] byteBuffer;
private int byteBufferEndIndex;
private int byteBufferStartIndex;
private final InputStream input;
private boolean isClosed;
private boolean isEOF;
private final byte[] singleByteBuffer;
private final byte[] symbolBuffer;
private final int getByteBufferLength() {
return this.byteBufferEndIndex - this.byteBufferStartIndex;
}
private final void resetByteBufferIfEmpty() {
if (this.byteBufferStartIndex == this.byteBufferEndIndex) {
this.byteBufferStartIndex = 0;
this.byteBufferEndIndex = 0;
}
}
public DecodeInputStream(InputStream input, Base64 base64) {
Intrinsics.checkNotNullParameter(input, "input");
Intrinsics.checkNotNullParameter(base64, "base64");
this.input = input;
this.base64 = base64;
this.singleByteBuffer = new byte[1];
this.symbolBuffer = new byte[1024];
this.byteBuffer = new byte[1024];
}
@Override // java.io.InputStream
public int read() {
int i = this.byteBufferStartIndex;
if (i < this.byteBufferEndIndex) {
int i2 = this.byteBuffer[i] & 255;
this.byteBufferStartIndex = i + 1;
resetByteBufferIfEmpty();
return i2;
}
int read = read(this.singleByteBuffer, 0, 1);
if (read == -1) {
return -1;
}
if (read == 1) {
return this.singleByteBuffer[0] & 255;
}
throw new IllegalStateException("Unreachable".toString());
}
@Override // java.io.InputStream
public int read(byte[] destination, int offset, int length) {
int i;
boolean z;
boolean z2;
Intrinsics.checkNotNullParameter(destination, "destination");
if (offset < 0 || length < 0 || (i = offset + length) > destination.length) {
throw new IndexOutOfBoundsException("offset: " + offset + ", length: " + length + ", buffer size: " + destination.length);
}
if (this.isClosed) {
throw new IOException("The input stream is closed.");
}
if (this.isEOF) {
return -1;
}
if (length == 0) {
return 0;
}
if (getByteBufferLength() >= length) {
copyByteBufferInto(destination, offset, length);
return length;
}
int byteBufferLength = (((length - getByteBufferLength()) + 2) / 3) * 4;
int i2 = offset;
while (true) {
z = this.isEOF;
if (z || byteBufferLength <= 0) {
break;
}
int min = Math.min(this.symbolBuffer.length, byteBufferLength);
int i3 = 0;
while (true) {
z2 = this.isEOF;
if (z2 || i3 >= min) {
break;
}
int readNextSymbol = readNextSymbol();
if (readNextSymbol == -1) {
this.isEOF = true;
} else if (readNextSymbol == 61) {
i3 = handlePaddingSymbol(i3);
this.isEOF = true;
} else {
this.symbolBuffer[i3] = (byte) readNextSymbol;
i3++;
}
}
if (!z2 && i3 != min) {
throw new IllegalStateException("Check failed.".toString());
}
byteBufferLength -= i3;
i2 += decodeSymbolBufferInto(destination, i2, i, i3);
}
if (i2 == offset && z) {
return -1;
}
return i2 - offset;
}
@Override // java.io.InputStream, java.io.Closeable, java.lang.AutoCloseable
public void close() {
if (this.isClosed) {
return;
}
this.isClosed = true;
this.input.close();
}
private final int decodeSymbolBufferInto(byte[] dst, int dstOffset, int dstEndIndex, int symbolBufferLength) {
int i = this.byteBufferEndIndex;
this.byteBufferEndIndex = i + this.base64.decodeIntoByteArray(this.symbolBuffer, this.byteBuffer, i, 0, symbolBufferLength);
int min = Math.min(getByteBufferLength(), dstEndIndex - dstOffset);
copyByteBufferInto(dst, dstOffset, min);
shiftByteBufferToStartIfNeeded();
return min;
}
private final void copyByteBufferInto(byte[] dst, int dstOffset, int length) {
byte[] bArr = this.byteBuffer;
int i = this.byteBufferStartIndex;
ArraysKt.copyInto(bArr, dst, dstOffset, i, i + length);
this.byteBufferStartIndex += length;
resetByteBufferIfEmpty();
}
private final void shiftByteBufferToStartIfNeeded() {
byte[] bArr = this.byteBuffer;
int length = bArr.length;
int i = this.byteBufferEndIndex;
if ((this.symbolBuffer.length / 4) * 3 > length - i) {
ArraysKt.copyInto(bArr, bArr, 0, this.byteBufferStartIndex, i);
this.byteBufferEndIndex -= this.byteBufferStartIndex;
this.byteBufferStartIndex = 0;
}
}
private final int handlePaddingSymbol(int symbolBufferLength) {
this.symbolBuffer[symbolBufferLength] = Base64.padSymbol;
if ((symbolBufferLength & 3) != 2) {
return symbolBufferLength + 1;
}
int readNextSymbol = readNextSymbol();
if (readNextSymbol >= 0) {
this.symbolBuffer[symbolBufferLength + 1] = (byte) readNextSymbol;
}
return symbolBufferLength + 2;
}
private final int readNextSymbol() {
int read;
if (!this.base64.getIsMimeScheme()) {
return this.input.read();
}
do {
read = this.input.read();
if (read == -1) {
break;
}
} while (!Base64Kt.isInMimeAlphabet(read));
return read;
}
}