X-Git-Url: https://git.llucax.com/software/pymin.git/blobdiff_plain/ac5053f5816193893e962448544daab87a975df2..fbb90886873a6430d44ba2c9e1cfc8ab9d7f14c4:/pymindaemon.py diff --git a/pymindaemon.py b/pymindaemon.py index b7c64e4..1ddef6c 100644 --- a/pymindaemon.py +++ b/pymindaemon.py @@ -47,7 +47,7 @@ class PyminDaemon(EventLoop): # Signal handling def quit(signum, frame): print "Shuting down ..." - loop.stop() # tell main event loop to stop + self.stop() # tell main event loop to stop def reload_config(signum, frame): print "Reloading configuration..." # TODO iterate handlers list propagating reload action @@ -58,7 +58,12 @@ class PyminDaemon(EventLoop): def handle(self): r"handle() -> None :: Handle incoming events using the dispatcher." (msg, addr) = self.file.recvfrom(65535) - self.dispatcher.dispatch(msg) + result = self.dispatcher.dispatch(msg) + if result is None: + msg = 'OK 0' + else: + msg = 'OK %d\n%s' % (len(str(result)), result) + self.file.sendto(msg, addr) #try: # d.dispatch(msg) #except dis.BadRouteError, inst: @@ -75,6 +80,7 @@ class PyminDaemon(EventLoop): if __name__ == '__main__': + @handler def test_handler(*args): print 'test:', args