]> git.llucax.com Git - software/pymin.git/blob - pymin/pymindaemon.py
Merge or3st3s@azazel:/home/luca/repos/pymin
[software/pymin.git] / pymin / pymindaemon.py
1 # vim: set encoding=utf-8 et sw=4 sts=4 :
2
3 r"""
4 Python Administration Daemon.
5
6 Python Administration Daemon is an modular, extensible administration tool
7 to administrate a set of services remotely (or localy) throw a simple
8 command-line.
9 """
10
11 import signal
12 import socket
13
14 from pymin.dispatcher import handler
15 from pymin import dispatcher
16 from pymin import eventloop
17 from pymin import serializer
18
19 class PyminDaemon(eventloop.EventLoop):
20     r"""PyminDaemon(root, bind_addr) -> PyminDaemon instance
21
22     This class is well suited to run as a single process. It handles
23     signals for controlled termination (SIGINT and SIGTERM), as well as
24     a user signal to reload the configuration files (SIGUSR1).
25
26     root - the root handler. This is passed directly to the Dispatcher.
27
28     bind_addr - is a tuple of (ip, port) where to bind the UDP socket to.
29
30     Here is a simple usage example:
31
32     >>> from pymin import dispatcher
33     >>> class Root(dispatcher.Handler):
34             @handler('Test command.')
35             def test(self, *args):
36                 print 'test:', args
37     >>> PyminDaemon(Root(), ('', 9999)).run()
38     """
39
40     def __init__(self, root, bind_addr=('', 9999)):
41         r"""Initialize the PyminDaemon object.
42
43         See PyminDaemon class documentation for more info.
44         """
45         # Create and bind socket
46         sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
47         sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
48         sock.bind(bind_addr)
49         # Create EventLoop
50         eventloop.EventLoop.__init__(self, sock)
51         # Create Dispatcher
52         #TODO root.pymin = PyminHandler()
53         self.dispatcher = dispatcher.Dispatcher(root)
54         # Signal handling
55         def quit(signum, frame):
56             print "Shuting down ..."
57             self.stop() # tell main event loop to stop
58         def reload_config(signum, frame):
59             print "Reloading configuration..."
60             # TODO iterate handlers list propagating reload action
61         signal.signal(signal.SIGINT, quit)
62         signal.signal(signal.SIGTERM, quit)
63         signal.signal(signal.SIGUSR1, reload_config)
64
65     def handle(self):
66         r"handle() -> None :: Handle incoming events using the dispatcher."
67         (msg, addr) = self.file.recvfrom(65535)
68         try:
69             result = self.dispatcher.dispatch(unicode(msg, 'utf-8'))
70             if result is not None:
71                 result = serializer.serialize(result)
72             response = u'OK '
73         except dispatcher.Error, e:
74             result = unicode(e) + u'\n'
75             response = u'ERROR '
76         except Exception, e:
77             import traceback
78             result = u'Internal server error\n'
79             traceback.print_exc() # TODO logging!
80             response = u'ERROR '
81         if result is None:
82             response += u'0\n'
83         else:
84             response += u'%d\n%s' % (len(result), result)
85         self.file.sendto(response.encode('utf-8'), addr)
86
87     def run(self):
88         r"run() -> None :: Run the event loop (shortcut to loop())"
89         try:
90             return self.loop()
91         except eventloop.LoopInterruptedError, e:
92             pass
93
94 if __name__ == '__main__':
95
96     class Root(dispatcher.Handler):
97         @handler(u"Print all the arguments, return nothing.")
98         def test(self, *args):
99             print 'test:', args
100         @handler(u"Echo the message passed as argument.")
101         def echo(self, message):
102             print 'echo:', message
103             return message
104
105     PyminDaemon(Root()).run()
106