package io.vertx.codegen;
import io.vertx.codegen.doc.Text;
import io.vertx.codegen.format.CamelCase;
import io.vertx.codegen.format.Case;
import io.vertx.codegen.type.ClassKind;
import io.vertx.codegen.type.ParameterizedTypeInfo;
import io.vertx.codegen.type.TypeInfo;
public class ParamInfo {
final int index;
final String name;
final Text description;
final TypeInfo type;
final TypeInfo unresolvedType;
public ParamInfo(int index, String name, Text description, TypeInfo type) {
this(index, name, description, type, null);
}
public ParamInfo(int index, String name, Text description, TypeInfo type, TypeInfo unresolvedType) {
this.index = index;
this.name = name;
this.description = description;
this.type = type;
this.unresolvedType = unresolvedType;
}
public int getIndex() {
return index;
}
public String getName() {
return name;
}
public String getName(Case _case) {
return _case.format(CamelCase.INSTANCE.parse(name));
}
public Text getDescription() {
return description;
}
public boolean isNullable() {
return type.getKind() == ClassKind.OBJECT || type.isNullable();
}
public Boolean isNullableCallback() {
switch (type.getKind()) {
case HANDLER:
TypeInfo handler = ((ParameterizedTypeInfo)type).getArg(0);
switch (handler.getKind()) {
case ASYNC_RESULT:
TypeInfo asyncResult = ((ParameterizedTypeInfo)handler).getArg(0);
return asyncResult.isNullable();
default:
return handler.isNullable();
}
default:
return null;
}
}
public TypeInfo getType() {
return type;
}
public TypeInfo getUnresolvedType() {
return unresolvedType;
}
public boolean isDataObject() {
return type.isDataObjectHolder();
}
@Override
public boolean equals(Object other) {
if (!(other instanceof ParamInfo)) {
return false;
}
ParamInfo pother = (ParamInfo)other;
return this.name.equals(pother.name) && this.type.equals(pother.type);
}
@Override
public int hashCode() {
int result = name.hashCode();
result = 31 * result + type.hashCode();
return result;
}
@Override
public String toString() {
return type + " " + name;
}
}