com.nytimes.android.external.store3.middleware.moshi.MoshiBufferedSourceAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of middleware-moshi3 Show documentation
Show all versions of middleware-moshi3 Show documentation
Store3 is built with RxJava2
package com.nytimes.android.external.store3.middleware.moshi;
import com.nytimes.android.external.fs3.BufferedSourceAdapter;
import com.squareup.moshi.JsonAdapter;
import com.squareup.moshi.Moshi;
import java.io.IOException;
import java.lang.reflect.Type;
import javax.annotation.Nonnull;
import javax.inject.Inject;
import okio.Buffer;
import okio.BufferedSource;
/**
* An implementation of {@link BufferedSourceAdapter BufferedSourceAdapter} that uses
* {@link Moshi} to convert Java values to JSON.
*/
public class MoshiBufferedSourceAdapter implements BufferedSourceAdapter {
private final JsonAdapter jsonAdapter;
@Inject
public MoshiBufferedSourceAdapter(@Nonnull Moshi moshi, @Nonnull Type type) {
this.jsonAdapter = moshi.adapter(type);
}
@Nonnull
@Override
public BufferedSource toJson(@Nonnull Parsed value) {
Buffer buffer = new Buffer();
try {
jsonAdapter.toJson(buffer, value);
} catch (IOException e) {
throw new AssertionError(e); // No I/O writing to a Buffer.
}
return buffer;
}
}