what-the-bank/sources/com/google/common/io/LineReader.java

63 lines
1.9 KiB
Java

package com.google.common.io;
import com.google.common.base.Preconditions;
import java.io.IOException;
import java.io.Reader;
import java.nio.CharBuffer;
import java.util.ArrayDeque;
import java.util.Queue;
/* loaded from: classes2.dex */
public final class LineReader {
private final char[] buf;
private final CharBuffer cbuf;
private final LineBuffer lineBuf;
private final Queue<String> lines;
private final Readable readable;
private final Reader reader;
public LineReader(Readable readable) {
CharBuffer createBuffer = CharStreams.createBuffer();
this.cbuf = createBuffer;
this.buf = createBuffer.array();
this.lines = new ArrayDeque();
this.lineBuf = new LineBuffer(this) { // from class: com.google.common.io.LineReader.1
final LineReader this$0;
{
this.this$0 = this;
}
@Override // com.google.common.io.LineBuffer
protected void handleLine(String str, String str2) {
this.this$0.lines.add(str);
}
};
this.readable = (Readable) Preconditions.checkNotNull(readable);
this.reader = readable instanceof Reader ? (Reader) readable : null;
}
public final String readLine() throws IOException {
int read;
while (true) {
if (this.lines.peek() != null) {
break;
}
Java8Compatibility.clear(this.cbuf);
Reader reader = this.reader;
if (reader != null) {
char[] cArr = this.buf;
read = reader.read(cArr, 0, cArr.length);
} else {
read = this.readable.read(this.cbuf);
}
if (read == -1) {
this.lineBuf.finish();
break;
}
this.lineBuf.add(this.buf, 0, read);
}
return this.lines.poll();
}
}