io.vproxy.pni.exec.ast.AstAnno Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pni-exec-jdk22 Show documentation
Show all versions of pni-exec-jdk22 Show documentation
panama native interface pni-exec-jdk22
The newest version!
package io.vproxy.pni.exec.ast;
import io.vproxy.pni.exec.internal.Utils;
import io.vproxy.pni.exec.type.TypeInfo;
import io.vproxy.pni.exec.type.TypePool;
import org.objectweb.asm.tree.AnnotationNode;
import java.util.ArrayList;
import java.util.List;
public class AstAnno {
public AstTypeDesc type;
public List values = new ArrayList<>();
public TypeInfo typeRef;
public AstAnno(AnnotationNode a) {
type = Utils.extractDesc(a.desc).get(0);
if (a.values != null) {
for (int i = 0; i < a.values.size(); i += 2) {
values.add(new AstAnnoValue((String) a.values.get(i), a.values.get(i + 1)));
}
}
}
public AstAnno() {
// for unit testing only
}
public void ref(TypePool pool) {
typeRef = pool.find(type);
}
public void validate(String path, List errors) {
path = path + "#anno(" + type + ")";
if (typeRef == null) {
errors.add(path + ": unable to find typeRef: " + type);
}
}
public void toString(StringBuilder sb, int indent) {
Utils.appendIndent(sb, indent);
sb.append("@");
if (typeRef != null) {
sb.append(typeRef.name());
} else {
sb.append(type);
}
if (!values.isEmpty()) {
sb.append("(");
var isFirst = true;
for (var v : values) {
if (isFirst) {
isFirst = false;
} else {
sb.append(", ");
}
v.toString(sb);
}
sb.append(")");
}
}
@Override
public String toString() {
var sb = new StringBuilder();
toString(sb, 0);
return sb.toString();
}
}