/core/src/main/java/org/jclouds/json/internal/OptionalTypeAdapterFactory.java

http://github.com/jclouds/jclouds · Java · 75 lines · 49 code · 7 blank · 19 comment · 9 complexity · 22150762a07fc1e55c4295666d5ffdd2 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.jclouds.json.internal;
  18. import java.io.IOException;
  19. import java.lang.reflect.ParameterizedType;
  20. import java.lang.reflect.Type;
  21. import com.google.common.base.Optional;
  22. import com.google.gson.Gson;
  23. import com.google.gson.TypeAdapter;
  24. import com.google.gson.TypeAdapterFactory;
  25. import com.google.gson.reflect.TypeToken;
  26. import com.google.gson.stream.JsonReader;
  27. import com.google.gson.stream.JsonToken;
  28. import com.google.gson.stream.JsonWriter;
  29. /**
  30. * Writes and reads Optional values as JSON
  31. */
  32. public class OptionalTypeAdapterFactory implements TypeAdapterFactory {
  33. @SuppressWarnings("unchecked")
  34. @Override
  35. public <T> TypeAdapter<T> create(Gson gson, TypeToken<T> typeToken) {
  36. Type type = typeToken.getType();
  37. if (typeToken.getRawType() != Optional.class || !(type instanceof ParameterizedType)) {
  38. return null;
  39. }
  40. Type elementType = ((ParameterizedType) type).getActualTypeArguments()[0];
  41. TypeAdapter<?> elementAdapter = gson.getAdapter(TypeToken.get(elementType));
  42. return (TypeAdapter<T>) newOptionalAdapter(elementAdapter);
  43. }
  44. protected <E> TypeAdapter<Optional<E>> newOptionalAdapter(
  45. final TypeAdapter<E> elementAdapter) {
  46. return new TypeAdapter<Optional<E>>() {
  47. public void write(JsonWriter out, Optional<E> value) throws IOException {
  48. if (!value.isPresent()) {
  49. out.nullValue();
  50. return;
  51. }
  52. elementAdapter.write(out, value.get());
  53. }
  54. public Optional<E> read(JsonReader in) throws IOException {
  55. Optional<E> result = Optional.absent();
  56. if (in.peek() == JsonToken.NULL) {
  57. in.nextNull();
  58. } else {
  59. E element = elementAdapter.read(in);
  60. if (element != null) {
  61. result = Optional.of(element);
  62. }
  63. }
  64. return result;
  65. }
  66. };
  67. }
  68. }