Class JsonReader
- java.lang.Object
-
- com.airbnb.lottie.parser.moshi.JsonReader
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
public abstract class JsonReader extends java.lang.Object implements java.io.CloseableReads a JSON (RFC 7159) encoded value as a stream of tokens. This stream includes both literal values (strings, numbers, booleans, and nulls) as well as the begin and end delimiters of objects and arrays. The tokens are traversed in depth-first order, the same order that they appear in the JSON document. Within JSON objects, name/value pairs are represented by a single token.Parsing JSON
To create a recursive descent parser for your own JSON streams, first create an entry point method that creates aJsonReader.Next, create handler methods for each structure in your JSON text. You'll need a method for each object type and for each array type.
- Within array handling methods, first call
beginArray()to consume the array's opening bracket. Then create a while loop that accumulates values, terminating whenhasNext()is false. Finally, read the array's closing bracket by callingendArray(). - Within object handling methods, first call
beginObject()to consume the object's opening brace. Then create a while loop that assigns values to local variables based on their name. This loop should terminate whenhasNext()is false. Finally, read the object's closing brace by callingendObject().
When a nested object or array is encountered, delegate to the corresponding handler method.
When an unknown name is encountered, strict parsers should fail with an exception. Lenient parsers should call
skipValue()to recursively skip the value's nested tokens, which may otherwise conflict.If a value may be null, you should first check using
peek(). Null literals can be consumed usingskipValue().Example
Suppose we'd like to parse a stream of messages such as the following:
This code implements the parser for the above structure:[ { "id": 912345678901, "text": "How do I read a JSON stream in Java?", "geo": null, "user": { "name": "json_newb", "followers_count": 41 } }, { "id": 912345678902, "text": "@json_newb just use JsonReader!", "geo": [50.454722, -104.606667], "user": { "name": "jesse", "followers_count": 2 } } ]public List<Message> readJsonStream(BufferedSource source) throws IOException { JsonReader reader = JsonReader.of(source); try { return readMessagesArray(reader); } finally { reader.close(); } } public List<Message> readMessagesArray(JsonReader reader) throws IOException { List<Message> messages = new ArrayList<Message>(); reader.beginArray(); while (reader.hasNext()) { messages.add(readMessage(reader)); } reader.endArray(); return messages; } public Message readMessage(JsonReader reader) throws IOException { long id = -1; String text = null; User user = null; List<Double> geo = null; reader.beginObject(); while (reader.hasNext()) { String name = reader.nextName(); if (name.equals("id")) { id = reader.nextLong(); } else if (name.equals("text")) { text = reader.nextString(); } else if (name.equals("geo") && reader.peek() != Token.NULL) { geo = readDoublesArray(reader); } else if (name.equals("user")) { user = readUser(reader); } else { reader.skipValue(); } } reader.endObject(); return new Message(id, text, user, geo); } public List<Double> readDoublesArray(JsonReader reader) throws IOException { List<Double> doubles = new ArrayList<Double>(); reader.beginArray(); while (reader.hasNext()) { doubles.add(reader.nextDouble()); } reader.endArray(); return doubles; } public User readUser(JsonReader reader) throws IOException { String username = null; int followersCount = -1; reader.beginObject(); while (reader.hasNext()) { String name = reader.nextName(); if (name.equals("name")) { username = reader.nextString(); } else if (name.equals("followers_count")) { followersCount = reader.nextInt(); } else { reader.skipValue(); } } reader.endObject(); return new User(username, followersCount); }Number Handling
This reader permits numeric values to be read as strings and string values to be read as numbers. For example, both elements of the JSON array[1, "1"]may be read using eithernextInt()ornextString(). This behavior is intended to prevent lossy numeric conversions: double is JavaScript's only numeric type and very large values like9007199254740993cannot be represented exactly on that platform. To minimize precision loss, extremely large values should be written and read as strings in JSON.Each
JsonReadermay be used to read a single JSON stream. Instances of this class are not thread safe.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classJsonReader.OptionsA set of strings to be chosen withselectName(com.airbnb.lottie.parser.moshi.JsonReader.Options).static classJsonReader.TokenA structure, name, or value type in a JSON-encoded string.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract voidbeginArray()Consumes the next token from the JSON stream and asserts that it is the beginning of a new array.abstract voidbeginObject()Consumes the next token from the JSON stream and asserts that it is the beginning of a new object.abstract voidendArray()Consumes the next token from the JSON stream and asserts that it is the end of the current array.abstract voidendObject()Consumes the next token from the JSON stream and asserts that it is the end of the current object.java.lang.StringgetPath()Returns a JsonPath to the current location in the JSON value.abstract booleanhasNext()Returns true if the current array or object has another element.abstract booleannextBoolean()Returns the boolean value of the next token, consuming it.abstract doublenextDouble()Returns the double value of the next token, consuming it.abstract intnextInt()Returns the int value of the next token, consuming it.abstract java.lang.StringnextName()Returns the next token, a property name, and consumes it.abstract java.lang.StringnextString()Returns the string value of the next token, consuming it.static JsonReaderof(okio.BufferedSource source)Returns a new instance that reads UTF-8 encoded JSON fromsource.abstract JsonReader.Tokenpeek()Returns the type of the next token without consuming it.abstract intselectName(JsonReader.Options options)If the next token is a property name that's inoptions, this consumes it and returns its index.abstract voidskipName()Skips the next token, consuming it.abstract voidskipValue()Skips the next value recursively.
-
-
-
Method Detail
-
of
public static JsonReader of(okio.BufferedSource source)
Returns a new instance that reads UTF-8 encoded JSON fromsource.
-
beginArray
public abstract void beginArray() throws java.io.IOExceptionConsumes the next token from the JSON stream and asserts that it is the beginning of a new array.- Throws:
java.io.IOException
-
endArray
public abstract void endArray() throws java.io.IOExceptionConsumes the next token from the JSON stream and asserts that it is the end of the current array.- Throws:
java.io.IOException
-
beginObject
public abstract void beginObject() throws java.io.IOExceptionConsumes the next token from the JSON stream and asserts that it is the beginning of a new object.- Throws:
java.io.IOException
-
endObject
public abstract void endObject() throws java.io.IOExceptionConsumes the next token from the JSON stream and asserts that it is the end of the current object.- Throws:
java.io.IOException
-
hasNext
public abstract boolean hasNext() throws java.io.IOExceptionReturns true if the current array or object has another element.- Throws:
java.io.IOException
-
peek
public abstract JsonReader.Token peek() throws java.io.IOException
Returns the type of the next token without consuming it.- Throws:
java.io.IOException
-
nextName
public abstract java.lang.String nextName() throws java.io.IOExceptionReturns the next token, a property name, and consumes it.- Throws:
com.airbnb.lottie.parser.moshi.JsonDataException- if the next token in the stream is not a property name.java.io.IOException
-
selectName
public abstract int selectName(JsonReader.Options options) throws java.io.IOException
If the next token is a property name that's inoptions, this consumes it and returns its index. Otherwise this returns -1 and no name is consumed.- Throws:
java.io.IOException
-
skipName
public abstract void skipName() throws java.io.IOExceptionSkips the next token, consuming it. This method is intended for use when the JSON token stream contains unrecognized or unhandled names.This throws a
JsonDataExceptionif this parser has been configured to fail on unknown names.- Throws:
java.io.IOException
-
nextString
public abstract java.lang.String nextString() throws java.io.IOExceptionReturns the string value of the next token, consuming it. If the next token is a number, this method will return its string form.- Throws:
com.airbnb.lottie.parser.moshi.JsonDataException- if the next token is not a string or if this reader is closed.java.io.IOException
-
nextBoolean
public abstract boolean nextBoolean() throws java.io.IOExceptionReturns the boolean value of the next token, consuming it.- Throws:
com.airbnb.lottie.parser.moshi.JsonDataException- if the next token is not a boolean or if this reader is closed.java.io.IOException
-
nextDouble
public abstract double nextDouble() throws java.io.IOExceptionReturns the double value of the next token, consuming it. If the next token is a string, this method will attempt to parse it as a double usingDouble.parseDouble(String).- Throws:
com.airbnb.lottie.parser.moshi.JsonDataException- if the next token is not a literal value, or if the next literal value cannot be parsed as a double, or is non-finite.java.io.IOException
-
nextInt
public abstract int nextInt() throws java.io.IOExceptionReturns the int value of the next token, consuming it. If the next token is a string, this method will attempt to parse it as an int. If the next token's numeric value cannot be exactly represented by a Javaint, this method throws.- Throws:
com.airbnb.lottie.parser.moshi.JsonDataException- if the next token is not a literal value, if the next literal value cannot be parsed as a number, or exactly represented as an int.java.io.IOException
-
skipValue
public abstract void skipValue() throws java.io.IOExceptionSkips the next value recursively. If it is an object or array, all nested elements are skipped. This method is intended for use when the JSON token stream contains unrecognized or unhandled values.This throws a
JsonDataExceptionif this parser has been configured to fail on unknown values.- Throws:
java.io.IOException
-
getPath
public final java.lang.String getPath()
Returns a JsonPath to the current location in the JSON value.
-
-