9

我正在编写一个需要使用 Apache Commons Exec 库的外部命令行应用程序的 Java 应用程序。我需要运行的应用程序的加载时间相当长,因此最好保持一个实例处于活动状态,而不是每次都创建一个新进程。应用程序的工作方式非常简单。一旦启动,它会等待一些新的输入并生成一些数据作为输出,这两者都使用应用程序的标准 I/O。

所以想法是执行 CommandLine,然后将 PumpStreamHandler 与三个单独的流(输出、错误和输入)一起使用,并使用这些流与应用程序交互。到目前为止,我已经在一个输入、一个输出然后应用程序关闭的基本场景中完成了这项工作。但是,一旦我尝试进行第二次交易,就会出现问题。

在创建了我的命令行之后,我创建了我的 Executor 并像这样启动它:

this.executor = new DefaultExecutor();

PipedOutputStream stdout = new PipedOutputStream();
PipedOutputStream stderr = new PipedOutputStream();
PipedInputStream stdin = new PipedInputStream();
PumpStreamHandler streamHandler = new PumpStreamHandler(stdout, stderr, stdin);

this.executor.setStreamHandler(streamHandler);

this.processOutput = new BufferedInputStream(new PipedInputStream(stdout));
this.processError = new BufferedInputStream(new PipedInputStream(stderr));
this.processInput = new BufferedOutputStream(new PipedOutputStream(stdin));

this.resultHandler = new DefaultExecuteResultHandler();
this.executor.execute(cmdLine, resultHandler);

然后我继续启动三个不同的线程,每个线程处理一个不同的流。我还有三个处理输入和输出的同步队列(一个用作输入流的输入,一个用于通知 outputQueue 新命令已启动,一个用于输出)。例如,输入流线程如下所示:

while (!killThreads) {
    String input = inputQueue.take();

    processInput.write(input.getBytes());
    processInput.flush();

    IOQueue.put(input);
}

如果我删除 while 循环并只执行一次,一切似乎都运行良好。显然,如果我再次尝试执行它,PumpStreamHandler 会抛出异常,因为它已被两个不同的线程访问。

这里的问题是,似乎 processInput 直到线程结束才真正刷新。调试时,命令行应用程序仅在线程结束时才真正接收其输入,但如果保留 while 循环,则永远不会收到它。我尝试了许多不同的方法来刷新 processInput,但似乎没有任何效果。

有没有人尝试过类似的事情?有什么我想念的吗?任何帮助将不胜感激!

4

3 回答 3

10

我最终想出了一种方法来完成这项工作。通过查看 Commons Exec 库的代码,我注意到 PumpStreamHandler 使用的 StreamPumpers 不会在每次有一些新数据传入时刷新。这就是为什么我只执行一次代码就可以工作的原因,因为它会自动刷新并关闭流。所以我创建了名为 AutoFlushingStreamPumper 和 AutoFlushingPumpStreamHandler 的类。后者与普通的 PumpStreamHandler 相同,但使用 AutoFlushingStreamPumpers 而不是通常的。AutoFlushingStreamPumper 与标准 StreamPumper 的功能相同,但每次向其写入内容时都会刷新其输出流。

我已经对其进行了相当广泛的测试,并且似乎运行良好。感谢所有试图解决这个问题的人!

于 2011-09-23T15:50:40.873 回答
2

为了我的目的,事实证明我只需要覆盖“ExecuteStreamHandler”。这是我的解决方案,它将标准错误捕获到 StringBuilder 中,并允许您将内容流式传输到标准输入并从标准输出接收内容:

class SendReceiveStreamHandler implements ExecuteStreamHandler

您可以在此处将整个课程视为 GitHub 上的要点。

于 2012-08-20T19:31:04.853 回答
1

为了能够在进程的 STDIN 中编写多个命令,我创建了一个新的

import java.io.BufferedWriter;
import java.io.File;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.util.Map;

import org.apache.commons.exec.CommandLine;
import org.apache.commons.exec.DefaultExecutor;
import org.apache.commons.lang3.CharEncoding;

public class ProcessExecutor extends DefaultExecutor {

    private BufferedWriter processStdinput;

    @Override
    protected Process launch(CommandLine command, Map env, File dir) throws IOException {
        Process process = super.launch(command, env, dir);
        processStdinput = new BufferedWriter(new OutputStreamWriter(process.getOutputStream(), CharEncoding.UTF_8));
        return process;
    }

    /**
     * Write a line in the stdin of the process.
     * 
     * @param line
     *            does not need to contain the carriage return character.
     * @throws IOException
     *             in case of error when writing.
     * @throws IllegalStateException
     *             if the process was not launched.
     */
    public void writeLine(String line) throws IOException {
        if (processStdinput != null) {
            processStdinput.write(line);
            processStdinput.newLine();
            processStdinput.flush();
        } else {
            throw new IllegalStateException();
        }
    }

}

为了使用这个新的 Executor,我将管道流保留在 PumpStreamHandler 中,以避免 STDIN 被 PumpStreamHandler 关闭。

ProcessExecutor executor = new ProcessExecutor();
executor.setExitValue(0);
executor.setWorkingDirectory(workingDirectory);
executor.setWatchdog(new ExecuteWatchdog(ExecuteWatchdog.INFINITE_TIMEOUT));
executor.setStreamHandler(new PumpStreamHandler(outHanlder, outHanlder, new PipedInputStream(new PipedOutputStream())));
executor.execute(commandLine, this);

您可以使用执行器 writeLine() 方法或创建自己的方法。

于 2014-05-20T18:44:11.570 回答