111 lines
3.5 KiB
Java
111 lines
3.5 KiB
Java
|
package com.google.gson.internal;
|
||
|
|
||
|
import com.google.gson.JsonElement;
|
||
|
import com.google.gson.JsonIOException;
|
||
|
import com.google.gson.JsonNull;
|
||
|
import com.google.gson.JsonParseException;
|
||
|
import com.google.gson.JsonSyntaxException;
|
||
|
import com.google.gson.internal.bind.TypeAdapters;
|
||
|
import com.google.gson.stream.JsonReader;
|
||
|
import com.google.gson.stream.JsonWriter;
|
||
|
import com.google.gson.stream.MalformedJsonException;
|
||
|
import java.io.EOFException;
|
||
|
import java.io.IOException;
|
||
|
import java.io.Writer;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public final class Streams {
|
||
|
private Streams() {
|
||
|
throw new UnsupportedOperationException();
|
||
|
}
|
||
|
|
||
|
public static JsonElement parse(JsonReader jsonReader) throws JsonParseException {
|
||
|
boolean z;
|
||
|
try {
|
||
|
try {
|
||
|
jsonReader.peek();
|
||
|
} catch (EOFException e) {
|
||
|
e = e;
|
||
|
z = true;
|
||
|
}
|
||
|
try {
|
||
|
return TypeAdapters.JSON_ELEMENT.read2(jsonReader);
|
||
|
} catch (EOFException e2) {
|
||
|
e = e2;
|
||
|
z = false;
|
||
|
if (z) {
|
||
|
return JsonNull.INSTANCE;
|
||
|
}
|
||
|
throw new JsonSyntaxException(e);
|
||
|
}
|
||
|
} catch (MalformedJsonException e3) {
|
||
|
throw new JsonSyntaxException(e3);
|
||
|
} catch (IOException e4) {
|
||
|
throw new JsonIOException(e4);
|
||
|
} catch (NumberFormatException e5) {
|
||
|
throw new JsonSyntaxException(e5);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public static void write(JsonElement jsonElement, JsonWriter jsonWriter) throws IOException {
|
||
|
TypeAdapters.JSON_ELEMENT.write(jsonWriter, jsonElement);
|
||
|
}
|
||
|
|
||
|
public static Writer writerForAppendable(Appendable appendable) {
|
||
|
return appendable instanceof Writer ? (Writer) appendable : new AppendableWriter(appendable);
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
/* loaded from: classes.dex */
|
||
|
public static final class AppendableWriter extends Writer {
|
||
|
private final Appendable appendable;
|
||
|
private final CurrentWrite currentWrite = new CurrentWrite();
|
||
|
|
||
|
@Override // java.io.Writer, java.io.Closeable, java.lang.AutoCloseable
|
||
|
public final void close() {
|
||
|
}
|
||
|
|
||
|
@Override // java.io.Writer, java.io.Flushable
|
||
|
public final void flush() {
|
||
|
}
|
||
|
|
||
|
AppendableWriter(Appendable appendable) {
|
||
|
this.appendable = appendable;
|
||
|
}
|
||
|
|
||
|
@Override // java.io.Writer
|
||
|
public final void write(char[] cArr, int i, int i2) throws IOException {
|
||
|
this.currentWrite.chars = cArr;
|
||
|
this.appendable.append(this.currentWrite, i, i2 + i);
|
||
|
}
|
||
|
|
||
|
@Override // java.io.Writer
|
||
|
public final void write(int i) throws IOException {
|
||
|
this.appendable.append((char) i);
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
static class CurrentWrite implements CharSequence {
|
||
|
char[] chars;
|
||
|
|
||
|
CurrentWrite() {
|
||
|
}
|
||
|
|
||
|
@Override // java.lang.CharSequence
|
||
|
public int length() {
|
||
|
return this.chars.length;
|
||
|
}
|
||
|
|
||
|
@Override // java.lang.CharSequence
|
||
|
public char charAt(int i) {
|
||
|
return this.chars[i];
|
||
|
}
|
||
|
|
||
|
@Override // java.lang.CharSequence
|
||
|
public CharSequence subSequence(int i, int i2) {
|
||
|
return new String(this.chars, i, i2 - i);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|