Added ProcessLauncher and implementation.

This commit is contained in:
Adam Murdoch
2013-02-20 07:20:09 +11:00
parent fc23941f5c
commit af375d6114
4 changed files with 118 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
/*
* Copyright 2012 Adam Murdoch
*
* 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 net.rubygrapefruit.platform.internal;
import net.rubygrapefruit.platform.NativeException;
import net.rubygrapefruit.platform.ProcessLauncher;
import java.io.IOException;
public class DefaultProcessLauncher implements ProcessLauncher {
private final Object startLock = new Object();
public Process start(ProcessBuilder processBuilder) throws NativeException {
try {
synchronized (startLock) {
// Start a single process at a time, to avoid streams to child process being inherited by other
// children before the parent
return processBuilder.start();
}
} catch (IOException e) {
throw new NativeException(String.format("Could not start '%s'", processBuilder.command().get(0)), e);
}
}
}

View File

@@ -131,6 +131,9 @@ public abstract class Platform {
if (type.equals(Process.class)) {
return type.cast(new WrapperProcess(new DefaultProcess()));
}
if (type.equals(ProcessLauncher.class)) {
return type.cast(new DefaultProcessLauncher());
}
if (type.equals(Terminals.class)) {
nativeLibraryLoader.load(getCursesLibraryName());
int nativeVersion = TerminfoFunctions.getVersion();