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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
|
<!-- ========================================================================= -->
<!-- Copyright (c) 1999-2001 Xerox Corporation, -->
<!-- 2002 Palo Alto Research Center, Incorporated (PARC). -->
<!-- All rights reserved. -->
<!-- This program and the accompanying materials are made available -->
<!-- under the terms of the Common Public License v1.0 -->
<!-- which accompanies this distribution and is available at -->
<!-- http://www.eclipse.org/legal/cpl-v10.html -->
<!-- -->
<!-- Contributors: -->
<!-- Xerox/PARC initial implementation -->
<!-- ========================================================================= -->
<project name="aspectj-examples" default="spacewar" basedir=".">
<target name="info" >
<echo>
This script builds the AspectJ examples.
Relevant targets:
spacewar build and run spacewar with debugging (default)
all build and run each example
{example} build and run any {example}
(use -projecthelp to list {example} names)
Setup:
- Run from the examples directory.
- Put aspectj-ant.jar in ../lib with aspectjtools.jar and aspectjrt.jar
Variants:
- To avoid running (i.e., compile only), define variable "norun"
- To define a variable, use the Ant -D option - e.g., on Windows:
ant -f build.xml -DJAVA_HOME=c:\jdk1.3.1 -Dnorun=skip
</echo>
</target>
<!-- ============================================================= -->
<!-- setup and cleanup targets -->
<!-- ============================================================= -->
<target name="clean" depends="init"
description="clean and create classes dir">
<delete quiet="on" dir="${classes.dir}"/>
<delete quiet="on">
<fileset dir="${example.dir}" includes="**/*.ajesym"/>
</delete>
<mkdir dir="${classes.dir}"/>
</target>
<target name="init" depends="init.variables,init.taskdefs"/>
<target name="init.variables"
description="init variables">
<!-- required directories - run from examples or predefine -->
<property name="example.dir"
location="${basedir}"/>
<property name="aspectj.lib.dir"
location="${basedir}/../lib"/>
<!-- required libraries - install or predefine -->
<property name="aspectj-ant.jar"
location="${aspectj.lib.dir}/aspectj-ant.jar"/>
<property name="aspectjrt.jar"
location="${aspectj.lib.dir}/aspectjrt.jar"/>
<property name="aspectjtools.jar"
location="${aspectj.lib.dir}/aspectjtools.jar"/>
<!-- created directories (fyi workingdir unused) -->
<property name="classes.dir"
location="${example.dir}/classes"/>
<property name="working.dir"
location="${example.dir}/ajworkingdir"/>
<!-- checking required libraries -->
<available file="${aspectjtools.jar}"
property="aspectjtools.jar.available"/>
<available file="${aspectjrt.jar}"
property="aspectjrt.jar.available"/>
<available file="${aspectj-ant.jar}"
property="aspectj-ant.jar.available"/>
<property name="example.packages"
value="bean, coordination, evolution, figures, figures.gui,
helloworld, icount, icount.lib, introduction,
observer, shadow, shadow.version1, shadow.version2,
spacewar, telecom, telecom.version1, timeserver, tjp,
tracing, tracing.lib tracing.version1, tracing.version2,
tracing.version3"/>
</target>
<target name="init.taskdefs" depends="init.variables,
aspectjtools.jar.available,
aspectjrt.jar.available,
aspectj-ant.jar.available">
<taskdef resource="org/aspectj/tools/ant/taskdefs/aspectjTaskdefs.properties">
<classpath>
<pathelement path="${aspectjtools.jar}"/>
<pathelement path="${aspectj-ant.jar}"/>
</classpath>
</taskdef>
</target>
<!-- targets to fail unless required libraries available -->
<target name="aspectjrt.jar.available" depends="init.variables"
unless="aspectjrt.jar.available" >
<fail message="expecting aspectjrt.jar at ${aspectjrt.jar}"/>
</target>
<target name="aspectjtools.jar.available" depends="init.variables"
unless="aspectjtools.jar.available" >
<fail message="expecting aspectjtools.jar at ${aspectjtools.jar}"/>
</target>
<target name="aspectj-ant.jar.available" depends="init.variables"
unless="aspectj-ant.jar.available" >
<fail message="expecting aspectj-ant.jar at ${aspectj-ant.jar}"/>
</target>
<!-- ============================================================= -->
<!-- these targets compile and run any example -->
<!-- ============================================================= -->
<target name="Ajx" depends="init"
description="compile {list} and run {class} of example">
<echo message="##### Ajx list=${list} class=${class}" />
<antcall target="clean" />
<ajc destdir="${classes.dir}" emacssym="on" argfile="${list}"
classpath="${aspectjrt.jar}"/>
<antcall target="Ajx-run" >
<param name="class" value="${class}"/>
</antcall>
</target>
<target name="Ajx-run"
description="run {class} unless {norun} is set"
unless="norun" >
<echo message="##### Ajx-run list=${list} class=${class}" />
<java classname="${class}" fork="yes">
<classpath>
<pathelement path="${classes.dir}"/>
<pathelement path="${aspectjrt.jar}"/>
</classpath>
</java>
</target>
<!-- ============================================================= -->
<!-- example targets -->
<!-- ============================================================= -->
<target name="all"
description="build and run all examples"
depends="bean,intro,intro-clone,intro-compare,intro-hash,
observer,spacewar,spacewar-demo,telecom,
telecom-timing,tracing-none,tracing-1,
tracing-2,tracing-3,tjp"/>
<target name="nonGui"
description="build and run non-GUI examples"
depends="bean,intro,intro-clone,intro-compare,intro-hash,
telecom,telecom-timing,tracing-none,tracing-1,
tracing-2,tracing-3,tjp"/>
<target name="bean">
<antcall target="Ajx">
<param name="list" value="bean/files.lst"/>
<param name="class" value="bean.Demo"/>
</antcall>
</target>
<target name="intro">
<antcall target="Ajx">
<param name="list" value="introduction/files.lst"/>
<param name="class" value="introduction.Point"/>
</antcall>
</target>
<target name="intro-clone">
<antcall target="Ajx">
<param name="list" value="introduction/files.lst"/>
<param name="class" value="introduction.CloneablePoint"/>
</antcall>
</target>
<target name="intro-compare">
<antcall target="Ajx">
<param name="list" value="introduction/files.lst"/>
<param name="class" value="introduction.ComparablePoint"/>
</antcall>
</target>
<target name="intro-hash">
<antcall target="Ajx">
<param name="list" value="introduction/files.lst"/>
<param name="class" value="introduction.HashablePoint"/>
</antcall>
</target>
<target name="observer">
<antcall target="Ajx">
<param name="list" value="observer/files.lst"/>
<param name="class" value="observer.Demo"/>
</antcall>
</target>
<target name="spacewar">
<antcall target="Ajx">
<param name="list" value="spacewar/debug.lst"/>
<param name="class" value="spacewar.Game"/>
</antcall>
</target>
<target name="spacewar-demo">
<antcall target="Ajx">
<param name="list" value="spacewar/demo.lst"/>
<param name="class" value="spaceware.Game"/>
</antcall>
</target>
<target name="telecom">
<antcall target="Ajx">
<param name="list" value="telecom/basic.lst"/>
<param name="class" value="telecom.BasicSimulation"/>
</antcall>
</target>
<target name="telecom-billing">
<antcall target="Ajx">
<param name="list" value="telecom/billing.lst"/>
<param name="class" value="telecom.BillingSimulation"/>
</antcall>
</target>
<target name="telecom-timing">
<antcall target="Ajx">
<param name="list" value="telecom/timing.lst"/>
<param name="class" value="telecom.TimingSimulation"/>
</antcall>
</target>
<target name="tjp">
<antcall target="Ajx">
<param name="list" value="tjp/files.lst"/>
<param name="class" value="tjp.Demo"/>
</antcall>
</target>
<target name="tracing-none">
<antcall target="Ajx">
<param name="list" value="tracing/notrace.lst"/>
<param name="class" value="tracing.ExampleMain"/>
</antcall>
</target>
<target name="tracing-1">
<antcall target="Ajx">
<param name="list" value="tracing/tracev1.lst"/>
<param name="class" value="tracing.ExampleMain"/>
</antcall>
</target>
<target name="tracing-2">
<antcall target="Ajx">
<param name="list" value="tracing/tracev2.lst"/>
<param name="class" value="tracing.ExampleMain"/>
</antcall>
</target>
<target name="tracing-3">
<antcall target="Ajx">
<param name="list" value="tracing/tracev3.lst"/>
<param name="class" value="tracing.ExampleMain"/>
</antcall>
</target>
</project>
|