donaldp 01/12/21 05:19:39
Added:
proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/launchers
WinNTCommandLauncher.java
Log:
Converted the old WinNTCommandLauncher to new setup. There is no need to
extend ProxyCommandLauncher as it did not offer any benefit (because the 2 arg
version of Runtime.exec was always called)
Revision Changes Path
1.1
jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/launchers/WinNTCommandLauncher.java
Index: WinNTCommandLauncher.java
===================================================================
/*
* Copyright (C) The Apache Software Foundation. All rights reserved.
*
* This software is published under the terms of the Apache Software License
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.myrmidon.framework.exec.launchers;
import java.io.IOException;
import org.apache.myrmidon.api.TaskException;
import org.apache.myrmidon.framework.exec.CommandLauncher;
import org.apache.myrmidon.framework.exec.ExecMetaData;
/**
* A command launcher for Windows 2000/NT that uses 'cmd.exe' when launching
* commands in directories other than the current working directory.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Thomas Haas</a>
* @version $Revision: 1.1 $ $Date: 2001/12/21 13:19:39 $
*/
public class WinNTCommandLauncher
implements CommandLauncher
{
/**
* Launches the given command in a new process using cmd.exe to
* set the working directory.
*/
public Process exec( final ExecMetaData metaData )
throws IOException, TaskException
{
// Use cmd.exe to change to the specified directory before running
// the command
final String[] prefix = new String[ 6 ];
prefix[ 0 ] = "cmd";
prefix[ 1 ] = "/c";
prefix[ 2 ] = "cd";
prefix[ 3 ] = "/d";
prefix[ 4 ] = metaData.getWorkingDirectory().getCanonicalPath();
prefix[ 5 ] = "&&";
final ExecMetaData newMetaData = ExecUtil.prepend( metaData, prefix );
return Runtime.getRuntime().
exec( newMetaData.getCommand(), newMetaData.getEnvironment() );
}
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>