From 832ae4b34faaf69fd42e2d5c4f612a1f076931af Mon Sep 17 00:00:00 2001 From: Eric Cochran Date: Mon, 30 Jan 2017 23:10:15 -0800 Subject: [PATCH] Add Unwrap JsonAdapter.Factory sample --- .../com/squareup/moshi/recipes/Unwrap.java | 90 +++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 examples/src/main/java/com/squareup/moshi/recipes/Unwrap.java diff --git a/examples/src/main/java/com/squareup/moshi/recipes/Unwrap.java b/examples/src/main/java/com/squareup/moshi/recipes/Unwrap.java new file mode 100644 index 0000000..32c54af --- /dev/null +++ b/examples/src/main/java/com/squareup/moshi/recipes/Unwrap.java @@ -0,0 +1,90 @@ +/* + * Copyright (C) 2017 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. + */ +package com.squareup.moshi.recipes; + +import com.squareup.moshi.JsonAdapter; +import com.squareup.moshi.JsonQualifier; +import com.squareup.moshi.JsonReader; +import com.squareup.moshi.JsonWriter; +import com.squareup.moshi.Moshi; +import com.squareup.moshi.Types; +import com.squareup.moshi.recipes.Unwrap.EnvelopeJsonAdapter.Enveloped; +import com.squareup.moshi.recipes.models.Card; +import java.io.IOException; +import java.lang.annotation.Annotation; +import java.lang.annotation.Retention; +import java.lang.reflect.Type; +import java.util.Set; + +import static java.lang.annotation.RetentionPolicy.RUNTIME; + +final class Unwrap { + public static void main(String[] args) throws Exception { + String json = "" + + "{\"data\":" + + " {\n" + + " \"rank\": \"4\",\n" + + " \"suit\": \"CLUBS\"\n" + + " }" + + "}"; + Moshi moshi = new Moshi.Builder().add(EnvelopeJsonAdapter.FACTORY).build(); + JsonAdapter adapter = moshi.adapter(Card.class, Enveloped.class); + Card out = adapter.fromJson(json); + System.out.println(out); + } + + public static final class EnvelopeJsonAdapter extends JsonAdapter { + public static final JsonAdapter.Factory FACTORY = new Factory() { + @Override + public JsonAdapter create(Type type, Set annotations, Moshi moshi) { + Set delegateAnnotations = + Types.nextAnnotations(annotations, Enveloped.class); + if (delegateAnnotations == null) { + return null; + } + Type envelope = + Types.newParameterizedTypeWithOwner(EnvelopeJsonAdapter.class, Envelope.class, type); + JsonAdapter> delegate = moshi.nextAdapter(this, envelope, delegateAnnotations); + return new EnvelopeJsonAdapter(delegate); + } + }; + + @Retention(RUNTIME) @JsonQualifier public @interface Enveloped { + } + + private static final class Envelope { + final T data; + + Envelope(T data) { + this.data = data; + } + } + + private final JsonAdapter> delegate; + + EnvelopeJsonAdapter(JsonAdapter> delegate) { + this.delegate = delegate; + } + + @Override public Object fromJson(JsonReader reader) throws IOException { + return delegate.fromJson(reader).data; + } + + @Override public void toJson(JsonWriter writer, Object value) throws IOException { + delegate.toJson(new Envelope<>(value)); + } + } +}