Éric Araujo | c432a9d | 2012-03-05 15:45:08 +0100 | [diff] [blame] | 1 | r"""XML-RPC Servers. |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 2 | |
| 3 | This module can be used to create simple XML-RPC servers |
| 4 | by creating a server and either installing functions, a |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 5 | class instance, or by extending the SimpleXMLRPCServer |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 6 | class. |
| 7 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 8 | It can also be used to handle XML-RPC requests in a CGI |
| 9 | environment using CGIXMLRPCRequestHandler. |
| 10 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 11 | The Doc* classes can be used to create XML-RPC servers that |
| 12 | serve pydoc-style documentation in response to HTTP |
| 13 | GET requests. This documentation is dynamically generated |
| 14 | based on the functions and methods registered with the |
| 15 | server. |
| 16 | |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 17 | A list of possible usage patterns follows: |
| 18 | |
| 19 | 1. Install functions: |
| 20 | |
| 21 | server = SimpleXMLRPCServer(("localhost", 8000)) |
| 22 | server.register_function(pow) |
| 23 | server.register_function(lambda x,y: x+y, 'add') |
| 24 | server.serve_forever() |
| 25 | |
| 26 | 2. Install an instance: |
| 27 | |
| 28 | class MyFuncs: |
| 29 | def __init__(self): |
Neal Norwitz | 9d72bb4 | 2007-04-17 08:48:32 +0000 | [diff] [blame] | 30 | # make all of the sys functions available through sys.func_name |
| 31 | import sys |
| 32 | self.sys = sys |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 33 | def _listMethods(self): |
| 34 | # implement this method so that system.listMethods |
Neal Norwitz | 9d72bb4 | 2007-04-17 08:48:32 +0000 | [diff] [blame] | 35 | # knows to advertise the sys methods |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 36 | return list_public_methods(self) + \ |
Neal Norwitz | 9d72bb4 | 2007-04-17 08:48:32 +0000 | [diff] [blame] | 37 | ['sys.' + method for method in list_public_methods(self.sys)] |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 38 | def pow(self, x, y): return pow(x, y) |
| 39 | def add(self, x, y) : return x + y |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 40 | |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 41 | server = SimpleXMLRPCServer(("localhost", 8000)) |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 42 | server.register_introspection_functions() |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 43 | server.register_instance(MyFuncs()) |
| 44 | server.serve_forever() |
| 45 | |
| 46 | 3. Install an instance with custom dispatch method: |
| 47 | |
| 48 | class Math: |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 49 | def _listMethods(self): |
| 50 | # this method must be present for system.listMethods |
| 51 | # to work |
| 52 | return ['add', 'pow'] |
| 53 | def _methodHelp(self, method): |
| 54 | # this method must be present for system.methodHelp |
| 55 | # to work |
| 56 | if method == 'add': |
| 57 | return "add(2,3) => 5" |
| 58 | elif method == 'pow': |
| 59 | return "pow(x, y[, z]) => number" |
| 60 | else: |
| 61 | # By convention, return empty |
| 62 | # string if no help is available |
| 63 | return "" |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 64 | def _dispatch(self, method, params): |
| 65 | if method == 'pow': |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 66 | return pow(*params) |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 67 | elif method == 'add': |
| 68 | return params[0] + params[1] |
| 69 | else: |
Benjamin Peterson | 2d8c917 | 2010-10-31 18:13:04 +0000 | [diff] [blame] | 70 | raise ValueError('bad method') |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 71 | |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 72 | server = SimpleXMLRPCServer(("localhost", 8000)) |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 73 | server.register_introspection_functions() |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 74 | server.register_instance(Math()) |
| 75 | server.serve_forever() |
| 76 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 77 | 4. Subclass SimpleXMLRPCServer: |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 78 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 79 | class MathServer(SimpleXMLRPCServer): |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 80 | def _dispatch(self, method, params): |
| 81 | try: |
| 82 | # We are forcing the 'export_' prefix on methods that are |
| 83 | # callable through XML-RPC to prevent potential security |
| 84 | # problems |
| 85 | func = getattr(self, 'export_' + method) |
| 86 | except AttributeError: |
| 87 | raise Exception('method "%s" is not supported' % method) |
| 88 | else: |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 89 | return func(*params) |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 90 | |
| 91 | def export_add(self, x, y): |
| 92 | return x + y |
| 93 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 94 | server = MathServer(("localhost", 8000)) |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 95 | server.serve_forever() |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 96 | |
| 97 | 5. CGI script: |
| 98 | |
| 99 | server = CGIXMLRPCRequestHandler() |
| 100 | server.register_function(pow) |
| 101 | server.handle_request() |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 102 | """ |
| 103 | |
| 104 | # Written by Brian Quinlan (brian@sweetapp.com). |
| 105 | # Based on code written by Fredrik Lundh. |
| 106 | |
Kristján Valur Jónsson | 985fc6a | 2009-07-01 10:01:31 +0000 | [diff] [blame] | 107 | from xmlrpc.client import Fault, dumps, loads, gzip_encode, gzip_decode |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 108 | from http.server import BaseHTTPRequestHandler |
Xiang Zhang | 267b9d2 | 2017-02-28 17:12:52 +0800 | [diff] [blame] | 109 | from functools import partial |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 110 | import http.server |
Alexandre Vassalotti | ce26195 | 2008-05-12 02:31:37 +0000 | [diff] [blame] | 111 | import socketserver |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 112 | import sys |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 113 | import os |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 114 | import re |
| 115 | import pydoc |
| 116 | import inspect |
Guido van Rossum | 61e21b5 | 2007-08-20 19:06:03 +0000 | [diff] [blame] | 117 | import traceback |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 118 | try: |
| 119 | import fcntl |
| 120 | except ImportError: |
| 121 | fcntl = None |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 122 | |
Guido van Rossum | d064142 | 2005-02-03 15:01:24 +0000 | [diff] [blame] | 123 | def resolve_dotted_attribute(obj, attr, allow_dotted_names=True): |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 124 | """resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 125 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 126 | Resolves a dotted attribute name to an object. Raises |
| 127 | an AttributeError if any attribute in the chain starts with a '_'. |
Guido van Rossum | d064142 | 2005-02-03 15:01:24 +0000 | [diff] [blame] | 128 | |
| 129 | If the optional allow_dotted_names argument is false, dots are not |
| 130 | supported and this function operates similar to getattr(obj, attr). |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 131 | """ |
| 132 | |
Guido van Rossum | d064142 | 2005-02-03 15:01:24 +0000 | [diff] [blame] | 133 | if allow_dotted_names: |
| 134 | attrs = attr.split('.') |
| 135 | else: |
| 136 | attrs = [attr] |
| 137 | |
| 138 | for i in attrs: |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 139 | if i.startswith('_'): |
| 140 | raise AttributeError( |
| 141 | 'attempt to access private attribute "%s"' % i |
| 142 | ) |
| 143 | else: |
| 144 | obj = getattr(obj,i) |
| 145 | return obj |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 146 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 147 | def list_public_methods(obj): |
| 148 | """Returns a list of attribute strings, found in the specified |
| 149 | object, which represent callable attributes""" |
| 150 | |
| 151 | return [member for member in dir(obj) |
| 152 | if not member.startswith('_') and |
Florent Xicluna | 5d1155c | 2011-10-28 14:45:05 +0200 | [diff] [blame] | 153 | callable(getattr(obj, member))] |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 154 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 155 | class SimpleXMLRPCDispatcher: |
| 156 | """Mix-in class that dispatches XML-RPC requests. |
| 157 | |
| 158 | This class is used to register XML-RPC method handlers |
Kristján Valur Jónsson | 1f2a1ae | 2009-12-16 10:50:44 +0000 | [diff] [blame] | 159 | and then to dispatch them. This class doesn't need to be |
| 160 | instanced directly when used by SimpleXMLRPCServer but it |
| 161 | can be instanced when used by the MultiPathXMLRPCServer |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 162 | """ |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 163 | |
Florent Xicluna | 1b7458b | 2011-12-09 22:35:06 +0100 | [diff] [blame] | 164 | def __init__(self, allow_none=False, encoding=None, |
| 165 | use_builtin_types=False): |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 166 | self.funcs = {} |
| 167 | self.instance = None |
Andrew M. Kuchling | 10a16de | 2005-12-04 16:34:40 +0000 | [diff] [blame] | 168 | self.allow_none = allow_none |
Senthil Kumaran | b3af08f | 2009-04-01 20:20:43 +0000 | [diff] [blame] | 169 | self.encoding = encoding or 'utf-8' |
Florent Xicluna | 1b7458b | 2011-12-09 22:35:06 +0100 | [diff] [blame] | 170 | self.use_builtin_types = use_builtin_types |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 171 | |
Guido van Rossum | d064142 | 2005-02-03 15:01:24 +0000 | [diff] [blame] | 172 | def register_instance(self, instance, allow_dotted_names=False): |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 173 | """Registers an instance to respond to XML-RPC requests. |
| 174 | |
| 175 | Only one instance can be installed at a time. |
| 176 | |
| 177 | If the registered instance has a _dispatch method then that |
| 178 | method will be called with the name of the XML-RPC method and |
Georg Brandl | 7eb4b7d | 2005-07-22 21:49:32 +0000 | [diff] [blame] | 179 | its parameters as a tuple |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 180 | e.g. instance._dispatch('add',(2,3)) |
| 181 | |
| 182 | If the registered instance does not have a _dispatch method |
| 183 | then the instance will be searched to find a matching method |
| 184 | and, if found, will be called. Methods beginning with an '_' |
| 185 | are considered private and will not be called by |
| 186 | SimpleXMLRPCServer. |
| 187 | |
Martin Panter | 204bf0b | 2016-07-11 07:51:37 +0000 | [diff] [blame] | 188 | If a registered function matches an XML-RPC request, then it |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 189 | will be called instead of the registered instance. |
Guido van Rossum | d064142 | 2005-02-03 15:01:24 +0000 | [diff] [blame] | 190 | |
| 191 | If the optional allow_dotted_names argument is true and the |
| 192 | instance does not have a _dispatch method, method names |
| 193 | containing dots are supported and resolved, as long as none of |
| 194 | the name segments start with an '_'. |
| 195 | |
| 196 | *** SECURITY WARNING: *** |
| 197 | |
| 198 | Enabling the allow_dotted_names options allows intruders |
| 199 | to access your module's global variables and may allow |
| 200 | intruders to execute arbitrary code on your machine. Only |
| 201 | use this option on a secure, closed network. |
| 202 | |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 203 | """ |
| 204 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 205 | self.instance = instance |
Guido van Rossum | d064142 | 2005-02-03 15:01:24 +0000 | [diff] [blame] | 206 | self.allow_dotted_names = allow_dotted_names |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 207 | |
Xiang Zhang | 267b9d2 | 2017-02-28 17:12:52 +0800 | [diff] [blame] | 208 | def register_function(self, function=None, name=None): |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 209 | """Registers a function to respond to XML-RPC requests. |
| 210 | |
| 211 | The optional name argument can be used to set a Unicode name |
| 212 | for the function. |
| 213 | """ |
Xiang Zhang | 267b9d2 | 2017-02-28 17:12:52 +0800 | [diff] [blame] | 214 | # decorator factory |
| 215 | if function is None: |
| 216 | return partial(self.register_function, name=name) |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 217 | |
| 218 | if name is None: |
| 219 | name = function.__name__ |
| 220 | self.funcs[name] = function |
| 221 | |
Xiang Zhang | 267b9d2 | 2017-02-28 17:12:52 +0800 | [diff] [blame] | 222 | return function |
| 223 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 224 | def register_introspection_functions(self): |
| 225 | """Registers the XML-RPC introspection methods in the system |
| 226 | namespace. |
| 227 | |
| 228 | see http://xmlrpc.usefulinc.com/doc/reserved.html |
| 229 | """ |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 230 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 231 | self.funcs.update({'system.listMethods' : self.system_listMethods, |
| 232 | 'system.methodSignature' : self.system_methodSignature, |
| 233 | 'system.methodHelp' : self.system_methodHelp}) |
| 234 | |
| 235 | def register_multicall_functions(self): |
| 236 | """Registers the XML-RPC multicall method in the system |
| 237 | namespace. |
| 238 | |
| 239 | see http://www.xmlrpc.com/discuss/msgReader$1208""" |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 240 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 241 | self.funcs.update({'system.multicall' : self.system_multicall}) |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 242 | |
Kristján Valur Jónsson | 1f2a1ae | 2009-12-16 10:50:44 +0000 | [diff] [blame] | 243 | def _marshaled_dispatch(self, data, dispatch_method = None, path = None): |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 244 | """Dispatches an XML-RPC method from marshalled (XML) data. |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 245 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 246 | XML-RPC methods are dispatched from the marshalled (XML) data |
| 247 | using the _dispatch method and the result is returned as |
| 248 | marshalled data. For backwards compatibility, a dispatch |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 249 | function can be provided as an argument (see comment in |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 250 | SimpleXMLRPCRequestHandler.do_POST) but overriding the |
Ezio Melotti | 1392500 | 2011-03-16 11:05:33 +0200 | [diff] [blame] | 251 | existing method through subclassing is the preferred means |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 252 | of changing method dispatch behavior. |
| 253 | """ |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 254 | |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 255 | try: |
Florent Xicluna | 1b7458b | 2011-12-09 22:35:06 +0100 | [diff] [blame] | 256 | params, method = loads(data, use_builtin_types=self.use_builtin_types) |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 257 | |
| 258 | # generate response |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 259 | if dispatch_method is not None: |
| 260 | response = dispatch_method(method, params) |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 261 | else: |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 262 | response = self._dispatch(method, params) |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 263 | # wrap response in a singleton tuple |
| 264 | response = (response,) |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 265 | response = dumps(response, methodresponse=1, |
| 266 | allow_none=self.allow_none, encoding=self.encoding) |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 267 | except Fault as fault: |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 268 | response = dumps(fault, allow_none=self.allow_none, |
| 269 | encoding=self.encoding) |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 270 | except: |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 271 | # report exception back to server |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 272 | exc_type, exc_value, exc_tb = sys.exc_info() |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 273 | response = dumps( |
| 274 | Fault(1, "%s:%s" % (exc_type, exc_value)), |
Andrew M. Kuchling | 427aedb | 2005-12-04 17:13:12 +0000 | [diff] [blame] | 275 | encoding=self.encoding, allow_none=self.allow_none, |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 276 | ) |
| 277 | |
Serhiy Storchaka | aebb6d3 | 2016-01-20 10:34:27 +0200 | [diff] [blame] | 278 | return response.encode(self.encoding, 'xmlcharrefreplace') |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 279 | |
| 280 | def system_listMethods(self): |
| 281 | """system.listMethods() => ['add', 'subtract', 'multiple'] |
| 282 | |
| 283 | Returns a list of the methods supported by the server.""" |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 284 | |
Hye-Shik Chang | 9604286 | 2007-08-19 10:49:11 +0000 | [diff] [blame] | 285 | methods = set(self.funcs.keys()) |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 286 | if self.instance is not None: |
| 287 | # Instance can implement _listMethod to return a list of |
| 288 | # methods |
| 289 | if hasattr(self.instance, '_listMethods'): |
Hye-Shik Chang | 9604286 | 2007-08-19 10:49:11 +0000 | [diff] [blame] | 290 | methods |= set(self.instance._listMethods()) |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 291 | # if the instance has a _dispatch method then we |
| 292 | # don't have enough information to provide a list |
| 293 | # of methods |
| 294 | elif not hasattr(self.instance, '_dispatch'): |
Hye-Shik Chang | 9604286 | 2007-08-19 10:49:11 +0000 | [diff] [blame] | 295 | methods |= set(list_public_methods(self.instance)) |
| 296 | return sorted(methods) |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 297 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 298 | def system_methodSignature(self, method_name): |
| 299 | """system.methodSignature('add') => [double, int, int] |
| 300 | |
Brett Cannon | b9b5f16 | 2004-10-03 23:21:44 +0000 | [diff] [blame] | 301 | Returns a list describing the signature of the method. In the |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 302 | above example, the add method takes two integers as arguments |
| 303 | and returns a double result. |
| 304 | |
| 305 | This server does NOT support system.methodSignature.""" |
| 306 | |
| 307 | # See http://xmlrpc.usefulinc.com/doc/sysmethodsig.html |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 308 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 309 | return 'signatures not supported' |
| 310 | |
| 311 | def system_methodHelp(self, method_name): |
| 312 | """system.methodHelp('add') => "Adds two integers together" |
| 313 | |
| 314 | Returns a string containing documentation for the specified method.""" |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 315 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 316 | method = None |
Guido van Rossum | e2b70bc | 2006-08-18 22:13:04 +0000 | [diff] [blame] | 317 | if method_name in self.funcs: |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 318 | method = self.funcs[method_name] |
| 319 | elif self.instance is not None: |
| 320 | # Instance can implement _methodHelp to return help for a method |
| 321 | if hasattr(self.instance, '_methodHelp'): |
| 322 | return self.instance._methodHelp(method_name) |
| 323 | # if the instance has a _dispatch method then we |
| 324 | # don't have enough information to provide help |
| 325 | elif not hasattr(self.instance, '_dispatch'): |
| 326 | try: |
| 327 | method = resolve_dotted_attribute( |
| 328 | self.instance, |
Guido van Rossum | d064142 | 2005-02-03 15:01:24 +0000 | [diff] [blame] | 329 | method_name, |
| 330 | self.allow_dotted_names |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 331 | ) |
| 332 | except AttributeError: |
| 333 | pass |
| 334 | |
| 335 | # Note that we aren't checking that the method actually |
| 336 | # be a callable object of some kind |
| 337 | if method is None: |
| 338 | return "" |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 339 | else: |
Neal Norwitz | 3f401f0 | 2003-06-29 04:19:37 +0000 | [diff] [blame] | 340 | return pydoc.getdoc(method) |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 341 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 342 | def system_multicall(self, call_list): |
| 343 | """system.multicall([{'methodName': 'add', 'params': [2, 2]}, ...]) => \ |
| 344 | [[4], ...] |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 345 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 346 | Allows the caller to package multiple XML-RPC calls into a single |
| 347 | request. |
| 348 | |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 349 | See http://www.xmlrpc.com/discuss/msgReader$1208 |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 350 | """ |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 351 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 352 | results = [] |
| 353 | for call in call_list: |
| 354 | method_name = call['methodName'] |
| 355 | params = call['params'] |
| 356 | |
| 357 | try: |
| 358 | # XXX A marshalling error in any response will fail the entire |
| 359 | # multicall. If someone cares they should fix this. |
| 360 | results.append([self._dispatch(method_name, params)]) |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 361 | except Fault as fault: |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 362 | results.append( |
| 363 | {'faultCode' : fault.faultCode, |
| 364 | 'faultString' : fault.faultString} |
| 365 | ) |
| 366 | except: |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 367 | exc_type, exc_value, exc_tb = sys.exc_info() |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 368 | results.append( |
| 369 | {'faultCode' : 1, |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 370 | 'faultString' : "%s:%s" % (exc_type, exc_value)} |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 371 | ) |
| 372 | return results |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 373 | |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 374 | def _dispatch(self, method, params): |
| 375 | """Dispatches the XML-RPC method. |
| 376 | |
| 377 | XML-RPC calls are forwarded to a registered function that |
| 378 | matches the called XML-RPC method name. If no such function |
| 379 | exists then the call is forwarded to the registered instance, |
| 380 | if available. |
| 381 | |
| 382 | If the registered instance has a _dispatch method then that |
| 383 | method will be called with the name of the XML-RPC method and |
Georg Brandl | 7eb4b7d | 2005-07-22 21:49:32 +0000 | [diff] [blame] | 384 | its parameters as a tuple |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 385 | e.g. instance._dispatch('add',(2,3)) |
| 386 | |
| 387 | If the registered instance does not have a _dispatch method |
| 388 | then the instance will be searched to find a matching method |
| 389 | and, if found, will be called. |
| 390 | |
| 391 | Methods beginning with an '_' are considered private and will |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 392 | not be called. |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 393 | """ |
| 394 | |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 395 | try: |
Petr Motejlek | 3c6314c | 2017-03-01 18:21:28 +0100 | [diff] [blame^] | 396 | # call the matching registered function |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 397 | func = self.funcs[method] |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 398 | except KeyError: |
Petr Motejlek | 3c6314c | 2017-03-01 18:21:28 +0100 | [diff] [blame^] | 399 | pass |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 400 | else: |
Petr Motejlek | 3c6314c | 2017-03-01 18:21:28 +0100 | [diff] [blame^] | 401 | if func is not None: |
| 402 | return func(*params) |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 403 | raise Exception('method "%s" is not supported' % method) |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 404 | |
Petr Motejlek | 3c6314c | 2017-03-01 18:21:28 +0100 | [diff] [blame^] | 405 | if self.instance is not None: |
| 406 | if hasattr(self.instance, '_dispatch'): |
| 407 | # call the `_dispatch` method on the instance |
| 408 | return self.instance._dispatch(method, params) |
| 409 | |
| 410 | # call the instance's method directly |
| 411 | try: |
| 412 | func = resolve_dotted_attribute( |
| 413 | self.instance, |
| 414 | method, |
| 415 | self.allow_dotted_names |
| 416 | ) |
| 417 | except AttributeError: |
| 418 | pass |
| 419 | else: |
| 420 | if func is not None: |
| 421 | return func(*params) |
| 422 | |
| 423 | raise Exception('method "%s" is not supported' % method) |
| 424 | |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 425 | class SimpleXMLRPCRequestHandler(BaseHTTPRequestHandler): |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 426 | """Simple XML-RPC request handler class. |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 427 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 428 | Handles all HTTP POST requests and attempts to decode them as |
| 429 | XML-RPC requests. |
| 430 | """ |
| 431 | |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 432 | # Class attribute listing the accessible path components; |
| 433 | # paths not on this list will result in a 404 error. |
| 434 | rpc_paths = ('/', '/RPC2') |
| 435 | |
Kristján Valur Jónsson | 985fc6a | 2009-07-01 10:01:31 +0000 | [diff] [blame] | 436 | #if not None, encode responses larger than this, if possible |
| 437 | encode_threshold = 1400 #a common MTU |
| 438 | |
| 439 | #Override form StreamRequestHandler: full buffering of output |
| 440 | #and no Nagle. |
| 441 | wbufsize = -1 |
| 442 | disable_nagle_algorithm = True |
| 443 | |
| 444 | # a re to match a gzip Accept-Encoding |
| 445 | aepattern = re.compile(r""" |
| 446 | \s* ([^\s;]+) \s* #content-coding |
| 447 | (;\s* q \s*=\s* ([0-9\.]+))? #q |
| 448 | """, re.VERBOSE | re.IGNORECASE) |
| 449 | |
| 450 | def accept_encodings(self): |
| 451 | r = {} |
| 452 | ae = self.headers.get("Accept-Encoding", "") |
| 453 | for e in ae.split(","): |
| 454 | match = self.aepattern.match(e) |
| 455 | if match: |
| 456 | v = match.group(3) |
| 457 | v = float(v) if v else 1.0 |
| 458 | r[match.group(1)] = v |
| 459 | return r |
| 460 | |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 461 | def is_rpc_path_valid(self): |
| 462 | if self.rpc_paths: |
| 463 | return self.path in self.rpc_paths |
| 464 | else: |
| 465 | # If .rpc_paths is empty, just assume all paths are legal |
| 466 | return True |
| 467 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 468 | def do_POST(self): |
| 469 | """Handles the HTTP POST request. |
| 470 | |
| 471 | Attempts to interpret all HTTP POST requests as XML-RPC calls, |
| 472 | which are forwarded to the server's _dispatch method for handling. |
| 473 | """ |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 474 | |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 475 | # Check that the path is legal |
| 476 | if not self.is_rpc_path_valid(): |
| 477 | self.report_404() |
| 478 | return |
| 479 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 480 | try: |
Tim Peters | 536cf99 | 2005-12-25 23:18:31 +0000 | [diff] [blame] | 481 | # Get arguments by reading body of request. |
| 482 | # We read this in chunks to avoid straining |
Andrew M. Kuchling | e63fde7 | 2005-12-04 15:36:57 +0000 | [diff] [blame] | 483 | # socket.read(); around the 10 or 15Mb mark, some platforms |
| 484 | # begin to have problems (bug #792570). |
| 485 | max_chunk_size = 10*1024*1024 |
| 486 | size_remaining = int(self.headers["content-length"]) |
| 487 | L = [] |
| 488 | while size_remaining: |
| 489 | chunk_size = min(size_remaining, max_chunk_size) |
Charles-François Natali | ec1712a | 2012-02-18 14:42:57 +0100 | [diff] [blame] | 490 | chunk = self.rfile.read(chunk_size) |
| 491 | if not chunk: |
| 492 | break |
| 493 | L.append(chunk) |
Andrew M. Kuchling | e63fde7 | 2005-12-04 15:36:57 +0000 | [diff] [blame] | 494 | size_remaining -= len(L[-1]) |
Hye-Shik Chang | 9604286 | 2007-08-19 10:49:11 +0000 | [diff] [blame] | 495 | data = b''.join(L) |
Andrew M. Kuchling | e63fde7 | 2005-12-04 15:36:57 +0000 | [diff] [blame] | 496 | |
Kristján Valur Jónsson | 985fc6a | 2009-07-01 10:01:31 +0000 | [diff] [blame] | 497 | data = self.decode_request_content(data) |
| 498 | if data is None: |
| 499 | return #response has been sent |
| 500 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 501 | # In previous versions of SimpleXMLRPCServer, _dispatch |
| 502 | # could be overridden in this class, instead of in |
| 503 | # SimpleXMLRPCDispatcher. To maintain backwards compatibility, |
| 504 | # check to see if a subclass implements _dispatch and dispatch |
| 505 | # using that method if present. |
| 506 | response = self.server._marshaled_dispatch( |
Kristján Valur Jónsson | 1f2a1ae | 2009-12-16 10:50:44 +0000 | [diff] [blame] | 507 | data, getattr(self, '_dispatch', None), self.path |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 508 | ) |
Guido van Rossum | 61e21b5 | 2007-08-20 19:06:03 +0000 | [diff] [blame] | 509 | except Exception as e: # This should only happen if the module is buggy |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 510 | # internal error, report as HTTP server error |
| 511 | self.send_response(500) |
Guido van Rossum | 61e21b5 | 2007-08-20 19:06:03 +0000 | [diff] [blame] | 512 | |
| 513 | # Send information about the exception if requested |
| 514 | if hasattr(self.server, '_send_traceback_header') and \ |
| 515 | self.server._send_traceback_header: |
| 516 | self.send_header("X-exception", str(e)) |
Victor Stinner | 5bfe146 | 2010-04-16 13:28:05 +0000 | [diff] [blame] | 517 | trace = traceback.format_exc() |
| 518 | trace = str(trace.encode('ASCII', 'backslashreplace'), 'ASCII') |
| 519 | self.send_header("X-traceback", trace) |
Guido van Rossum | 61e21b5 | 2007-08-20 19:06:03 +0000 | [diff] [blame] | 520 | |
Kristján Valur Jónsson | 985fc6a | 2009-07-01 10:01:31 +0000 | [diff] [blame] | 521 | self.send_header("Content-length", "0") |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 522 | self.end_headers() |
| 523 | else: |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 524 | self.send_response(200) |
| 525 | self.send_header("Content-type", "text/xml") |
Kristján Valur Jónsson | 985fc6a | 2009-07-01 10:01:31 +0000 | [diff] [blame] | 526 | if self.encode_threshold is not None: |
| 527 | if len(response) > self.encode_threshold: |
| 528 | q = self.accept_encodings().get("gzip", 0) |
| 529 | if q: |
Kristján Valur Jónsson | aefde24 | 2009-07-19 22:29:24 +0000 | [diff] [blame] | 530 | try: |
| 531 | response = gzip_encode(response) |
| 532 | self.send_header("Content-Encoding", "gzip") |
| 533 | except NotImplementedError: |
| 534 | pass |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 535 | self.send_header("Content-length", str(len(response))) |
| 536 | self.end_headers() |
| 537 | self.wfile.write(response) |
| 538 | |
Kristján Valur Jónsson | 985fc6a | 2009-07-01 10:01:31 +0000 | [diff] [blame] | 539 | def decode_request_content(self, data): |
| 540 | #support gzip encoding of request |
| 541 | encoding = self.headers.get("content-encoding", "identity").lower() |
| 542 | if encoding == "identity": |
| 543 | return data |
| 544 | if encoding == "gzip": |
| 545 | try: |
| 546 | return gzip_decode(data) |
Kristján Valur Jónsson | aefde24 | 2009-07-19 22:29:24 +0000 | [diff] [blame] | 547 | except NotImplementedError: |
| 548 | self.send_response(501, "encoding %r not supported" % encoding) |
Kristján Valur Jónsson | 985fc6a | 2009-07-01 10:01:31 +0000 | [diff] [blame] | 549 | except ValueError: |
| 550 | self.send_response(400, "error decoding gzip content") |
| 551 | else: |
| 552 | self.send_response(501, "encoding %r not supported" % encoding) |
| 553 | self.send_header("Content-length", "0") |
| 554 | self.end_headers() |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 555 | |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 556 | def report_404 (self): |
| 557 | # Report a 404 error |
| 558 | self.send_response(404) |
Christian Heimes | 0aa93cd | 2007-12-08 18:38:20 +0000 | [diff] [blame] | 559 | response = b'No such page' |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 560 | self.send_header("Content-type", "text/plain") |
| 561 | self.send_header("Content-length", str(len(response))) |
| 562 | self.end_headers() |
| 563 | self.wfile.write(response) |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 564 | |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 565 | def log_request(self, code='-', size='-'): |
| 566 | """Selectively log an accepted request.""" |
| 567 | |
| 568 | if self.server.logRequests: |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 569 | BaseHTTPRequestHandler.log_request(self, code, size) |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 570 | |
Alexandre Vassalotti | ce26195 | 2008-05-12 02:31:37 +0000 | [diff] [blame] | 571 | class SimpleXMLRPCServer(socketserver.TCPServer, |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 572 | SimpleXMLRPCDispatcher): |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 573 | """Simple XML-RPC server. |
| 574 | |
| 575 | Simple XML-RPC server that allows functions and a single instance |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 576 | to be installed to handle requests. The default implementation |
| 577 | attempts to dispatch XML-RPC calls to the functions or instance |
Florent Xicluna | c4fec93 | 2011-10-30 20:19:32 +0100 | [diff] [blame] | 578 | installed in the server. Override the _dispatch method inherited |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 579 | from SimpleXMLRPCDispatcher to change this behavior. |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 580 | """ |
| 581 | |
Andrew M. Kuchling | 3a97605 | 2005-12-04 15:07:41 +0000 | [diff] [blame] | 582 | allow_reuse_address = True |
| 583 | |
Guido van Rossum | 61e21b5 | 2007-08-20 19:06:03 +0000 | [diff] [blame] | 584 | # Warning: this is for debugging purposes only! Never set this to True in |
| 585 | # production code, as will be sending out sensitive information (exception |
| 586 | # and stack trace details) when exceptions are raised inside |
| 587 | # SimpleXMLRPCRequestHandler.do_POST |
| 588 | _send_traceback_header = False |
| 589 | |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 590 | def __init__(self, addr, requestHandler=SimpleXMLRPCRequestHandler, |
Florent Xicluna | 1b7458b | 2011-12-09 22:35:06 +0100 | [diff] [blame] | 591 | logRequests=True, allow_none=False, encoding=None, |
| 592 | bind_and_activate=True, use_builtin_types=False): |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 593 | self.logRequests = logRequests |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 594 | |
Florent Xicluna | 1b7458b | 2011-12-09 22:35:06 +0100 | [diff] [blame] | 595 | SimpleXMLRPCDispatcher.__init__(self, allow_none, encoding, use_builtin_types) |
Alexandre Vassalotti | ce26195 | 2008-05-12 02:31:37 +0000 | [diff] [blame] | 596 | socketserver.TCPServer.__init__(self, addr, requestHandler, bind_and_activate) |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 597 | |
Andrew M. Kuchling | 3a97605 | 2005-12-04 15:07:41 +0000 | [diff] [blame] | 598 | |
Kristján Valur Jónsson | 1f2a1ae | 2009-12-16 10:50:44 +0000 | [diff] [blame] | 599 | class MultiPathXMLRPCServer(SimpleXMLRPCServer): |
| 600 | """Multipath XML-RPC Server |
| 601 | This specialization of SimpleXMLRPCServer allows the user to create |
| 602 | multiple Dispatcher instances and assign them to different |
| 603 | HTTP request paths. This makes it possible to run two or more |
| 604 | 'virtual XML-RPC servers' at the same port. |
| 605 | Make sure that the requestHandler accepts the paths in question. |
| 606 | """ |
| 607 | def __init__(self, addr, requestHandler=SimpleXMLRPCRequestHandler, |
Florent Xicluna | 1b7458b | 2011-12-09 22:35:06 +0100 | [diff] [blame] | 608 | logRequests=True, allow_none=False, encoding=None, |
| 609 | bind_and_activate=True, use_builtin_types=False): |
Kristján Valur Jónsson | 1f2a1ae | 2009-12-16 10:50:44 +0000 | [diff] [blame] | 610 | |
| 611 | SimpleXMLRPCServer.__init__(self, addr, requestHandler, logRequests, allow_none, |
Florent Xicluna | 1b7458b | 2011-12-09 22:35:06 +0100 | [diff] [blame] | 612 | encoding, bind_and_activate, use_builtin_types) |
Kristján Valur Jónsson | 1f2a1ae | 2009-12-16 10:50:44 +0000 | [diff] [blame] | 613 | self.dispatchers = {} |
| 614 | self.allow_none = allow_none |
Florent Xicluna | 3fa29f7 | 2011-10-30 20:18:50 +0100 | [diff] [blame] | 615 | self.encoding = encoding or 'utf-8' |
Kristján Valur Jónsson | 1f2a1ae | 2009-12-16 10:50:44 +0000 | [diff] [blame] | 616 | |
| 617 | def add_dispatcher(self, path, dispatcher): |
| 618 | self.dispatchers[path] = dispatcher |
| 619 | return dispatcher |
| 620 | |
| 621 | def get_dispatcher(self, path): |
| 622 | return self.dispatchers[path] |
| 623 | |
| 624 | def _marshaled_dispatch(self, data, dispatch_method = None, path = None): |
| 625 | try: |
| 626 | response = self.dispatchers[path]._marshaled_dispatch( |
| 627 | data, dispatch_method, path) |
| 628 | except: |
| 629 | # report low level exception back to server |
| 630 | # (each dispatcher should have handled their own |
| 631 | # exceptions) |
| 632 | exc_type, exc_value = sys.exc_info()[:2] |
Florent Xicluna | 3fa29f7 | 2011-10-30 20:18:50 +0100 | [diff] [blame] | 633 | response = dumps( |
| 634 | Fault(1, "%s:%s" % (exc_type, exc_value)), |
Kristján Valur Jónsson | 1f2a1ae | 2009-12-16 10:50:44 +0000 | [diff] [blame] | 635 | encoding=self.encoding, allow_none=self.allow_none) |
Serhiy Storchaka | aebb6d3 | 2016-01-20 10:34:27 +0200 | [diff] [blame] | 636 | response = response.encode(self.encoding, 'xmlcharrefreplace') |
Kristján Valur Jónsson | 1f2a1ae | 2009-12-16 10:50:44 +0000 | [diff] [blame] | 637 | return response |
| 638 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 639 | class CGIXMLRPCRequestHandler(SimpleXMLRPCDispatcher): |
| 640 | """Simple handler for XML-RPC data passed through CGI.""" |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 641 | |
Florent Xicluna | 1b7458b | 2011-12-09 22:35:06 +0100 | [diff] [blame] | 642 | def __init__(self, allow_none=False, encoding=None, use_builtin_types=False): |
| 643 | SimpleXMLRPCDispatcher.__init__(self, allow_none, encoding, use_builtin_types) |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 644 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 645 | def handle_xmlrpc(self, request_text): |
| 646 | """Handle a single XML-RPC request""" |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 647 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 648 | response = self._marshaled_dispatch(request_text) |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 649 | |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 650 | print('Content-Type: text/xml') |
| 651 | print('Content-Length: %d' % len(response)) |
| 652 | print() |
Senthil Kumaran | b3af08f | 2009-04-01 20:20:43 +0000 | [diff] [blame] | 653 | sys.stdout.flush() |
| 654 | sys.stdout.buffer.write(response) |
| 655 | sys.stdout.buffer.flush() |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 656 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 657 | def handle_get(self): |
| 658 | """Handle a single HTTP GET request. |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 659 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 660 | Default implementation indicates an error because |
| 661 | XML-RPC uses the POST method. |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 662 | """ |
| 663 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 664 | code = 400 |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 665 | message, explain = BaseHTTPRequestHandler.responses[code] |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 666 | |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 667 | response = http.server.DEFAULT_ERROR_MESSAGE % \ |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 668 | { |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 669 | 'code' : code, |
| 670 | 'message' : message, |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 671 | 'explain' : explain |
| 672 | } |
Senthil Kumaran | b3af08f | 2009-04-01 20:20:43 +0000 | [diff] [blame] | 673 | response = response.encode('utf-8') |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 674 | print('Status: %d %s' % (code, message)) |
Senthil Kumaran | b3af08f | 2009-04-01 20:20:43 +0000 | [diff] [blame] | 675 | print('Content-Type: %s' % http.server.DEFAULT_ERROR_CONTENT_TYPE) |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 676 | print('Content-Length: %d' % len(response)) |
| 677 | print() |
Senthil Kumaran | b3af08f | 2009-04-01 20:20:43 +0000 | [diff] [blame] | 678 | sys.stdout.flush() |
| 679 | sys.stdout.buffer.write(response) |
| 680 | sys.stdout.buffer.flush() |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 681 | |
Georg Brandl | fe99105 | 2009-09-16 15:54:04 +0000 | [diff] [blame] | 682 | def handle_request(self, request_text=None): |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 683 | """Handle a single XML-RPC request passed through a CGI post method. |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 684 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 685 | If no XML data is given then it is read from stdin. The resulting |
| 686 | XML-RPC response is printed to stdout along with the correct HTTP |
| 687 | headers. |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 688 | """ |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 689 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 690 | if request_text is None and \ |
| 691 | os.environ.get('REQUEST_METHOD', None) == 'GET': |
| 692 | self.handle_get() |
| 693 | else: |
| 694 | # POST data is normally available through stdin |
Georg Brandl | 99412e5 | 2009-04-01 04:27:47 +0000 | [diff] [blame] | 695 | try: |
| 696 | length = int(os.environ.get('CONTENT_LENGTH', None)) |
Georg Brandl | c748506 | 2009-04-01 15:53:15 +0000 | [diff] [blame] | 697 | except (ValueError, TypeError): |
Georg Brandl | 99412e5 | 2009-04-01 04:27:47 +0000 | [diff] [blame] | 698 | length = -1 |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 699 | if request_text is None: |
Georg Brandl | 99412e5 | 2009-04-01 04:27:47 +0000 | [diff] [blame] | 700 | request_text = sys.stdin.read(length) |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 701 | |
Martin v. Löwis | d69663d | 2003-01-15 11:37:23 +0000 | [diff] [blame] | 702 | self.handle_xmlrpc(request_text) |
Tim Peters | 2c60f7a | 2003-01-29 03:49:43 +0000 | [diff] [blame] | 703 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 704 | |
| 705 | # ----------------------------------------------------------------------------- |
| 706 | # Self documenting XML-RPC Server. |
| 707 | |
| 708 | class ServerHTMLDoc(pydoc.HTMLDoc): |
| 709 | """Class used to generate pydoc HTML document for a server""" |
| 710 | |
| 711 | def markup(self, text, escape=None, funcs={}, classes={}, methods={}): |
| 712 | """Mark up some plain text, given a context of symbols to look for. |
| 713 | Each context dictionary maps object names to anchor names.""" |
| 714 | escape = escape or self.escape |
| 715 | results = [] |
| 716 | here = 0 |
| 717 | |
| 718 | # XXX Note that this regular expression does not allow for the |
| 719 | # hyperlinking of arbitrary strings being used as method |
| 720 | # names. Only methods with names consisting of word characters |
| 721 | # and '.'s are hyperlinked. |
| 722 | pattern = re.compile(r'\b((http|ftp)://\S+[\w/]|' |
| 723 | r'RFC[- ]?(\d+)|' |
| 724 | r'PEP[- ]?(\d+)|' |
| 725 | r'(self\.)?((?:\w|\.)+))\b') |
| 726 | while 1: |
| 727 | match = pattern.search(text, here) |
| 728 | if not match: break |
| 729 | start, end = match.span() |
| 730 | results.append(escape(text[here:start])) |
| 731 | |
| 732 | all, scheme, rfc, pep, selfdot, name = match.groups() |
| 733 | if scheme: |
| 734 | url = escape(all).replace('"', '"') |
| 735 | results.append('<a href="%s">%s</a>' % (url, url)) |
| 736 | elif rfc: |
| 737 | url = 'http://www.rfc-editor.org/rfc/rfc%d.txt' % int(rfc) |
| 738 | results.append('<a href="%s">%s</a>' % (url, escape(all))) |
| 739 | elif pep: |
| 740 | url = 'http://www.python.org/dev/peps/pep-%04d/' % int(pep) |
| 741 | results.append('<a href="%s">%s</a>' % (url, escape(all))) |
| 742 | elif text[end:end+1] == '(': |
| 743 | results.append(self.namelink(name, methods, funcs, classes)) |
| 744 | elif selfdot: |
| 745 | results.append('self.<strong>%s</strong>' % name) |
| 746 | else: |
| 747 | results.append(self.namelink(name, classes)) |
| 748 | here = end |
| 749 | results.append(escape(text[here:])) |
| 750 | return ''.join(results) |
| 751 | |
| 752 | def docroutine(self, object, name, mod=None, |
| 753 | funcs={}, classes={}, methods={}, cl=None): |
| 754 | """Produce HTML documentation for a function or method object.""" |
| 755 | |
| 756 | anchor = (cl and cl.__name__ or '') + '-' + name |
| 757 | note = '' |
| 758 | |
| 759 | title = '<a name="%s"><strong>%s</strong></a>' % ( |
| 760 | self.escape(anchor), self.escape(name)) |
| 761 | |
| 762 | if inspect.ismethod(object): |
R David Murray | f22b62e | 2013-08-10 12:01:47 -0400 | [diff] [blame] | 763 | args = inspect.getfullargspec(object) |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 764 | # exclude the argument bound to the instance, it will be |
| 765 | # confusing to the non-Python user |
| 766 | argspec = inspect.formatargspec ( |
R David Murray | f22b62e | 2013-08-10 12:01:47 -0400 | [diff] [blame] | 767 | args.args[1:], |
| 768 | args.varargs, |
| 769 | args.varkw, |
| 770 | args.defaults, |
| 771 | annotations=args.annotations, |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 772 | formatvalue=self.formatvalue |
| 773 | ) |
| 774 | elif inspect.isfunction(object): |
R David Murray | f22b62e | 2013-08-10 12:01:47 -0400 | [diff] [blame] | 775 | args = inspect.getfullargspec(object) |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 776 | argspec = inspect.formatargspec( |
R David Murray | f22b62e | 2013-08-10 12:01:47 -0400 | [diff] [blame] | 777 | args.args, args.varargs, args.varkw, args.defaults, |
| 778 | annotations=args.annotations, |
| 779 | formatvalue=self.formatvalue) |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 780 | else: |
| 781 | argspec = '(...)' |
| 782 | |
| 783 | if isinstance(object, tuple): |
| 784 | argspec = object[0] or argspec |
| 785 | docstring = object[1] or "" |
| 786 | else: |
| 787 | docstring = pydoc.getdoc(object) |
| 788 | |
| 789 | decl = title + argspec + (note and self.grey( |
| 790 | '<font face="helvetica, arial">%s</font>' % note)) |
| 791 | |
| 792 | doc = self.markup( |
| 793 | docstring, self.preformat, funcs, classes, methods) |
| 794 | doc = doc and '<dd><tt>%s</tt></dd>' % doc |
| 795 | return '<dl><dt>%s</dt>%s</dl>\n' % (decl, doc) |
| 796 | |
| 797 | def docserver(self, server_name, package_documentation, methods): |
| 798 | """Produce HTML documentation for an XML-RPC server.""" |
| 799 | |
| 800 | fdict = {} |
| 801 | for key, value in methods.items(): |
| 802 | fdict[key] = '#-' + key |
| 803 | fdict[value] = fdict[key] |
| 804 | |
| 805 | server_name = self.escape(server_name) |
| 806 | head = '<big><big><strong>%s</strong></big></big>' % server_name |
| 807 | result = self.heading(head, '#ffffff', '#7799ee') |
| 808 | |
| 809 | doc = self.markup(package_documentation, self.preformat, fdict) |
| 810 | doc = doc and '<tt>%s</tt>' % doc |
| 811 | result = result + '<p>%s</p>\n' % doc |
| 812 | |
| 813 | contents = [] |
| 814 | method_items = sorted(methods.items()) |
| 815 | for key, value in method_items: |
| 816 | contents.append(self.docroutine(value, key, funcs=fdict)) |
| 817 | result = result + self.bigsection( |
| 818 | 'Methods', '#ffffff', '#eeaa77', ''.join(contents)) |
| 819 | |
| 820 | return result |
| 821 | |
| 822 | class XMLRPCDocGenerator: |
| 823 | """Generates documentation for an XML-RPC server. |
| 824 | |
| 825 | This class is designed as mix-in and should not |
| 826 | be constructed directly. |
| 827 | """ |
| 828 | |
| 829 | def __init__(self): |
| 830 | # setup variables used for HTML documentation |
| 831 | self.server_name = 'XML-RPC Server Documentation' |
| 832 | self.server_documentation = \ |
| 833 | "This server exports the following methods through the XML-RPC "\ |
| 834 | "protocol." |
| 835 | self.server_title = 'XML-RPC Server Documentation' |
| 836 | |
| 837 | def set_server_title(self, server_title): |
| 838 | """Set the HTML title of the generated server documentation""" |
| 839 | |
| 840 | self.server_title = server_title |
| 841 | |
| 842 | def set_server_name(self, server_name): |
| 843 | """Set the name of the generated HTML server documentation""" |
| 844 | |
| 845 | self.server_name = server_name |
| 846 | |
| 847 | def set_server_documentation(self, server_documentation): |
| 848 | """Set the documentation string for the entire server.""" |
| 849 | |
| 850 | self.server_documentation = server_documentation |
| 851 | |
| 852 | def generate_html_documentation(self): |
| 853 | """generate_html_documentation() => html documentation for the server |
| 854 | |
| 855 | Generates HTML documentation for the server using introspection for |
| 856 | installed functions and instances that do not implement the |
| 857 | _dispatch method. Alternatively, instances can choose to implement |
| 858 | the _get_method_argstring(method_name) method to provide the |
| 859 | argument string used in the documentation and the |
| 860 | _methodHelp(method_name) method to provide the help text used |
| 861 | in the documentation.""" |
| 862 | |
| 863 | methods = {} |
| 864 | |
| 865 | for method_name in self.system_listMethods(): |
| 866 | if method_name in self.funcs: |
| 867 | method = self.funcs[method_name] |
| 868 | elif self.instance is not None: |
| 869 | method_info = [None, None] # argspec, documentation |
| 870 | if hasattr(self.instance, '_get_method_argstring'): |
| 871 | method_info[0] = self.instance._get_method_argstring(method_name) |
| 872 | if hasattr(self.instance, '_methodHelp'): |
| 873 | method_info[1] = self.instance._methodHelp(method_name) |
| 874 | |
| 875 | method_info = tuple(method_info) |
| 876 | if method_info != (None, None): |
| 877 | method = method_info |
| 878 | elif not hasattr(self.instance, '_dispatch'): |
| 879 | try: |
| 880 | method = resolve_dotted_attribute( |
| 881 | self.instance, |
| 882 | method_name |
| 883 | ) |
| 884 | except AttributeError: |
| 885 | method = method_info |
| 886 | else: |
| 887 | method = method_info |
| 888 | else: |
| 889 | assert 0, "Could not find method in self.functions and no "\ |
| 890 | "instance installed" |
| 891 | |
| 892 | methods[method_name] = method |
| 893 | |
| 894 | documenter = ServerHTMLDoc() |
| 895 | documentation = documenter.docserver( |
| 896 | self.server_name, |
| 897 | self.server_documentation, |
| 898 | methods |
| 899 | ) |
| 900 | |
| 901 | return documenter.page(self.server_title, documentation) |
| 902 | |
| 903 | class DocXMLRPCRequestHandler(SimpleXMLRPCRequestHandler): |
| 904 | """XML-RPC and documentation request handler class. |
| 905 | |
| 906 | Handles all HTTP POST requests and attempts to decode them as |
| 907 | XML-RPC requests. |
| 908 | |
| 909 | Handles all HTTP GET requests and interprets them as requests |
| 910 | for documentation. |
| 911 | """ |
| 912 | |
| 913 | def do_GET(self): |
| 914 | """Handles the HTTP GET request. |
| 915 | |
| 916 | Interpret all HTTP GET requests as requests for server |
| 917 | documentation. |
| 918 | """ |
| 919 | # Check that the path is legal |
| 920 | if not self.is_rpc_path_valid(): |
| 921 | self.report_404() |
| 922 | return |
| 923 | |
Senthil Kumaran | b3af08f | 2009-04-01 20:20:43 +0000 | [diff] [blame] | 924 | response = self.server.generate_html_documentation().encode('utf-8') |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 925 | self.send_response(200) |
| 926 | self.send_header("Content-type", "text/html") |
| 927 | self.send_header("Content-length", str(len(response))) |
| 928 | self.end_headers() |
Senthil Kumaran | b3af08f | 2009-04-01 20:20:43 +0000 | [diff] [blame] | 929 | self.wfile.write(response) |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 930 | |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 931 | class DocXMLRPCServer( SimpleXMLRPCServer, |
| 932 | XMLRPCDocGenerator): |
| 933 | """XML-RPC and HTML documentation server. |
| 934 | |
| 935 | Adds the ability to serve server documentation to the capabilities |
| 936 | of SimpleXMLRPCServer. |
| 937 | """ |
| 938 | |
| 939 | def __init__(self, addr, requestHandler=DocXMLRPCRequestHandler, |
Georg Brandl | fe99105 | 2009-09-16 15:54:04 +0000 | [diff] [blame] | 940 | logRequests=True, allow_none=False, encoding=None, |
Florent Xicluna | 1b7458b | 2011-12-09 22:35:06 +0100 | [diff] [blame] | 941 | bind_and_activate=True, use_builtin_types=False): |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 942 | SimpleXMLRPCServer.__init__(self, addr, requestHandler, logRequests, |
Florent Xicluna | 1b7458b | 2011-12-09 22:35:06 +0100 | [diff] [blame] | 943 | allow_none, encoding, bind_and_activate, |
| 944 | use_builtin_types) |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 945 | XMLRPCDocGenerator.__init__(self) |
| 946 | |
| 947 | class DocCGIXMLRPCRequestHandler( CGIXMLRPCRequestHandler, |
| 948 | XMLRPCDocGenerator): |
| 949 | """Handler for XML-RPC data and documentation requests passed through |
| 950 | CGI""" |
| 951 | |
| 952 | def handle_get(self): |
| 953 | """Handles the HTTP GET request. |
| 954 | |
| 955 | Interpret all HTTP GET requests as requests for server |
| 956 | documentation. |
| 957 | """ |
| 958 | |
Senthil Kumaran | b3af08f | 2009-04-01 20:20:43 +0000 | [diff] [blame] | 959 | response = self.generate_html_documentation().encode('utf-8') |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 960 | |
| 961 | print('Content-Type: text/html') |
| 962 | print('Content-Length: %d' % len(response)) |
| 963 | print() |
Senthil Kumaran | b3af08f | 2009-04-01 20:20:43 +0000 | [diff] [blame] | 964 | sys.stdout.flush() |
| 965 | sys.stdout.buffer.write(response) |
| 966 | sys.stdout.buffer.flush() |
Georg Brandl | 38eceaa | 2008-05-26 11:14:17 +0000 | [diff] [blame] | 967 | |
| 968 | def __init__(self): |
| 969 | CGIXMLRPCRequestHandler.__init__(self) |
| 970 | XMLRPCDocGenerator.__init__(self) |
| 971 | |
| 972 | |
Fredrik Lundh | b329b71 | 2001-09-17 17:35:21 +0000 | [diff] [blame] | 973 | if __name__ == '__main__': |
Senthil Kumaran | 939e2db | 2014-01-12 16:06:58 -0800 | [diff] [blame] | 974 | import datetime |
| 975 | |
| 976 | class ExampleService: |
| 977 | def getData(self): |
| 978 | return '42' |
| 979 | |
| 980 | class currentTime: |
| 981 | @staticmethod |
| 982 | def getCurrentTime(): |
| 983 | return datetime.datetime.now() |
| 984 | |
Martin Panter | 0cab9c1 | 2016-04-13 00:36:52 +0000 | [diff] [blame] | 985 | with SimpleXMLRPCServer(("localhost", 8000)) as server: |
| 986 | server.register_function(pow) |
| 987 | server.register_function(lambda x,y: x+y, 'add') |
| 988 | server.register_instance(ExampleService(), allow_dotted_names=True) |
| 989 | server.register_multicall_functions() |
| 990 | print('Serving XML-RPC on localhost port 8000') |
| 991 | print('It is advisable to run this example server within a secure, closed network.') |
| 992 | try: |
| 993 | server.serve_forever() |
| 994 | except KeyboardInterrupt: |
| 995 | print("\nKeyboard interrupt received, exiting.") |
| 996 | sys.exit(0) |