All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.dslplatform.json.processor.AttributeInfo Maven / Gradle / Ivy
package com.dslplatform.json.processor;
import com.dslplatform.json.CompiledJson;
import com.dslplatform.json.JsonAttribute;
import com.dslplatform.json.Nullable;
import javax.lang.model.element.*;
import javax.lang.model.type.TypeKind;
import javax.lang.model.type.TypeMirror;
import java.util.*;
public class AttributeInfo {
public final String id;
public final String name;
public final ExecutableElement readMethod;
public final ExecutableElement writeMethod;
public final VariableElement field;
public final TypeMirror type;
public final AnnotationMirror annotation;
public final Element element;
public final boolean notNull;
public final boolean mandatory;
public final int index;
public final String alias;
public final boolean fullMatch;
public final CompiledJson.TypeSignature typeSignature;
public final JsonAttribute.IncludePolicy includeToMinimal;
public final ConverterInfo converter;
public final boolean isJsonObject;
public final List alternativeNames = new ArrayList();
public final String readProperty;
public final String typeName;
public final boolean isArray;
public final boolean isList;
public final boolean isSet;
public final boolean isMap;
public final boolean isGeneric;
public final LinkedHashSet usedTypes;
public final Map typeVariablesIndex;
public final boolean containsStructOwnerType;
public AttributeInfo(
String name,
ExecutableElement readMethod,
ExecutableElement writeMethod,
@Nullable VariableElement field,
TypeMirror type,
boolean isList,
boolean isSet,
boolean isMap,
AnnotationMirror annotation,
boolean notNull,
boolean mandatory,
final int index,
@Nullable String alias,
boolean fullMatch,
@Nullable CompiledJson.TypeSignature typeSignature,
JsonAttribute.IncludePolicy includeToMinimal,
@Nullable ConverterInfo converter,
boolean isJsonObject,
LinkedHashSet usedTypes,
Map typeVariablesIndex,
boolean containsStructOwnerType) {
this.id = alias != null ? alias : name;
this.name = name;
this.readMethod = readMethod;
this.writeMethod = writeMethod;
this.field = field;
this.element = field != null ? field : readMethod;
this.type = type;
this.annotation = annotation;
this.notNull = notNull;
this.mandatory = mandatory;
this.index = index;
this.alias = alias;
this.fullMatch = fullMatch;
this.typeSignature = typeSignature;
this.includeToMinimal = includeToMinimal;
this.converter = converter;
this.isJsonObject = isJsonObject;
this.typeName = type.toString();
this.readProperty = field != null ? field.getSimpleName().toString() : readMethod.getSimpleName() + "()";
this.isArray = type.getKind() == TypeKind.ARRAY;
this.isList = isList;
this.isSet = isSet;
this.isMap = isMap;
this.usedTypes = usedTypes;
this.typeVariablesIndex = typeVariablesIndex;
this.isGeneric = !typeVariablesIndex.isEmpty();
this.containsStructOwnerType = containsStructOwnerType;
}
public boolean isEnum(Map structs) {
StructInfo struct = typeName == null ? null : structs.get(typeName);
return struct != null && struct.type == ObjectType.ENUM;
}
private boolean canResolveCollection(String content, TypeSupport typeSupport, Map structs) {
if (typeSupport.isSupported(content)) return true;
StructInfo target = structs.get(content);
return target != null && (target.hasKnownConversion() || !target.isParameterized && target.unknowns.isEmpty());
}
@Nullable
public List collectionContent(TypeSupport typeSupport, Map structs) {
if (isArray) {
String content = typeName.substring(0, typeName.length() - 2);
return canResolveCollection(content, typeSupport, structs) ? Collections.singletonList(content) : null;
} else if (isList || isSet) {
int ind = typeName.indexOf('<');
String content = typeName.substring(ind + 1, typeName.length() - 1);
return canResolveCollection(content, typeSupport, structs) ? Collections.singletonList(content) : null;
} else if (isMap) {
int indGen = typeName.indexOf('<');
int indComma = typeName.indexOf(',', indGen + 1);
String content1 = typeName.substring(indGen + 1, indComma);
String content2 = typeName.substring(indComma + 1, typeName.length() - 1);
return canResolveCollection(content1, typeSupport, structs) && canResolveCollection(content2, typeSupport, structs)
? Arrays.asList(content1, content2)
: null;
}
return null;
}
}