com.cedarsoft.execution.Executor Maven / Gradle / Ivy
/**
* Copyright (C) cedarsoft GmbH.
*
* Licensed under the GNU General Public License version 3 (the "License")
* with Classpath Exception; you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.cedarsoft.org/gpl3ce
* (GPL 3 with Classpath Exception)
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3 only, as
* published by the Free Software Foundation. cedarsoft GmbH designates this
* particular file as subject to the "Classpath" exception as provided
* by cedarsoft GmbH in the LICENSE file that accompanied this code.
*
* This code 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 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 General Public License version
* 3 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact cedarsoft GmbH, 72810 Gomaringen, Germany,
* or visit www.cedarsoft.com if you need additional information or
* have any questions.
*/
package com.cedarsoft.execution;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.io.IOException;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.List;
/**
* Executes a process and notifies execution listeners whenever the process has finished
*
* @author Johannes Schneider ([email protected])
*/
@SuppressWarnings( {"UseOfProcessBuilder"} )
public class Executor {
@Nonnull
private final List executionListeners = new ArrayList();
@Nonnull
private final ProcessBuilder processBuilder;
@Nonnull
private OutputStream targetOut;
@Nonnull
private OutputStream targetErr;
/**
* Constructor for Executor.
*
* @param processBuilder a ProcessBuilder object.
*/
@Deprecated
public Executor( @Nonnull ProcessBuilder processBuilder ) {
this( processBuilder, System.out, System.err );
}
/**
* Constructor for Executor.
*
* @param processBuilder a ProcessBuilder object.
* @param redirectStreams a boolean.
*/
@Deprecated
public Executor( @Nonnull ProcessBuilder processBuilder, boolean redirectStreams ) {
this( processBuilder, System.out, System.err );
}
public Executor( @Nonnull ProcessBuilder processBuilder, @Nonnull OutputStream targetOut, @Nonnull OutputStream targetErr ) {
this.processBuilder = processBuilder;
this.targetOut = targetOut;
this.targetErr = targetErr;
}
/**
* execute
*
* @return a int.
*
* @throws IOException if any.
* @throws InterruptedException if any.
*/
public int execute() throws IOException, InterruptedException {
Process process = processBuilder.start();
Thread[] threads = redirectStreams( process );
notifyExecutionStarted( process );
int answer = process.waitFor();
//Wait for the redirecting threads
for ( Thread thread : threads ) {
thread.join();
}
notifyExecutionFinished( answer );
return answer;
}
/**
* redirectStreams
*
* @param process a Process object.
* @return the redirecting threads (or an empty array)
*/
@Nonnull
protected Thread[] redirectStreams( @Nonnull Process process ) {
return OutputRedirector.redirect( process, targetOut, targetErr );
}
/**
* executeAsync
*
* @return the thread
*/
@Nonnull
public Thread executeAsync() {
Thread thread = new Thread( new Runnable() {
@Override
public void run() {
try {
execute();
} catch ( Exception e ) {
throw new RuntimeException( e );
}
}
} );
thread.start();
return thread;
}
private void notifyExecutionFinished( int answer ) {
for ( ExecutionListener executionListener : executionListeners ) {
executionListener.executionFinished( answer );
}
}
private void notifyExecutionStarted( @Nonnull Process process ) {
for ( ExecutionListener executionListener : executionListeners ) {
executionListener.executionStarted( process );
}
}
/**
* addExecutionListener
*
* @param executionListener a ExecutionListener object.
*/
public void addExecutionListener( @Nonnull ExecutionListener executionListener ) {
this.executionListeners.add( executionListener );
}
/**
* removeExecutionListener
*
* @param executionListener a ExecutionListener object.
*/
public void removeExecutionListener( @Nonnull ExecutionListener executionListener ) {
this.executionListeners.remove( executionListener );
}
/**
* isRedirectStreams
*
* @return a boolean.
*/
@Deprecated
public boolean isRedirectStreams() {
return true;
}
@Nonnull
public OutputStream getTargetOut() {
return targetOut;
}
@Nonnull
public OutputStream getTargetErr() {
return targetErr;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy