forked from joshua-decoder/joshua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
329 lines (274 loc) · 10.3 KB
/
build.xml
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
<?xml version="1.0"?>
<!-- Build file for Joshua. Last changed: $LastChangedDate$ -->
<project name="Joshua Machine Translation Toolkit" default="compile" basedir=".">
<!-- ~~~~~ Properties, Paths, etc ~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<property environment="env" />
<property name="src" value="./src" />
<property name="test" value="./test" />
<property name="build" value="./bin" />
<property name="lib" value="./lib" />
<property name="doc" value="./javadoc" />
<property name="pmd" value="./pmd" />
<property name="pmdOUT" value="${pmd}-output" />
<!-- TODO: should these be made into 'path's instead of 'property's? -->
<property name="testng" value="${lib}/testng-5.8-jdk15.jar"/>
<!-- <property name="bdb" value="${lib}/je-3.2.23.jar"/> -->
<property name="cli" value="commons-cli-2.0-SNAPSHOT.jar"/>
<path id="compile.all.classpath">
<fileset dir="${lib}">
<include name="${cli}"/>
<!-- Jung uses a BSD-like license,
see ./lib/LICENSES/LICENSE-jung.txt -->
<include name="jung-api-2.0.jar"/>
<include name="jung-graph-impl-2.0.jar"/>
<include name="jung-algorithms-2.0.jar"/>
<include name="jung-visualization-2.0.jar"/>
<include name="collections-generic-4.01.jar"/>
<include name="thrax.jar"/>
</fileset>
</path>
<path id="pmd.classpath">
<fileset dir="${lib}">
<!-- PMD uses a BSD-like license,
see ./lib/LICENSES/LICENSE-pmd.txt -->
<include name="pmd-4.2.5.jar"/>
<include name="jaxen-1.1.1.jar"/>
<include name="asm-3.1.jar "/>
</fileset>
</path>
<!-- ~~~~~ Init build task ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- Create the build directory for compiled class files -->
<target name="init">
<tstamp/>
<mkdir dir="${build}"/>
<mkdir dir="${lib}"/>
</target>
<!-- Check for environment variables -->
<target name="set-joshua-home" unless="env.JOSHUA">
<fail message="Please set the $JOSHUA environmant variable." />
</target>
<!-- Check for environment variables -->
<target name="set-java-home" unless="env.JAVA_HOME">
<fail message="Please set the $JAVA_HOME environmant variable." />
<!-- TODO: add suggestion to use /System/Library/Frameworks/JavaVM.framework/Home/ iff on OSX -->
</target>
<target name="kenlm" depends="init, set-joshua-home">
<exec executable="make">
<arg value="-j" />
<arg value="4" />
<arg value="-e" />
<arg value="libdir=${env.JOSHUA}/${lib}" />
<arg value="-C" />
<arg value="${src}/joshua/decoder/ff/lm/kenlm/" />
</exec>
</target>
<target name="giza" depends="init">
<exec executable="make">
<arg value="-j" />
<arg value="4" />
<arg value="-C" />
<arg value="scripts/training/giza-pp/" />
<arg value="all" />
<arg value="install" />
</exec>
<!-- <exec executable="./configure" dir="scripts/training/MGIZA" /> -->
<!-- <exec executable="make"> -->
<!-- <arg value="-C scripts/training/MGIZA/" /> -->
<!-- </exec> -->
<!-- <exec executable="cp"> -->
<!-- <arg value="-C scripts/training/MGIZA/" /> -->
<!-- </exec> -->
</target>
<target name="parallelize">
<exec executable="make">
<arg value="-j" />
<arg value="4" />
<arg value="-C" />
<arg value="scripts/training/parallelize/" />
</exec>
</target>
<!-- ~~~~~ Java build tasks ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- Compile the Java code. -->
<target name="compile" depends="init, giza, kenlm, parallelize">
<javac compiler="javac1.5" srcdir="${src}" destdir="${build}"
classpathref="compile.all.classpath" debug="on" encoding="utf8"
sourcepath="" includeantruntime="false">
<!-- We nullify the sourcepath in order to disable Ant's usual resolution mechanism. This makes it an error for our basic code to call into code that has external dependencies, rather than auto-including those files and then having a classpath error. -->
<include name="**/*.java"/>
<!-- This should be on, so people see it.
But it can be quite verbose...
<compilerarg value="-deprecation"/>
-->
</javac>
</target>
<!-- Create a JAR file -->
<target name="jar" depends="compile,set-joshua-home">
<jar destfile="${build}/joshua.jar" index="true">
<fileset dir="${build}">
<include name="**/*.class"/>
</fileset>
<indexjars>
<fileset dir="${lib}"/>
</indexjars>
<manifest>
<attribute name="Class-Path" value="thrax.jar"/>
<attribute name="Main-Class" value="joshua.decoder.JoshuaDecoder"/>
</manifest>
<fileset dir="${lib}">
<include name="thrax.jar"/>
</fileset>
</jar>
</target>
<!-- Create a JAR file of the source code -->
<target name="source-jar">
<jar destfile="${build}/joshua-src.jar">
<fileset dir="${build}">
<include name="**/*.java"/>
</fileset>
</jar>
</target>
<!-- ~~~~~ Cleaning tasks ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- Delete the compiled files -->
<target name="clean">
<exec executable="make">
<arg value="-C" />
<arg value="scripts/training/giza-pp" />
<arg value="clean" />
</exec>
<delete verbose="true" quiet="true">
<fileset dir="${build}">
<include name="**/*.class"/>
</fileset>
</delete>
</target>
<!-- EXPERIMENTAL: Delete *all* generated files -->
<target name="distclean" depends="clean">
<!-- BUG: this doesn't delete empty folders (neither ${build} itself, nor the class dirs (the latter makes sense since we don't traverse them)) -->
<delete verbose="true" quiet="true" includeEmptyDirs="true">
<fileset dir="${build}">
<include name="joshua.jar"/>
<include name="joshua-ui.jar"/>
</fileset>
</delete>
<!-- BUG: this doesn't delete ${pmdOUT} when it's empty. But I'm wary of doing what I do for ${test}-output and ${doc} in case someone resets ${pmdOUT} to somewhere else (e.g. the same as ${pmd}) -->
<delete verbose="true" quiet="true" includeEmptyDirs="true">
<fileset dir="${pmdOUT}">
<include name="report.html"/>
</fileset>
</delete>
<!-- HACK: these two work perfectly, but maybe problematic if people reset ${test} or ${doc} -->
<delete verbose="true" quiet="true" includeEmptyDirs="true">
<fileset dir="${test}-output" />
</delete>
<delete verbose="true" quiet="true" includeEmptyDirs="true">
<fileset dir="${doc}" />
</delete>
<delete verbose="true" quiet="true" file="joshua-fb.xml" />
</target>
<!-- ~~~~~ Javadoc ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- Compile the Javadocs into web pages -->
<target name="javadoc">
<mkdir dir="${doc}"/>
<javadoc packagenames="joshua.*"
classpath="${cli}"
sourcepath="${src}"
destdir="${doc}"
author="true"
version="true"
charset="utf-8"
overview="src/overview.html"
>
<link href="http://java.sun.com/j2se/1.5.0/docs/api" />
<link href="http://commons.apache.org/cli/api-release" />
</javadoc>
</target>
<!-- ~~~~~ TestNG ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- Define the unit testing task -->
<taskdef resource="testngtasks" classpath="${testng}"/>
<!-- Compile the unit test code -->
<!-- FIXME: why is this broken out from the 'test' target? -->
<target name="compile-tests" depends="init">
<javac compiler="javac1.5" srcdir="${test}" destdir="${build}"
classpath="${testng}" debug="on" encoding="utf8"/>
</target>
<!-- Run the unit tests -->
<target name="test" depends="compile,compile-tests">
<testng classpath="${build}" sourcedir="${test}">
<jvmarg value="-Dfile.encoding=UTF8"/>
<jvmarg value="-Djava.util.logging.config.file=logging.tests.properties"/>
<jvmarg value="-Xms256m" />
<jvmarg value="-Xmx256m" />
<xmlfileset dir="." includes="testng.xml"/>
</testng>
</target>
<!-- ~~~~~ PMD ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- Run the PMD tool for linting the source code.
http://pmd.sourceforge.net/ant-task.html
-->
<target name="pmd">
<taskdef
name="pmd"
classname="net.sourceforge.pmd.ant.PMDTask"
classpathref="pmd.classpath"
/>
<mkdir dir="${pmdOUT}"/>
<echo message="Starting analysis, this will take a few seconds..."/>
<!-- TODO: define a set of XSLT filters for searching and grepping through the output (which can be verbose) in type=xml format. -->
<!-- N.B. PMD is run in the same process as Ant and therefore produces no visible output by default. -->
<pmd shortFilenames="true" rulesetfiles="${pmd}/default-ruleset.xml">
<!-- BUG: the links to class files also go to pmd.sourceforge.net -->
<formatter
type="summaryhtml"
toFile="${pmdOUT}/report.html"
toConsole="false"
linkPrefix="http://pmd.sourceforge.net/xref/"
/>
<fileset dir="${src}">
<include name="**/*.java"/>
</fileset>
</pmd>
<!-- Here's how to post-edit with XSLT
<xslt
in="${pmdOUT}/report.xml"
style="${pmd}/report.xslt"
out="${pmdOUT}/report.html"
/>
-->
<!-- TODO: this should use a property to avoid duplication -->
<echo message="Report created at ${pmdOUT}/report.html"/>
</target>
<!-- ~~~~~ FindBugs ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- Check for environment variables -->
<target name="set-findbugs" unless="env.FINDBUGS_HOME">
<!-- Note the use of spaces instead of hard tabs, to get it to display nice -->
<fail>.
Please set the $FINDBUGS_HOME environment variable to
point to the directory where you have FindBugs installed.
You can download the tool from http://findbugs.sourceforge.net/</fail>
</target>
<!-- Run the FindBugs tool for linting bytecode.
http://findbugs.sourceforge.net/manual/anttask.html
N.B. This task can take a *lot* of memory. 0.5Gb is the bare minimum for effort=default.
We try to automatically find the Ant task within $FINDBUGS_HOME in order to ensure that things will work right. This path is correct for version 1.3.8 (and hopefully other versions as well).
-->
<target name="findbugs" depends="set-findbugs,jar">
<taskdef
name="findbugs"
classname="edu.umd.cs.findbugs.anttask.FindBugsTask"
classpath="${env.FINDBUGS_HOME}/lib/findbugs-ant.jar"
/>
<!-- reportLevel = low,medium(default),high -->
<!-- effort = min,default,max; try using min to lower memory usage -->
<findbugs
home="${env.FINDBUGS_HOME}"
output="xml"
outputFile="joshua-fb.xml"
jvmargs="-Xmx1024m -Xms512m -XX:MinHeapFreeRatio=10"
>
<class location="${build}/joshua.jar" />
<sourcePath path="${src}" />
<auxClasspath path="${testng}" />
<auxClasspath path="${cli}" />
</findbugs>
</target>
</project>