package org.aspectj.runtime.reflect;
-import java.util.Stack;
-
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.Signature;
import org.aspectj.lang.reflect.SourceLocation;
import org.aspectj.runtime.internal.AroundClosure;
+import java.util.ArrayList;
+import java.util.List;
+
class JoinPointImpl implements ProceedingJoinPoint {
static class StaticPartImpl implements JoinPoint.StaticPart {
String kind;
}
}
- static class InheritableThreadLocalAroundClosureStack extends InheritableThreadLocal<Stack<AroundClosure>> {
- @Override
- protected Stack<AroundClosure> initialValue() {
- return new Stack<>();
- }
-
- @Override
- protected Stack<AroundClosure> childValue(Stack<AroundClosure> parentValue) {
- return (Stack<AroundClosure>) parentValue.clone();
- }
- }
-
Object _this;
Object target;
Object[] args;
// will either be using arc or arcs but not both. arcs being non-null
// indicates it is in use (even if an empty stack)
private AroundClosure arc = null;
- private InheritableThreadLocalAroundClosureStack arcs = null;
+ private List<AroundClosure> arcs = null;
+ private final ThreadLocal<Integer> arcIndex = ThreadLocal.withInitial(() -> arcs == null ? -1 : arcs.size() - 1);
public void set$AroundClosure(AroundClosure arc) {
this.arc = arc;
}
- public void stack$AroundClosure(AroundClosure arc) {
+ public void stack$AroundClosure(AroundClosure arc) {
// If input parameter arc is null this is the 'unlink' call from AroundClosure
if (arcs == null) {
- arcs = new InheritableThreadLocalAroundClosureStack();
+ arcs = new ArrayList<>();
}
- if (arc==null) {
- this.arcs.get().pop();
- } else {
- this.arcs.get().push(arc);
+ if (arc == null) {
+ arcIndex.set(arcIndex.get() - 1);
+ }
+ else {
+ this.arcs.add(arc);
+ arcIndex.set(arcs.size() - 1);
}
- }
+ }
public Object proceed() throws Throwable {
// when called from a before advice, but be a no-op
return arc.run(arc.getState());
}
} else {
- final AroundClosure ac = arcs.get().peek();
+ final AroundClosure ac = arcs.get(arcIndex.get());
return ac.run(ac.getState());
}
}
public Object proceed(Object[] adviceBindings) throws Throwable {
// when called from a before advice, but be a no-op
- AroundClosure ac = null;
- if (arcs == null) {
- ac = arc;
- } else {
- ac = arcs.get().peek();
- }
+ AroundClosure ac = arcs == null ? arc : arcs.get(arcIndex.get());
if (ac == null) {
return null;
}
public void testAsyncProceedNestedAroundAdviceThreadPool_gh128() {
- // TODO: future improvement, see https://github.com/eclipse-aspectj/aspectj/issues/141
- // runTest("asynchronous proceed for nested around-advice (@AspectJ, thread pool)");
+ // Test created for #128, but initially commented out and remaining work recorded in #141.
+ // Now, test is expected to pass. See https://github.com/eclipse-aspectj/aspectj/issues/141.
+ runTest("asynchronous proceed for nested around-advice (@AspectJ, thread pool)");
}
public void testAsyncProceedNestedAroundAdviceNative_gh128() {
</ajc-test>
<ajc-test dir="bugs199/github_128" title="asynchronous proceed for nested around-advice (@AspectJ)">
- <compile files="Application.java MarkerA.java MarkerB.java annotation_syntax/MarkerAAspect.aj annotation_syntax/MarkerBAspect.aj" options="-1.8" />
+ <compile files="Application.java MarkerA.java MarkerB.java annotation_syntax/MarkerAAspect.aj annotation_syntax/MarkerBAspect.aj" options="-1.8 -XnoInline" />
<run class="Application" options="1,1">
<stdout ordered="no">
<line text=">> Outer intercept"/>
</ajc-test>
<ajc-test dir="bugs199/github_128" title="asynchronous proceed for nested around-advice (@AspectJ, thread pool)">
- <compile files="Application.java MarkerA.java MarkerB.java annotation_syntax/MarkerAAspect.aj annotation_syntax/MarkerBAspect.aj" options="-1.8" />
+ <compile files="Application.java MarkerA.java MarkerB.java annotation_syntax/MarkerAAspect.aj annotation_syntax/MarkerBAspect.aj" options="-1.8 -XnoInline" />
<run class="Application" options="1,1,true">
<stdout ordered="no">
<line text=">> Outer intercept"/>
</ajc-test>
<ajc-test dir="bugs199/github_128" title="asynchronous proceed for nested around-advice (native)">
- <compile files="Application.java MarkerA.java MarkerB.java native_syntax/MarkerAAspect.aj native_syntax/MarkerBAspect.aj" options="-1.8" />
+ <compile files="Application.java MarkerA.java MarkerB.java native_syntax/MarkerAAspect.aj native_syntax/MarkerBAspect.aj" options="-1.8 -XnoInline" />
<run class="Application" options="1,1">
<stdout ordered="no">
<line text=">> Outer intercept"/>
</ajc-test>
<ajc-test dir="bugs199/github_128" title="asynchronous proceed for nested around-advice (native, thread pool)">
- <compile files="Application.java MarkerA.java MarkerB.java native_syntax/MarkerAAspect.aj native_syntax/MarkerBAspect.aj" options="-1.8" />
+ <compile files="Application.java MarkerA.java MarkerB.java native_syntax/MarkerAAspect.aj native_syntax/MarkerBAspect.aj" options="-1.8 -XnoInline" />
<run class="Application" options="1,1,true">
<stdout ordered="no">
<line text=">> Outer intercept"/>