summaryrefslogtreecommitdiffstats
path: root/tests/new/IfPCDExprVisibility.java
blob: c94dcd432ef00eee398ef3654ec8ce1ea2d95d38 (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
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
108
109
aspect AspectForIfPCDExprVisibility {
	// See IfPCDExprJoinPoint* for join-point error cases 

	pointcut stringLArgs(String[] args)  
		: args (args);
	pointcut targetTarget(IfPCDExprVisibility target)  
		: target(target);
	pointcut thisItem(IfPCDExprVisibility thisItem)  
		: this(thisItem);

	pointcut callDo() 
		: call(void IfPCDExprVisibility());

	pointcut callMain(String[] args) 
		: args(args) && call(static void *..main(String[])) ;

	// ok: anonymous pointcut 
	/**
	 *@testTarget ifpcd.compile.visibility.tjp
	 *@testTarget ifpcd.compile.visibility.tjpsp
	*/
	before () 
		: if (thisJoinPoint != null) 
			&& if (thisJoinPointStaticPart != null) 
			&& call(void IfPCDExprJoinPointVisibleCE.main(..)) {
			System.err.println("before main + " + thisJoinPoint);
		}
	// ok: anonymous pointcut, name composition, arg state
	/**
	*/
	before (String[] args) 
		: if (thisJoinPointStaticPart != null) 
			&& if (null != args)
			&& callMain (args){
			String m = "before main" 
				+ " join point: " + thisJoinPoint
				+ " args: " + args ;
			System.err.println(m);
			if (null == thisJoinPointStaticPart) 
				throw new Error("impossible null thisJoinPointStaticPart");
			// actually, it is possible to directly invoke main with null args...
			if (null == args) throw new Error("null args");
		}
	/**
	 *@testTarget ifpcd.compile.visibility.args.named
	 *@testTarget ifpcd.compile.visibility.this.named
	 *@testTarget ifpcd.compile.visibility.target.named
	*/
	Object around (String[] _args
			, IfPCDExprVisibility _target
			, IfPCDExprVisibility _thisItem)
		: targetTarget(_target)
		&& thisItem(_thisItem)
		&& call(* IfPCDExprVisibility.exec(..))
		&& args(_args) 
		&& if(null != _args) 
		&& if(null != _target) 
		&& if(null != _thisItem) 
		{
		String m = "around main - start " 
			+ " join point: " + thisJoinPoint
			+ " static join point: " + thisJoinPointStaticPart
			+ " this: " + _thisItem 
			+ " target: " + _target 
			+ " args: " + _args 
			;
		System.err.println(m);
		// note: no compile error unless around is actually woven in
		proceed(_args, _target, _thisItem); 
		m = "around main - end " 
			+ " join point: " + thisJoinPoint
			+ " static join point: " + thisJoinPointStaticPart
			+ " this: " + _thisItem 
			+ " target: " + _target 
			+ " args: " + _args 
			;
		System.err.println(m);
		return null;
	} 
}

/**
 * @author wes
 */
public class IfPCDExprVisibility {
	void exec(String[] args) {
		if (null == args) {
			System.err.println("exec running with null args");
		} else {
			System.err.println("exec running with args: " + args);
			System.err.println("exec calling itself with null args: " + args);
			// only this call is captured by around - from/to this object
			exec(null); 
		}
	}
	public static void main(String[] args) {
		if (null != args) {
			System.err.println("main calling itself with null args");
			new IfPCDExprVisibility().main(null); // self-call
			System.err.println("main done calling itself with null args");
			
			new IfPCDExprVisibility().exec(args); 
		} else {
			System.err.println("ok - main running with null args");
		}
	}
}