2N/A<!--
2N/A ! CDDL HEADER START
2N/A !
2N/A ! The contents of this file are subject to the terms of the
2N/A ! Common Development and Distribution License, Version 1.0 only
2N/A ! (the "License"). You may not use this file except in compliance
2N/A ! with the License.
2N/A !
2N/A ! You can obtain a copy of the license at
2N/A ! trunk/opends/resource/legal-notices/OpenDS.LICENSE
2N/A ! or https://OpenDS.dev.java.net/OpenDS.LICENSE.
2N/A ! See the License for the specific language governing permissions
2N/A ! and limitations under the License.
2N/A !
2N/A ! When distributing Covered Code, include this CDDL HEADER in each
2N/A ! file and include the License file at
2N/A ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
2N/A ! add the following below this CDDL HEADER, with the fields enclosed
2N/A ! by brackets "[]" replaced with your own identifying information:
2N/A ! Portions Copyright [yyyy] [name of copyright owner]
2N/A !
2N/A ! CDDL HEADER END
2N/A !
2N/A !
2N/A ! Copyright 2008-2010 Sun Microsystems, Inc.
2N/A ! -->
2N/A
2N/A<project name="Directory Server Extension" basedir="." default="package">
2N/A <description>
2N/A This is the build script for an OpenDS Directory Server extension.
2N/A </description>
2N/A
2N/A <!-- Import extra tasks from ant-contrib (for, if-then-else, ...) -->
2N/A <taskdef resource="net/sf/antcontrib/antlib.xml"/>
2N/A
2N/A <!-- CONFIGURE: The name of the extension's Jar file. -->
2N/A <property name="pkg.name" value="example-plugin" />
2N/A
2N/A <!-- CONFIGURE: The description of this extension - used in the Javadoc title. -->
2N/A <property name="pkg.description" value="Example Plugin" />
2N/A
2N/A <!-- CONFIGURE: The path of the OpenDS installation. -->
2N/A <property name="opends.install.dir" location=".." />
2N/A
2N/A <!-- CONFIGURE: The path of Xalan-Java distribution. -->
2N/A <property name="xalan.directory" location="ext/xalan-j" />
2N/A
2N/A <!-- General properties - should not need changing. -->
2N/A <property name="build.dir" location="build" />
2N/A <property name="src.dir" location="src" />
2N/A <property name="src.gen.dir" location="src-generated" />
2N/A <!-- alias variable as needed by the ant task that generates messages -->
2N/A <property name="msg.javagen.dir" location="${src.gen.dir}" />
2N/A <property name="lib.dir" location="lib" />
2N/A <property name="ext.dir" location="ext" />
2N/A <property name="resource.dir" location="resource" />
2N/A <property name="admin.dir" location="${resource.dir}/admin" />
2N/A <property name="config.dir" location="${resource.dir}/config" />
2N/A <property name="schema.dir" location="${resource.dir}/schema" />
2N/A <property name="msg.dir" location="${resource.dir}/messages" />
2N/A <property name="classes.dir" location="${build.dir}/classes" />
2N/A <property name="javadoc.dir" location="${build.dir}/javadoc" />
2N/A <property name="package.dir" location="${build.dir}/package" />
2N/A <property name="message.dir" location="${build.dir}/message" />
2N/A <property name="jar.file" value="${pkg.name}.jar" />
2N/A
2N/A <!-- Location of OpenDS components - should not need changing. -->
2N/A <property name="opends.lib.dir" location="${opends.install.dir}/lib" />
2N/A <property name="opends.config.dir" location="${opends.install.dir}/config" />
2N/A <property name="opends.schema.dir" location="${opends.config.dir}/schema" />
<property name="opends.extensions.dir" location="${opends.lib.dir}/extensions" />
<!-- Display help information. -->
<target name="help">
<echo message="Ant options to control the build:" />
<echo message="" />
<echo message=" -Dopends.install.dir=path" />
<echo message=" The path of the OpenDS installation [default: ${opends.install.dir}]." />
<echo message="" />
<echo message=" -Dpkg.name=name" />
<echo message=" The name of the extension's Jar file [default: ${pkg.name}]." />
<echo message="" />
<echo message=" -Dpkg.description=description" />
<echo message=" The description of this extension - used in the Javadoc title [default: ${pkg.description}]." />
<echo message="" />
<echo message=" -Dxalan.directory=path" />
<echo message=" The path of a Xalan-Java distribution [default: ${xalan.directory}]." />
<echo message="" />
</target>
<!-- Clean up any files generated during the build process. -->
<target name="clean" description="Clean up any files generated during the build process.">
<delete dir="${build.dir}" />
<delete includeemptydirs="true">
<fileset dir="${src.gen.dir}" includes="**/*" />
</delete>
</target>
<!-- Compile the Directory Server extension source files. -->
<target name="compile" depends="init,compileadmin,generate-messages" description="Compile the Directory Server extension source files.">
<mkdir dir="${classes.dir}" />
<javac srcdir="${src.dir}:${src.gen.dir}" destdir="${classes.dir}" optimize="true" excludes="**/package-info.java" debug="on" debuglevel="lines,source" source="1.6" target="1.6" deprecation="true" fork="true" memoryInitialSize="${MEM}" memoryMaximumSize="${MEM}">
<compilerarg value="-Xlint:all" />
<classpath>
<fileset dir="${lib.dir}">
<include name="*.jar" />
</fileset>
<fileset dir="${opends.lib.dir}">
<include name="*.jar" />
</fileset>
</classpath>
</javac>
</target>
<!-- Generate JavaDoc documentation from the source files. -->
<target name="javadoc" depends="init,compile" description="Generate JavaDoc documentation.">
<mkdir dir="${javadoc.dir}" />
<javadoc destdir="${javadoc.dir}" source="1.6" additionalparam="-quiet" linksource="yes" windowtitle="${pkg.description} API Documentation" maxmemory="${MEM}">
<classpath>
<fileset dir="${lib.dir}">
<include name="*.jar" />
</fileset>
<fileset dir="${opends.lib.dir}">
<include name="*.jar" />
</fileset>
<dirset dir="${classes.dir}" />
</classpath>
<packageset dir="${src.dir}" />
<packageset dir="${src.gen.dir}" />
</javadoc>
</target>
<!-- Package the Directory Server extension for distribution. -->
<target name="package" depends="clean,compile" description="Package the Directory Server extension for distribution.">
<mkdir dir="${package.dir}" />
<jar jarfile="${package.dir}/${jar.file}" basedir="${classes.dir}" compress="true" index="true" />
</target>
<!-- Install the Directory Server extension in an existing OpenDS installation. -->
<target name="install" depends="package" description="Install the Directory Server extension in an existing OpenDS installation.">
<mkdir dir="${opends.lib.dir}" />
<copy todir="${opends.lib.dir}">
<fileset file="${lib.dir}/*.jar" />
</copy>
<mkdir dir="${opends.extensions.dir}" />
<copy todir="${opends.extensions.dir}">
<fileset file="${package.dir}/*.jar" />
</copy>
<copy todir="${opends.config.dir}">
<fileset file="${config.dir}/*.ldif" />
</copy>
<copy todir="${opends.schema.dir}">
<fileset file="${schema.dir}/*.ldif" />
</copy>
</target>
<!-- Perform common initialization common to several targets. -->
<target name="init">
<tstamp>
<format property="timestamp" pattern="yyyyMMddHHmmss" />
</tstamp>
<condition property="DEBUG_BUILD" value="false">
<not>
<isset property="DEBUG_BUILD" />
</not>
</condition>
<condition property="MEM" value="128M">
<not>
<isset property="MEM" />
</not>
</condition>
</target>
<!-- Perform verification for Xalan dependency -->
<target name="ensurexalan" description="Verify that the Xalan-Java jar files are accessibles.">
<if>
<not>
<available property="xalan.directory.exists" file="${xalan.directory}" />
</not>
<then>
<echo message="Please use -Dxalan.directory to point to a directory " />
<echo message="that contains an unzipped delivery of Xalan-Java." />
<echo message="You can download Xalan-Java from the Apache website :" />
<echo message=" http://xml.apache.org/xalan-j/" />
<echo message="" />
<fail />
</then>
</if>
<!-- Xalan-J Class Path : refer to it explicitly from each XSLT task. -->
<path id="xalan.class.path">
<fileset dir="${xalan.directory}">
<include name="*.jar" />
</fileset>
</path>
<!-- Verify that all required Xalan jars are present -->
<property name="xalan.jar.files" value="serializer.jar,xalan.jar,xercesImpl.jar,xml-apis.jar" />
<fail message="Missing at least one Xalan-Java jar files in directory ${xalan.directory} (expecting : ${xalan.jar.files}).">
<condition>
<not>
<resourcecount count="4">
<fileset dir="${xalan.directory}" includes="${xalan.jar.files}" />
</resourcecount>
</not>
</condition>
</fail>
</target>
<!-- Compile the Directory Server extension configuration definition files. -->
<target name="compileadmin" depends="ensurexalan,validateadmin" description="Compile the Directory Server extension configuration definition files.">
<echo message="classpath = ${xalan.class.path}" />
<!-- Compile the Directory Server extension configuration meta classes. -->
<xslt basedir="${src.dir}" destdir="${src.gen.dir}" style="${admin.dir}/metaMO.xsl">
<include name="**/*Configuration.xml" />
<exclude name="org/opends/server/admin/std/*.xml" />
<regexpmapper handledirsep="true" from="^(.*)/([^/]+)Configuration\.xml$$" to="\1/meta/\2CfgDefn.java" />
<param name="base-dir" expression="${src.dir}" />
<classpath refid="xalan.class.path" />
</xslt>
<xslt basedir="${src.dir}" destdir="${src.gen.dir}" style="${admin.dir}/package-info.xsl">
<include name="**/Package.xml" />
<exclude name="org/opends/server/admin/std/*.xml" />
<regexpmapper handledirsep="true" from="^(.*)/([^/]+)\.xml$$" to="\1/meta/package-info.java" />
<param name="type" expression="meta" />
<classpath refid="xalan.class.path" />
</xslt>
<!-- Compile the Directory Server extension configuration client classes. -->
<xslt basedir="${src.dir}" destdir="${src.gen.dir}" style="${admin.dir}/clientMO.xsl">
<include name="**/*Configuration.xml" />
<exclude name="org/opends/server/admin/std/*.xml" />
<regexpmapper handledirsep="true" from="^(.*)/([^/]+)Configuration\.xml$$" to="\1/client/\2CfgClient.java" />
<param name="base-dir" expression="${src.dir}" />
<classpath refid="xalan.class.path" />
</xslt>
<xslt basedir="${src.dir}" destdir="${src.gen.dir}" style="${admin.dir}/package-info.xsl">
<include name="**/Package.xml" />
<exclude name="org/opends/server/admin/std/*.xml" />
<regexpmapper handledirsep="true" from="^(.*)/([^/]+)\.xml$$" to="\1/client/package-info.java" />
<param name="type" expression="client" />
<classpath refid="xalan.class.path" />
</xslt>
<!-- Compile the Directory Server extension configuration server classes. -->
<xslt basedir="${src.dir}" destdir="${src.gen.dir}" style="${admin.dir}/serverMO.xsl">
<include name="**/*Configuration.xml" />
<exclude name="org/opends/server/admin/std/*.xml" />
<regexpmapper handledirsep="true" from="^(.*)/([^/]+)Configuration\.xml$$" to="\1/server/\2Cfg.java" />
<param name="base-dir" expression="${src.dir}" />
<classpath refid="xalan.class.path" />
</xslt>
<xslt basedir="${src.dir}" destdir="${src.gen.dir}" style="${admin.dir}/package-info.xsl">
<include name="**/Package.xml" />
<exclude name="org/opends/server/admin/std/*.xml" />
<regexpmapper handledirsep="true" from="^(.*)/([^/]+)\.xml$$" to="\1/server/package-info.java" />
<param name="type" expression="server" />
<classpath refid="xalan.class.path" />
</xslt>
<!-- Compile the Directory Server extension configuration ldap profile property files. -->
<xslt basedir="${src.dir}" destdir="${classes.dir}/admin/profiles/ldap" style="${admin.dir}/ldapMOProfile.xsl">
<include name="**/*Configuration.xml" />
<exclude name="org/opends/server/admin/std/*.xml" />
<regexpmapper handledirsep="true" from="^(.*)/([^/]+)Configuration\.xml$$" to="\1/meta/\2CfgDefn.properties" />
<param name="base-dir" expression="${src.dir}" />
<classpath refid="xalan.class.path" />
</xslt>
<!-- Compile the Directory Server extension configuration cli profile property files. -->
<xslt basedir="${src.dir}" destdir="${classes.dir}/admin/profiles/cli" style="${admin.dir}/cliMOProfile.xsl">
<include name="**/*Configuration.xml" />
<exclude name="org/opends/server/admin/std/*.xml" />
<regexpmapper handledirsep="true" from="^(.*)/([^/]+)Configuration\.xml$$" to="\1/meta/\2CfgDefn.properties" />
<param name="base-dir" expression="${src.dir}" />
<classpath refid="xalan.class.path" />
</xslt>
<!-- Compile the Directory Server extension configuration I18N message files. -->
<xslt basedir="${src.dir}" destdir="${classes.dir}/admin/messages" style="${admin.dir}/messagesMO.xsl">
<include name="**/*Configuration.xml" />
<exclude name="org/opends/server/admin/std/*.xml" />
<regexpmapper handledirsep="true" from="^(.*)/([^/]+)Configuration\.xml$$" to="\1/meta/\2CfgDefn.properties" />
<param name="base-dir" expression="${src.dir}" />
<classpath refid="xalan.class.path" />
</xslt>
<!-- Compile the Directory Server extension configuration manifest file. -->
<tempfile property="admin.temp.dir" destDir="${classes.dir}" />
<mkdir dir="${admin.temp.dir}" />
<xslt basedir="${src.dir}" destdir="${admin.temp.dir}" extension=".manifest" style="${admin.dir}/manifestMO.xsl">
<include name="**/*Configuration.xml" />
<exclude name="org/opends/server/admin/std/*.xml" />
<classpath refid="xalan.class.path" />
</xslt>
<concat destfile="${classes.dir}/admin/extension.manifest">
<fileset dir="${admin.temp.dir}" includes="**/*.manifest" />
</concat>
<delete dir="${admin.temp.dir}" />
</target>
<!-- Validate the Directory Server extension configuration definitions. -->
<target name="validateadmin" description="Validate the Directory Server extension configuration definitions.">
<schemavalidate>
<fileset dir="${src.dir}" includes="**/*.xml" />
<schema namespace="http://www.opends.org/admin" file="${admin.dir}/admin.xsd" />
<schema namespace="http://www.opends.org/admin-ldap" file="${admin.dir}/admin-ldap.xsd" />
<schema namespace="http://www.opends.org/admin-cli" file="${admin.dir}/admin-cli.xsd" />
</schemavalidate>
</target>
<!-- Generate messages from all .properties files located in the message directory and declared in a package-->
<target name="generate-messages" description="Generate messages for extension.">
<if>
<available file="${msg.dir}" type="dir" property="message.dir.is-present"/>
<then>
<!-- list of files properties -->
<path id="messages.properties">
<!-- Note: a package is required and properties file at the root of the
! message directory will be ignored
! -->
<fileset dir="${msg.dir}" includes="*/**/*.properties" />
</path>
<property name="msg.dir.list" refid="messages.properties" />
<!-- includes lib/*.jar into classpath (actually build-tools.jar) -->
<path id="msg.classpath">
<fileset dir="${lib.dir}">
<include name="*.jar" />
</fileset>
</path>
<property name="build-tools.jar" refid="msg.classpath" />
<typedef name="genmsg"
classname="org.opends.build.tools.GenerateMessageFile"
classpathref="msg.classpath">
</typedef>
<!-- set property if the list is not empty -->
<if>
<length string="${msg.dir.list}" when="greater" length="0" />
<then>
<!-- Generate the message catalogs for all messages located
! in the messages directory
! -->
<mkdir dir="${classes.dir}/messages" />
<for param="file" delimiter="${path.separator}" list="${msg.dir.list}">
<sequential>
<genmsg sourceProps="@{file}" />
<copy file="@{file}" todir="${classes.dir}/messages"/>
</sequential>
</for>
</then>
<else>
<echo message="No messages found: ${message.dir} is empty" />
</else>
</if>
</then>
<else>
<echo message="No messages found: ${msg.dir} is missing" />
</else>
</if>
</target>
</project>