瀏覽代碼

pgm: Attempt to detect a broken pipe and exit silently

When piping output to another program, the other pipe may exit
before we are done. An example is "jgit log|head". The result is
that errno get set to EPIPE. Unfortunately Java does not have
specific exception for this so we have to look at the exception
message and hope that the number of variants are small.

The detection here seem to work on Windows, Linux and OS X and it
seems the message is usually not localized.

Change-Id: Id6968ea7a53ae27ba5496303f1a479e41e41fdcc
tags/v2.3.0.201302130906
Robin Rosenberg 11 年之前
父節點
當前提交
9e36b173a5
共有 1 個檔案被更改,包括 12 行新增0 行删除
  1. 12
    0
      org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Main.java

+ 12
- 0
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Main.java 查看文件

@@ -124,6 +124,18 @@ public class Main {
err.printStackTrace();
System.exit(128);
} catch (Exception err) {
// Try to detect errno == EPIPE and exit normally if that happens
// There may be issues with operating system versions and locale,
// but we can probably assume that these messages will not be thrown
// under other circumstances.
if (err.getClass() == IOException.class) {
// Linux, OS X
if (err.getMessage().equals("Broken pipe")) //$NON-NLS-1$
System.exit(0);
// Windows
if (err.getMessage().equals("The pipe is being closed")) //$NON-NLS-1$
System.exit(0);
}
if (!showStackTrace && err.getCause() != null
&& err instanceof TransportException)
System.err.println(MessageFormat.format(CLIText.get().fatalError, err.getCause().getMessage()));

Loading…
取消
儲存