Найти метод, который переопределяется с обработкой аннотаций - PullRequest
0 голосов
/ 01 ноября 2018

Структура кода

Допустим, у нас есть такая структура:

class A {

    @AMethodAnnotation("my-data")
    public void myMethod() {

    }

}

@MyClassAnnotation
class B extends A {

    @Override
    public void myMethod() {

    }

}

Чего я пытаюсь достичь

Использование обработки аннотаций Я пытаюсь извлечь данные из аннотации AMethodAnnotation, расположенной в методе myMethod внутри класса A. класс B расширяет этот класс и переопределяет его метод myMethod.

Суть в том, что мне нужны данные из методов с AMethodAnnotation, если класс, в котором он находится, имеет аннотацию MyClassAnnotation.

Я получаю классы с аннотацией MyClassAnnotation и перебираю enclosedElements, там я могу проверить, есть ли у него аннотация Override, но я не уверен, как получить метод, который он переопределяет, так как Вот где AMethodAnnotation находится с данными, которые я хочу. ExecutableElement не предоставляет методы для получения этого.

for (Element classElement : roundEnv.getElementsAnnotatedWith(MyClassAnnotation.class)) {
    // Make sure it's a class
    if (classElement.getKind() != ElementKind.CLASS) {
        continue;
    }

    // Loop through methods inside class
    for (Element methodElement : classElement.getEnclosedElements()) {
        // Make sure the element is a method & has a @Path annotation
        if (methodElement.getKind() != ElementKind.METHOD) {
            continue;
        }

        // If method has @Override annotation do stuff

    }
}

Вопрос

Есть ли способ получить ссылку на переопределяемый метод?

Есть способ, вы получаете суперкласс B, который равен A, и вы перебираете enclosedElements в A, тогда вам придется проверить, совпадает ли имя метода, и если параметры одинаковы и находятся в одинаковом порядке. Но я считаю, что этот способ требует много проверок, поэтому мой вопрос, есть ли лучший способ.

1 Ответ

0 голосов
/ 02 ноября 2018

Я написал следующий метод на основе ссылки @rmuller, размещенной в комментариях. Существует обширная документация по этому методу, как видно на Javadoc и на рисунке ниже, где он более читабелен.

The Javadoc as formatted by eclipse, so its actually readable

/**
 * Will find the method which the method <strong>methodElement</strong> is overriding, if any.
 * It does this by recursively traversing up the superclass tree of the
 * <strong>classElement</strong> and checking if there are methods which override the
 * <strong>methodElement</strong>. It will return after it finds the first method with the
 * annotation <strong>annotation</strong>.
 *
 * @param originalClassElement The original class inside which the
 *                             <strong>methodElement</strong> is located.
 * @param classElement         The class which represents the superclass while recursively
 *                             looking up the tree, it should be equal to the
 *                             <strong>originalClassElement</strong> when first calling this
 *                             method.
 * @param methodElement        The method for which should be checked if it's overriding
 *                             anything.
 * @param annotation           The annotation which must be matched before returning the result
 * @return Will return the following, the list is written in order:
 *         <ul>
 *         <li>The method <strong>methodElement</strong> if <strong>methodElement</strong>
 *         already has an annotation of the type <strong>annotation</strong></li>
 *         <li>Null if the method <strong>methodElement</strong> does not have an @Override
 *         annotation</li>
 *         <li>Null if the class <strong>classElement</strong> does not have a superclass</li>
 *         <li>The method element which was found to have the annotation
 *         <strong>annotation</strong></li>
 *         </ul>
 */
public ExecutableElement getMethodOverride(TypeElement originalClassElement,
        TypeElement classElement, ExecutableElement methodElement,
        Class<? extends Annotation> annotation) {

    if (methodElement.getAnnotation(annotation) != null) {
        // The methodElement which was passed has the required annotation already
        return methodElement;
    }

    if (methodElement.getAnnotation(Override.class) == null) {
        // The methodElement which was passed does not have an @Override annotation and is
        // therefore not overriding anything.
        return null;
    }

    if (classElement.getSuperclass().getKind() == TypeKind.NONE) {
        // Class has no superclass
        return null;
    }

    for (Element elem : classElement.getEnclosedElements()) {
        if (elem.getKind() != ElementKind.METHOD) {
            // Not a method
            continue;
        }

        // Check if the method inside the superclass overrids the method inside the original
        // class
        if (this.processingEnv.getElementUtils().overrides(methodElement,
                (ExecutableElement) elem, classElement)) {

            // Recursively go up the tree and check since this method might also override
            // another method
            return getMethodOverride(originalClassElement,
                    this.env.getElementUtils()
                            .getTypeElement(classElement.getSuperclass().toString()),
                    (ExecutableElement) elem, annotation);
        }

    }

    // Recursively go up the tree and check there
    return getMethodOverride(originalClassElement,
            this.env.getElementUtils().getTypeElement(classElement.getSuperclass().toString()),
            methodElement, annotation);
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...