How to catch CTRL+C in Clojure?

2019-03-12 21:50发布

I have a simple single threaded Clojure program that creates a temp file for swapping data. When the program exits normally this file is deleted, however when the program is exited via Ctrl+C, Ctrl+D, or Ctrl+Z that bit of code never executes. I need it to execute regardles sof how the program exits. I know that I need to catch that signal (I've done this before in other languages), but I can't seem to figure out how to do it in Clojure.

2条回答
萌系小妹纸
2楼-- · 2019-03-12 22:08

Have a look at the deleteOnExit method in the java.io.File:

(import '(java.io File))
(doto (File/createTempFile "foo" nil nil) (.deleteOnExit))
查看更多
走好不送
3楼-- · 2019-03-12 22:16

I don't know if Clojure has wrapped method for that purpose. In java, you can use Runtime.addShutdownHook()

Registers a new virtual-machine shutdown hook.

The Java virtual machine shuts down in response to two kinds of events:

  • The program exits normally, when the last non-daemon thread exits or when the exit (equivalently, System.exit) method is invoked, or

  • The virtual machine is terminated in response to a user interrupt, such as typing ^C, or a system-wide event, such as user logoff or system shutdown.

Update

Here is a simple demo

(.addShutdownHook (Runtime/getRuntime) (Thread. (fn [] (println "Shutting down..."))))

user=> ;; Ctrl-C
Shutting down...
查看更多
登录 后发表回答