source: other-projects/gs3-webservices-java-client/trunk/build.xml@ 26173

Last change on this file since 26173 was 26173, checked in by ak19, 12 years ago

GS3 code used in gs3_for_client.jar was updated. Needed to add a jar for apache.commons.lang3 which was used by modified GS3 code. Updated build.xml file to grab newly introduced GS3 code file UserContext.

File size: 17.2 KB
Line 
1<?xml version="1.0"?>
2<!-- ======================================================================
3 April 2008 - GS3 web services democlient compile script
4 With lots of help from kjdon's Greenstone3 build and install script
5 See http://ant.apache.org/manual/
6 http://ant.apache.org/manual/usinglist.html
7 for info on build.xml ant files,
8 and http://ant.apache.org/manual/coretasklist.html
9 http://ant.apache.org/manual/tasksoverview.html
10====================================================================== -->
11<project name="gs3democlient" default="usage" basedir=".">
12<description>This buildfile is used to build the demo-client for Greenstone3's web services.</description>
13
14 <!-- ============ predefining properties for reuse =================== -->
15 <property name="src.dir" value="${basedir}/src" />
16 <property name="democlient.rootdir" value="${src.dir}/GS3DemoClient" />
17 <property name="democlient.src" value="${democlient.rootdir}/org" />
18 <property name="fedorags3.rootdir" value="${src.dir}/GS3Fedora" />
19 <property name="fedorags3.src" value="${fedorags3.rootdir}/org" />
20 <property name="gsearchinstaller.rootdir" value="${src.dir}/GSearchInstaller" />
21 <property name="gsearchinstaller.src" value="${gsearchinstaller.rootdir}/org" />
22
23 <property name="build" value="${basedir}/build" />
24 <property name="dist" value="${basedir}/dist" />
25
26 <property name="QBRdata.rel.path" value="org/greenstone/gs3client/data" />
27 <property name="dlservices.rel.path" value="org/greenstone/gs3client/dlservices" />
28 <property name="gui.rel.path" value="org/greenstone/gs3client" />
29 <property name="gs3services.rel.path" value="org/greenstone/gs3services" />
30
31 <property name="exec.jar.name" value="GS3democlient.jar" /> <!-- name of the executable-->
32 <property name="gs3.files.jar" value="gs3_for_client.jar" />
33 <property name="log4j.propFile" value="log4j.properties" />
34
35 <property name="dist.zip.name" value="gs3_webservices_democlient" />
36 <property name="zip.excludes" value="dist/**,logs/**,gs3democlient.properties" />
37 <property name="dist.dir.name" value="gs3-webservices-democlient" />
38
39 <!-- svn url locations for obtaining copies of the latest version of source code dependencies -->
40 <property name="gs3forclient.svn.path" value="http://svn.greenstone.org/main/trunk/greenstone3/src/java/org/greenstone/gsdl3/util"/>
41 <property name="check.java.version.svn.file" value="http://svn.greenstone.org/main/trunk/gli/CheckJavaVersion.java"/>
42
43 <!-- ============ project classpath: everything in the lib folder =================== -->
44 <path id="project.classpath">
45 <fileset dir="lib">
46 <include name="**/*.jar"/>
47 </fileset>
48 </path>
49
50<target name="usage" description="Prints out ant commands for the GS3 demo-client">
51 <echo>Type:</echo>
52 <echo>- ant build-demo-client</echo>
53 <echo> for (compiling) and creating the demo-client executable</echo>
54 <echo>- ant compile-demo-client</echo>
55 <echo> for compiling the democlient</echo>
56 <echo>- ant fedoraGS3jar</echo>
57 <echo> for generating the fedoraGS3.jar dependency file</echo>
58 <echo>- ant QBRdatajar</echo>
59 <echo> for generating the QBRdata.jar dependency file</echo>
60 <echo>- ant DLservicesjar</echo>
61 <echo> for generating the DLservices.jar standalone library</echo>
62 <echo>- ant make-dist</echo>
63 <echo> for generating the zip/gzip/bzip file of the project</echo>
64 <echo>- ant clean-democlient</echo>
65 <echo> for deleting the *.class files from the GS3democlient's source</echo>
66 <echo>- ant clean</echo>
67 <echo> for deleting the *.class files from the GS3democlient and GS3Fedora sources</echo>
68 <echo>- ant distclean</echo>
69 <echo> for deleting the *.class files from the sources, the QBRdata.jar, fedoraGS3.jar, executable jar file, and any zips of the project folder</echo>
70 <echo>- ant update</echo>
71 <echo> for getting the latest version of CheckJavaVersion.java, and the files for creating the gs3_for_client.jar dependency from Greenstone's SVN repository</echo>
72 <echo>- ant GSearchInstallerjar</echo>
73 <echo> for generating the GSearchInstaller.jar application that helps in installing Fedora Generic Search (if you have Fedora installed).</echo>
74</target>
75
76
77<!-- Main targets: to build the GS3 web services demo-client and to create the tar.gz file for downloading -->
78<target name="build-demo-client" description="Creates the jar distribution file" depends="compile-demo-client,ensure-check-java-version">
79 <mkdir dir="${basedir}/logs" /> <!-- Need a logs dir for outputting log4j stuff-->
80 <jar destfile="${exec.jar.name}"
81 basedir="${democlient.rootdir}/"
82 manifest="Manifest.MF"
83 excludes="${QBRdata.rel.path}/*.class"
84 />
85 <copy file="${src.dir}/${log4j.propFile}" tofile="${basedir}/${log4j.propFile}"/>
86<!-- LATER: only for tarring include source files, so that we can exclude the java files in this build?-->
87</target>
88
89<target name="make-dist" description="Generates the zip file of the lib and src folders and the executable ${exec.jar.name} file" depends="get-zipformat,ensure-exec-jar,ensure-gsearchinstall-jar" if="zip.type">
90 <mkdir dir="${dist}" />
91 <antcall target="create-${zip.type}"/>
92</target>
93
94<!--
95http://ananthkannan.blogspot.com/2009/12/java-exception-unknown-source.html
96"Sometimes when debugging application we may run into this exception - Java Exception unknown source.
97The possible reason could be when compiling the application, javac ant tasks omits debug option by defaut. So we will have to explicity set debug flag to true. See the javac ant task documentation for more info. You can mention some thing like below:
98
99<target name="compile">
100 <javac srcdir="${src.dir}" destdir="{dest.dir}." debug="on" debuglevel="lines,vars,source" />
101</target>"
102-->
103
104<!-- Compilation first ensures the existence of QBRdata.jar AND fedoraGS3.jar by checking whether these jars already exist and, if not, generating them. It is then that the actual compilation of the GS3democlient starts. By now the QBRdata classes of the GS3democlient src folder would have been compiled, but that does not matter as javac only compiles when class files are outdated or when they have not been generated yet.-->
105<target name="compile-demo-client" description="Compiles the GS3 demo-client" depends="ensure-QBRdata-jar,ensure-fedoraGS3-jar,ensure-gs3-for-client">
106 <javac srcdir="${democlient.rootdir}" debug="on" debuglevel="lines,vars,source">
107 <classpath refid="project.classpath"/>
108 <exclude name="${gs3services.rel.path}/**" /> <!--gs3services package needs official gsdl.jar to compile, so we skip it as it is not part of the client anyway-->
109 </javac>
110</target>
111
112<!-- Cleaning targets -->
113<target name="clean-democlient" description="Removes all class files from the GS3demo-client (includes the data package that is used to create QBRdata.jar)">
114 <delete>
115 <fileset dir="${democlient.src}" includes="**/*.class"/>
116 </delete>
117</target>
118
119<target name="clean" description="Removes all class files from the GS3DemoClient, GS3Fedora, GSearchInstaller source folders" depends="clean-democlient">
120 <delete>
121 <fileset dir="${fedorags3.src}" includes="**/*.class"/>
122 <fileset dir="${gsearchinstaller.src}" includes="**/*.class"/>
123 </delete>
124</target>
125
126<target name="distclean" description="Removes the project-specific jars fedoraGS3.jar, QBRdata.jar, ${exec.jar.name} files AND all class files from the GS3DemoClient, GS3Fedora and GSearchInstaller source folders" depends="clean">
127 <delete includeEmptyDirs="true" failonerror="false">
128 <fileset file="${basedir}/GSearchInstaller.jar"/>
129 <fileset file="${basedir}/lib/fedoraGS3.jar"/>
130 <fileset file="${basedir}/lib/QBRdata.jar"/>
131 <fileset file="${basedir}/lib/DLservices.jar"/>
132 <fileset file="${basedir}/${exec.jar.name}"/>
133 <fileset file="${basedir}/gs3democlient.properties"/>
134 <fileset dir="logs"/>
135 <fileset file="${log4j.propFile}"/>
136 <fileset file="${dist}/${dist.zip.name}.tar"/>
137 <fileset file="${dist}/${dist.zip.name}.tar.gz"/>
138 <fileset file="${dist}/${dist.zip.name}.zip"/>
139 <fileset file="${dist}/${dist.zip.name}.tar.bz2"/>
140 </delete>
141</target>
142
143<!-- Targets for updating some source code dependencies from Greenstone SVN -->
144<!-- Explicit update of java file dependencies. First make a directory and copy the old files in there (if they are present)-->
145<target name="update" description="Gets the latest version of CheckJavaVersion.java, and gs3-client-jar's files from Greenstone's SVN repository">
146 <delete>
147 <fileset dir="${basedir}" includes="CheckJavaVersion.*"/>
148 </delete>
149 <antcall target="update-check-java-version" />
150 <antcall target="update-gs3-for-client" />
151</target>
152
153<target name="ensure-gs3-for-client" description="Ensures the ${gs3.files.jar} file of required Greenstone3 support files is there">
154 <condition property="gs3.for.client.exists">
155 <available file="${basedir}/lib/${gs3.files.jar}"/>
156 </condition>
157 <antcall target="update-gs3-for-client" />
158</target>
159
160<target name="ensure-check-java-version" description="Ensures the CheckJavaVersion.java file required to run the demo-client's launching scripts (sh or bat) is present">
161 <condition property="check.java.version.exists">
162 <and>
163 <available file="${basedir}/CheckJavaVersion.class"/>
164 <available file="${basedir}/CheckJavaVersion.java"/>
165 </and>
166 </condition>
167 <antcall target="update-check-java-version" />
168</target>
169
170<!-- Gets the file if the local copy is missing or out of date (since usetimestamp=true) -->
171<target name="update-check-java-version" description="Gets the latest version of CheckJavaVersion.java from Greenstone's SVN repository" unless="check.java.version.exists">
172 <get src="${check.java.version.svn.file}"
173 dest="${basedir}/CheckJavaVersion.java"
174 usetimestamp="true" />
175 <!-- compile it up: specifying the file to be compiled explicitly (sourcepath="")-->
176 <javac sourcepath="" srcdir="${basedir}" destdir="${basedir}" debug="on" debuglevel="lines,vars,source">
177 <include name="**/CheckJavaVersion.java"/>
178 </javac>
179</target>
180
181<target name="update-gs3-for-client" description="Gets the latest version of the files needed to create ${gs3.files.jar} from Greenstone's SVN repository" unless="gs3.for.client.exists">
182 <mkdir dir="${basedir}/tmp" />
183 <echo>Getting java files GSXML, XMLConverter, GSPath and MyNodeList from Greenstone's SVN repository (${gs3forclient.svn.path}). Compiling and jarring them up into ${gs3.files.jar}...</echo>
184 <!-- No point using timestamp here with the get Task, since the tmp file is newly created and will not already have these java files. Get will therefore always retrieve them -->
185 <get src="${gs3forclient.svn.path}/UserContext.java" dest="${basedir}/tmp/UserContext.java" />
186 <get src="${gs3forclient.svn.path}/GSXML.java" dest="${basedir}/tmp/GSXML.java" />
187 <get src="${gs3forclient.svn.path}/XMLConverter.java" dest="${basedir}/tmp/XMLConverter.java" />
188 <get src="${gs3forclient.svn.path}/GSPath.java" dest="${basedir}/tmp/GSPath.java" />
189 <get src="${gs3forclient.svn.path}/MyNodeList.java" dest="${basedir}/tmp/MyNodeList.java" />
190 <!-- compile it up: specifying the file to be compiled explicitly -->
191 <javac srcdir="${basedir}/tmp" destdir="${basedir}/tmp" debug="on" debuglevel="lines,vars,source">
192 <classpath refid="project.classpath"/>
193 <include name="**/*.java"/>
194 </javac>
195 <!-- jar it up (without the java files), placing the jar in the lib folder -->
196 <jar destfile="lib/${gs3.files.jar}" basedir="tmp/" excludes="tmp/*.java" />
197 <delete dir="tmp" />
198</target>
199
200<!-- Targets to generate the project-specific jar files QBRdata.jar and fedoraGS3.jar -->
201<target name="QBRdatajar" description="Compiles and creates the QBRdata.jar file needed by GS3demo-client">
202 <javac srcdir="${democlient.rootdir}/${QBRdata.rel.path}" debug="on" debuglevel="lines,vars,source">
203 <classpath refid="project.classpath"/>
204 </javac>
205 <jar destfile="lib/QBRdata.jar"
206 basedir="${democlient.rootdir}/"
207 excludes="${gui.rel.path}/*.*,${dlservices.rel.path}/**,${gs3services.rel.path}/**">
208 </jar>
209</target>
210
211<target name="fedoraGS3jar" description="Compiles and creates the fedoraGS3.jar file needed by GS3demo-client">
212 <javac srcdir="${fedorags3.rootdir}" debug="on" debuglevel="lines,vars,source">
213 <classpath refid="project.classpath"/>
214 </javac>
215 <jar destfile="lib/fedoraGS3.jar"
216 basedir="${fedorags3.rootdir}/"/>
217</target>
218
219<!-- Target to generate the standalone (reusable) jar files DLservices.jar -->
220<target name="DLservicesjar" description="Compiles and creates the DLservices.jar standalone, reusable library file">
221 <javac srcdir="${democlient.rootdir}/${dlservices.rel.path}" debug="on" debuglevel="lines,vars,source">
222 <classpath refid="project.classpath"/>
223 </javac>
224 <jar destfile="lib/DLservices.jar"
225 basedir="${democlient.rootdir}/"
226 excludes="${gui.rel.path}/*.*,${QBRdata.rel.path}/**,${gs3services.rel.path}/**">
227 </jar>
228</target>
229
230<!-- Target that generates the GSearchInstaller jar file -->
231<target name="GSearchInstallerjar" description="Compiles and creates the jar file for the stand-alone GSearchInstaller application">
232 <javac srcdir="${gsearchinstaller.rootdir}" debug="on" debuglevel="lines,vars,source" />
233 <jar destfile="GSearchInstaller.jar"
234 basedir="${gsearchinstaller.rootdir}/"
235 manifest="${gsearchinstaller.rootdir}/Manifest.MF"/>
236</target>
237
238<!-- Targets that check for and ensure the existence of project-specific jar files -->
239<target name="check-QBRdata-jar" description="Checks for existence of dependency file QBRdata.jar">
240 <condition property="QBRdata.exists">
241 <available file="${basedir}/lib/QBRdata.jar"/>
242 </condition>
243</target>
244
245<target name="ensure-QBRdata-jar" description="Will generate QBRdata.jar if it did not exist" depends="check-QBRdata-jar" unless="QBRdata.exists">
246 <antcall target="QBRdatajar"/>
247</target>
248
249<target name="check-fedoraGS3-jar" description="Checks for existence of dependency file fedoraGS3.jar">
250 <condition property="fedoraGS3.exists">
251 <available file="${basedir}/lib/fedoraGS3.jar"/>
252 </condition>
253</target>
254
255<target name="ensure-fedoraGS3-jar" description="Will generate fedoraGS3.jar if it did not exist" depends="check-fedoraGS3-jar" unless="fedoraGS3.exists">
256 <antcall target="fedoraGS3jar"/>
257</target>
258
259<!-- generates the project's executable -->
260<target name="check-exec-jar" description="Checks for existence of executable file ${exec.jar.name}">
261 <condition property="executable.exists">
262 <available file="${basedir}/${exec.jar.name}"/>
263 </condition>
264</target>
265
266<target name="ensure-exec-jar" description="Will generate ${exec.jar.name} if it did not exist" depends="check-exec-jar" unless="executable.exists">
267 <antcall target="build-demo-client"/>
268</target>
269
270<!-- Targets that check for and ensure the existence of standalone application GSearchInstaller.jar -->
271<target name="check-gsearchinstall-jar" description="Checks for existence of stand-alone application GSearchInstaller.jar">
272 <condition property="gsearchinstaller.exists">
273 <available file="GSearchInstaller.jar"/>
274 </condition>
275</target>
276
277<target name="ensure-gsearchinstall-jar" description="Will generate GSearchInstaller.jar if it did not exist" depends="check-gsearchinstall-jar" unless="gsearchinstaller.exists">
278 <antcall target="GSearchInstallerjar"/>
279</target>
280
281<!-- User input for generating compressed output file for one of the chosen file types. A choice of zip, tar.gz (tar gzip), or tar.bz2 (tar bzip)-->
282<target name="create-targzip" if="zip.type" description="User chose to create a tar.gz file of the project">
283 <tar destfile="${dist}/${dist.zip.name}.tar.gz" compression="gzip" longfile="gnu">
284 <tarfileset dir="${basedir}" prefix="${dist.dir.name}" excludes="${zip.excludes}" />
285 </tar>
286 <echo>If the filepaths are longer than 100 characters, GNU compatible tar commands are necessary to untar the tar.gz</echo>
287</target>
288
289<target name="create-tarbzip" if="zip.type" description="User chose to create a tar.bz2 file of the project">
290 <tar destfile="${dist}/${dist.zip.name}.tar.bz2" compression="bzip2" longfile="gnu">
291 <tarfileset dir="${basedir}" prefix="${dist.dir.name}" excludes="${zip.excludes}" />
292 </tar>
293 <echo>If the filepaths are longer than 100 characters, GNU compatible tar commands are necessary to untar the tar.gz</echo>
294</target>
295
296<target name="create-zip" if="zip.type" description="User chose to create a zip file of the project">
297 <zip destfile="${dist}/${dist.zip.name}.zip">
298 <zipfileset dir="${basedir}" prefix="${dist.dir.name}" excludes="${zip.excludes}" />
299 </zip>
300</target>
301
302<target name="get-zipformat">
303<!--<input addproperty="zip.type" validargs="zip,gzip,bzip">--><!-- doesn't work with default value-->
304 <input addproperty="zip.format" defaultvalue="zip">What type of compressed output file do you want to generate?
305Type one of: zip, tar.gz, tar.bz2
306Press enter for default: zip /></input>
307 <condition property="zip.type" value="targzip">
308 <equals arg1="tar.gz" arg2="${zip.format}"/>
309 </condition>
310 <condition property="zip.type" value="zip">
311 <equals arg1="zip" arg2="${zip.format}"/>
312 </condition>
313 <condition property="zip.type" value="tarbzip">
314 <equals arg1="tar.bz2" arg2="${zip.format}"/>
315 </condition>
316 <echo>You chose output file type: ${zip.type}</echo>
317 </target>
318</project>
Note: See TracBrowser for help on using the repository browser.