2018-02-28 11:18:30 +01:00
|
|
|
#!/usr/bin/env python3
|
2008-03-15 13:52:27 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2008-03-15 14:06:01 +01:00
|
|
|
# proxy.py — helper for Python-based external (xml-rpc) ikiwiki plugins
|
2008-03-15 13:52:27 +01:00
|
|
|
#
|
2012-09-28 08:20:05 +02:00
|
|
|
# Copyright © 2008 martin f. krafft <madduck@madduck.net>
|
|
|
|
# 2008-2011 Joey Hess <joey@kitenet.net>
|
|
|
|
# 2012 W. Trevor King <wking@tremily.us>
|
|
|
|
#
|
2011-05-19 20:37:16 +02:00
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# .
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY IKIWIKI AND CONTRIBUTORS ``AS IS''
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
|
|
|
# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION
|
|
|
|
# OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
|
|
|
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
# SUCH DAMAGE.
|
2012-09-28 08:20:05 +02:00
|
|
|
#
|
2008-03-15 14:06:01 +01:00
|
|
|
__name__ = 'proxy.py'
|
|
|
|
__description__ = 'helper for Python-based external (xml-rpc) ikiwiki plugins'
|
2012-09-28 08:20:26 +02:00
|
|
|
__version__ = '0.2'
|
2008-03-15 13:52:27 +01:00
|
|
|
__author__ = 'martin f. krafft <madduck@madduck.net>'
|
|
|
|
__copyright__ = 'Copyright © ' + __author__
|
2011-05-19 20:37:16 +02:00
|
|
|
__licence__ = 'BSD-2-clause'
|
2008-03-15 13:52:27 +01:00
|
|
|
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
import xml.parsers.expat
|
2012-09-28 08:35:15 +02:00
|
|
|
try: # Python 3
|
|
|
|
import xmlrpc.client as _xmlrpc_client
|
|
|
|
except ImportError: # Python 2
|
|
|
|
import xmlrpclib as _xmlrpc_client
|
2012-09-28 08:39:02 +02:00
|
|
|
try: # Python 3
|
|
|
|
import xmlrpc.server as _xmlrpc_server
|
|
|
|
except ImportError: # Python 2
|
|
|
|
import SimpleXMLRPCServer as _xmlrpc_server
|
2008-03-15 13:52:27 +01:00
|
|
|
|
2012-09-28 08:30:14 +02:00
|
|
|
|
|
|
|
class ParseError (Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class PipeliningDetected (Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class GoingDown (Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class InvalidReturnValue (Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class AlreadyImported (Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2012-09-28 08:39:02 +02:00
|
|
|
class _IkiWikiExtPluginXMLRPCDispatcher(_xmlrpc_server.SimpleXMLRPCDispatcher):
|
2008-03-15 13:52:27 +01:00
|
|
|
|
|
|
|
def __init__(self, allow_none=False, encoding=None):
|
|
|
|
try:
|
2012-09-28 08:39:02 +02:00
|
|
|
_xmlrpc_server.SimpleXMLRPCDispatcher.__init__(
|
|
|
|
self, allow_none, encoding)
|
2008-03-15 13:52:27 +01:00
|
|
|
except TypeError:
|
|
|
|
# see http://bugs.debian.org/470645
|
|
|
|
# python2.4 and before only took one argument
|
2012-09-28 08:39:02 +02:00
|
|
|
_xmlrpc_server.SimpleXMLRPCDispatcher.__init__(self)
|
2008-03-15 13:52:27 +01:00
|
|
|
|
2008-03-21 19:12:12 +01:00
|
|
|
def dispatch(self, method, params):
|
|
|
|
return self._dispatch(method, params)
|
|
|
|
|
2012-09-28 08:30:14 +02:00
|
|
|
|
2008-03-21 23:17:37 +01:00
|
|
|
class XMLStreamParser(object):
|
2008-03-15 13:52:27 +01:00
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self._parser = xml.parsers.expat.ParserCreate()
|
|
|
|
self._parser.StartElementHandler = self._push_tag
|
|
|
|
self._parser.EndElementHandler = self._pop_tag
|
|
|
|
self._parser.XmlDeclHandler = self._check_pipelining
|
|
|
|
self._reset()
|
|
|
|
|
|
|
|
def _reset(self):
|
|
|
|
self._stack = list()
|
|
|
|
self._acc = r''
|
|
|
|
self._first_tag_received = False
|
|
|
|
|
|
|
|
def _push_tag(self, tag, attrs):
|
|
|
|
self._stack.append(tag)
|
|
|
|
self._first_tag_received = True
|
|
|
|
|
|
|
|
def _pop_tag(self, tag):
|
|
|
|
top = self._stack.pop()
|
|
|
|
if top != tag:
|
2012-09-28 08:30:14 +02:00
|
|
|
raise ParseError(
|
2012-10-10 14:07:33 +02:00
|
|
|
'expected {0} closing tag, got {1}'.format(top, tag))
|
2008-03-15 13:52:27 +01:00
|
|
|
|
|
|
|
def _request_complete(self):
|
|
|
|
return self._first_tag_received and len(self._stack) == 0
|
|
|
|
|
|
|
|
def _check_pipelining(self, *args):
|
|
|
|
if self._first_tag_received:
|
2012-09-28 08:30:14 +02:00
|
|
|
raise PipeliningDetected('need a new line between XML documents')
|
2008-03-15 13:52:27 +01:00
|
|
|
|
|
|
|
def parse(self, data):
|
|
|
|
self._parser.Parse(data, False)
|
|
|
|
self._acc += data
|
|
|
|
if self._request_complete():
|
|
|
|
ret = self._acc
|
|
|
|
self._reset()
|
|
|
|
return ret
|
|
|
|
|
|
|
|
|
|
|
|
class _IkiWikiExtPluginXMLRPCHandler(object):
|
|
|
|
|
2008-03-21 19:12:12 +01:00
|
|
|
def __init__(self, debug_fn):
|
|
|
|
self._dispatcher = _IkiWikiExtPluginXMLRPCDispatcher()
|
2008-03-15 13:52:27 +01:00
|
|
|
self.register_function = self._dispatcher.register_function
|
|
|
|
self._debug_fn = debug_fn
|
|
|
|
|
|
|
|
def register_function(self, function, name=None):
|
|
|
|
# will be overwritten by __init__
|
|
|
|
pass
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _write(out_fd, data):
|
2008-03-16 12:03:52 +01:00
|
|
|
out_fd.write(str(data))
|
2008-03-15 13:52:27 +01:00
|
|
|
out_fd.flush()
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _read(in_fd):
|
|
|
|
ret = None
|
2008-03-21 23:17:37 +01:00
|
|
|
parser = XMLStreamParser()
|
2008-03-15 13:52:27 +01:00
|
|
|
while True:
|
|
|
|
line = in_fd.readline()
|
|
|
|
if len(line) == 0:
|
|
|
|
# ikiwiki exited, EOF received
|
|
|
|
return None
|
|
|
|
|
|
|
|
ret = parser.parse(line)
|
|
|
|
# unless this returns non-None, we need to loop again
|
|
|
|
if ret is not None:
|
|
|
|
return ret
|
|
|
|
|
2008-03-21 19:12:15 +01:00
|
|
|
def send_rpc(self, cmd, in_fd, out_fd, *args, **kwargs):
|
2012-09-29 13:18:20 +02:00
|
|
|
xml = _xmlrpc_client.dumps(sum(kwargs.items(), args), cmd)
|
2012-10-10 14:07:33 +02:00
|
|
|
self._debug_fn(
|
2014-03-12 11:11:14 +01:00
|
|
|
"calling ikiwiki procedure `{0}': [{1}]".format(cmd, repr(xml)))
|
2014-09-04 12:42:05 +02:00
|
|
|
# ensure that encoded is a str (bytestring in Python 2, Unicode in 3)
|
|
|
|
if str is bytes and not isinstance(xml, str):
|
2014-03-12 11:11:14 +01:00
|
|
|
encoded = xml.encode('utf8')
|
|
|
|
else:
|
|
|
|
encoded = xml
|
|
|
|
_IkiWikiExtPluginXMLRPCHandler._write(out_fd, encoded)
|
2008-03-15 13:52:27 +01:00
|
|
|
|
|
|
|
self._debug_fn('reading response from ikiwiki...')
|
|
|
|
|
2014-03-12 11:11:14 +01:00
|
|
|
response = _IkiWikiExtPluginXMLRPCHandler._read(in_fd)
|
2014-09-04 12:42:05 +02:00
|
|
|
if str is bytes and not isinstance(response, str):
|
2014-03-12 11:11:14 +01:00
|
|
|
xml = response.encode('utf8')
|
|
|
|
else:
|
|
|
|
xml = response
|
2012-09-28 08:30:14 +02:00
|
|
|
self._debug_fn(
|
2012-10-10 14:07:33 +02:00
|
|
|
'read response to procedure {0} from ikiwiki: [{1}]'.format(
|
2014-03-12 11:11:14 +01:00
|
|
|
cmd, repr(xml)))
|
2008-03-15 13:52:27 +01:00
|
|
|
if xml is None:
|
|
|
|
# ikiwiki is going down
|
2008-03-21 23:17:38 +01:00
|
|
|
self._debug_fn('ikiwiki is going down, and so are we...')
|
2012-09-28 08:30:14 +02:00
|
|
|
raise GoingDown()
|
2008-03-15 13:52:27 +01:00
|
|
|
|
2012-09-28 08:35:15 +02:00
|
|
|
data = _xmlrpc_client.loads(xml)[0][0]
|
2012-09-28 08:30:14 +02:00
|
|
|
self._debug_fn(
|
2012-10-10 14:07:33 +02:00
|
|
|
'parsed data from response to procedure {0}: [{1}]'.format(
|
2013-07-11 00:00:53 +02:00
|
|
|
cmd, repr(data)))
|
2008-03-15 13:52:27 +01:00
|
|
|
return data
|
|
|
|
|
|
|
|
def handle_rpc(self, in_fd, out_fd):
|
|
|
|
self._debug_fn('waiting for procedure calls from ikiwiki...')
|
2008-03-21 19:12:12 +01:00
|
|
|
xml = _IkiWikiExtPluginXMLRPCHandler._read(in_fd)
|
|
|
|
if xml is None:
|
2008-03-15 13:52:27 +01:00
|
|
|
# ikiwiki is going down
|
|
|
|
self._debug_fn('ikiwiki is going down, and so are we...')
|
2012-09-28 08:30:14 +02:00
|
|
|
raise GoingDown()
|
2008-03-15 13:52:27 +01:00
|
|
|
|
2012-09-28 08:30:14 +02:00
|
|
|
self._debug_fn(
|
2012-10-10 14:07:33 +02:00
|
|
|
'received procedure call from ikiwiki: [{0}]'.format(xml))
|
2012-09-28 08:35:15 +02:00
|
|
|
params, method = _xmlrpc_client.loads(xml)
|
2008-03-21 19:12:12 +01:00
|
|
|
ret = self._dispatcher.dispatch(method, params)
|
2012-09-28 08:35:15 +02:00
|
|
|
xml = _xmlrpc_client.dumps((ret,), methodresponse=True)
|
2012-09-28 08:30:14 +02:00
|
|
|
self._debug_fn(
|
2012-10-10 14:07:33 +02:00
|
|
|
'sending procedure response to ikiwiki: [{0}]'.format(xml))
|
2008-03-21 19:12:12 +01:00
|
|
|
_IkiWikiExtPluginXMLRPCHandler._write(out_fd, xml)
|
2008-03-15 13:52:27 +01:00
|
|
|
return ret
|
|
|
|
|
2008-03-21 23:17:38 +01:00
|
|
|
|
2008-03-15 13:52:27 +01:00
|
|
|
class IkiWikiProcedureProxy(object):
|
|
|
|
|
2008-03-21 19:12:12 +01:00
|
|
|
# how to communicate None to ikiwiki
|
|
|
|
_IKIWIKI_NIL_SENTINEL = {'null':''}
|
|
|
|
|
|
|
|
# sleep during each iteration
|
|
|
|
_LOOP_DELAY = 0.1
|
|
|
|
|
2008-03-15 13:52:27 +01:00
|
|
|
def __init__(self, id, in_fd=sys.stdin, out_fd=sys.stdout, debug_fn=None):
|
|
|
|
self._id = id
|
|
|
|
self._in_fd = in_fd
|
|
|
|
self._out_fd = out_fd
|
|
|
|
self._hooks = list()
|
2008-03-21 19:12:15 +01:00
|
|
|
self._functions = list()
|
|
|
|
self._imported = False
|
2008-03-15 13:52:27 +01:00
|
|
|
if debug_fn is not None:
|
|
|
|
self._debug_fn = debug_fn
|
|
|
|
else:
|
|
|
|
self._debug_fn = lambda s: None
|
|
|
|
self._xmlrpc_handler = _IkiWikiExtPluginXMLRPCHandler(self._debug_fn)
|
|
|
|
self._xmlrpc_handler.register_function(self._importme, name='import')
|
|
|
|
|
2008-03-21 19:12:15 +01:00
|
|
|
def rpc(self, cmd, *args, **kwargs):
|
|
|
|
def subst_none(seq):
|
|
|
|
for i in seq:
|
|
|
|
if i is None:
|
|
|
|
yield IkiWikiProcedureProxy._IKIWIKI_NIL_SENTINEL
|
|
|
|
else:
|
|
|
|
yield i
|
|
|
|
|
|
|
|
args = list(subst_none(args))
|
2012-09-29 13:18:20 +02:00
|
|
|
kwargs = dict(zip(kwargs.keys(), list(subst_none(kwargs.values()))))
|
2008-03-21 19:12:15 +01:00
|
|
|
ret = self._xmlrpc_handler.send_rpc(cmd, self._in_fd, self._out_fd,
|
|
|
|
*args, **kwargs)
|
|
|
|
if ret == IkiWikiProcedureProxy._IKIWIKI_NIL_SENTINEL:
|
|
|
|
ret = None
|
|
|
|
return ret
|
|
|
|
|
2008-03-21 19:12:16 +01:00
|
|
|
def hook(self, type, function, name=None, id=None, last=False):
|
2008-03-21 19:12:15 +01:00
|
|
|
if self._imported:
|
2012-09-28 08:30:14 +02:00
|
|
|
raise AlreadyImported()
|
2008-03-21 19:12:15 +01:00
|
|
|
|
2008-03-21 19:12:12 +01:00
|
|
|
if name is None:
|
|
|
|
name = function.__name__
|
|
|
|
|
2008-03-21 19:12:16 +01:00
|
|
|
if id is None:
|
|
|
|
id = self._id
|
|
|
|
|
2008-03-21 19:12:12 +01:00
|
|
|
def hook_proxy(*args):
|
|
|
|
# curpage = args[0]
|
|
|
|
# kwargs = dict([args[i:i+2] for i in xrange(1, len(args), 2)])
|
2008-03-21 19:12:14 +01:00
|
|
|
ret = function(self, *args)
|
2012-09-28 08:30:14 +02:00
|
|
|
self._debug_fn(
|
2013-11-30 01:01:30 +01:00
|
|
|
"{0} hook `{1}' returned: [{2}]".format(type, name, repr(ret)))
|
2008-03-21 19:12:12 +01:00
|
|
|
if ret == IkiWikiProcedureProxy._IKIWIKI_NIL_SENTINEL:
|
2012-09-28 08:30:14 +02:00
|
|
|
raise InvalidReturnValue(
|
2012-10-10 14:07:33 +02:00
|
|
|
'hook functions are not allowed to return {0}'.format(
|
2012-09-28 08:30:14 +02:00
|
|
|
IkiWikiProcedureProxy._IKIWIKI_NIL_SENTINEL))
|
2008-03-21 19:12:12 +01:00
|
|
|
if ret is None:
|
|
|
|
ret = IkiWikiProcedureProxy._IKIWIKI_NIL_SENTINEL
|
|
|
|
return ret
|
|
|
|
|
2008-03-21 19:12:16 +01:00
|
|
|
self._hooks.append((id, type, name, last))
|
2008-03-21 19:12:12 +01:00
|
|
|
self._xmlrpc_handler.register_function(hook_proxy, name=name)
|
2008-03-15 13:52:27 +01:00
|
|
|
|
2008-03-21 19:12:15 +01:00
|
|
|
def inject(self, rname, function, name=None, memoize=True):
|
|
|
|
if self._imported:
|
2012-09-28 08:30:14 +02:00
|
|
|
raise AlreadyImported()
|
2008-03-21 19:12:15 +01:00
|
|
|
|
|
|
|
if name is None:
|
|
|
|
name = function.__name__
|
|
|
|
|
|
|
|
self._functions.append((rname, name, memoize))
|
|
|
|
self._xmlrpc_handler.register_function(function, name=name)
|
|
|
|
|
|
|
|
def getargv(self):
|
|
|
|
return self.rpc('getargv')
|
|
|
|
|
|
|
|
def setargv(self, argv):
|
|
|
|
return self.rpc('setargv', argv)
|
|
|
|
|
|
|
|
def getvar(self, hash, key):
|
|
|
|
return self.rpc('getvar', hash, key)
|
|
|
|
|
|
|
|
def setvar(self, hash, key, value):
|
|
|
|
return self.rpc('setvar', hash, key, value)
|
|
|
|
|
|
|
|
def getstate(self, page, id, key):
|
|
|
|
return self.rpc('getstate', page, id, key)
|
|
|
|
|
|
|
|
def setstate(self, page, id, key, value):
|
|
|
|
return self.rpc('setstate', page, id, key, value)
|
|
|
|
|
|
|
|
def pagespec_match(self, spec):
|
|
|
|
return self.rpc('pagespec_match', spec)
|
|
|
|
|
|
|
|
def error(self, msg):
|
|
|
|
try:
|
|
|
|
self.rpc('error', msg)
|
2012-09-28 08:30:14 +02:00
|
|
|
except IOError as e:
|
2008-03-21 19:12:15 +01:00
|
|
|
if e.errno != 32:
|
|
|
|
raise
|
|
|
|
import posix
|
|
|
|
sys.exit(posix.EX_SOFTWARE)
|
2008-03-15 13:52:27 +01:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
try:
|
|
|
|
while True:
|
2012-09-28 08:30:14 +02:00
|
|
|
ret = self._xmlrpc_handler.handle_rpc(
|
|
|
|
self._in_fd, self._out_fd)
|
2008-03-21 19:12:12 +01:00
|
|
|
time.sleep(IkiWikiProcedureProxy._LOOP_DELAY)
|
2012-09-28 08:30:14 +02:00
|
|
|
except GoingDown:
|
2008-03-21 23:17:38 +01:00
|
|
|
return
|
|
|
|
|
2012-09-28 08:30:14 +02:00
|
|
|
except Exception as e:
|
2008-03-16 12:03:26 +01:00
|
|
|
import traceback
|
2012-09-29 13:12:59 +02:00
|
|
|
tb = traceback.format_exc()
|
2012-10-10 14:07:33 +02:00
|
|
|
self.error('uncaught exception: {0}\n{1}'.format(e, tb))
|
2008-03-21 23:17:38 +01:00
|
|
|
return
|
2008-03-21 19:12:12 +01:00
|
|
|
|
2008-03-21 19:12:15 +01:00
|
|
|
def _importme(self):
|
|
|
|
self._debug_fn('importing...')
|
2008-03-21 19:12:16 +01:00
|
|
|
for id, type, function, last in self._hooks:
|
2012-10-10 14:07:33 +02:00
|
|
|
self._debug_fn('hooking {0}/{1} into {2} chain...'.format(
|
2012-09-28 08:30:14 +02:00
|
|
|
id, function, type))
|
2008-03-21 19:12:16 +01:00
|
|
|
self.rpc('hook', id=id, type=type, call=function, last=last)
|
2008-03-21 19:12:15 +01:00
|
|
|
for rname, function, memoize in self._functions:
|
2012-10-10 14:07:33 +02:00
|
|
|
self._debug_fn('injecting {0} as {1}...'.format(function, rname))
|
2008-03-21 19:12:15 +01:00
|
|
|
self.rpc('inject', name=rname, call=function, memoize=memoize)
|
|
|
|
self._imported = True
|
|
|
|
return IkiWikiProcedureProxy._IKIWIKI_NIL_SENTINEL
|