mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
101 lines
2.6 KiB
Java
101 lines
2.6 KiB
Java
package com.google.common.io;
|
|
|
|
import com.google.common.base.Preconditions;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.util.Iterator;
|
|
import javax.annotation.CheckForNull;
|
|
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes3.dex */
|
|
final class MultiInputStream extends InputStream {
|
|
|
|
@CheckForNull
|
|
private InputStream in;
|
|
private Iterator<? extends ByteSource> it;
|
|
|
|
@Override // java.io.InputStream
|
|
public boolean markSupported() {
|
|
return false;
|
|
}
|
|
|
|
public MultiInputStream(Iterator<? extends ByteSource> it) throws IOException {
|
|
this.it = (Iterator) Preconditions.checkNotNull(it);
|
|
advance();
|
|
}
|
|
|
|
@Override // java.io.InputStream, java.io.Closeable, java.lang.AutoCloseable
|
|
public void close() throws IOException {
|
|
InputStream inputStream = this.in;
|
|
if (inputStream != null) {
|
|
try {
|
|
inputStream.close();
|
|
} finally {
|
|
this.in = null;
|
|
}
|
|
}
|
|
}
|
|
|
|
private void advance() throws IOException {
|
|
close();
|
|
if (this.it.hasNext()) {
|
|
this.in = this.it.next().openStream();
|
|
}
|
|
}
|
|
|
|
@Override // java.io.InputStream
|
|
public int available() throws IOException {
|
|
InputStream inputStream = this.in;
|
|
if (inputStream == null) {
|
|
return 0;
|
|
}
|
|
return inputStream.available();
|
|
}
|
|
|
|
@Override // java.io.InputStream
|
|
public int read() throws IOException {
|
|
while (true) {
|
|
InputStream inputStream = this.in;
|
|
if (inputStream == null) {
|
|
return -1;
|
|
}
|
|
int read = inputStream.read();
|
|
if (read != -1) {
|
|
return read;
|
|
}
|
|
advance();
|
|
}
|
|
}
|
|
|
|
@Override // java.io.InputStream
|
|
public int read(byte[] bArr, int i, int i2) throws IOException {
|
|
Preconditions.checkNotNull(bArr);
|
|
while (true) {
|
|
InputStream inputStream = this.in;
|
|
if (inputStream == null) {
|
|
return -1;
|
|
}
|
|
int read = inputStream.read(bArr, i, i2);
|
|
if (read != -1) {
|
|
return read;
|
|
}
|
|
advance();
|
|
}
|
|
}
|
|
|
|
@Override // java.io.InputStream
|
|
public long skip(long j) throws IOException {
|
|
InputStream inputStream = this.in;
|
|
if (inputStream == null || j <= 0) {
|
|
return 0L;
|
|
}
|
|
long skip = inputStream.skip(j);
|
|
if (skip != 0) {
|
|
return skip;
|
|
}
|
|
if (read() == -1) {
|
|
return 0L;
|
|
}
|
|
return this.in.skip(j - 1) + 1;
|
|
}
|
|
}
|