buildframework/helium/sf/java/sbs/src/com/nokia/helium/sbs/ant/taskdefs/CTCTask.java
author wbernard
Thu, 22 Jul 2010 17:08:43 +0300
branchhelium-9.0
changeset 618 df88fead2976
parent 587 85df38eb4012
permissions -rw-r--r--
helium_9.0.5-4399343f4f50

/*
* Copyright (c) 2007-2008 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 com.nokia.helium.sbs.ant.taskdefs;

import java.util.Vector;

import org.apache.tools.ant.BuildException;

import com.nokia.helium.core.ant.types.Variable;
import com.nokia.helium.core.ant.types.VariableSet;

/**
 * This task is to execute the CTCWrap command with the list of sbs parameters
 * using sbsinput type. Based on the raptor input list of additional log file path
 * used needs to be set, so that the scanlog, additional log files are generated 
 * properly.
 * 
 * <pre>
 * &lt;ctctask sbsinput=&quot;sbs.input&quot; sysdefFile=&quot;system.def.file&quot;
 *      workingDir=&quot;build.drive&quot; failOnError=&quot;false&quot; 
 *      cleanLog=&quot;sbs.log.file.clean.log&quot; 
 *      failOnError=&quot;false&quot; 
 *      errorfile=&quot;path to error file&quot;/&gt;
 * </pre>
 * 
 * @ant.task name="ctctask" category="SBS"
 */
public class CTCTask extends SBSTask {
    
    private String instrumentType = "m";
    private Vector<VariableSet> ctcOptions = new Vector<VariableSet>();
    
    /**
     * Constructing the task, overriding default executable to be 
     * ctcwrap.
     */
    public CTCTask() {
        super();
        getSbsCmd().setExecutable("ctcwrap");
    }
    
    /**
     * Defined the instrumentation type.
     * @param instrumentType the instrumentation type.
     * @ant.not-required Default is 'm'
     */
    public void setInstrumentType(String instrumentType)
    {
        this.instrumentType = instrumentType;
    }
    
    /**
     * Override the command line construction.
     */
    protected String getSBSCmdLine() {
        String ctcConfig = "";
        for (VariableSet ctcOption : ctcOptions) {
            ctcConfig += " "; // needed for forward compatibility
            if (ctcOption.isReference()) {
                Object refObject = ctcOption.getRefid().getReferencedObject();
                if (refObject instanceof VariableSet) {
                    ctcOption = (VariableSet)refObject;
                } else {
                    throw new BuildException(ctcOption.getRefid().getRefId() + " is not referencing a VariableSet.");
                }
            }
            for (VariableSet vset : ctcOption.getVariableSets()) {
                if (vset.isReference()) {
                    Object refObject = vset.getRefid().getReferencedObject();
                    if (refObject instanceof VariableSet) {
                        vset = (VariableSet)refObject;
                    } else {
                        throw new BuildException(vset.getRefid().getRefId() + " is not referencing a VariableSet.");
                    }
                }
                for (Variable var : vset.getVariablesList()) {
                    ctcConfig += " " + var.getParameter();
                }
            }
        }
        return "-i " + instrumentType  + ctcConfig + " sbs" + super.getSBSCmdLine();
    }

    /**
     * To read the ctc arguments for ctcwrap command.
     * 
     * @param ctcArg
     */
    public void addCTCOptions(VariableSet ctcArg) {
        ctcOptions.add(ctcArg);
    }

}