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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
import org.aspectj.testing.*;
import java.util.*;
public class PR353 {
public static void main(String[] args) {
new PR353().go(args);
Tester.checkAllEvents();
}
void go(String[] args) {
A a = new A();
B b = new B();
C c = new C();
D d = new D();
E e = new E();
a.f();
b.f();
c.f();
d.f();
e.f();
new Verifier().verify(Aspect.map);
}
}
interface I { public void f(); }
class A { public void f() { } }
class B implements I { public void f() { } }
class C { public void f() { } }
class D extends C { public void f() { } }
class E extends B { public void f() { } }
class F extends C
implements I { public void f() { } }
class Verifier {
void verify(Map map) {
Iterator iter = map.keySet().iterator();
while (iter.hasNext()) {
String key = (iter.next() + "").toLowerCase();
List list = (List) map.get(key);
Iterator it = list.iterator();
while (it.hasNext()) {
Object onext = it.next();
String next = (onext + "").toLowerCase();
if (key.indexOf(next) == -1) {
Tester.check(false, next + " not found in " + key);
} else {
it.remove();
}
}
Tester.check(list.size() == 0, list + " contains classes excluded");
}
}
}
aspect Aspect {
pointcut r(): receptions(* f());
pointcut abcdef(): r();
pointcut acd(): r() && !instanceof(I);
pointcut acdf(): r() && !instanceof(B);
pointcut a(): r() && !instanceof(B) && !instanceof(C);
public static Map map = new HashMap();
static {
String[] ss = {
"abcdef",
"acd",
"acdf",
"a",
};
for (int i = 0; i < ss.length; i++) {
map.put(ss[i], new Vector());
}
}
static before(): abcdef() {
p("abcdef", thisJoinPoint.className);
}
static before(): acd() {
p("acd", thisJoinPoint.className);
}
static before(): acdf() {
p("acdf", thisJoinPoint.className);
}
static before(): a() {
p("a", thisJoinPoint.className);
}
static void p(String key, String str) {
List list = (List) map.get(key);
if (list == null) {
list = new Vector();
}
list.add(str);
map.put(key, list);
}
static List v(Object[] os) {
List v = new Vector();
for (int i = 0; i < os.length; i++) {
v.add(os[i]);
}
return v;
}
}
|