JCLOUDS-1030: Ignore synthetic members in serialization strategies

This commit is contained in:
Ignasi Barrera 2015-10-27 22:08:08 +01:00
parent 0e7283e191
commit afd3c322a9
1 changed files with 40 additions and 7 deletions

View File

@ -18,8 +18,10 @@ package org.jclouds.json.internal;
import static com.google.common.base.Preconditions.checkArgument; import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull; import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.base.Preconditions.checkState;
import static com.google.common.base.Predicates.in; import static com.google.common.base.Predicates.in;
import static com.google.common.collect.Iterables.filter;
import static com.google.common.collect.Iterables.get;
import static com.google.common.collect.Iterables.size;
import static com.google.common.collect.Iterables.transform; import static com.google.common.collect.Iterables.transform;
import static com.google.common.collect.Iterables.tryFind; import static com.google.common.collect.Iterables.tryFind;
import static org.jclouds.reflect.Reflection2.constructors; import static org.jclouds.reflect.Reflection2.constructors;
@ -30,6 +32,7 @@ import java.lang.reflect.Field;
import java.lang.reflect.Modifier; import java.lang.reflect.Modifier;
import java.util.Arrays; import java.util.Arrays;
import java.util.Collection; import java.util.Collection;
import java.util.List;
import java.util.Map; import java.util.Map;
import javax.inject.Named; import javax.inject.Named;
@ -44,6 +47,7 @@ import com.google.common.base.Supplier;
import com.google.common.collect.FluentIterable; import com.google.common.collect.FluentIterable;
import com.google.common.collect.Maps; import com.google.common.collect.Maps;
import com.google.common.reflect.Invokable; import com.google.common.reflect.Invokable;
import com.google.common.reflect.Parameter;
import com.google.common.reflect.TypeToken; import com.google.common.reflect.TypeToken;
import com.google.gson.FieldNamingStrategy; import com.google.gson.FieldNamingStrategy;
import com.google.gson.annotations.SerializedName; import com.google.gson.annotations.SerializedName;
@ -178,11 +182,30 @@ public class NamingStrategies {
SerializedNames names = target.getAnnotation(SerializedNames.class); SerializedNames names = target.getAnnotation(SerializedNames.class);
if (names != null && target.isStatic()) { // == factory method if (names != null && target.isStatic()) { // == factory method
// Fields and constructor params are written by AutoValue in same order as methods are declared. // Fields and constructor params are written by AutoValue in same order as methods are declared.
// By contract, SerializedNames factory methods must declare its names in the same order, // By contract, SerializedNames factory methods must declare its names in the same order.
Field[] fields = f.getDeclaringClass().getDeclaredFields(); List<Field> declaredFields = Arrays.asList(f.getDeclaringClass().getDeclaredFields());
checkState(fields.length == names.value().length, "Incorrect number of names on " + names); // Instrumentation libraries, such as JaCoCo might introduce synthetic fields to the class.
for (int i = 0; i < fields.length; i++) { // We should ignore them
if (fields[i].equals(f)) { Iterable<Field> fields = filter(declaredFields, new Predicate<Field>() {
@Override
public boolean apply(Field input) {
return !input.isSynthetic();
}
});
int numFields = size(fields);
if (numFields != names.value().length) {
String message = "Incorrect number of names on %s. Class [%s]. Annotation config: [%s]. Fields in object; [%s]";
String types = Joiner.on(",").join(transform(fields, new Function<Field, String>() {
@Override
public String apply(Field input) {
return input.getType().getName();
}
}));
throw new IllegalStateException(String.format(message, names, f.getDeclaringClass().getName(),
Joiner.on(",").join(names.value()), types));
}
for (int i = 0; i < numFields; i++) {
if (get(fields, i).equals(f)) {
return names.value()[i]; return names.value()[i];
} }
} }
@ -259,7 +282,17 @@ public class NamingStrategies {
? c.getAnnotation(SerializedNames.class).value() ? c.getAnnotation(SerializedNames.class).value()
: c.getAnnotation(ConstructorProperties.class).value(); : c.getAnnotation(ConstructorProperties.class).value();
checkArgument(names.length == c.getParameters().size(), "Incorrect count of names on annotation of %s", c); if (names.length != c.getParameters().size()) {
String message = "Incorrect count of names on annotation of %s. Class: [%s]. Annotation config: [%s]. Parameters; [%s]";
String types = Joiner.on(",").join(transform(c.getParameters(), new Function<Parameter, String>() {
@Override
public String apply(Parameter input) {
return input.getClass().getName();
}
}));
throw new IllegalArgumentException(String.format(message, c, c.getDeclaringClass().getName(),
Joiner.on(",").join(names), types));
}
if (names != null && names.length > index) { if (names != null && names.length > index) {
name = names[index]; name = names[index];