office-gobmx/qadevOOo/runner/helper/BuildEnvTools.java

195 lines
7.1 KiB
Java

/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
package helper;
import java.io.File;
import java.io.PrintWriter;
import lib.TestParameters;
import share.LogWriter;
import util.*;
/**
* This class support you to execute some shell commands in a buld environment. At ervery call of commands
* a build environment was created and the commands will be executed.
*
*/
public class BuildEnvTools {
private final TestParameters param;
private final LogWriter log;
private final boolean mDebug;
private final String mPlatform;
private final String mShell;
private boolean mCygwin;
/**
* This constructor creates an instance of BuildEncTools. It is verifying for all neccesarry
* parameters in <CODE>TestParameters</CODE> This must be:
* <ul>
* <li>OperatingSystem: Fill this parameter with an operating system like unxsols, unxsoli, unxlngi or wntmsci.
* </li>
* <li> Shell: Fill this parameter with a shell f.e '/bin/tcsh'
* or 'c:\\myShell\\myShell.exe'
* </li>
* @param param
* @param log
* @throws helper.ParameterNotFoundException
*/
public BuildEnvTools(TestParameters param, LogWriter log) throws ParameterNotFoundException {
this.param = param;
this.log = log;
mDebug = param.getBool(PropertyName.DEBUG_IS_ACTIVE);
boolean error = false;
String msg = "\nERROR: the following parameter must be set before executing the test:\n\n";
mPlatform = (String) param.get(PropertyName.OPERATING_SYSTEM);
if (mDebug) {
log.println("### " + mPlatform);
}
if (mPlatform == null){
msg += PropertyName.OPERATING_SYSTEM + "\nFill this parameter with an operating system like unxsols," +
" unxsoli, unxlngi, unxmacxi or wntmsci. \n\n";
}
if(
(!mPlatform.equalsIgnoreCase(PropertyName.UNXSOLS)) &&
(!mPlatform.equalsIgnoreCase(PropertyName.UNXSOLI)) &&
(!mPlatform.equalsIgnoreCase(PropertyName.UNXLNGI)) &&
(!mPlatform.equalsIgnoreCase(PropertyName.UNXMACXI))&&
(!mPlatform.equalsIgnoreCase(PropertyName.WNTMSCI)) ){
msg += PropertyName.OPERATING_SYSTEM + ":" + mPlatform + "\nFill this parameter with an operating system like unxsols," +
" unxsoli, unxlngi, unxmacxi or wntmsci. \n\n";
error = true;
}
mShell = (String) param.get(PropertyName.SHELL);
if (mShell == null) {
msg += PropertyName.SHELL + "\nFill this parameter with a shell" +
"\n\t/bin/tcsh c:\\myShell\\myShell.exe\n\n";
error = true;
}
mCygwin = (param.getBool(PropertyName.CYGWIN));
if (error) {
throw new ParameterNotFoundException(msg);
}
}
/**
* Executes the given commands in OOo-Environment shell.
* @param commands
* @param workDir
* @param shortWait
* @return the processHandler of the commands
* @see helper.ProcessHandler
*/
public ProcessHandler runCommandsInEnvironmentShell(String[] commands, File workDir, int shortWait) {
final String[] cmdLines = getCmdLinesWithCommand(commands);
final ProcessHandler pHdl = new ProcessHandler(cmdLines, (PrintWriter) log, workDir, shortWait, param);
pHdl.runCommand();
return pHdl;
}
public String getSrcRoot() {
String sSrcRoot = (String) param.get(PropertyName.SRC_ROOT);
if (sSrcRoot == null) {
String[] cmdLines = null;
if (mPlatform.equals(PropertyName.WNTMSCI) && ! mCygwin) {
cmdLines = new String[]{mShell, "/C", "echo SRC_ROOT=%SRC_ROOT"};
} else {
cmdLines = new String[]{mShell, "--login ", "-c ", "echo \"SRC_ROOT=$SRC_ROOT\""};
}
final ProcessHandler procHdl = new ProcessHandler(cmdLines, (PrintWriter) log, null, 5000, param);
procHdl.runCommand();
if (mDebug) {
log.println("---> Output of command:");
log.println(procHdl.getOutputText());
log.println("<--- Output of command:");
log.println("---> Error output of command");
log.println(procHdl.getErrorText());
log.println("<--- Error output of command");
}
final String output = procHdl.getOutputText();
final String[] outs = output.split("\n");
for (int i = 0; i < outs.length; i++) {
final String line = outs[i];
if (line.startsWith("SRC_ROOT")) {
sSrcRoot = getEnvValue(line);
}
}
}
return sSrcRoot;
}
private String[] getCmdLinesWithCommand(String[] commands) {
String[] cmdLines = null;
log.println("prepare command for platform " + mPlatform);
String seperator = "";
if (mPlatform.equals(PropertyName.WNTMSCI)) {
seperator = mCygwin ? ";" : "^";
} else {
seperator = ";";
}
String command = "";
for (int i = 0; i < commands.length; i++) {
if (i != 0) {
command += seperator;
}
command += commands[i];
}
if (mPlatform.equals(PropertyName.WNTMSCI)){
if (mCygwin){
String srcRoot = (String) param.get(PropertyName.SRC_ROOT);
String envSet = "export cyg_src_root=`cygpath '" + srcRoot.replaceAll("\\\\", "\\\\\\\\")+ "'`; source $cyg_src_root/winenv.set.sh;";
command = envSet + command;
cmdLines = new String[]{mShell, "--login", "-c", "\"" + command + "\""};
} else {
cmdLines = new String[]{mShell, "/C", "\"" + command + "\""};
}
} else {
cmdLines = new String[]{mShell, "-c", command};
}
return cmdLines;
}
private String getEnvValue(String line) {
final String[] split = line.split("=");
return split[1];
}
}