Newer
Older
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
Copyright 2011, Big Switch Networks, Inc.
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.
-->
<!--
The build uses pregenerated Thrift code by default to reduce build
dependencies. To generate it locally run the gen-thrift target.
If you change the Thrift files be sure to also commit the updated
generated code.
<project default="dist" name="floodlight">
<property name="target" location="target"/>
<property name="build" location="${target}/bin"/>
<property name="build-test" location="${target}/bin-test"/>
<property name="build-coverage" location="${target}/bin-coverage"/>
<property name="test-output" location="${target}/test"/>
<property name="coverage-output" location="${target}/coverage"/>
<property name="source" location="src/main/java"/>
<property name="resources" location="src/main/resources/"/>
<property name="test-resources" location="src/test/resources/"/>
<property name="source-test" location="src/test/java"/>
<property name="python-src" location="src/main/python"/>
<property name="docs" location="${target}/docs"/>
<property name="main-class" value="net.floodlightcontroller.core.Main"/>
<property name="floodlight-jar" location="${target}/floodlight.jar"/>
<property name="floodlight-test-jar" location="${target}/floodlight-test.jar"/>
<property name="thrift.dir" value="${basedir}/src/main/thrift"/>
<property name="thrift.out.dir" value="lib/gen-java"/>
<property name="ant.build.javac.source" value="1.7"/>
<property name="ant.build.javac.target" value="1.7"/>
<property name="findbugs.home" value="../build/findbugs-2.0.2"/>
<property name="findbugs.results" value="findbugs-results" />
<patternset id="lib">
<include name="logback-classic-1.0.0.jar"/>
<include name="logback-core-1.0.0.jar"/>
<include name="jackson-core-2.4.4.jar"/>
<include name="jackson-annotations-2.4.4.jar"/>
<include name="jackson-databind-2.4.4.jar"/>
<include name="jackson-dataformat-smile-2.4.4.jar"/>
<include name="jackson-dataformat-xml-2.4.4.jar"/>
<include name="jackson-dataformat-yaml-2.4.4.jar"/>
<include name="jackson-dataformat-csv-2.4.4.jar"/>
<include name="jackson-dataformat-cbor-2.4.4.jar"/>
<include name="slf4j-api-1.6.4.jar"/>
<include name="org.restlet.jar"/>
<include name="org.restlet.ext.jackson.jar"/>
<include name="org.restlet.ext.simple.jar"/>
<include name="org.restlet.ext.slf4j.jar"/>
<include name="org.restlet.ext.jsslutils.jar"/>
<include name="org.simpleframework.jar"/>
<include name="org.jsslutils.jar"/>
<include name="netty-3.10.0.Final.jar"/>
Sho SHIMIZU
committed
<include name="args4j-2.0.16.jar"/>
<include name="concurrentlinkedhashmap-lru-1.2.jar"/>
<include name="libthrift-0.9.0.jar"/>
<include name="guava-13.0.1.jar" />
<include name="findbugs-annotations-2.0.1.jar" />
<include name="findbugs-jsr305-2.0.1.jar" />
Ryan Izard
committed
<include name="openflowj-0.9.0-SNAPSHOT.jar"/>
<include name="openflowj-0.9.0-SNAPSHOT-javadoc.jar"/>
<include name="hamcrest-core-1.3.jar"/>
<include name="hamcrest-integration-1.3.jar"/>
<include name="hamcrest-library-1.3.jar"/>
</patternset>
<path id="classpath">
<patternset refid="lib"/>
</fileset>
</path>
<patternset id="lib-package">
<include name="jdeb-1.0.1.jar"/>
</patternset>
<path id="package-classpath">
<fileset dir="${lib}">
<patternset refid="lib-package"/>
</fileset>
</path>
<patternset id="lib-cobertura">
<include name="cobertura-1.9.4.1.jar"/>
<include name="asm-3.0.jar"/>
<include name="asm-tree-3.0.jar"/>
<include name="oro/jakarta-oro-2.0.8.jar"/>
<include name="log4j-1.2.9.jar"/>
</patternset>
<path id="classpath-cobertura">
<patternset refid="lib-cobertura"/>
<patternset id="lib-test">
<include name="junit-4.8.2.jar"/>
<include name="org.easymock-3.1.jar"/>
<include name="objenesis-1.2.jar"/> <!-- required by easymock to mock classes -->
<include name="cglib-nodep-2.2.2.jar"/> <!-- required by easymock to mock classes -->
</patternset>
<path id="classpath-test">
<patternset refid="lib-test"/>
<patternset refid="lib-cobertura"/>
<patternset refid="lib"/>
</fileset>
</path>
<target name="init">
<mkdir dir="${build}"/>
<mkdir dir="${build-test}"/>
<mkdir dir="${target}/lib"/>
<mkdir dir="${thrift.out.dir}"/>
<mkdir dir="${test-output}"/>
</target>
<javac includeAntRuntime="false"
classpathref="classpath"
debug="true"
srcdir="${source}:${thrift.out.dir}"
destdir="${build}">
</javac>
<copy todir="${build}">
<fileset dir="${resources}" />
</copy>
</target>
<target name="compile-tests" depends="compile-test"/>
<target name="compile-test" depends="compile">
<javac includeAntRuntime="false" debug="true"
srcdir="${source-test}"
classpath="${build}"
classpathref="classpath-test"
destdir="${build-test}"/>
</target>
<echo message="Running thrift on '${thrift.dir}'"/>
<apply executable="./thrift/compiler/cpp/thrift">
<fileset dir="${thrift.dir}" casesensitive="yes">
<include name="**/*.thrift"/>
</fileset>
<arg value="--strict"/>
<arg value="-v"/>
<arg value="--gen"/>
<arg value="java"/>
<arg value="-o"/>
<arg value="${thrift.out.dir}/.."/>
</apply>
<echo message="Adding @SuppressWarning annotations"/>
<replaceregexp byline="true">
<regexp pattern="^public "/>
<substitution expression='@SuppressWarnings("all") public '/>
<fileset id="thrift.output.files" dir="${thrift.out.dir}/..">
<include name="**/*.java"/>
</fileset>
</replaceregexp>
</target>
<target name="clean">
<delete dir="${target}"/>
</target>
<target name="run" depends="dist">
<java fork="true" jar="${floodlight-jar}" classpathref="classpath">
<jvmarg value="-server"/>
<jvmarg value="-Xms1024M"/>
<jvmarg value="-Xmx1024M"/>
</java>
</target>
<target name="tests" depends="test"/>
<target name="test" depends="compile-test">
<junit fork="true" forkmode="once"
failureproperty="junit.failure"
printsummary="on">
<sysproperty key="net.sourceforge.cobertura.datafile"
file="${target}/cobertura.ser" />
<pathelement location="${build-coverage}"/>
<pathelement location="${build}"/>
<pathelement location="${resources}"/>
<pathelement location="${test-resources}"/>
<pathelement location="${build-test}"/>
<path refid="classpath-test"/>
</classpath>
<formatter type="brief" usefile="true" />
<batchtest todir="${test-output}">
<fileset dir="${source-test}">
<exclude name="**/storage/tests/StorageTest.java"/>
<include name="**/*Test*.java"/>
<exclude name="**/core/test/**"/>
<exclude name="**/core/module/**"/>
<exclude name="**/util/FutureTestUtils.java"/> <!-- No tests here. Used within others that have Futures -->
<exclude name="**/test/FloodlightTestCase.java"/> <!-- Base class for other tests. Can't run it individually. -->
<exclude name="**/core/internal/OFSwitchHandlerTestBase.java"/> <!-- Abstract class used by protocol version handshake handlers. -->
</fileset>
</batchtest>
</junit>
<fail if="junit.failure" message="Unit test(s) failed. See reports!"/>
</target>
<taskdef classpathref="classpath-cobertura" resource="tasks.properties"/>
<target name="clean-instrument">
<delete file="${target}/cobertura.ser"/>
<delete dir="${build-coverage}"/>
</target>
<target name="instrument" depends="compile,compile-test,clean-instrument">
<cobertura-instrument datafile="${target}/cobertura.ser"
todir="${build-coverage}"
classpathref="classpath-cobertura">
<fileset dir="${build}">
<include name="**/*.class"/>
</fileset>
</cobertura-instrument>
</target>
<target name="coverage-report">
<cobertura-report format="html"
datafile="${target}/cobertura.ser"
destdir="${coverage-output}"
srcdir="${source}"/>
<cobertura-report format="xml"
datafile="${target}/cobertura.ser"
destdir="${coverage-output}"
srcdir="${source}"/>
</target>
<target name="coverage" depends="instrument,test,coverage-report"/>
<target name="dist" depends="compile,compile-test">
<jar destfile="${floodlight-jar}" filesetmanifest="mergewithoutmain">
<manifest>
<attribute name="Main-Class" value="${main-class}"/>
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="${build}"/>
<fileset dir="${resources}"/>
<fileset dir="${python-src}">
<include name="**/*.py"/>
</fileset>
Ryan Izard
committed
<zipgroupfileset dir="${lib}" excludes="META-INF/*.SF">
<patternset refid="lib"/>
</zipgroupfileset>
<jar destfile="${floodlight-test-jar}" filesetmanifest="mergewithoutmain">
<manifest>
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="${build-test}"/>
<patternset refid="lib-test"/>
<patternset refid="lib-cobertura"/>
</zipgroupfileset>
</jar>
</target>
Rob Adams
committed
<target name="deb" depends="dist">
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
<taskdef name="deb"
classname="org.vafer.jdeb.ant.DebAntTask"
classpathref="package-classpath"/>
<copy todir="${target}/debian">
<fileset dir="debian"/>
<filterset begintoken="[[" endtoken="]]">
<filter token="version" value="1.9.0"/>
<filter token="name" value="${ant.project.name}"/>
</filterset>
</copy>
<deb destfile="${target}/floodlight-1.9.0.deb"
control="${target}/debian/control">
<data src="${floodlight-jar}" type="file">
<mapper type="perm" prefix="/usr/share/floodlight/java"/>
</data>
<tarfileset dir="debian/misc/bin" prefix="/usr/bin" filemode="755"/>
<data src="debian/misc/logrotate/floodlight" type="file">
<mapper type="perm" prefix="/etc/logrotate.d"/>
</data>
<data src="debian/misc/init/floodlight.conf" type="file">
<mapper type="perm" prefix="/etc/init"/>
</data>
<data src="debian/misc/logback.xml" type="file">
<mapper type="perm" prefix="/etc/floodlight"/>
</data>
<data src="debian/misc/rsyslog/10-floodlight.conf" type="file">
<mapper type="perm" prefix="/etc/rsyslog.d"/>
</data>
<data src="debian/misc/default/floodlight" type="file">
<mapper type="perm" prefix="/etc/default"/>
</data>
Rob Adams
committed
<data src="debian/misc/floodlight.properties" type="file">
<mapper type="perm" prefix="/etc/floodlight"/>
</data>
Rob Adams
committed
<tarfileset dir="src/main/resources/apps" prefix="/etc/floodlight/apps.d"/>
Rob Adams
committed
<target name="package" depends="deb"/>
<target name="javadoc">
<javadoc access="protected"
author="true"
classpathref="classpath"
destdir="${docs}"
doctitle="Floodlight"
nodeprecated="false"
nodeprecatedlist="false"
noindex="false"
nonavbar="false"
notree="false"
Ryan Izard
committed
source="1.7"
sourcepath="${source}"
splitindex="true"
use="true"
version="true"/>
</target>
<map from="${basedir}/" to=""/>
<patternset refid="lib"/>
<patternset refid="lib-test"/>
</fileset>
</pathconvert>
<exec executable="${basedir}/setup-eclipse.sh">
<arg value="${main-class}"/>
</exec>
</target>
<target name="findbugs-xml" depends="init,compile">
<taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="${findbugs.home}/lib/findbugs-ant.jar"/>
<mkdir dir="${findbugs.results}"/>
jvmargs="-Xmx1024m"
outputFile="${findbugs.results}/results.xml">
<sourcePath path="${source}" />
<sourcePath path="${thrift.out.dir}" />
<class location="${build}" />
<auxClasspath>
<path refid="classpath" />
</auxClasspath>
</findbugs>
</target>
<target name="findbugs" depends="init,compile">
<taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="${findbugs.home}/lib/findbugs-ant.jar"/>
<mkdir dir="${findbugs.results}"/>
outputFile="${findbugs.results}/results.html" >
<sourcePath path="${source}" />
<sourcePath path="${thrift.out.dir}" />
<class location="${build}" />
<auxClasspath>
<path refid="classpath" />
</auxClasspath>
</findbugs>
</target>