blob: 953cfa7d916b93c31af3db9792fbc13a2f486271 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
import org.aspectj.testing.Tester;
public class CflowInitInAspectVariantsBefore {
public static void main(String[] args) {
new C().a();
Tester.checkAllEventsIgnoreDups();
}
static {
Tester.expectEvent("cflow before pc()");
Tester.expectEvent("cflow before execution(void C.a())");
Tester.expectEvent("cflowbelow before pc()");
Tester.expectEvent("cflowbelow before execution(void C.a())");
}
}
class C {
void a() {b();}
private void b() {int i = 1;} // avoid later optimizations
}
aspect A {
pointcut pc() : execution(void C.a());
// ---- works
pointcut safety() : !within(A) ;
// ---- cannot use cflow to exclude itself - reference thereto fails
//pointcut safety() : !(within(A) && cflow(pc()));
// ---- cannot use dynamic calculation, because before call happens first?
//pointcut safety() : !within(A) || (within(A) && if(touched)) ;
static boolean touched = false;
// ---- does not address the before advice methods advising themselves
//pointcut safety() : !(initialization(A.new(..)) || staticinitialization(A));
// ---- worse way of saying !within(A)
//pointcut safety() : this(C) || this(CflowInitInAspectVariantsBefore) || this(null);
//pointcut safety() : this(C) || this(CflowInitInAspectVariantsBefore) || this(null);
// no bug if ": within(C) && ..."
// @testTarget cflow.before.namedpc
before() : safety() && cflow(pc()) {
if (!touched) touched = true;
Tester.event("cflow before pc()");
}
// @testTarget cflow.before.anonpc
before() : safety() && cflow(execution(void C.a())) {
if (!touched) touched = true;
Tester.event("cflow before execution(void C.a())");
}
// @testTarget cflowbelow.before.namedpc
before() : safety() && cflowbelow(pc()) {
if (!touched) touched = true;
Tester.event("cflowbelow before pc()");
}
// @testTarget cflowbelow.before.anonpc
before() : safety() && cflowbelow(execution(void C.a())) {
if (!touched) touched = true;
Tester.event("cflowbelow before execution(void C.a())");
}
}
|