2 # -*- coding: utf-8 -*-
4 # proxy.py — helper for Python-based external (xml-rpc) ikiwiki plugins
6 # Copyright © martin f. krafft <madduck@madduck.net>
7 # Released under the terms of the GNU GPL version 2
10 __description__ = 'helper for Python-based external (xml-rpc) ikiwiki plugins'
12 __author__ = 'martin f. krafft <madduck@madduck.net>'
13 __copyright__ = 'Copyright © ' + __author__
21 import xml.parsers.expat
22 from SimpleXMLRPCServer import SimpleXMLRPCDispatcher
24 class _IkiWikiExtPluginXMLRPCDispatcher(SimpleXMLRPCDispatcher):
26 def __init__(self, allow_none=False, encoding=None):
28 SimpleXMLRPCDispatcher.__init__(self, allow_none, encoding)
30 # see http://bugs.debian.org/470645
31 # python2.4 and before only took one argument
32 SimpleXMLRPCDispatcher.__init__(self)
34 class _XMLStreamParser(object):
37 self._parser = xml.parsers.expat.ParserCreate()
38 self._parser.StartElementHandler = self._push_tag
39 self._parser.EndElementHandler = self._pop_tag
40 self._parser.XmlDeclHandler = self._check_pipelining
46 self._first_tag_received = False
48 def _push_tag(self, tag, attrs):
49 self._stack.append(tag)
50 self._first_tag_received = True
52 def _pop_tag(self, tag):
53 top = self._stack.pop()
55 raise ParseError, 'expected %s closing tag, got %s' % (top, tag)
57 def _request_complete(self):
58 return self._first_tag_received and len(self._stack) == 0
60 def _check_pipelining(self, *args):
61 if self._first_tag_received:
62 raise PipeliningDetected, 'need a new line between XML documents'
64 def parse(self, data):
65 self._parser.Parse(data, False)
67 if self._request_complete():
72 class ParseError(Exception):
75 class PipeliningDetected(Exception):
78 class _IkiWikiExtPluginXMLRPCHandler(object):
80 def __init__(self, debug_fn, allow_none=False, encoding=None):
81 self._dispatcher = _IkiWikiExtPluginXMLRPCDispatcher(allow_none, encoding)
82 self.register_function = self._dispatcher.register_function
83 self._debug_fn = debug_fn
85 def register_function(self, function, name=None):
86 # will be overwritten by __init__
90 def _write(out_fd, data):
97 parser = _XMLStreamParser()
99 line = in_fd.readline()
101 # ikiwiki exited, EOF received
104 ret = parser.parse(line)
105 # unless this returns non-None, we need to loop again
109 def send_rpc(self, cmd, in_fd, out_fd, **kwargs):
110 xml = xmlrpclib.dumps(sum(kwargs.iteritems(), ()), cmd)
111 self._debug_fn('sending xml to ikiwiki to call procedure %s: [%s]' % (cmd, xml))
112 _IkiWikiExtPluginXMLRPCHandler._write(out_fd, xml)
114 self._debug_fn('reading response from ikiwiki...')
116 xml = _IkiWikiExtPluginXMLRPCHandler._read(in_fd)
117 self._debug_fn('read response to procedure %s from ikiwiki: [%s]' % (cmd, xml))
119 # ikiwiki is going down
122 data = xmlrpclib.loads(xml)[0]
123 self._debug_fn('parsed data from response to procedure %s: [%s]' % (cmd, data))
126 def handle_rpc(self, in_fd, out_fd):
127 self._debug_fn('waiting for procedure calls from ikiwiki...')
128 ret = _IkiWikiExtPluginXMLRPCHandler._read(in_fd)
130 # ikiwiki is going down
131 self._debug_fn('ikiwiki is going down, and so are we...')
134 self._debug_fn('received procedure call from ikiwiki: [%s]' % ret)
135 ret = self._dispatcher._marshaled_dispatch(ret)
136 self._debug_fn('sending procedure response to ikiwiki: [%s]' % ret)
137 _IkiWikiExtPluginXMLRPCHandler._write(out_fd, ret)
140 class IkiWikiProcedureProxy(object):
142 def __init__(self, id, in_fd=sys.stdin, out_fd=sys.stdout, debug_fn=None):
145 self._out_fd = out_fd
147 if debug_fn is not None:
148 self._debug_fn = debug_fn
150 self._debug_fn = lambda s: None
151 self._xmlrpc_handler = _IkiWikiExtPluginXMLRPCHandler(self._debug_fn)
152 self._xmlrpc_handler.register_function(self._importme, name='import')
154 def register_hook(self, type, function):
155 self._hooks.append((type, function.__name__))
156 self._xmlrpc_handler.register_function(function)
159 self._debug_fn('importing...')
160 for type, function in self._hooks:
161 self._debug_fn('hooking %s into %s chain...' % (function, type))
162 self._xmlrpc_handler.send_rpc('hook', self._in_fd, self._out_fd,
163 id=self._id, type=type, call=function)
169 ret = self._xmlrpc_handler.handle_rpc(self._in_fd, self._out_fd)
172 time.sleep(LOOP_DELAY)
174 self._debug_fn('uncaught exception: %s' % e)
175 sys.exit(posix.EX_SOFTWARE)