All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.jaxb.runtime.graal.JAXBSubstitutions Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package io.quarkus.jaxb.runtime.graal;

import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map;

import jakarta.xml.bind.annotation.XmlSeeAlso;

import org.glassfish.jaxb.core.v2.model.annotation.Locatable;
import org.glassfish.jaxb.runtime.v2.model.annotation.LocatableAnnotation;

import com.oracle.svm.core.annotate.Alias;
import com.oracle.svm.core.annotate.RecomputeFieldValue;
import com.oracle.svm.core.annotate.Substitute;
import com.oracle.svm.core.annotate.TargetClass;

@TargetClass(className = "org.glassfish.jaxb.core.v2.model.nav.ReflectionNavigator")
final class Target_org_glassfish_jaxb_core_v2_model_nav_ReflectionNavigator {

    @Substitute
    public Field[] getEnumConstants(Class clazz) {
        try {
            Object[] values = clazz.getEnumConstants();
            Field[] fields = new Field[values.length];
            for (int i = 0; i < values.length; i++) {
                fields[i] = clazz.getField(((Enum) values[i]).name());
            }
            return fields;
        } catch (NoSuchFieldException e) {
            // impossible
            throw new NoSuchFieldError(clazz.getName() + ": " + e.getMessage());
        }
    }

}

@TargetClass(className = "org.glassfish.jaxb.runtime.v2.model.annotation.RuntimeInlineAnnotationReader")
final class Target_org_glassfish_jaxb_runtime_v2_model_annotation_RuntimeInlineAnnotationReader {

    @Alias
    @RecomputeFieldValue(kind = RecomputeFieldValue.Kind.NewInstance, declClass = HashMap.class)
    private Map, Map> packageCache;

    @Substitute
    public  A getFieldAnnotation(Class annotation, Field field, Locatable srcPos) {
        return field.getAnnotation(annotation);
    }

    @Substitute
    public Annotation[] getAllFieldAnnotations(Field field, Locatable srcPos) {
        return field.getAnnotations();
    }

    @Substitute
    public  A getMethodAnnotation(Class annotation, Method method, Locatable srcPos) {
        return method.getAnnotation(annotation);
    }

    @Substitute
    public Annotation[] getAllMethodAnnotations(Method method, Locatable srcPos) {
        return method.getAnnotations();
    }

    @Substitute
    @SuppressWarnings("unchecked")
    public  A getMethodParameterAnnotation(Class annotation, Method method, int paramIndex,
            Locatable srcPos) {
        Annotation[] pa = method.getParameterAnnotations()[paramIndex];
        for (Annotation a : pa) {
            if (a.annotationType() == annotation)
                return (A) a;
        }
        return null;
    }

    @Substitute
    public  A getClassAnnotation(Class a, Class clazz, Locatable srcPos) {
        A ann = ((Class) clazz).getAnnotation(a);
        return (ann != null && ann.annotationType() == XmlSeeAlso.class) ? LocatableAnnotation.create(ann, srcPos) : ann;
    }

    @Substitute
    @SuppressWarnings("unchecked")
    public  A getPackageAnnotation(Class a, Class clazz, Locatable srcPos) {
        Package p = clazz.getPackage();
        if (p == null)
            return null;

        Map cache = packageCache.get(a);
        if (cache == null) {
            cache = new HashMap<>();
            packageCache.put(a, cache);
        }

        if (cache.containsKey(p))
            return (A) cache.get(p);
        else {
            A ann = p.getAnnotation(a);
            cache.put(p, ann);
            return ann;
        }
    }
}

class JAXBSubstitutions {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy