Browse Source

Fix 485583: NullPointerException in org.aspectj.ajdt.internal.compiler.ast.PointcutDeclaration

tags/V1_8_9
Andy Clement 8 years ago
parent
commit
b54540d9a4

+ 18
- 13
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/ast/PointcutDeclaration.java View File

@@ -26,9 +26,11 @@ import org.aspectj.org.eclipse.jdt.internal.compiler.ast.CompilationUnitDeclarat
import org.aspectj.org.eclipse.jdt.internal.compiler.ast.TypeDeclaration;
import org.aspectj.org.eclipse.jdt.internal.compiler.ast.TypeReference;
import org.aspectj.org.eclipse.jdt.internal.compiler.classfmt.ClassFileConstants;
import org.aspectj.org.eclipse.jdt.internal.compiler.lookup.AnnotationBinding;
import org.aspectj.org.eclipse.jdt.internal.compiler.lookup.ClassScope;
import org.aspectj.org.eclipse.jdt.internal.compiler.lookup.ExtraCompilerModifiers;
import org.aspectj.org.eclipse.jdt.internal.compiler.lookup.ReferenceBinding;
import org.aspectj.org.eclipse.jdt.internal.compiler.lookup.SourceTypeBinding;
import org.aspectj.org.eclipse.jdt.internal.compiler.lookup.TagBits;
import org.aspectj.org.eclipse.jdt.internal.compiler.lookup.TypeBinding;
import org.aspectj.org.eclipse.jdt.internal.compiler.parser.Parser;
@@ -89,17 +91,7 @@ public class PointcutDeclaration extends AjMethodDeclaration {
// }

if (Modifier.isAbstract(this.declaredModifiers)) {
if (!(typeDec instanceof AspectDeclaration)) {
// check for @Aspect
if (isAtAspectJ(typeDec)) {
// no need to check abstract class as JDT does that
} else {
typeDec.scope.problemReporter().signalError(sourceStart, sourceEnd,
"The abstract pointcut " + new String(declaredName) + " can only be defined in an aspect");
ignoreFurtherInvestigation = true;
return;
}
} else if (!Modifier.isAbstract(typeDec.modifiers)) {
if ((typeDec instanceof AspectDeclaration) && !Modifier.isAbstract(typeDec.modifiers)) {
typeDec.scope.problemReporter().signalError(sourceStart, sourceEnd,
"The abstract pointcut " + new String(declaredName) + " can only be defined in an abstract aspect");

@@ -116,10 +108,9 @@ public class PointcutDeclaration extends AjMethodDeclaration {
private boolean isAtAspectJ(TypeDeclaration typeDec) {
if (typeDec.annotations == null)
return false;

for (int i = 0; i < typeDec.annotations.length; i++) {
Annotation annotation = typeDec.annotations[i];
if ("Lorg/aspectj/lang/annotation/Aspect;".equals(new String(annotation.resolvedType.signature()))) {
if (CharOperation.equals(annotation.resolvedType.signature(),ASPECT_CHARS)) {
return true;
}
}
@@ -174,6 +165,8 @@ public class PointcutDeclaration extends AjMethodDeclaration {
generateSyntheticPointcutMethod = true;
// mangleSelector = false;
}
private static char[] ASPECT_CHARS = "Lorg/aspectj/lang/annotation/Aspect;".toCharArray();

public void resolve(ClassScope upperScope) {
// we attempted to resolve annotations below, but that was too early, so we do it again
@@ -181,6 +174,18 @@ public class PointcutDeclaration extends AjMethodDeclaration {
if (binding != null) {
binding.tagBits -= TagBits.AnnotationResolved;
resolveAnnotations(scope, this.annotations, this.binding);
TypeDeclaration typeDec = upperScope.referenceContext;
if (Modifier.isAbstract(this.declaredModifiers)) {
if (!(typeDec instanceof AspectDeclaration)) {
if (!isAtAspectJ(typeDec)) {
typeDec.scope.problemReporter().signalError(sourceStart, sourceEnd,
"The abstract pointcut " + new String(declaredName) + " can only be defined in an aspect");
ignoreFurtherInvestigation = true;
return;
}
}
}
}
// for the rest of the resolution process, this method should do nothing, use the entry point below...
}

+ 2
- 2
org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/lookup/EclipseSourceType.java View File

@@ -465,11 +465,11 @@ public class EclipseSourceType extends AbstractReferenceTypeDelegate {
}
if (pointcuts[i].isAbstract()) {
if (!this.isAspect()) {
eclipseWorld().showMessage(IMessage.ERROR, "abstract pointcut only allowed in aspect" + pointcuts[i].getName(),
eclipseWorld().showMessage(IMessage.ERROR, "The abstract pointcut " + pointcuts[i].getName()+ " can only be defined in an aspect",
pointcuts[i].getSourceLocation(), null);
sawError = true;
} else if (!binding.isAbstract()) {
eclipseWorld().showMessage(IMessage.ERROR, "abstract pointcut in concrete aspect" + pointcuts[i],
eclipseWorld().showMessage(IMessage.ERROR, "abstract pointcut in concrete aspect: " + pointcuts[i],
pointcuts[i].getSourceLocation(), null);
sawError = true;
}

+ 8
- 0
tests/bugs189/485583/Bar.aj View File

@@ -0,0 +1,8 @@
//import org.aspectj.lang.annotation.*;
//
//@SuppressLoggerWarning
@org.aspectj.lang.annotation.Aspect
public abstract class Bar {
public abstract pointcut applicationCode();
}


+ 4
- 0
tests/bugs189/485583/Foo.aj View File

@@ -0,0 +1,4 @@

public abstract class Foo {
public abstract pointcut deprecatedCode();
}

+ 4
- 0
tests/src/org/aspectj/systemtest/ajc189/Ajc189Tests.java View File

@@ -22,6 +22,10 @@ import org.aspectj.testing.XMLBasedAjcTestCase;
*/
public class Ajc189Tests extends org.aspectj.testing.XMLBasedAjcTestCase {

public void testNPEAtAspectJ() throws Exception {
runTest("NPE at aspectj");
}
public void testLostBounds() throws Exception {
runTest("lost bounds");
// This type has I added via declare parents

+ 6
- 0
tests/src/org/aspectj/systemtest/ajc189/ajc189.xml View File

@@ -2,6 +2,12 @@

<suite>

<ajc-test dir="bugs189/485583" title="NPE at aspectj">
<compile files="Foo.aj Bar.aj" options="-1.8">
<message kind="error" text="The abstract pointcut deprecatedCode can only be defined in an aspect"/>
</compile>
</ajc-test>

<ajc-test dir="bugs189/486612" title="lost bounds">
<compile files="Code.java Azpect.java" options="-1.8"/>
</ajc-test>

Loading…
Cancel
Save