2014-08-09 16:13:20 +00:00
|
|
|
|
Moshi
|
2014-08-09 15:58:42 +00:00
|
|
|
|
=====
|
2014-08-09 16:13:20 +00:00
|
|
|
|
|
2015-06-16 03:51:47 +00:00
|
|
|
|
Moshi is a modern JSON library for Android and Java. It makes it easy to parse JSON into Java
|
|
|
|
|
objects:
|
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
String json = ...;
|
|
|
|
|
|
|
|
|
|
Moshi moshi = new Moshi.Builder().build();
|
|
|
|
|
JsonAdapter<BlackjackHand> jsonAdapter = moshi.adapter(BlackjackHand.class);
|
|
|
|
|
|
|
|
|
|
BlackjackHand blackjackHand = jsonAdapter.fromJson(json);
|
|
|
|
|
System.out.println(blackjackHand);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
And it can just as easily serialize Java objects as JSON:
|
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
BlackjackHand blackjackHand = new BlackjackHand(
|
|
|
|
|
new Card('6', SPADES),
|
|
|
|
|
Arrays.asList(new Card('4', CLUBS), new Card('A', HEARTS)));
|
|
|
|
|
|
|
|
|
|
Moshi moshi = new Moshi.Builder().build();
|
|
|
|
|
JsonAdapter<BlackjackHand> jsonAdapter = moshi.adapter(BlackjackHand.class);
|
|
|
|
|
|
|
|
|
|
String json = jsonAdapter.toJson(blackjackHand);
|
|
|
|
|
System.out.println(json);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Built-in Type Adapters
|
|
|
|
|
|
|
|
|
|
Moshi has built-in support for reading and writing Java’s core data types:
|
|
|
|
|
|
|
|
|
|
* Primitives (int, float, char...) and their boxed counterparts (Integer, Float, Character...).
|
|
|
|
|
* Arrays, Collections, Lists, Sets, and Maps
|
|
|
|
|
* Strings
|
|
|
|
|
* Enums
|
|
|
|
|
|
|
|
|
|
It supports your model classes by writing them out field-by-field. In the example above Moshi uses
|
|
|
|
|
these classes:
|
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
class BlackjackHand {
|
|
|
|
|
public final Card hidden_card;
|
|
|
|
|
public final List<Card> visible_cards;
|
|
|
|
|
...
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class Card {
|
|
|
|
|
public final char rank;
|
|
|
|
|
public final Suit suit;
|
|
|
|
|
...
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum Suit {
|
|
|
|
|
CLUBS, DIAMONDS, HEARTS, SPADES;
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
to read and write this JSON:
|
|
|
|
|
|
2015-06-16 18:49:49 +00:00
|
|
|
|
```json
|
2015-06-16 03:51:47 +00:00
|
|
|
|
{
|
|
|
|
|
"hidden_card": {
|
|
|
|
|
"rank": "6",
|
|
|
|
|
"suit": "SPADES"
|
|
|
|
|
},
|
|
|
|
|
"visible_cards": [
|
|
|
|
|
{
|
|
|
|
|
"rank": "4",
|
|
|
|
|
"suit": "CLUBS"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"rank": "A",
|
|
|
|
|
"suit": "HEARTS"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2015-06-16 16:58:09 +00:00
|
|
|
|
The [Javadoc][javadoc] catalogs the complete Moshi API, which we explore below.
|
|
|
|
|
|
2015-06-16 03:51:47 +00:00
|
|
|
|
### Custom Type Adapters
|
|
|
|
|
|
|
|
|
|
With Moshi, it’s particularly easy to customize how values are converted to and from JSON. A type
|
|
|
|
|
adapter is any class that has methods annotated `@ToJson` and `@FromJson`.
|
|
|
|
|
|
|
|
|
|
For example, Moshi’s default encoding of a playing card is verbose: the JSON defines the rank and
|
|
|
|
|
suit in separate fields: `{"rank":"A","suit":"HEARTS"}`. With a type adapter, we can change the
|
|
|
|
|
encoding to something more compact: `"4H"` for the four of hearts or `"JD"` for the jack of
|
|
|
|
|
diamonds:
|
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
class CardAdapter {
|
|
|
|
|
@ToJson String toJson(Card card) {
|
|
|
|
|
return card.rank + card.suit.name().substring(0, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@FromJson Card fromJson(String card) {
|
|
|
|
|
if (card.length() != 2) throw new JsonDataException("Unknown card: " + card);
|
|
|
|
|
|
|
|
|
|
char rank = card.charAt(0);
|
|
|
|
|
switch (card.charAt(1)) {
|
|
|
|
|
case 'C': return new Card(rank, Suit.CLUBS);
|
|
|
|
|
case 'D': return new Card(rank, Suit.DIAMONDS);
|
|
|
|
|
case 'H': return new Card(rank, Suit.HEARTS);
|
|
|
|
|
case 'S': return new Card(rank, Suit.SPADES);
|
|
|
|
|
default: throw new JsonDataException("unknown suit: " + card);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Register the type adapter with the `Moshi.Builder` and we’re good to go.
|
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
Moshi moshi = new Moshi.Builder()
|
|
|
|
|
.add(new CardAdapter())
|
|
|
|
|
.build();
|
|
|
|
|
```
|
|
|
|
|
|
2017-05-22 02:01:32 +00:00
|
|
|
|
Voilà:
|
2015-06-16 03:51:47 +00:00
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"hidden_card": "6S",
|
|
|
|
|
"visible_cards": [
|
|
|
|
|
"4C",
|
|
|
|
|
"AH"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2015-10-06 15:06:05 +00:00
|
|
|
|
#### Another example
|
|
|
|
|
|
2016-01-11 08:24:00 +00:00
|
|
|
|
Note that the method annotated with `@FromJson` does not need to take a String as an argument.
|
|
|
|
|
Rather it can take input of any type and Moshi will first parse the JSON to an object of that type
|
|
|
|
|
and then use the `@FromJson` method to produce the desired final value. Conversely, the method
|
|
|
|
|
annotated with `@ToJson` does not have to produce a String.
|
2015-10-06 15:06:05 +00:00
|
|
|
|
|
2016-01-11 08:24:00 +00:00
|
|
|
|
Assume, for example, that we have to parse a JSON in which the date and time of an event are
|
|
|
|
|
represented as two separate strings.
|
2015-10-06 15:06:05 +00:00
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"title": "Blackjack tournament",
|
|
|
|
|
"begin_date": "20151010",
|
|
|
|
|
"begin_time": "17:04"
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
We would like to combine these two fields into one string to facilitate the date parsing at a
|
2016-01-11 08:24:00 +00:00
|
|
|
|
later point. Also, we would like to have all variable names in CamelCase. Therefore, the `Event`
|
|
|
|
|
class we want Moshi to produce like this:
|
2015-10-06 15:06:05 +00:00
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
class Event {
|
2016-01-11 08:24:00 +00:00
|
|
|
|
String title;
|
|
|
|
|
String beginDateAndTime;
|
2015-10-06 15:06:05 +00:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2016-01-11 08:24:00 +00:00
|
|
|
|
Instead of manually parsing the JSON line per line (which we could also do) we can have Moshi do the
|
|
|
|
|
transformation automatically. We simply define another class `EventJson` that directly corresponds
|
|
|
|
|
to the JSON structure:
|
2015-10-06 15:06:05 +00:00
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
class EventJson {
|
2016-01-11 08:24:00 +00:00
|
|
|
|
String title;
|
|
|
|
|
String begin_date;
|
|
|
|
|
String begin_time;
|
2015-10-06 15:06:05 +00:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2016-01-11 08:24:00 +00:00
|
|
|
|
And another class with the appropriate `@FromJson` and `@ToJson` methods that are telling Moshi how
|
|
|
|
|
to convert an `EventJson` to an `Event` and back. Now, whenever we are asking Moshi to parse a JSON
|
|
|
|
|
to an `Event` it will first parse it to an `EventJson` as an intermediate step. Conversely, to
|
|
|
|
|
serialize an `Event` Moshi will first create an `EventJson` object and then serialize that object as
|
|
|
|
|
usual.
|
2015-10-06 15:06:05 +00:00
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
class EventJsonAdapter {
|
2016-01-11 08:24:00 +00:00
|
|
|
|
@FromJson Event eventFromJson(EventJson eventJson) {
|
|
|
|
|
Event event = new Event();
|
|
|
|
|
event.title = eventJson.title;
|
|
|
|
|
event.beginDateAndTime = eventJson.begin_date + " " + eventJson.begin_time;
|
|
|
|
|
return event;
|
|
|
|
|
}
|
2015-10-06 15:06:05 +00:00
|
|
|
|
|
2016-01-11 08:24:00 +00:00
|
|
|
|
@ToJson EventJson eventToJson(Event event) {
|
|
|
|
|
EventJson json = new EventJson();
|
|
|
|
|
json.title = event.title;
|
|
|
|
|
json.begin_date = event.beginDateAndTime.substring(0, 8);
|
|
|
|
|
json.begin_time = event.beginDateAndTime.substring(9, 14);
|
|
|
|
|
return json;
|
|
|
|
|
}
|
2015-10-06 15:06:05 +00:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Again we register the adapter with Moshi.
|
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
Moshi moshi = new Moshi.Builder()
|
|
|
|
|
.add(new EventJsonAdapter())
|
|
|
|
|
.build();
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
We can now use Moshi to parse the JSON directly to an `Event`.
|
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
JsonAdapter<Event> jsonAdapter = moshi.adapter(Event.class);
|
|
|
|
|
Event event = jsonAdapter.fromJson(json);
|
|
|
|
|
```
|
|
|
|
|
|
2017-02-04 01:51:54 +00:00
|
|
|
|
### Parse JSON Arrays
|
|
|
|
|
|
|
|
|
|
Say we have a JSON string of this structure:
|
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
[
|
2018-04-07 09:59:02 +00:00
|
|
|
|
{
|
|
|
|
|
"rank": "4",
|
|
|
|
|
"suit": "CLUBS"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"rank": "A",
|
|
|
|
|
"suit": "HEARTS"
|
|
|
|
|
}
|
2017-02-04 01:51:54 +00:00
|
|
|
|
]
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
We can now use Moshi to parse the JSON string into a `List<Card>`.
|
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
String cardsJsonResponse = ...;
|
|
|
|
|
Type type = Types.newParameterizedType(List.class, Card.class);
|
|
|
|
|
JsonAdapter<List<Card>> adapter = moshi.adapter(type);
|
|
|
|
|
List<Card> cards = adapter.fromJson(cardsJsonResponse);
|
|
|
|
|
```
|
|
|
|
|
|
2015-06-16 03:51:47 +00:00
|
|
|
|
### Fails Gracefully
|
|
|
|
|
|
|
|
|
|
Automatic databinding almost feels like magic. But unlike the black magic that typically accompanies
|
|
|
|
|
reflection, Moshi is designed to help you out when things go wrong.
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
JsonDataException: Expected one of [CLUBS, DIAMONDS, HEARTS, SPADES] but was ANCHOR at path $.visible_cards[2].suit
|
|
|
|
|
at com.squareup.moshi.JsonAdapters$11.fromJson(JsonAdapters.java:188)
|
|
|
|
|
at com.squareup.moshi.JsonAdapters$11.fromJson(JsonAdapters.java:180)
|
|
|
|
|
...
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Moshi always throws a standard `java.io.IOException` if there is an error reading the JSON document,
|
|
|
|
|
or if it is malformed. It throws a `JsonDataException` if the JSON document is well-formed, but
|
|
|
|
|
doesn’t match the expected format.
|
|
|
|
|
|
|
|
|
|
### Built on Okio
|
|
|
|
|
|
|
|
|
|
Moshi uses [Okio][okio] for simple and powerful I/O. It’s a fine complement to [OkHttp][okhttp],
|
|
|
|
|
which can share buffer segments for maximum efficiency.
|
|
|
|
|
|
|
|
|
|
### Borrows from Gson
|
|
|
|
|
|
|
|
|
|
Moshi uses the same streaming and binding mechanisms as [Gson][gson]. If you’re a Gson user you’ll
|
|
|
|
|
find Moshi works similarly. If you try Moshi and don’t love it, you can even migrate to Gson without
|
|
|
|
|
much violence!
|
|
|
|
|
|
|
|
|
|
But the two libraries have a few important differences:
|
|
|
|
|
|
|
|
|
|
* **Moshi has fewer built-in type adapters.** For example, you need to configure your own date
|
|
|
|
|
adapter. Most binding libraries will encode whatever you throw at them. Moshi refuses to
|
|
|
|
|
serialize platform types (`java.*`, `javax.*`, and `android.*`) without a user-provided type
|
|
|
|
|
adapter. This is intended to prevent you from accidentally locking yourself to a specific JDK or
|
|
|
|
|
Android release.
|
|
|
|
|
* **Moshi is less configurable.** There’s no field naming strategy, versioning, instance creators,
|
|
|
|
|
or long serialization policy. Instead of naming a field `visibleCards` and using a policy class
|
|
|
|
|
to convert that to `visible_cards`, Moshi wants you to just name the field `visible_cards` as it
|
|
|
|
|
appears in the JSON.
|
|
|
|
|
* **Moshi doesn’t have a `JsonElement` model.** Instead it just uses built-in types like `List` and
|
|
|
|
|
`Map`.
|
|
|
|
|
* **No HTML-safe escaping.** Gson encodes `=` as `\u003d` by default so that it can be safely
|
|
|
|
|
encoded in HTML without additional escaping. Moshi encodes it naturally (as `=`) and assumes that
|
|
|
|
|
the HTML encoder – if there is one – will do its job.
|
2014-08-09 16:13:20 +00:00
|
|
|
|
|
2016-01-11 08:24:00 +00:00
|
|
|
|
### Custom field names with @Json
|
|
|
|
|
|
|
|
|
|
Moshi works best when your JSON objects and Java objects have the same structure. But when they
|
|
|
|
|
don't, Moshi has annotations to customize data binding.
|
|
|
|
|
|
|
|
|
|
Use `@Json` to specify how Java fields map to JSON names. This is necessary when the JSON name
|
|
|
|
|
contains spaces or other characters that aren’t permitted in Java field names. For example, this
|
|
|
|
|
JSON has a field name containing a space:
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"username": "jesse",
|
|
|
|
|
"lucky number": 32
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
With `@Json` its corresponding Java class is easy:
|
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
class Player {
|
|
|
|
|
String username;
|
|
|
|
|
@Json(name = "lucky number") int luckyNumber;
|
|
|
|
|
|
|
|
|
|
...
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Because JSON field names are always defined with their Java fields, Moshi makes it easy to find
|
|
|
|
|
fields when navigating between Java and JSON.
|
|
|
|
|
|
|
|
|
|
### Alternate type adapters with @JsonQualifier
|
|
|
|
|
|
|
|
|
|
Use `@JsonQualifier` to customize how a type is encoded for some fields without changing its
|
|
|
|
|
encoding everywhere. This works similarly to the qualifier annotations in dependency injection
|
|
|
|
|
tools like Dagger and Guice.
|
|
|
|
|
|
|
|
|
|
Here’s a JSON message with two integers and a color:
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"width": 1024,
|
|
|
|
|
"height": 768,
|
|
|
|
|
"color": "#ff0000"
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
By convention, Android programs also use `int` for colors:
|
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
class Rectangle {
|
|
|
|
|
int width;
|
|
|
|
|
int height;
|
|
|
|
|
int color;
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
But if we encoded the above Java class as JSON, the color isn't encoded properly!
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"width": 1024,
|
|
|
|
|
"height": 768,
|
|
|
|
|
"color": 16711680
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The fix is to define a qualifier annotation, itself annotated `@JsonQualifier`:
|
|
|
|
|
|
|
|
|
|
```java
|
|
|
|
|
@Retention(RUNTIME)
|
|
|
|
|
@JsonQualifier
|
|
|
|
|
public @interface HexColor {
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Next apply this `@HexColor` annotation to the appropriate field:
|
|
|
|
|
|
2016-03-07 16:57:26 +00:00
|
|
|
|
```java
|
2016-01-11 08:24:00 +00:00
|
|
|
|
class Rectangle {
|
|
|
|
|
int width;
|
|
|
|
|
int height;
|
|
|
|
|
@HexColor int color;
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
And finally define a type adapter to handle it:
|
|
|
|
|
|
2016-03-07 16:57:26 +00:00
|
|
|
|
```java
|
2016-01-11 08:24:00 +00:00
|
|
|
|
/** Converts strings like #ff0000 to the corresponding color ints. */
|
|
|
|
|
class ColorAdapter {
|
|
|
|
|
@ToJson String toJson(@HexColor int rgb) {
|
|
|
|
|
return String.format("#%06x", rgb);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@FromJson @HexColor int fromJson(String rgb) {
|
|
|
|
|
return Integer.parseInt(rgb.substring(1), 16);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Use `@JsonQualifier` when you need different JSON encodings for the same type. Most programs
|
|
|
|
|
shouldn’t need this `@JsonQualifier`, but it’s very handy for those that do.
|
2015-03-27 04:29:13 +00:00
|
|
|
|
|
2016-03-23 01:52:02 +00:00
|
|
|
|
### Omit fields with `transient`
|
|
|
|
|
|
|
|
|
|
Some models declare fields that shouldn’t be included in JSON. For example, suppose our blackjack
|
|
|
|
|
hand has a `total` field with the sum of the cards:
|
|
|
|
|
|
2016-03-24 22:51:01 +00:00
|
|
|
|
```java
|
2016-03-23 01:52:02 +00:00
|
|
|
|
public final class BlackjackHand {
|
|
|
|
|
private int total;
|
|
|
|
|
|
|
|
|
|
...
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
By default, all fields are emitted when encoding JSON, and all fields are accepted when decoding
|
|
|
|
|
JSON. Prevent a field from being included by adding Java’s `transient` keyword:
|
|
|
|
|
|
2016-03-24 22:51:01 +00:00
|
|
|
|
```java
|
2016-03-23 01:52:02 +00:00
|
|
|
|
public final class BlackjackHand {
|
|
|
|
|
private transient int total;
|
|
|
|
|
|
|
|
|
|
...
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Transient fields are omitted when writing JSON. When reading JSON, the field is skipped even if the
|
|
|
|
|
JSON contains a value for the field. Instead it will get a default value.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Default Values & Constructors
|
|
|
|
|
|
|
|
|
|
When reading JSON that is missing a field, Moshi relies on the the Java or Android runtime to assign
|
|
|
|
|
the field’s value. Which value it uses depends on whether the class has a no-arguments constructor.
|
|
|
|
|
|
|
|
|
|
If the class has a no-arguments constructor, Moshi will call that constructor and whatever value
|
|
|
|
|
it assigns will be used. For example, because this class has a no-arguments constructor the `total`
|
|
|
|
|
field is initialized to `-1`.
|
|
|
|
|
|
2016-03-24 22:51:01 +00:00
|
|
|
|
```java
|
2016-03-23 01:52:02 +00:00
|
|
|
|
public final class BlackjackHand {
|
|
|
|
|
private int total = -1;
|
|
|
|
|
...
|
|
|
|
|
|
|
|
|
|
private BlackjackHand() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BlackjackHand(Card hidden_card, List<Card> visible_cards) {
|
|
|
|
|
...
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
If the class doesn’t have a no-arguments constructor, Moshi can’t assign the field’s default value,
|
|
|
|
|
**even if it’s specified in the field declaration**. Instead, the field’s default is always `0` for
|
|
|
|
|
numbers, `false` for booleans, and `null` for references. In this example, the default value of
|
|
|
|
|
`total` is `0`!
|
|
|
|
|
|
2016-03-24 22:51:01 +00:00
|
|
|
|
```java
|
2016-03-23 01:52:02 +00:00
|
|
|
|
public final class BlackjackHand {
|
|
|
|
|
private int total = -1;
|
|
|
|
|
...
|
|
|
|
|
|
|
|
|
|
public BlackjackHand(Card hidden_card, List<Card> visible_cards) {
|
|
|
|
|
...
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
This is surprising and is a potential source of bugs! For this reason consider defining a
|
|
|
|
|
no-arguments constructor in classes that you use with Moshi, using `@SuppressWarnings("unused")` to
|
|
|
|
|
prevent it from being inadvertently deleted later:
|
|
|
|
|
|
2016-03-24 22:51:01 +00:00
|
|
|
|
```java
|
2016-03-23 01:52:02 +00:00
|
|
|
|
public final class BlackjackHand {
|
|
|
|
|
private int total = -1;
|
|
|
|
|
...
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unused") // Moshi uses this!
|
|
|
|
|
private BlackjackHand() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BlackjackHand(Card hidden_card, List<Card> visible_cards) {
|
|
|
|
|
...
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2018-05-15 01:46:55 +00:00
|
|
|
|
Kotlin
|
|
|
|
|
------
|
|
|
|
|
|
|
|
|
|
Moshi is a great JSON library for Kotlin. It understands Kotlin’s non-nullable types and default
|
|
|
|
|
parameter values. When you use Kotlin with Moshi you may use reflection, codegen, or both.
|
|
|
|
|
|
|
|
|
|
#### Reflection
|
|
|
|
|
|
|
|
|
|
The reflection adapter uses Kotlin’s reflection library to convert your Kotlin classes to and from
|
|
|
|
|
JSON. Enable it by adding the `KotlinJsonAdapterFactory` to your `Moshi.Builder`:
|
2017-07-26 17:42:02 +00:00
|
|
|
|
|
|
|
|
|
```kotlin
|
|
|
|
|
val moshi = Moshi.Builder()
|
2018-05-15 01:46:55 +00:00
|
|
|
|
// ... add your own JsonAdapters and factories ...
|
2017-07-26 17:42:02 +00:00
|
|
|
|
.add(KotlinJsonAdapterFactory())
|
|
|
|
|
.build()
|
|
|
|
|
```
|
2016-03-23 01:52:02 +00:00
|
|
|
|
|
2018-05-15 01:46:55 +00:00
|
|
|
|
Moshi’s adapters are ordered by precedence, so you always want to add the Kotlin adapter after your
|
|
|
|
|
own custom adapters. Otherwise the `KotlinJsonAdapterFactory` will take precedence and your custom
|
|
|
|
|
adapters will not be called.
|
2018-02-18 03:17:42 +00:00
|
|
|
|
|
2018-05-15 01:46:55 +00:00
|
|
|
|
The reflection adapter requires the following additional dependency:
|
2018-02-18 03:17:42 +00:00
|
|
|
|
|
2018-05-15 01:46:55 +00:00
|
|
|
|
```xml
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.squareup.moshi</groupId>
|
|
|
|
|
<artifactId>moshi-kotlin</artifactId>
|
|
|
|
|
<version>1.6.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```groovy
|
2018-05-15 02:57:59 +00:00
|
|
|
|
implementation 'com.squareup.moshi:moshi-kotlin:1.6.0'
|
2018-05-15 01:46:55 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Note that the reflection adapter transitively depends on the `kotlin-reflect` library which is a
|
|
|
|
|
2.5 MiB .jar file.
|
|
|
|
|
|
|
|
|
|
#### Codegen
|
|
|
|
|
|
|
|
|
|
Moshi’s Kotlin codegen support is an annotation processor. It generates a small and fast adapter for
|
|
|
|
|
each of your Kotlin classes at compile time. Enable it by annotating each class that you want to
|
|
|
|
|
encode as JSON:
|
|
|
|
|
|
|
|
|
|
```kotlin
|
|
|
|
|
@JsonClass(generateAdapter = true)
|
|
|
|
|
data class BlackjackHand(
|
|
|
|
|
hidden_card: Card,
|
|
|
|
|
visible_cards: List<Card>
|
|
|
|
|
)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The codegen adapter requires that your Kotlin types and their properties be either `internal` or
|
|
|
|
|
`public` (this is Kotlin’s default visibility).
|
|
|
|
|
|
2018-05-15 02:40:29 +00:00
|
|
|
|
Kotlin codegen has no additional runtime dependency. You’ll need to [enable kapt][kapt] and then
|
|
|
|
|
add the following to your build to enable the annotation processor:
|
2015-03-27 04:29:13 +00:00
|
|
|
|
|
2015-06-16 16:58:09 +00:00
|
|
|
|
```xml
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.squareup.moshi</groupId>
|
2018-05-15 01:46:55 +00:00
|
|
|
|
<artifactId>moshi-kotlin-codegen</artifactId>
|
|
|
|
|
<version>1.6.0</version>
|
|
|
|
|
<scope>provided</scope>
|
2015-06-16 16:58:09 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
```
|
2018-05-15 01:46:55 +00:00
|
|
|
|
|
2015-06-16 16:58:09 +00:00
|
|
|
|
```groovy
|
2018-05-15 01:46:55 +00:00
|
|
|
|
annotationProcessor 'com.squareup.moshi:moshi-kotlin-codegen:1.6.0'
|
2015-06-16 16:58:09 +00:00
|
|
|
|
```
|
2018-05-15 01:46:55 +00:00
|
|
|
|
|
|
|
|
|
#### Limitations
|
|
|
|
|
|
2018-05-15 02:57:59 +00:00
|
|
|
|
If your Kotlin class has a superclass, it must also be a Kotlin class. Neither reflection or codegen
|
|
|
|
|
support Kotlin types with Java supertypes or Java types with Kotlin supertypes. If you need to
|
|
|
|
|
convert such classes to JSON you must create a custom type adatper.
|
2018-05-15 01:46:55 +00:00
|
|
|
|
|
|
|
|
|
The JSON encoding of Kotlin types is the same whether using reflection or codegen. Prefer codegen
|
|
|
|
|
for better performance and to avoid the `kotlin-reflect` dependency; prefer reflection to convert
|
|
|
|
|
both private and protected properties. If you have configured both, generated adapters will be used
|
|
|
|
|
on types that are annotated `@JsonClass(generateAdapter = true)`.
|
|
|
|
|
|
|
|
|
|
Download
|
|
|
|
|
--------
|
|
|
|
|
|
|
|
|
|
Download [the latest JAR][dl] or depend via Maven:
|
|
|
|
|
|
2017-07-26 17:42:02 +00:00
|
|
|
|
```xml
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.squareup.moshi</groupId>
|
2018-05-15 01:46:55 +00:00
|
|
|
|
<artifactId>moshi</artifactId>
|
|
|
|
|
<version>1.6.0</version>
|
2017-07-26 17:42:02 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
```
|
|
|
|
|
or Gradle:
|
|
|
|
|
```groovy
|
2018-05-15 02:57:59 +00:00
|
|
|
|
implementation 'com.squareup.moshi:moshi:1.6.0'
|
2017-07-26 17:42:02 +00:00
|
|
|
|
```
|
2015-03-27 04:29:13 +00:00
|
|
|
|
|
2015-06-16 16:58:09 +00:00
|
|
|
|
Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].
|
2015-03-27 04:29:13 +00:00
|
|
|
|
|
|
|
|
|
|
2017-05-15 02:02:51 +00:00
|
|
|
|
ProGuard
|
|
|
|
|
--------
|
|
|
|
|
|
|
|
|
|
If you are using ProGuard you might need to add the following options:
|
|
|
|
|
```
|
|
|
|
|
-dontwarn okio.**
|
2017-09-25 19:03:36 +00:00
|
|
|
|
-dontwarn javax.annotation.**
|
2017-06-09 12:18:38 +00:00
|
|
|
|
-keepclasseswithmembers class * {
|
|
|
|
|
@com.squareup.moshi.* <methods>;
|
|
|
|
|
}
|
2017-08-04 22:15:11 +00:00
|
|
|
|
-keep @com.squareup.moshi.JsonQualifier interface *
|
2017-05-15 02:02:51 +00:00
|
|
|
|
```
|
2018-05-15 01:46:55 +00:00
|
|
|
|
Additional rules are needed if you are using Kotlin:
|
2018-05-15 03:22:23 +00:00
|
|
|
|
|
2018-05-15 03:54:30 +00:00
|
|
|
|
*...If you are using the reflect API (i.e. `KotlinJsonAdapterFactory`):*
|
2017-07-26 17:42:02 +00:00
|
|
|
|
```
|
|
|
|
|
-keepclassmembers class kotlin.Metadata {
|
|
|
|
|
public <methods>;
|
|
|
|
|
}
|
2018-05-15 03:22:23 +00:00
|
|
|
|
```
|
|
|
|
|
*...If you are using the codegen API (i.e. `JsonClass(generateAdapter = true)`):*
|
|
|
|
|
```
|
2018-05-15 03:17:20 +00:00
|
|
|
|
-keepnames class **JsonAdapter
|
|
|
|
|
-keepnames @com.squareup.moshi.JsonClass class *
|
2017-07-26 17:42:02 +00:00
|
|
|
|
```
|
2017-05-15 02:02:51 +00:00
|
|
|
|
|
2015-03-27 04:29:13 +00:00
|
|
|
|
License
|
|
|
|
|
--------
|
|
|
|
|
|
|
|
|
|
Copyright 2015 Square, Inc.
|
|
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
2015-03-29 06:40:42 +00:00
|
|
|
|
|
|
|
|
|
|
2015-06-16 16:58:09 +00:00
|
|
|
|
[dl]: https://search.maven.org/remote_content?g=com.squareup.moshi&a=moshi&v=LATEST
|
|
|
|
|
[snap]: https://oss.sonatype.org/content/repositories/snapshots/com/squareup/moshi/
|
2015-06-16 03:51:47 +00:00
|
|
|
|
[okio]: https://github.com/square/okio/
|
2015-10-25 12:38:26 +00:00
|
|
|
|
[okhttp]: https://github.com/square/okhttp/
|
|
|
|
|
[gson]: https://github.com/google/gson/
|
2018-02-26 03:09:56 +00:00
|
|
|
|
[javadoc]: https://square.github.io/moshi/1.x/moshi/
|
2018-05-15 03:22:23 +00:00
|
|
|
|
[kapt]: https://kotlinlang.org/docs/reference/kapt.html
|