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

http://github.com/jclouds/jclouds · Java · 78 lines · 46 code · 7 blank · 25 comment · 7 complexity · 2e695b3a13945345a2f3a4c012e042a0 MD5 · raw file

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