blob: 10f0e330e5511cb1b6ee5cfc80c066aa0a49af36 (
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
|
// Bug # 28702
import java.util.Stack;
interface Connection {
Connection open();
void close();
}
aspect CloseConnectionsCflow percflow(layerEntryMethods()) {
Stack openConnections;
pointcut layerMethods() :
execution(public * com.example.businessFacade.*.*(..));
pointcut layerEntryMethods() :
layerMethods() && !cflowbelow(layerMethods());
pointcut openedConnection() :
call(* Connection.open(..));
pointcut layerBoundary() : cflow(layerEntryMethods());
after() returning (Connection conn) :
openedConnection() && layerBoundary() {
openConnections.push(conn);
}
after() : layerBoundary() {
while (!openConnections.empty()) {
Connection conn = (Connection)openConnections.pop();
conn.close();
}
}
}
|