buildframework/helium/sf/java/legacy/src/com/nokia/tools/cone/CONETool.java
author wbernard
Fri, 13 Aug 2010 14:59:05 +0300
changeset 628 7c4a911dc066
parent 587 85df38eb4012
permissions -rw-r--r--
helium_11.0.0-e00f171ca185

/*
 * 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.tools.cone;

import java.io.File;
import java.util.HashMap;
import java.util.Map;

import org.apache.tools.ant.Project;

import com.nokia.helium.core.ant.types.VariableSet;
import com.nokia.tools.Tool;
import com.nokia.tools.ToolsProcessException;

/**
 * To generate the cenrep files using ConE tool.
 */
public class CONETool implements Tool {

    private Map<String, String> varMapping = new HashMap<String, String>();

    public void execute(VariableSet varSet, Project prj) throws ToolsProcessException {
    }

    /**
     * Run the cone command with arguments from hashmap.
     * 
     * @param prj
     * @throws ToolsProcessException
     */
    public void execute(Project prj) throws ToolsProcessException {
        String command = null;
        String osType = System.getProperty("os.name");
        org.apache.tools.ant.taskdefs.ExecTask task = new org.apache.tools.ant.taskdefs.ExecTask();
        task.setTaskName("ConE");
        task.setDir(new java.io.File(varMapping.get("path")));
        task.setExecutable("cmd.exe");
        command = "cmd.exe";
        task.setOutput(new File(varMapping.get("output")));
        task.createArg().setValue("/c");
        task.setAppend(true);
        task.createArg().setValue("cone.cmd");
        task.createArg().setValue(varMapping.get("command"));
        command += " /c cone.cmd " + varMapping.get("command");
        for (Map.Entry<String, String> varEntry : varMapping.entrySet()) {
            if (!varEntry.getKey().equals("path") && !varEntry.getKey().equals("output")) {
                task.createArg().setValue(varEntry.getKey());
                command += " " + varEntry.getKey();
                task.createArg().setValue(varEntry.getValue());
                command += " " + varEntry.getValue();
            }
        }
        if (!osType.toLowerCase().startsWith("win")) {
            task.log("ConE tool runs only on windows platforms.");
            return;
        }
        task.log("Running ConE command \"" + command + "\"");
        task.execute();
    }

    /**
     * To Store the variable and it value into hashmap to read them later.
     * 
     * @param name
     * @param value
     */
    public void storeVariables(String name, String value) {
        varMapping.put(name, value);
    }

}