<?xml version="1.0" encoding="UTF-8"?>
<project name="ch.sahits.codegen.test" default="build.jars" basedir=".">
	<import file="eclipse-build-path.xml" />
	
	<property name="basews" value="${ws}"/>
	<property name="baseos" value="${os}"/>
	<property name="basearch" value="${arch}"/>
	<property name="basenl" value="${nl}"/>
	<property name="bundleId" value="ch.sahits.codegen.test"/>
	<property name="bundleVersion" value="2.0.0"/>
	<!-- Compiler settings. -->
	<property name="javacFailOnError" value="false"/>
	<property name="javacDebugInfo" value="on"/>
	<property name="javacVerbose" value="false"/>
	<property name="logExtension" value=".log"/>
	<property name="compilerArg" value=""/>
	<property name="javacSource" value="1.5"/>
	<property name="javacTarget" value="1.5"/>
	<condition property="dir_bootclasspath" value="${java.home}/../Classes">
		<os family="mac"/>
	</condition>
	<property name="dir_bootclasspath" value="${java.home}/lib"/>
	<path id="path_bootclasspath">
		<fileset dir="${dir_bootclasspath}">
			<include name="*.jar"/>
		</fileset>
	</path>
	<property name="bootclasspath" refid="path_bootclasspath"/>
	<property name="bundleJavacSource" value="${javacSource}"/>
	<property name="bundleJavacTarget" value="${javacTarget}"/>
	<property name="bundleBootClasspath" value="${bootclasspath}"/>
	<target name="init" depends="properties">
		<condition property="pluginTemp" value="${buildTempFolder}/plugins">
			<isset property="buildTempFolder"/>
		</condition>
		<property name="pluginTemp" value="${basedir}"/>
		<condition property="build.result.folder" value="${pluginTemp}/ch.sahits.codegen.test_${bundleVersion}">
			<isset property="buildTempFolder"/>
		</condition>
		<property name="build.result.folder" value="${basedir}"/>
		<property name="temp.folder" value="${basedir}/temp.folder"/>
		<property name="plugin.destination" value="${basedir}"/>
	</target>
	<target name="properties" if="eclipse.running">
		<property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>
	</target>
	<target name="build.update.jar" depends="init" description="Build the plug-in: ch.sahits.codegen.test for an update site.">
		<delete dir="${temp.folder}"/>
		<mkdir dir="${temp.folder}"/>
		<antcall target="build.jars"/>
		<antcall target="gather.bin.parts">
			<param name="destination.temp.folder" value="${temp.folder}/"/>
		</antcall>
		<jar destfile="${plugin.destination}/ch.sahits.codegen.test_${bundleVersion}.jar" basedir="${temp.folder}/ch.sahits.codegen.test_${bundleVersion}" filesetmanifest="merge"/>
		<delete dir="${temp.folder}"/>
	</target>
	<target name="@dot" depends="init" unless="@dot" description="Create jar: ch.sahits.codegen.test @dot.">
		<delete dir="${temp.folder}/@dot.bin"/>
		<mkdir dir="${temp.folder}/@dot.bin"/>
		<path id="@dot.classpath">
			<pathelement path="../plugin_ch.sahits.codegen.java/bin/"/>
			<pathelement path="../plugin_ch.sahits.codegen.java/@dot"/>
			<path refid="eclipse.plugins" />
			<pathelement path="../org.jdom/jdom.jar"/>
			<pathelement path="../ch.sahits.util/sahitsUtil_0.1.1.jar"/>
			<pathelement path="../ch.sahits.util/sahitsUtil_src_0.1.1.jar"/>
			<pathelement path="../ch.sahits.model/bin/"/>
			<pathelement path="../ch.sahits.model/@dot"/>
			<pathelement path="../ch.sahits.codegen.java.gui/bin/"/>
			<pathelement path="../ch.sahits.codegen.java.gui/@dot"/>
			<pathelement path="../com.mysql/mysql-connector-java-5.1.6-bin.jar"/>
			<pathelement path="../ch.sahits.codegen.mysql/bin/"/>
			<pathelement path="../ch.sahits.codegen.mysql/@dot"/>
			<pathelement path="../ch.sahits.codegen.oracle/bin/"/>
			<pathelement path="../ch.sahits.codegen.oracle/@dot"/>
			<pathelement path="../com.oracle/ojdbc14.jar"/>
		</path>
		<!-- compile the source code -->
		<javac destdir="${temp.folder}/@dot.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bundleBootClasspath}" source="${bundleJavacSource}" target="${bundleJavacTarget}"		>
			<compilerarg line="${compilerArg}" compiler="${build.compiler}"/>
			<classpath refid="@dot.classpath" />
			<src path="src/"			/>
			<compilerarg value="@${basedir}/javaCompiler...args" compiler="org.eclipse.jdt.core.JDTCompilerAdapter"/>
			<compilerarg line="-log '${temp.folder}/@dot.bin${logExtension}'" compiler="org.eclipse.jdt.core.JDTCompilerAdapter"/>
		</javac>
		<!-- Copy necessary resources -->
		<copy todir="${temp.folder}/@dot.bin" failonerror="true" overwrite="false">
			<fileset dir="src/">
				<exclude name="**/*.java"/>
				<exclude name="**/package.htm*"/>
			</fileset>
		</copy>
		<mkdir dir="${build.result.folder}"/>
		<copy todir="${build.result.folder}/@dot" failonerror="true" overwrite="false">
			<fileset dir="${temp.folder}/@dot.bin">
			</fileset>
		</copy>
		<delete dir="${temp.folder}/@dot.bin"/>
	</target>
	<target name="src.zip" depends="init" unless="src.zip">
		<mkdir dir="${build.result.folder}"/>
		<zip destfile="${build.result.folder}/src.zip" filesonly="false" whenempty="skip" update="false">
			<fileset dir="src/">
				<include name="**/*.java"/>
			</fileset>
		</zip>
	</target>
	<target name="build.jars" depends="init" description="Compile classes and build nested jars for the plug-in: ch.sahits.codegen.test.">
		<available property="@dot" file="${build.result.folder}/@dot"/>
		<antcall target="@dot"/>
	</target>
	<target name="build.sources" depends="init">
		<available property="src.zip" file="${build.result.folder}/src.zip"/>
		<antcall target="src.zip"/>
	</target>
	<target name="gather.bin.parts" depends="init" if="destination.temp.folder">
		<mkdir dir="${destination.temp.folder}/ch.sahits.codegen.test_${bundleVersion}"/>
		<copy todir="${destination.temp.folder}/ch.sahits.codegen.test_${bundleVersion}" failonerror="true" overwrite="false">
			<fileset dir="${build.result.folder}/@dot">
				<include name="**"/>
			</fileset>
		</copy>
		<copy todir="${destination.temp.folder}/ch.sahits.codegen.test_${bundleVersion}" failonerror="true" overwrite="false">
			<fileset dir="${basedir}">
				<include name="META-INF/"/>
			</fileset>
		</copy>
	</target>
	<target name="build.zips" depends="init">
	</target>
	<target name="gather.sources" depends="init" if="destination.temp.folder">
		<mkdir dir="${destination.temp.folder}/ch.sahits.codegen.test_${bundleVersion}"/>
		<copy file="${build.result.folder}/src.zip" todir="${destination.temp.folder}/ch.sahits.codegen.test_${bundleVersion}" failonerror="false" overwrite="false"/>
	</target>
	<target name="gather.logs" depends="init" if="destination.temp.folder">
		<mkdir dir="${destination.temp.folder}/ch.sahits.codegen.test_${bundleVersion}"/>
		<copy todir="${destination.temp.folder}/ch.sahits.codegen.test_${bundleVersion}" failonerror="false" overwrite="false">
			<fileset dir="${temp.folder}">
				<include name="@dot.bin${logExtension}"/>
			</fileset>
		</copy>
	</target>
	<target name="clean" depends="init" description="Clean the plug-in: ch.sahits.codegen.test of all the zips, jars and logs created.">
		<delete dir="${build.result.folder}/@dot"/>
		<delete file="${build.result.folder}/src.zip"/>
		<delete file="${plugin.destination}/ch.sahits.codegen.test_${bundleVersion}.jar"/>
		<delete file="${plugin.destination}/ch.sahits.codegen.test_${bundleVersion}.zip"/>
		<delete dir="${temp.folder}"/>
	</target>
	<target name="refresh" depends="init" if="eclipse.running" description="Refresh this folder.">
		<eclipse.convertPath fileSystemPath="/home/andi/eclipse/ch.sahits.codegen.test" property="resourcePath"/>
		<eclipse.refreshLocal resource="${resourcePath}" depth="infinite"/>
	</target>
	<target name="zip.plugin" depends="init" description="Create a zip containing all the elements for the plug-in: ch.sahits.codegen.test.">
		<delete dir="${temp.folder}"/>
		<mkdir dir="${temp.folder}"/>
		<antcall target="build.jars"/>
		<antcall target="build.sources"/>
		<antcall target="gather.bin.parts">
			<param name="destination.temp.folder" value="${temp.folder}/"/>
		</antcall>
		<antcall target="gather.sources">
			<param name="destination.temp.folder" value="${temp.folder}/"/>
		</antcall>
		<delete>
			<fileset dir="${temp.folder}">
				<include name="**/*.bin${logExtension}"/>
			</fileset>
		</delete>
		<zip destfile="${plugin.destination}/ch.sahits.codegen.test_${bundleVersion}.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/>
		<delete dir="${temp.folder}"/>
	</target>
</project>