How to correctly read shutdown hook using Process in Java

I am facing an issue with writing a Java code that would launch another Unix process and print its outcome.
I have the positive route all done and working, but the issue happens when I terminate the Process, I do not get the output from the shutdown hook. I know for fact that the shutdown hook gets entered into, because of the side effect the hook has, such as creating a proof file.

Example:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>class JavaProgram1 {
public static void main(String[] args) {
registerShutdownHook(() -> {
writeTextFile("./shutdown", "ShutdownHook ran");
System.out.println("Hook shutdown");
});
System.out.println("Hello");
try { Thread.sleep(3600); } catch (InterruptedException e){}
System.out.println("Bye");
}
}
</code>
<code>class JavaProgram1 { public static void main(String[] args) { registerShutdownHook(() -> { writeTextFile("./shutdown", "ShutdownHook ran"); System.out.println("Hook shutdown"); }); System.out.println("Hello"); try { Thread.sleep(3600); } catch (InterruptedException e){} System.out.println("Bye"); } } </code>
class JavaProgram1 {
  public static void main(String[] args) {
    registerShutdownHook(() -> {
      writeTextFile("./shutdown", "ShutdownHook ran");
      System.out.println("Hook shutdown");
    });

    System.out.println("Hello");
    try { Thread.sleep(3600); } catch (InterruptedException e){}
    System.out.println("Bye");
  }
}

the snippet above (with properly implemented methods, of course) works exactly as intended if I run it from cmd line using Java (Or IDEA IDE for that matter).

I am working with Java 11 on RedHat Linux.

The issue begins when I want to launch this program from another Java program similar to this:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>class JavaLauncher {
public static void main(String[] args){
Process process = startProcessThroughProcessBuilder("JavaProgram1");
Thread readingThread = readOutput(process);
process.destroy();
process.waitFor();
readingThread.join()
}
public void readOutput(Process process){
BufferedReader processOutput = new BufferedReader(new InputStreamReader(process.getInputStream()));
Thread readingThread = new Thread(() -> {
try{
String line;
while (line = processOutput.readLine() != null) {
logger.debug(line)
}
logger.info("IO finished");
} catch (IOException e) {
logger.warn("IO Interrupted: "+e)
}
})
}
}
</code>
<code>class JavaLauncher { public static void main(String[] args){ Process process = startProcessThroughProcessBuilder("JavaProgram1"); Thread readingThread = readOutput(process); process.destroy(); process.waitFor(); readingThread.join() } public void readOutput(Process process){ BufferedReader processOutput = new BufferedReader(new InputStreamReader(process.getInputStream())); Thread readingThread = new Thread(() -> { try{ String line; while (line = processOutput.readLine() != null) { logger.debug(line) } logger.info("IO finished"); } catch (IOException e) { logger.warn("IO Interrupted: "+e) } }) } } </code>
class JavaLauncher {
  public static void main(String[] args){
    Process process = startProcessThroughProcessBuilder("JavaProgram1");
    Thread readingThread = readOutput(process);
    process.destroy();
    process.waitFor();
    readingThread.join()
  }

  public void readOutput(Process process){
    BufferedReader processOutput = new BufferedReader(new InputStreamReader(process.getInputStream()));
    Thread readingThread = new Thread(() -> {
      try{
        String line;
        while (line = processOutput.readLine() != null) {
          logger.debug(line)
        }
        logger.info("IO finished");
      } catch (IOException e) {
        logger.warn("IO Interrupted: "+e)
      }
    })
  }
}

I am not seeing the results I expect.

Basically what it boils down to is when I call a Destroy() on the Process, the reading thread gets IOException thrown, but I would expect that since the Process terminates through shutdown hook and is not killed, it will close its streams, signalling EOF, and the reading thread should cleanly exit the while loop.

Instead, I get a IOException thrown with “Stream closed” message.

The reading thread will not even print the “Hook Shutdown” message, indicating that the streams close before I attempt to write that message in the Hook.

If I modify the code in a way that the shutdown hook does not contain any output, the IOException is NOT thrown, which leads me to the thought that the streams are getting closed prematurely.

Can you give me any pointers as to what might be happening and how do I solve the issue?

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật