blob: 6d371ea55db2851e26596bcab696405b21e016ec [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project name="Avro" default="dist">
<!-- Load user's default properties. -->
<property file="${user.home}/build.properties"/>
<!-- Shared directories -->
<property name="share.dir" value="${basedir}/../../share"/>
<property name="share.schema.dir" value="${share.dir}/schemas/"/>
<property name="dist.dir" value="${basedir}/../../dist/py"/>
<property name="top.build" value="${basedir}/../../build"/>
<property name="interop.data.dir" value="${top.build}/interop/data"/>
<property name="python" value="python"/>
<!-- Python implementation directories -->
<property name="build.dir" value="${basedir}/build"/>
<property name="src.dir" value="${basedir}/src"/>
<property name="lib.dir" value="${basedir}/lib"/>
<property name="test.dir" value="${basedir}/test"/>
<!-- Load shared properties -->
<loadfile srcFile="${share.dir}/VERSION.txt" property="avro.version" />
<loadfile srcFile="${share.schema.dir}/org/apache/avro/ipc/HandshakeRequest.avsc" property="handshake.request.json"/>
<loadfile srcFile="${share.schema.dir}/org/apache/avro/ipc/HandshakeResponse.avsc" property="handshake.response.json"/>
<path id="java.classpath">
<fileset dir="lib">
<include name="**/*.jar" />
</fileset>
</path>
<path id="test.path">
<pathelement location="${build.dir}/src"/>
<pathelement location="${build.dir}/test"/>
<pathelement location="${build.dir}/lib"/>
</path>
<target name="init" description="Create the build directory.">
<mkdir dir="${build.dir}"/>
</target>
<target name="build"
description="Copy project files to build/ and do string replacement."
depends="init">
<!-- Copy src/, test/, lib/ -->
<copy todir="${build.dir}/src">
<fileset dir="${src.dir}">
<exclude name="**/*.pyc"/>
<exclude name="**/*.py~"/>
</fileset>
</copy>
<copy todir="${build.dir}/test">
<fileset dir="${test.dir}">
<exclude name="**/*.pyc"/>
<exclude name="**/*.py~"/>
</fileset>
</copy>
<copy todir="${build.dir}/lib">
<fileset dir="${lib.dir}" />
</copy>
<!-- Inline the handshake schemas -->
<copy file="${src.dir}/avro/ipc.py"
toFile="${build.dir}/src/avro/ipc.py"
overwrite="true">
<filterset>
<filter token="HANDSHAKE_REQUEST_SCHEMA"
value="${handshake.request.json}"/>
<filter token="HANDSHAKE_RESPONSE_SCHEMA"
value="${handshake.response.json}"/>
</filterset>
</copy>
<!-- Inline the Avro version -->
<copy file="${basedir}/setup.py"
toFile="${build.dir}/setup.py"
overwrite="true">
<filterset>
<filter token="AVRO_VERSION" value="${avro.version}"/>
</filterset>
</copy>
<!-- Inline the Avro version -->
<copy file="${basedir}/scripts/avro"
toFile="${build.dir}/scripts/avro"
overwrite="true">
<filterset>
<filter token="AVRO_VERSION" value="${avro.version}"/>
</filterset>
</copy>
<!-- Make executable (Ant does not preseve executable bit) -->
<exec executable="chmod">
<arg value="a+x" />
<arg value="${build.dir}/scripts/avro" />
</exec>
<!-- Inline the interop data directory -->
<copy file="${test.dir}/test_datafile_interop.py"
toFile="${build.dir}/test/test_datafile_interop.py"
overwrite="true">
<filterset>
<filter token="INTEROP_DATA_DIR" value="${interop.data.dir}"/>
</filterset>
</copy>
</target>
<target name="test"
description="Run python unit tests"
depends="build">
<taskdef name="py-test" classname="org.pyant.tasks.PythonTestTask"
classpathref="java.classpath"/>
<py-test python="${python}" pythonpathref="test.path" >
<fileset dir="${build.dir}/test">
<include name="test_*.py"/>
<exclude name="test_datafile_interop.py"/>
</fileset>
</py-test>
</target>
<target name="interop-data-test"
description="Run python interop data tests"
depends="build">
<taskdef name="py-test" classname="org.pyant.tasks.PythonTestTask"
classpathref="java.classpath"/>
<py-test python="${python}" pythonpathref="test.path" >
<fileset dir="${build.dir}/test">
<include name="test_datafile_interop.py"/>
</fileset>
</py-test>
</target>
<target name="interop-data-generate"
description="Generate Python interop data files."
depends="build">
<mkdir dir="${interop.data.dir}"/>
<exec executable="${python}">
<env key="PYTHONPATH" value="$PYTHONPATH:${build.dir}/src"/>
<arg value="${build.dir}/test/gen_interop_data.py"/>
<arg value="${share.dir}/test/schemas/interop.avsc"/>
<arg value="${interop.data.dir}/py.avro"/>
</exec>
</target>
<target name="dist"
description="Build source distribution"
depends="build">
<mkdir dir="${dist.dir}"/>
<exec executable="${python}" failonerror="true" dir="${build.dir}">
<arg value="${build.dir}/setup.py"/>
<arg value="sdist"/>
<arg value="--dist-dir=${dist.dir}"/>
</exec>
</target>
<target name="clean"
description="Delete build files and their directories">
<delete includeemptydirs="true" failonerror="false">
<fileset file="MANIFEST"/>
<fileset dir="${build.dir}"/>
</delete>
</target>
</project>