buildframework/helium/tools/compile/compile.antlib.xml
author wbernard
Sun, 10 Oct 2010 15:22:15 +0300
changeset 645 b8d81fa19e7d
parent 628 7c4a911dc066
permissions -rw-r--r--
helium_12.0.0-63b64366f9cf

<?xml version="1.0" encoding="UTF-8"?>
<!--
============================================================================
Name        : compile.antlib.xml
Part of     : Helium

Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
All rights reserved.
This component and the accompanying materials are made available
under the terms of the License "Eclipse Public License v1.0"
which accompanies this distribution, and is available
at the URL "http://www.eclipse.org/legal/epl-v10.html".

Initial Contributors:
Nokia Corporation - initial contribution.

Contributors:

Description:

============================================================================
-->
<!--* @package compile -->
<antlib xmlns:hlm="http://www.nokia.com/helium">
    
    <!-- This task transfer the log file into html format -->
    <macrodef name="compileHtmlscanlogMacro" uri="http://www.nokia.com/helium">
        <attribute name="input"/>
        <attribute name="output"/>
        <sequential>
            <exec executable="perl" dir="${build.drive}/" failonerror="${failonerror}">
                <arg value="${epocroot}epoc32/tools/htmlscanlog.pl"/>
                <arg value="-v"/>
                <arg value="-v"/>
                <arg value="-l"/>
                <arg file="@{input}"/>
                <arg value="-o"/>
                <arg file="@{output}"/>
            </exec>
            <hlm:assertFileExists file="@{output}"/>
        </sequential>
    </macrodef>

    
    <!-- Generates compilation report for diamonds. -->
    <macrodef name="calculateErrorsFromLog" uri="http://www.nokia.com/helium">
        <sequential>
            <if>
                <or>
                    <istrue value="${diamonds.enabled}"/>
                    <isfalse value="${skip.diamonds}"/>
                    <not>
                        <isset property="skip.diamonds"/>
                    </not>
                </or>
                <then>
                    <fmpp sourceFile="${helium.dir}/tools/common/templates/diamonds/faults_metadata_orm.ftl"
                                 outputfile="${diamonds.build.output.dir}/compile-main.xml">
                        <data expandProperties="yes">
                            dbPath: ${metadata.dbfile}
                            ant: antProperties()
                        </data>
                    </fmpp>
                </then>
            </if>
        </sequential>
    </macrodef>

    
    <macrodef name="compileLogSignalMacro" uri="http://www.nokia.com/helium">
        <attribute name="compile.summary.file"/>
        <attribute name="error.limit"/>
        <attribute name="phase" default="compile"/>
        <sequential>
            <hlm:calculateErrorsFromLog />
            <var name="build.errors.total" unset="true" />
            <var name="compile.result" unset="true" />
            <hlm:metadataCountSeverity severity="ERROR" log="@{compile.summary.file}"
                database="${metadata.dbfile}"
                property="build.errors.total"/>
                
            <echo>Errors after compile-main: ${build.errors.total}</echo>
            <echo message="${build.errors.limit}" />
            <echo message="@{error.limit}" />
            <if>
                <scriptcondition language="jython" value="false">
errorsTotal = project.getProperty("build.errors.total")
if int(r'@{error.limit}') > -1:
    if int(errorsTotal) > int(r'@{error.limit}'):
        self.setValue(1)
                </scriptcondition>
                <then>
                    <property name="compile.result" value="1"/>
                </then>
                <else>
                    <property name="compile.result" value="0"/>
                </else>
            </if>
            <echo message="compile result:${compile.result}" />
            <hlm:signalMacro skip.count="true" result="${compile.result}" 
                logfile="@{compile.summary.file}"
                phase="@{phase}" 
                signal.input="${compile.signal.input}" />
        </sequential>
    </macrodef>
    
    
    <!-- Macro to start the build using EBS. 
        
    Parameters are generated xml file for EBS builds
    the log output of the build and the number of threads for the build. -->
    <macrodef name="compileEbsMacro" uri="http://www.nokia.com/helium">
        <attribute name="input"/>
        <attribute name="log"/>
        <attribute name="threads" default="${number.of.threads}"/>
        <sequential>
            <exec executable="perl" dir="${build.drive}/" failonerror="${failonerror}">
                <env key="EPOCROOT" value="${epocroot}"/>
                <arg value="${helium.dir}/tools/compile/buildjob.pl"/>
                <arg value="-d"/>
                <arg value="@{input}"/>
                <arg value="-l"/>
                <arg value="@{log}"/>
                <arg value="-n"/>
                <arg value="${number.of.threads}"/>
            </exec>
            <hlm:assertFileExists file="@{log}"/>
        </sequential>
    </macrodef>

    
    <!-- Macro to generate the xml file for EBS builds.
        
    Inputs are Merged xml file for the process,
    configuration for which the EBS xml file is generated and the output xml file for the EBS builds and
    the log output of the build. -->
    <macrodef name="compileGenxmlMacro" uri="http://www.nokia.com/helium">
        <attribute name="input"/>
        <attribute name="configuration"/>
        <attribute name="output"/>
        <attribute name="log"/>
        <sequential>
            <preset.exec executable="perl" dir="${build.drive}/" failonerror="${failonerror}">
                <arg value="${build.drive}/epoc32/tools/build/genxml.pl"/>
                <arg value="-o"/>
                <arg value="@{output}"/>
                <arg value="-l"/>
                <arg value="@{log}"/> <!-- ${build.log.dir}/${build.id}.@{configuration}_genxml.log -->
                <arg value="-s"/>
                <arg value="${epocroot}"/>
                <arg value="-n"/>
                <arg value="@{configuration}"/>
                <arg line="@{input}"/>
            </preset.exec>
            <hlm:assertFileExists file="@{output}"/>
            <hlm:assertFileExists file="@{log}"/>
        </sequential>
    </macrodef>

    
    <!-- Merges all preprocessed System Definition files into one combined file
    
    This macro also handles the copying of the sysdef DTDs on the root of the build environment.
    -->
    <macrodef name="compileGenxmlMergeMacro" uri="http://www.nokia.com/helium">
        <attribute name="input"/>
        <attribute name="output"/>
        <attribute name="logfile"/>
        <sequential>
            <basename property="base.merge.log" file="@{logfile}"/>
            <hlm:tempRecordStartMacro name="${base.merge.log}"/>
            <echo message="input:@{input}" />
            <echo message="output:@{output}" />
            <mkdir dir="${compile.log.dir}"/>
            <mkdir dir="${temp.build.dir}"/>
            <copy todir="${build.drive}/" verbose="true">
                <fileset dir="${helium.dir}/tools/common/dtd" includes="*.dtd"/>
            </copy>
            <preset.exec executable="perl" dir="${build.drive}/" failonerror="${failonerror}">
                <arg value="${build.drive}/epoc32/tools/build/genxml.pl"/>
                <arg value="-s"/>
                <arg value="${epocroot}"/>
                <arg value="-m"/>
                <arg value="@{output}"/>              
                <arg line="@{input}"/>
            </preset.exec>
            <hlm:tempRecordStopMacro name="${base.merge.log}" phase="compile" filterref="filterset.genxml.merge"/>
            <hlm:signalMacro
                logfile="${build.cache.log.dir}/${base.merge.log}"
                phase="compile" 
                signal.input="canonicalSysDefFailSignalInput" />
        </sequential>
    </macrodef>

    
    <!-- This macro uses genxml to filter a sysdef file. -->
    <macrodef name="compileGenxmlFilterMacro" uri="http://www.nokia.com/helium">
        <attribute name="input"/>
        <attribute name="output"/>
        <attribute name="filter"/>
        <sequential>
            <preset.exec executable="perl" dir="${build.drive}/" failonerror="${failonerror}">
                <arg value="${build.drive}/epoc32/tools/build/genxml.pl"/>
                <arg value="-s"/>
                <arg value="${epocroot}"/>
                <arg value="-m"/>
                <arg value="@{output}"/>
                <arg value="-f"/>
                <arg value="@{filter}"/>
                <arg value="-l"/>
                <arg line="@{output}.log"/>
                <arg value="-x"/>
                <arg value="@{input}"/>
            </preset.exec>
            <hlm:assertFileExists file="@{output}"/>
        </sequential>
    </macrodef>

    <!-- Electric Cloud emake support.

    e.g:

        <hlm:emakeMacro name="zip-ee" makefile="/foo.mk" log="${build.log.dir}/zip-ee.log" target="zip-all"/>

    Optionally to generate emake annotation file use/add attribute annodetail="basic,history,file,waiting".
    -->
    <scriptdef name="emakeMacro" language="beanshell" uri="http://www.nokia.com/helium">
        <attribute name="name"/>
        <attribute name="log"/>
        <attribute name="makefile"/>
        <attribute name="target"/>
        <attribute name="custom"/>
        <attribute name="dir"/>
        <attribute name="annodetail"/>
        <attribute name="root"/> 
        <attribute name="failonerror"/>
        <attribute name="phase"/>
self.setTaskName("emake");
// check attributes
if (attributes.get("name") == null) {
    throw new org.apache.tools.ant.BuildException("name attribute is not defined");
}
self.log("Name: " + attributes.get("name"));
if (attributes.get("makefile") == null) {
    throw new org.apache.tools.ant.BuildException("makefile attribute is not defined");
}
self.log("Makefile: " + attributes.get("makefile"));
String target = "all";
String custom = "";
String annofileDir = "";
if (attributes.get("target") != null) {
    target = attributes.get("target");
}
self.log("Target: " + target);
if (attributes.get("custom") != null) {
    custom = attributes.get("custom");
}
self.log("Custom: " + custom);

// Create and configure exec target
org.apache.tools.ant.taskdefs.ExecTask task = new org.apache.tools.ant.taskdefs.ExecTask();
task.setProject(self.getProject());
task.setTaskName(self.getTaskName());
String emake = com.nokia.ant.util.Helper.getProperty(project, "ec.emake");          
task.setExecutable(emake);
if (attributes.get("failonerror") != null) {
    task.setFailonerror(Boolean.parseBoolean(attributes.get("failonerror")));
}
else {
    task.setFailonerror(true);
}
String buildDrive = com.nokia.ant.util.Helper.getProperty(project, "build.drive");              
task.setDir(new java.io.File(buildDrive + "/"));
if (attributes.get("log") != null) {
    self.log("Log: " + attributes.get("log"));
    task.setOutput(new java.io.File(attributes.get("log")));
}
if (attributes.get("dir") != null) {
    self.log("dir: " + attributes.get("dir"));
    task.setDir(new java.io.File(attributes.get("dir")));
}
String buildId = com.nokia.ant.util.Helper.getProperty(project, "build.id");
task.createArg().setValue("--emake-build-label=" + buildId + "-" + attributes.get("name"));
String eclass = com.nokia.ant.util.Helper.getProperty(project, "ec.build.class");
task.createArg().setValue("--emake-class=" + eclass);

// Defining the emake-root argument for the command line.
String eroot = com.nokia.ant.util.Helper.getProperty(project, "env.EMAKE_ROOT");          
String heliumDir = com.nokia.ant.util.Helper.getProperty(project, "helium.dir"); 
String pathSeparator = com.nokia.ant.util.Helper.getProperty(project, "path.separator");
String emakeRoot = eroot + pathSeparator + heliumDir;
if (attributes.get("root") != null &amp;&amp; attributes.get("root").length() > 0) {
    emakeRoot = emakeRoot + pathSeparator + attributes.get("root");
}   
self.log("Roots: " + emakeRoot);
task.createArg().setValue("--emake-root=" + emakeRoot);

if (attributes.get("phase") != null) {
    annofileDir = com.nokia.ant.util.Helper.getProperty(project, "build.log.dir") + "/" + attributes.get("phase");
}
else {
    annofileDir = com.nokia.ant.util.Helper.getProperty(project, "build.log.dir");  
}
if (attributes.get("annodetail") != null) {
    task.createArg().setValue("--emake-annodetail=" + attributes.get("annodetail"));            
    task.createArg().setValue("--emake-annofile=" + annofileDir + "/" + buildId + "-" + attributes.get("name") + ".emake.anno.xml");
}
task.createArg().setLine(custom);
task.createArg().setLine("-f " + attributes.get("makefile"));
task.createArg().setLine(target);

task.execute();
    </scriptdef>

    
    <!-- Macro to build using Raptor.-->
    <scriptdef name="sbsMacro" language="beanshell" uri="http://www.nokia.com/helium">
        <attribute name="config"/>
        <attribute name="layers"/>
        <attribute name="engine"/>
        <attribute name="skipbuild"/>
        <attribute name="singlejob"/>
        <attribute name="layer-order"/>
        <attribute name="command"/>
        <attribute name="components"/>
        <![CDATA[
import com.nokia.tools.sbs.SBSTool;
SBSTool sbsTool = new SBSTool();
sbsTool.execute(attributes,project);
        ]]>
    </scriptdef>

    
    <scriptdef name="getSBSConfigMacro" language="beanshell" uri="http://www.nokia.com/helium">
        <attribute name="sbs.sysdef.file"/>
        <![CDATA[
import com.nokia.config.SAXConfigParser;
SAXConfigParser configParser = new SAXConfigParser(attributes.get("sbs.sysdef.file"));
project.setProperty("sbs.configs",configParser.getConfigs());
        ]]>
    </scriptdef>
    
</antlib>