I have a program which takes a long time to complete. I would like it to be able to catch SIGINT (ctrl-c) and call the self.save_work() method.

As it stands, my signal_hander() does not work since self is not defined by the time the program reaches signal_handler().

How can I set it up so self.save_work gets called after a SIGINT?

#!/usr/bin/env python
import signal 

def signal_handler(signal, frame):    
    self.save_work()   # Does not work
    exit(1)
signal.signal(signal.SIGINT, signal_handler)

class Main(object):
    def do_stuff(self):
        ...
    def save_work(self):
        ...
    def __init__(self):
        self.do_stuff()
        self.save_work()

if __name__=='__main__':
    Main()
link|improve this question

1  
For one, you can't use "self" in a function. – jldupont Nov 4 '09 at 14:58
feedback

2 Answers

up vote 4 down vote accepted

If you just want to catch ctr+c then you can catch the KeyboardInterrupt exception:

class Main(object):
    def do_stuff(self):
        ...
    def save_work(self):
        ...
    def __init__(self):
        try:
            self.do_stuff()
        except KeyboardInterrupt:
            pass # Or print helpful info
        self.save_work()

Not that I think this is a good design after all. It looks like you need to be using a function instead of a constructor.

link|improve this answer
... assuming KeyboardInterrupt is thrown. I had occasions where it wasn't. Yet, sigint could be handled. Had to do with threads and blocking operations as far as I can remember. Unless I had borked my code somewhere else ;) – exhuma Nov 4 '09 at 15:09
@exhuma, the OP case seems simple enough. And yes I think I've encountered this behavior before with threads. – Nadia Alramli Nov 4 '09 at 15:13
Thank you. KeyboardInterrupt is what I was looking for. Sometimes I use a class just to simplify the passing around of parameters, without using globals. Is this considered bad design? – unutbu Nov 4 '09 at 15:28
@~unutbu, In your case it is confusing. Main() is supposed to be creating an object. Yet in your case it is running the whole application. If you want to simplify the arguments passing you could use class methods and class variables instead of constructors. – Nadia Alramli Nov 4 '09 at 15:35
Thanks again. Would it be consider acceptable if I changed __init__ to run and called Main().run()? – unutbu Nov 4 '09 at 15:51
show 1 more comment
feedback
def signal_handler(signal, frame):    
   #do some stuff

def main():
   #do some more stuff


if __name__=='__main__':
    signal.signal(signal.SIGINT, signal_handler)
    main()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.