Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to catch CTRL+C in Clojure?

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.

like image 322
Jack Slingerland Avatar asked Jul 29 '12 13:07

Jack Slingerland


2 Answers

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...
like image 84
xiaowl Avatar answered Nov 18 '22 23:11

xiaowl


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

(import '(java.io File))
(doto (File/createTempFile "foo" nil nil) (.deleteOnExit))
like image 1
DanLebrero Avatar answered Nov 19 '22 01:11

DanLebrero