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

org.quickperf.AnnotationsExtractor Maven / Gradle / Ivy

The newest version!
/*
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
 *
 * Copyright 2019-2021 the original author or authors.
 */

package org.quickperf;

import org.quickperf.annotation.DisableGlobalAnnotations;
import org.quickperf.config.SpecifiableGlobalAnnotations;
import org.quickperf.config.library.SetOfAnnotationConfigs;

import java.io.IOException;
import java.lang.annotation.Annotation;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.*;

public class AnnotationsExtractor {

    public static final AnnotationsExtractor INSTANCE = new AnnotationsExtractor();

    private final AnnotationsMerger annotationsMerger = AnnotationsMerger.INSTANCE;

    private final Collection globalAnnotations;

    private AnnotationsExtractor() {
        globalAnnotations = retrieveDefaultAnnotations();
    }

    private Collection retrieveDefaultAnnotations() {

        try {
            SpecifiableGlobalAnnotations specifiableGlobalAnnotations = classSpecifyingGlobalAnnotation();
            if (specifiableGlobalAnnotations == null) {
                return Collections.emptyList();
            }
            return specifiableGlobalAnnotations.specifyAnnotationsAppliedOnEachTest();
        } catch (Exception e) {
            throw new IllegalStateException(e);
        }

    }

    public SpecifiableGlobalAnnotations classSpecifyingGlobalAnnotation(){

        Class[] userConfigClasses = findUserConfigClasses();

        Class classImplementingSpecifiableAnnotations = findClassImplementingSpecifiableAnnotations(userConfigClasses);

        return instantiateSpecifiableAnnotationsFrom(classImplementingSpecifiableAnnotations);

    }

    private Class[] findUserConfigClasses() {
        QuickPerfUserConfigClasses quickPerfUserConfigClasses = QuickPerfUserConfigClasses.INSTANCE;
        try {
            return quickPerfUserConfigClasses.findClasses();
        } catch (ClassNotFoundException | IOException e) {
            throw new IllegalStateException(e);
        }
    }

    private Class findClassImplementingSpecifiableAnnotations(Class[] classes) {
        for (Class clazz : classes) {
            Class[] interfaces = clazz.getInterfaces();
            for (Class interfaceClass : interfaces) {
                if (isSpecifiableAnnotationsInterface(interfaceClass)) {
                    return clazz;
                }
            }
        }
        return null;
    }

    @SuppressWarnings("unchecked")
    private SpecifiableGlobalAnnotations instantiateSpecifiableAnnotationsFrom(Class clazz) {
        if(clazz == null) {
            return null;
        }
        try {
            return (SpecifiableGlobalAnnotations) clazz.getDeclaredConstructor().newInstance();
        } catch ( InstantiationException | IllegalAccessException
                | NoSuchMethodException  | InvocationTargetException e) {
            throw new IllegalStateException(e);
        }
    }

    private boolean isSpecifiableAnnotationsInterface(Class interfaceClass) {
        return interfaceClass.getCanonicalName().equals(SpecifiableGlobalAnnotations.class.getCanonicalName());
    }

    public Annotation[] extractAnnotationsFor(Method testMethod, SetOfAnnotationConfigs testAnnotationConfigs) {
        Annotation[] classAnnotations = testMethod.getDeclaringClass().getAnnotations();
        Annotation[] methodAnnotations = testMethod.getAnnotations();
        Annotation[] mergedAnnotations = annotationsMerger.merge(globalAnnotations
                                                                , classAnnotations
                                                                , methodAnnotations);

        Collection quickPerfAnnotations = testAnnotationConfigs.keepQuickPerfAnnotationsIn(mergedAnnotations);

        List resultAsList
                = testAnnotationConfigs.removeDisabledAndAndDisablingAnnotationsIn(quickPerfAnnotations);

        return resultAsList.toArray(new Annotation[0]);
    }

    static class AnnotationsMerger {

        static final AnnotationsMerger INSTANCE = new AnnotationsMerger();

        private AnnotationsMerger() {}

        Annotation[] merge(Collection globalAnnotations
                , Annotation[] classAnnotations
                , Annotation[] methodAnnotations
        ) {

            Collection filteredDefaultAnnotations;
            if(  disableDefaultAnnotationContainedIn(methodAnnotations)
              || disableDefaultAnnotationContainedIn(classAnnotations) ) {
                filteredDefaultAnnotations = Collections.emptyList();
            } else {
                filteredDefaultAnnotations = globalAnnotations;
            }

            List methodAnnotationsAsList = Arrays.asList(methodAnnotations);
            List mergedAnnotationsAsList = new ArrayList<>(methodAnnotationsAsList);

            List classAnnotationAsList = Arrays.asList(classAnnotations);
            List classAnnotationsNotInMethodAnnotations =
                    retrieveAnnotationsOfFirstParamNotInAnnotationsOfSecondParam(classAnnotationAsList
                            , methodAnnotationsAsList);
            mergedAnnotationsAsList.addAll(classAnnotationsNotInMethodAnnotations);

            List globalAnnotationsToKeep =
                    retrieveAnnotationsOfFirstParamNotInAnnotationsOfSecondParam(filteredDefaultAnnotations
                            , mergedAnnotationsAsList);
            mergedAnnotationsAsList.addAll(globalAnnotationsToKeep);

            return convertToArray(removeDisableDefaultAnnotationIn(mergedAnnotationsAsList));

        }

        private List removeDisableDefaultAnnotationIn(List annotations) {
            List methodAnnotationsWithoutDisableAnnotation = new ArrayList<>();
            for (Annotation annotation : annotations) {
                if(!isDisableGlobalAnnotation(annotation)) {
                    methodAnnotationsWithoutDisableAnnotation.add(annotation);
                }
            }
            return methodAnnotationsWithoutDisableAnnotation;
        }

        private boolean disableDefaultAnnotationContainedIn(Annotation[] methodAnnotations) {
            boolean methodAnnotationsContainDisableDefaultAnnotation = false;
            for (Annotation annotation : methodAnnotations) {
                if(isDisableGlobalAnnotation(annotation)) {
                    methodAnnotationsContainDisableDefaultAnnotation = true;
                }
            }
            return methodAnnotationsContainDisableDefaultAnnotation;
        }

        private boolean isDisableGlobalAnnotation(Annotation annotation) {
            return annotation.annotationType().equals(DisableGlobalAnnotations.class);
        }

        private List retrieveAnnotationsOfFirstParamNotInAnnotationsOfSecondParam(Collection annotationsOfFirstParam
                , Collection annotationsOfSecondParam) {
            List result = new ArrayList<>();

            Collection> classesOfAnnotationsOfSecondParam =
                    retrieveClassesOf(annotationsOfSecondParam);

            for (Annotation oneAnnotationOfFirstParam : annotationsOfFirstParam) {
                Class classOfOneAnnotationOfFirstParam = oneAnnotationOfFirstParam.annotationType();
                if (!classesOfAnnotationsOfSecondParam.contains(classOfOneAnnotationOfFirstParam)) {
                    result.add(oneAnnotationOfFirstParam);
                }
            }

            return result;

        }

        private Collection> retrieveClassesOf(Collection annotations) {
            List> classes = new ArrayList<>(annotations.size());
            for (Annotation annotation : annotations) {
                classes.add(annotation.annotationType());
            }
            return classes;
        }

        private Annotation[] convertToArray(List mergedAnnotationsAsList) {
            int size = mergedAnnotationsAsList.size();
            return mergedAnnotationsAsList.toArray(new Annotation[size]);
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy