org.ops4j.exec.DefaultJavaRunner Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2008 Alin Dreghiciu.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied.
*
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.ops4j.exec;
import java.io.File;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Default Java Runner.
*
* @author Alin Dreghiciu ([email protected])
* @author Harald Wellmann
* @since 0.6.1, December 09, 2008
*/
public class DefaultJavaRunner
implements StoppableJavaRunner, ProcessProvider
{
/**
* Logger.
*/
private static final Logger LOG = LoggerFactory.getLogger( DefaultJavaRunner.class );
/**
* If the execution should wait for platform shutdown.
*/
private final boolean m_wait;
/**
* Framework process.
*/
private Process m_frameworkProcess;
/**
* Shutdown hook.
*/
private Thread m_shutdownHook;
/**
* Constructor.
*/
public DefaultJavaRunner()
{
this( true );
}
/**
* Constructor.
*
* @param wait should wait for framework exis
*/
public DefaultJavaRunner( boolean wait )
{
m_wait = wait;
}
public synchronized void exec( final String[] vmOptions,
final String[] classpath,
final String mainClass,
final String[] programOptions,
final String javaHome,
final File workingDirectory )
throws ExecutionException
{
exec( vmOptions,classpath,mainClass,programOptions,javaHome,workingDirectory,new String [0] );
}
/**
* {@inheritDoc}
*/
public synchronized void exec( final String[] vmOptions,
final String[] classpath,
final String mainClass,
final String[] programOptions,
final String javaHome,
final File workingDirectory,
final String[] envOptions )
throws ExecutionException
{
if( m_frameworkProcess != null )
{
throw new ExecutionException( "Platform already started" );
}
String cp = String.join(File.pathSeparator, classpath);
final CommandLineBuilder commandLine = new CommandLineBuilder()
.append( getJavaExecutable( javaHome ) )
.append( vmOptions )
.append( "-cp" )
.append( cp )
.append( mainClass )
.append( programOptions );
LOG.debug( "Start command line [" + Arrays.toString( commandLine.toArray() ) + "]" );
try
{
LOG.debug( "Starting platform process." );
ProcessBuilder pb = new ProcessBuilder(commandLine.toArray())
.directory(workingDirectory)
.inheritIO();
setEnv(envOptions, pb);
m_frameworkProcess = pb.start();
}
catch( IOException e )
{
throw new ExecutionException( "Could not start up the process", e );
}
m_shutdownHook = createShutdownHook( m_frameworkProcess );
Runtime.getRuntime().addShutdownHook( m_shutdownHook );
LOG.debug( "Added shutdown hook." );
LOG.info( "DefaultJavaRunner completed successfully" );
if( m_wait )
{
waitForExit();
}
else
{
System.out.println();
}
}
private void setEnv(final String[] envOptions, ProcessBuilder pb) {
HashSet envSet = new HashSet(Arrays.asList(envOptions));
Map env = pb.environment();
HashSet toRemove = new HashSet(env.keySet());
toRemove.removeAll(envSet);
for (String key : toRemove) {
env.remove(key);
}
}
/**
* {@inheritDoc}
*/
public void shutdown()
{
try {
if (m_shutdownHook != null) {
synchronized (m_shutdownHook) {
if (m_shutdownHook != null) {
LOG.debug("Shutdown in progress...");
Runtime.getRuntime().removeShutdownHook( m_shutdownHook );
m_frameworkProcess = null;
m_shutdownHook.run();
m_shutdownHook = null;
LOG.info( "Platform has been shutdown." );
}
}
}
}
catch( IllegalStateException ignore )
{
// just ignore
}
}
/**
* Wait till the framework process exits.
*/
public void waitForExit()
{
synchronized (m_frameworkProcess) {
try
{
LOG.debug( "Waiting for framework exit." );
System.out.println();
m_frameworkProcess.waitFor();
shutdown();
}
catch( Throwable e )
{
LOG.debug( "Early shutdown.", e );
shutdown();
}
}
}
/**
* Create helper thread to safely shutdown the external framework process
*
* @param process framework process
*
* @return stream handler
*/
private Thread createShutdownHook( final Process process )
{
LOG.debug( "Wrapping stream I/O." );
return new Thread(
new Runnable()
{
public void run()
{
try
{
process.destroy();
}
catch( Exception e )
{
// ignore if already shutting down
}
}
},
"DefaultJavaRunner shutdown hook"
);
}
/**
* Return path to java executable.
*
* @param javaHome java home directory
*
* @return path to java executable
*
* @throws ExecutionException if java home could not be located
*/
static String getJavaExecutable( final String javaHome )
throws ExecutionException
{
if( javaHome == null )
{
throw new ExecutionException( "JAVA_HOME is not set." );
}
return javaHome + "/bin/java";
}
@Override
public Process getProcess() {
return m_frameworkProcess;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy