## XML-RPC CLIENT LIBRARY# $Id$## an XML-RPC client interface for Python.## the marshalling and response parser code can also be used to# implement XML-RPC servers.## Notes:# this version is designed to work with Python 2.1 or newer.## History:# 1999年01月14日 fl Created# 1999年01月15日 fl Changed dateTime to use localtime# 1999年01月16日 fl Added Binary/base64 element, default to RPC2 service# 1999年01月19日 fl Fixed array data element (from Skip Montanaro)# 1999年01月21日 fl Fixed dateTime constructor, etc.# 1999年02月02日 fl Added fault handling, handle empty sequences, etc.# 1999年02月10日 fl Fixed problem with empty responses (from Skip Montanaro)# 1999年06月20日 fl Speed improvements, pluggable parsers/transports (0.9.8)# 2000年11月28日 fl Changed boolean to check the truth value of its argument# 2001年02月24日 fl Added encoding/Unicode/SafeTransport patches# 2001年02月26日 fl Added compare support to wrappers (0.9.9/1.0b1)# 2001年03月28日 fl Make sure response tuple is a singleton# 2001年03月29日 fl Don't require empty params element (from Nicholas Riley)# 2001年06月10日 fl Folded in _xmlrpclib accelerator support (1.0b2)# 2001年08月20日 fl Base xmlrpclib.Error on built-in Exception (from Paul Prescod)# 2001年09月03日 fl Allow Transport subclass to override getparser# 2001年09月10日 fl Lazy import of urllib, cgi, xmllib (20x import speedup)# 2001年10月01日 fl Remove containers from memo cache when done with them# 2001年10月01日 fl Use faster escape method (80% dumps speedup)# 2001年10月02日 fl More dumps microtuning# 2001年10月04日 fl Make sure import expat gets a parser (from Guido van Rossum)# 2001年10月10日 sm Allow long ints to be passed as ints if they don't overflow# 2001年10月17日 sm Test for int and long overflow (allows use on 64-bit systems)# 2001年11月12日 fl Use repr() to marshal doubles (from Paul Felix)# 2002年03月17日 fl Avoid buffered read when possible (from James Rucker)# 2002年04月07日 fl Added pythondoc comments# 2002年04月16日 fl Added __str__ methods to datetime/binary wrappers# 2002年05月15日 fl Added error constants (from Andrew Kuchling)# 2002年06月27日 fl Merged with Python CVS version# 2002年10月22日 fl Added basic authentication (based on code from Phillip Eby)# 2003年01月22日 sm Add support for the bool type# 2003年02月27日 gvr Remove apply calls# 2003年04月24日 sm Use cStringIO if available# 2003年04月25日 ak Add support for nil# 2003年06月15日 gn Add support for time.struct_time# 2003年07月12日 gp Correct marshalling of Faults# 2003年10月31日 mvl Add multicall support# 2004年08月20日 mvl Bump minimum supported Python version to 2.1# 2014年12月02日 ch/doko Add workaround for gzip bomb vulnerability## Copyright (c) 1999-2002 by Secret Labs AB.# Copyright (c) 1999-2002 by Fredrik Lundh.## info@pythonware.com# http://www.pythonware.com## --------------------------------------------------------------------# The XML-RPC client interface is## Copyright (c) 1999-2002 by Secret Labs AB# Copyright (c) 1999-2002 by Fredrik Lundh## By obtaining, using, and/or copying this software and/or its# associated documentation, you agree that you have read, understood,# and will comply with the following terms and conditions:## Permission to use, copy, modify, and distribute this software and# its associated documentation for any purpose and without fee is# hereby granted, provided that the above copyright notice appears in# all copies, and that both that copyright notice and this permission# notice appear in supporting documentation, and that the name of# Secret Labs AB or the author not be used in advertising or publicity# pertaining to distribution of the software without specific, written# prior permission.## SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD# TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANT-# ABILITY AND FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR# BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY# DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,# WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE# OF THIS SOFTWARE.# --------------------------------------------------------------------"""An XML-RPC client interface for Python.The marshalling and response parser code can also be used toimplement XML-RPC servers.Exported exceptions:Error Base class for client errorsProtocolError Indicates an HTTP protocol errorResponseError Indicates a broken response packageFault Indicates an XML-RPC fault packageExported classes:ServerProxy Represents a logical connection to an XML-RPC serverMultiCall Executor of boxcared xmlrpc requestsDateTime dateTime wrapper for an ISO 8601 string or time tuple orlocaltime integer value to generate a "dateTime.iso8601"XML-RPC valueBinary binary data wrapperMarshaller Generate an XML-RPC params chunk from a Python data structureUnmarshaller Unmarshal an XML-RPC response from incoming XML event messageTransport Handles an HTTP transaction to an XML-RPC serverSafeTransport Handles an HTTPS transaction to an XML-RPC serverExported constants:(none)Exported functions:getparser Create instance of the fastest available parser & attachto an unmarshalling objectdumps Convert an argument tuple or a Fault instance to an XML-RPCrequest (or response, if the methodresponse option is used).loads Convert an XML-RPC packet to unmarshalled data plus a methodname (None if not present)."""import base64import sysimport timefrom datetime import datetimefrom decimal import Decimalimport http.clientimport urllib.parsefrom xml.parsers import expatimport errnofrom io import BytesIOtry:import gzipexcept ImportError:gzip = None #python can be built without zlib/gzip support# --------------------------------------------------------------------# Internal stuffdef escape(s):s = s.replace("&", "&")s = s.replace("<", "<")return s.replace(">", ">",)# used in User-Agent header sent__version__ = '%d.%d' % sys.version_info[:2]# xmlrpc integer limitsMAXINT = 2**31-1MININT = -2**31# --------------------------------------------------------------------# Error constants (from Dan Libby's specification at# http://xmlrpc-epi.sourceforge.net/specs/rfc.fault_codes.php)# Ranges of errorsPARSE_ERROR = -32700SERVER_ERROR = -32600APPLICATION_ERROR = -32500SYSTEM_ERROR = -32400TRANSPORT_ERROR = -32300# Specific errorsNOT_WELLFORMED_ERROR = -32700UNSUPPORTED_ENCODING = -32701INVALID_ENCODING_CHAR = -32702INVALID_XMLRPC = -32600METHOD_NOT_FOUND = -32601INVALID_METHOD_PARAMS = -32602INTERNAL_ERROR = -32603# --------------------------------------------------------------------# Exceptions### Base class for all kinds of client-side errors.class Error(Exception):"""Base class for client errors."""__str__ = object.__str__### Indicates an HTTP-level protocol error. This is raised by the HTTP# transport layer, if the server returns an error code other than 200# (OK).## @param url The target URL.# @param errcode The HTTP error code.# @param errmsg The HTTP error message.# @param headers The HTTP header dictionary.class ProtocolError(Error):"""Indicates an HTTP protocol error."""def __init__(self, url, errcode, errmsg, headers):Error.__init__(self)self.url = urlself.errcode = errcodeself.errmsg = errmsgself.headers = headersdef __repr__(self):return ("<%s for %s: %s %s>" %(self.__class__.__name__, self.url, self.errcode, self.errmsg))### Indicates a broken XML-RPC response package. This exception is# raised by the unmarshalling layer, if the XML-RPC response is# malformed.class ResponseError(Error):"""Indicates a broken response package."""pass### Indicates an XML-RPC fault response package. This exception is# raised by the unmarshalling layer, if the XML-RPC response contains# a fault string. This exception can also be used as a class, to# generate a fault XML-RPC message.## @param faultCode The XML-RPC fault code.# @param faultString The XML-RPC fault string.class Fault(Error):"""Indicates an XML-RPC fault package."""def __init__(self, faultCode, faultString, **extra):Error.__init__(self)self.faultCode = faultCodeself.faultString = faultStringdef __repr__(self):return "<%s %s: %r>" % (self.__class__.__name__,self.faultCode, self.faultString)# --------------------------------------------------------------------# Special values### Backwards compatibilityboolean = Boolean = bool### Wrapper for XML-RPC DateTime values. This converts a time value to# the format used by XML-RPC.# <p># The value can be given as a datetime object, as a string in the# format "yyyymmddThh:mm:ss", as a 9-item time tuple (as returned by# time.localtime()), or an integer value (as returned by time.time()).# The wrapper uses time.localtime() to convert an integer to a time# tuple.## @param value The time, given as a datetime object, an ISO 8601 string,# a time tuple, or an integer time value.# Issue #13305: different format codes across platforms_day0 = datetime(1, 1, 1)if _day0.strftime('%Y') == '0001': # Mac OS Xdef _iso8601_format(value):return value.strftime("%Y%m%dT%H:%M:%S")elif _day0.strftime('%4Y') == '0001': # Linuxdef _iso8601_format(value):return value.strftime("%4Y%m%dT%H:%M:%S")else:def _iso8601_format(value):return value.strftime("%Y%m%dT%H:%M:%S").zfill(17)del _day0def _strftime(value):if isinstance(value, datetime):return _iso8601_format(value)if not isinstance(value, (tuple, time.struct_time)):if value == 0:value = time.time()value = time.localtime(value)return "%04d%02d%02dT%02d:%02d:%02d" % value[:6]class DateTime:"""DateTime wrapper for an ISO 8601 string or time tuple orlocaltime integer value to generate 'dateTime.iso8601' XML-RPCvalue."""def __init__(self, value=0):if isinstance(value, str):self.value = valueelse:self.value = _strftime(value)def make_comparable(self, other):if isinstance(other, DateTime):s = self.valueo = other.valueelif isinstance(other, datetime):s = self.valueo = _iso8601_format(other)elif isinstance(other, str):s = self.valueo = otherelif hasattr(other, "timetuple"):s = self.timetuple()o = other.timetuple()else:otype = (hasattr(other, "__class__")and other.__class__.__name__or type(other))raise TypeError("Can't compare %s and %s" %(self.__class__.__name__, otype))return s, odef __lt__(self, other):s, o = self.make_comparable(other)return s < odef __le__(self, other):s, o = self.make_comparable(other)return s <= odef __gt__(self, other):s, o = self.make_comparable(other)return s > odef __ge__(self, other):s, o = self.make_comparable(other)return s >= odef __eq__(self, other):s, o = self.make_comparable(other)return s == odef timetuple(self):return time.strptime(self.value, "%Y%m%dT%H:%M:%S")### Get date/time value.## @return Date/time value, as an ISO 8601 string.def __str__(self):return self.valuedef __repr__(self):return "<%s %r at %#x>" % (self.__class__.__name__, self.value, id(self))def decode(self, data):self.value = str(data).strip()def encode(self, out):out.write("<value><dateTime.iso8601>")out.write(self.value)out.write("</dateTime.iso8601></value>\n")def _datetime(data):# decode xml element contents into a DateTime structure.value = DateTime()value.decode(data)return valuedef _datetime_type(data):return datetime.strptime(data, "%Y%m%dT%H:%M:%S")### Wrapper for binary data. This can be used to transport any kind# of binary data over XML-RPC, using BASE64 encoding.## @param data An 8-bit string containing arbitrary data.class Binary:"""Wrapper for binary data."""def __init__(self, data=None):if data is None:data = b""else:if not isinstance(data, (bytes, bytearray)):raise TypeError("expected bytes or bytearray, not %s" %data.__class__.__name__)data = bytes(data) # Make a copy of the bytes!self.data = data### Get buffer contents.## @return Buffer contents, as an 8-bit string.def __str__(self):return str(self.data, "latin-1") # XXX encoding?!def __eq__(self, other):if isinstance(other, Binary):other = other.datareturn self.data == otherdef decode(self, data):self.data = base64.decodebytes(data)def encode(self, out):out.write("<value><base64>\n")encoded = base64.encodebytes(self.data)out.write(encoded.decode('ascii'))out.write("</base64></value>\n")def _binary(data):# decode xml element contents into a Binary structurevalue = Binary()value.decode(data)return valueWRAPPERS = (DateTime, Binary)# --------------------------------------------------------------------# XML parsersclass ExpatParser:# fast expat parser for Python 2.0 and later.def __init__(self, target):self._parser = parser = expat.ParserCreate(None, None)self._target = targetparser.StartElementHandler = target.startparser.EndElementHandler = target.endparser.CharacterDataHandler = target.dataencoding = Nonetarget.xml(encoding, None)def feed(self, data):self._parser.Parse(data, 0)def close(self):try:parser = self._parserexcept AttributeError:passelse:del self._target, self._parser # get rid of circular referencesparser.Parse(b"", True) # end of data# --------------------------------------------------------------------# XML-RPC marshalling and unmarshalling code### XML-RPC marshaller.## @param encoding Default encoding for 8-bit strings. The default# value is None (interpreted as UTF-8).# @see dumpsclass Marshaller:"""Generate an XML-RPC params chunk from a Python data structure.Create a Marshaller instance for each set of parameters, and usethe "dumps" method to convert your data (represented as a tuple)to an XML-RPC params chunk. To write a fault response, pass aFault instance instead. You may prefer to use the "dumps" modulefunction for this purpose."""# by the way, if you don't understand what's going on in here,# that's perfectly ok.def __init__(self, encoding=None, allow_none=False):self.memo = {}self.data = Noneself.encoding = encodingself.allow_none = allow_nonedispatch = {}def dumps(self, values):out = []write = out.appenddump = self.__dumpif isinstance(values, Fault):# fault instancewrite("<fault>\n")dump({'faultCode': values.faultCode,'faultString': values.faultString},write)write("</fault>\n")else:# parameter block# FIXME: the xml-rpc specification allows us to leave out# the entire <params> block if there are no parameters.# however, changing this may break older code (including# old versions of xmlrpclib.py), so this is better left as# is for now. See @XMLRPC3 for more information. /Fwrite("<params>\n")for v in values:write("<param>\n")dump(v, write)write("</param>\n")write("</params>\n")result = "".join(out)return resultdef __dump(self, value, write):try:f = self.dispatch[type(value)]except KeyError:# check if this object can be marshalled as a structureif not hasattr(value, '__dict__'):raise TypeError("cannot marshal %s objects" % type(value))# check if this class is a sub-class of a basic type,# because we don't know how to marshal these types# (e.g. a string sub-class)for type_ in type(value).__mro__:if type_ in self.dispatch.keys():raise TypeError("cannot marshal %s objects" % type(value))# XXX(twouters): using "_arbitrary_instance" as key as a quick-fix# for the p3yk merge, this should probably be fixed more neatly.f = self.dispatch["_arbitrary_instance"]f(self, value, write)def dump_nil (self, value, write):if not self.allow_none:raise TypeError("cannot marshal None unless allow_none is enabled")write("<value><nil/></value>")dispatch[type(None)] = dump_nildef dump_bool(self, value, write):write("<value><boolean>")write(value and "1" or "0")write("</boolean></value>\n")dispatch[bool] = dump_booldef dump_long(self, value, write):if value > MAXINT or value < MININT:raise OverflowError("int exceeds XML-RPC limits")write("<value><int>")write(str(int(value)))write("</int></value>\n")dispatch[int] = dump_long# backward compatibledump_int = dump_longdef dump_double(self, value, write):write("<value><double>")write(repr(value))write("</double></value>\n")dispatch[float] = dump_doubledef dump_unicode(self, value, write, escape=escape):write("<value><string>")write(escape(value))write("</string></value>\n")dispatch[str] = dump_unicodedef dump_bytes(self, value, write):write("<value><base64>\n")encoded = base64.encodebytes(value)write(encoded.decode('ascii'))write("</base64></value>\n")dispatch[bytes] = dump_bytesdispatch[bytearray] = dump_bytesdef dump_array(self, value, write):i = id(value)if i in self.memo:raise TypeError("cannot marshal recursive sequences")self.memo[i] = Nonedump = self.__dumpwrite("<value><array><data>\n")for v in value:dump(v, write)write("</data></array></value>\n")del self.memo[i]dispatch[tuple] = dump_arraydispatch[list] = dump_arraydef dump_struct(self, value, write, escape=escape):i = id(value)if i in self.memo:raise TypeError("cannot marshal recursive dictionaries")self.memo[i] = Nonedump = self.__dumpwrite("<value><struct>\n")for k, v in value.items():write("<member>\n")if not isinstance(k, str):raise TypeError("dictionary key must be string")write("<name>%s</name>\n" % escape(k))dump(v, write)write("</member>\n")write("</struct></value>\n")del self.memo[i]dispatch[dict] = dump_structdef dump_datetime(self, value, write):write("<value><dateTime.iso8601>")write(_strftime(value))write("</dateTime.iso8601></value>\n")dispatch[datetime] = dump_datetimedef dump_instance(self, value, write):# check for special wrappersif value.__class__ in WRAPPERS:self.write = writevalue.encode(self)del self.writeelse:# store instance attributes as a struct (really?)self.dump_struct(value.__dict__, write)dispatch[DateTime] = dump_instancedispatch[Binary] = dump_instance# XXX(twouters): using "_arbitrary_instance" as key as a quick-fix# for the p3yk merge, this should probably be fixed more neatly.dispatch["_arbitrary_instance"] = dump_instance### XML-RPC unmarshaller.## @see loadsclass Unmarshaller:"""Unmarshal an XML-RPC response, based on incoming XML eventmessages (start, data, end). Call close() to get the resultingdata structure.Note that this reader is fairly tolerant, and gladly accepts bogusXML-RPC data without complaining (but not bogus XML)."""# and again, if you don't understand what's going on in here,# that's perfectly ok.def __init__(self, use_datetime=False, use_builtin_types=False):self._type = Noneself._stack = []self._marks = []self._data = []self._value = Falseself._methodname = Noneself._encoding = "utf-8"self.append = self._stack.appendself._use_datetime = use_builtin_types or use_datetimeself._use_bytes = use_builtin_typesdef close(self):# return response tuple and target methodif self._type is None or self._marks:raise ResponseError()if self._type == "fault":raise Fault(**self._stack[0])return tuple(self._stack)def getmethodname(self):return self._methodname## event handlersdef xml(self, encoding, standalone):self._encoding = encoding# FIXME: assert standalone == 1 ???def start(self, tag, attrs):# prepare to handle this elementif ':' in tag:tag = tag.split(':')[-1]if tag == "array" or tag == "struct":self._marks.append(len(self._stack))self._data = []if self._value and tag not in self.dispatch:raise ResponseError("unknown tag %r" % tag)self._value = (tag == "value")def data(self, text):self._data.append(text)def end(self, tag):# call the appropriate end tag handlertry:f = self.dispatch[tag]except KeyError:if ':' not in tag:return # unknown tag ?try:f = self.dispatch[tag.split(':')[-1]]except KeyError:return # unknown tag ?return f(self, "".join(self._data))## accelerator supportdef end_dispatch(self, tag, data):# dispatch datatry:f = self.dispatch[tag]except KeyError:if ':' not in tag:return # unknown tag ?try:f = self.dispatch[tag.split(':')[-1]]except KeyError:return # unknown tag ?return f(self, data)## element decodersdispatch = {}def end_nil (self, data):self.append(None)self._value = 0dispatch["nil"] = end_nildef end_boolean(self, data):if data == "0":self.append(False)elif data == "1":self.append(True)else:raise TypeError("bad boolean value")self._value = 0dispatch["boolean"] = end_booleandef end_int(self, data):self.append(int(data))self._value = 0dispatch["i1"] = end_intdispatch["i2"] = end_intdispatch["i4"] = end_intdispatch["i8"] = end_intdispatch["int"] = end_intdispatch["biginteger"] = end_intdef end_double(self, data):self.append(float(data))self._value = 0dispatch["double"] = end_doubledispatch["float"] = end_doubledef end_bigdecimal(self, data):self.append(Decimal(data))self._value = 0dispatch["bigdecimal"] = end_bigdecimaldef end_string(self, data):if self._encoding:data = data.decode(self._encoding)self.append(data)self._value = 0dispatch["string"] = end_stringdispatch["name"] = end_string # struct keys are always stringsdef end_array(self, data):mark = self._marks.pop()# map arrays to Python listsself._stack[mark:] = [self._stack[mark:]]self._value = 0dispatch["array"] = end_arraydef end_struct(self, data):mark = self._marks.pop()# map structs to Python dictionariesdict = {}items = self._stack[mark:]for i in range(0, len(items), 2):dict[items[i]] = items[i+1]self._stack[mark:] = [dict]self._value = 0dispatch["struct"] = end_structdef end_base64(self, data):value = Binary()value.decode(data.encode("ascii"))if self._use_bytes:value = value.dataself.append(value)self._value = 0dispatch["base64"] = end_base64def end_dateTime(self, data):value = DateTime()value.decode(data)if self._use_datetime:value = _datetime_type(data)self.append(value)dispatch["dateTime.iso8601"] = end_dateTimedef end_value(self, data):# if we stumble upon a value element with no internal# elements, treat it as a string elementif self._value:self.end_string(data)dispatch["value"] = end_valuedef end_params(self, data):self._type = "params"dispatch["params"] = end_paramsdef end_fault(self, data):self._type = "fault"dispatch["fault"] = end_faultdef end_methodName(self, data):if self._encoding:data = data.decode(self._encoding)self._methodname = dataself._type = "methodName" # no paramsdispatch["methodName"] = end_methodName## Multicall support#class _MultiCallMethod:# some lesser magic to store calls made to a MultiCall object# for batch executiondef __init__(self, call_list, name):self.__call_list = call_listself.__name = namedef __getattr__(self, name):return _MultiCallMethod(self.__call_list, "%s.%s" % (self.__name, name))def __call__(self, *args):self.__call_list.append((self.__name, args))class MultiCallIterator:"""Iterates over the results of a multicall. Exceptions areraised in response to xmlrpc faults."""def __init__(self, results):self.results = resultsdef __getitem__(self, i):item = self.results[i]if type(item) == type({}):raise Fault(item['faultCode'], item['faultString'])elif type(item) == type([]):return item[0]else:raise ValueError("unexpected type in multicall result")class MultiCall:"""server -> an object used to boxcar method callsserver should be a ServerProxy object.Methods can be added to the MultiCall using normalmethod call syntax e.g.:multicall = MultiCall(server_proxy)multicall.add(2,3)multicall.get_address("Guido")To execute the multicall, call the MultiCall object e.g.:add_result, address = multicall()"""def __init__(self, server):self.__server = serverself.__call_list = []def __repr__(self):return "<%s at %#x>" % (self.__class__.__name__, id(self))def __getattr__(self, name):return _MultiCallMethod(self.__call_list, name)def __call__(self):marshalled_list = []for name, args in self.__call_list:marshalled_list.append({'methodName' : name, 'params' : args})return MultiCallIterator(self.__server.system.multicall(marshalled_list))# --------------------------------------------------------------------# convenience functionsFastMarshaller = FastParser = FastUnmarshaller = None### Create a parser object, and connect it to an unmarshalling instance.# This function picks the fastest available XML parser.## return A (parser, unmarshaller) tuple.def getparser(use_datetime=False, use_builtin_types=False):"""getparser() -> parser, unmarshallerCreate an instance of the fastest available parser, and attach itto an unmarshalling object. Return both objects."""if FastParser and FastUnmarshaller:if use_builtin_types:mkdatetime = _datetime_typemkbytes = base64.decodebyteselif use_datetime:mkdatetime = _datetime_typemkbytes = _binaryelse:mkdatetime = _datetimemkbytes = _binarytarget = FastUnmarshaller(True, False, mkbytes, mkdatetime, Fault)parser = FastParser(target)else:target = Unmarshaller(use_datetime=use_datetime, use_builtin_types=use_builtin_types)if FastParser:parser = FastParser(target)else:parser = ExpatParser(target)return parser, target### Convert a Python tuple or a Fault instance to an XML-RPC packet.## @def dumps(params, **options)# @param params A tuple or Fault instance.# @keyparam methodname If given, create a methodCall request for# this method name.# @keyparam methodresponse If given, create a methodResponse packet.# If used with a tuple, the tuple must be a singleton (that is,# it must contain exactly one element).# @keyparam encoding The packet encoding.# @return A string containing marshalled data.def dumps(params, methodname=None, methodresponse=None, encoding=None,allow_none=False):"""data [,options] -> marshalled dataConvert an argument tuple or a Fault instance to an XML-RPCrequest (or response, if the methodresponse option is used).In addition to the data object, the following options can be givenas keyword arguments:methodname: the method name for a methodCall packetmethodresponse: true to create a methodResponse packet.If this option is used with a tuple, the tuple must bea singleton (i.e. it can contain only one element).encoding: the packet encoding (default is UTF-8)All byte strings in the data structure are assumed to use thepacket encoding. Unicode strings are automatically converted,where necessary."""assert isinstance(params, (tuple, Fault)), "argument must be tuple or Fault instance"if isinstance(params, Fault):methodresponse = 1elif methodresponse and isinstance(params, tuple):assert len(params) == 1, "response tuple must be a singleton"if not encoding:encoding = "utf-8"if FastMarshaller:m = FastMarshaller(encoding)else:m = Marshaller(encoding, allow_none)data = m.dumps(params)if encoding != "utf-8":xmlheader = "<?xml version='1.0' encoding='%s'?>\n" % str(encoding)else:xmlheader = "<?xml version='1.0'?>\n" # utf-8 is default# standard XML-RPC wrappingsif methodname:# a method calldata = (xmlheader,"<methodCall>\n""<methodName>", methodname, "</methodName>\n",data,"</methodCall>\n")elif methodresponse:# a method response, or a fault structuredata = (xmlheader,"<methodResponse>\n",data,"</methodResponse>\n")else:return data # return as isreturn "".join(data)### Convert an XML-RPC packet to a Python object. If the XML-RPC packet# represents a fault condition, this function raises a Fault exception.## @param data An XML-RPC packet, given as an 8-bit string.# @return A tuple containing the unpacked data, and the method name# (None if not present).# @see Faultdef loads(data, use_datetime=False, use_builtin_types=False):"""data -> unmarshalled data, method nameConvert an XML-RPC packet to unmarshalled data plus a methodname (None if not present).If the XML-RPC packet represents a fault condition, this functionraises a Fault exception."""p, u = getparser(use_datetime=use_datetime, use_builtin_types=use_builtin_types)p.feed(data)p.close()return u.close(), u.getmethodname()### Encode a string using the gzip content encoding such as specified by the# Content-Encoding: gzip# in the HTTP header, as described in RFC 1952## @param data the unencoded data# @return the encoded datadef gzip_encode(data):"""data -> gzip encoded dataEncode data using the gzip content encoding as described in RFC 1952"""if not gzip:raise NotImplementedErrorf = BytesIO()with gzip.GzipFile(mode="wb", fileobj=f, compresslevel=1) as gzf:gzf.write(data)return f.getvalue()### Decode a string using the gzip content encoding such as specified by the# Content-Encoding: gzip# in the HTTP header, as described in RFC 1952## @param data The encoded data# @keyparam max_decode Maximum bytes to decode (20 MiB default), use negative# values for unlimited decoding# @return the unencoded data# @raises ValueError if data is not correctly coded.# @raises ValueError if max gzipped payload length exceededdef gzip_decode(data, max_decode=20971520):"""gzip encoded data -> unencoded dataDecode data using the gzip content encoding as described in RFC 1952"""if not gzip:raise NotImplementedErrorwith gzip.GzipFile(mode="rb", fileobj=BytesIO(data)) as gzf:try:if max_decode < 0: # no limitdecoded = gzf.read()else:decoded = gzf.read(max_decode + 1)except OSError:raise ValueError("invalid data")if max_decode >= 0 and len(decoded) > max_decode:raise ValueError("max gzipped payload length exceeded")return decoded### Return a decoded file-like object for the gzip encoding# as described in RFC 1952.## @param response A stream supporting a read() method# @return a file-like object that the decoded data can be read() fromclass GzipDecodedResponse(gzip.GzipFile if gzip else object):"""a file-like object to decode a response encoded with the gzipmethod, as described in RFC 1952."""def __init__(self, response):#response doesn't support tell() and read(), required by#GzipFileif not gzip:raise NotImplementedErrorself.io = BytesIO(response.read())gzip.GzipFile.__init__(self, mode="rb", fileobj=self.io)def close(self):try:gzip.GzipFile.close(self)finally:self.io.close()# --------------------------------------------------------------------# request dispatcherclass _Method:# some magic to bind an XML-RPC method to an RPC server.# supports "nested" methods (e.g. examples.getStateName)def __init__(self, send, name):self.__send = sendself.__name = namedef __getattr__(self, name):return _Method(self.__send, "%s.%s" % (self.__name, name))def __call__(self, *args):return self.__send(self.__name, args)### Standard transport class for XML-RPC over HTTP.# <p># You can create custom transports by subclassing this method, and# overriding selected methods.class Transport:"""Handles an HTTP transaction to an XML-RPC server."""# client identifier (may be overridden)user_agent = "Python-xmlrpc/%s" % __version__#if true, we'll request gzip encodingaccept_gzip_encoding = True# if positive, encode request using gzip if it exceeds this threshold# note that many servers will get confused, so only use it if you know# that they can decode such a requestencode_threshold = None #None = don't encodedef __init__(self, use_datetime=False, use_builtin_types=False,*, headers=()):self._use_datetime = use_datetimeself._use_builtin_types = use_builtin_typesself._connection = (None, None)self._headers = list(headers)self._extra_headers = []### Send a complete request, and parse the response.# Retry request if a cached connection has disconnected.## @param host Target host.# @param handler Target PRC handler.# @param request_body XML-RPC request body.# @param verbose Debugging flag.# @return Parsed response.def request(self, host, handler, request_body, verbose=False):#retry request once if cached connection has gone coldfor i in (0, 1):try:return self.single_request(host, handler, request_body, verbose)except http.client.RemoteDisconnected:if i:raiseexcept OSError as e:if i or e.errno not in (errno.ECONNRESET, errno.ECONNABORTED,errno.EPIPE):raisedef single_request(self, host, handler, request_body, verbose=False):# issue XML-RPC requesttry:http_conn = self.send_request(host, handler, request_body, verbose)resp = http_conn.getresponse()if resp.status == 200:self.verbose = verbosereturn self.parse_response(resp)except Fault:raiseexcept Exception:#All unexpected errors leave connection in# a strange state, so we clear it.self.close()raise#We got an error response.#Discard any response data and raise exceptionif resp.getheader("content-length", ""):resp.read()raise ProtocolError(host + handler,resp.status, resp.reason,dict(resp.getheaders()))### Create parser.## @return A 2-tuple containing a parser and an unmarshaller.def getparser(self):# get parser and unmarshallerreturn getparser(use_datetime=self._use_datetime,use_builtin_types=self._use_builtin_types)### Get authorization info from host parameter# Host may be a string, or a (host, x509-dict) tuple; if a string,# it is checked for a "user:pw@host" format, and a "Basic# Authentication" header is added if appropriate.## @param host Host descriptor (URL or (URL, x509 info) tuple).# @return A 3-tuple containing (actual host, extra headers,# x509 info). The header and x509 fields may be None.def get_host_info(self, host):x509 = {}if isinstance(host, tuple):host, x509 = hostauth, host = urllib.parse._splituser(host)if auth:auth = urllib.parse.unquote_to_bytes(auth)auth = base64.encodebytes(auth).decode("utf-8")auth = "".join(auth.split()) # get rid of whitespaceextra_headers = [("Authorization", "Basic " + auth)]else:extra_headers = []return host, extra_headers, x509### Connect to server.## @param host Target host.# @return An HTTPConnection objectdef make_connection(self, host):#return an existing connection if possible. This allows#HTTP/1.1 keep-alive.if self._connection and host == self._connection[0]:return self._connection[1]# create a HTTP connection object from a host descriptorchost, self._extra_headers, x509 = self.get_host_info(host)self._connection = host, http.client.HTTPConnection(chost)return self._connection[1]### Clear any cached connection object.# Used in the event of socket errors.#def close(self):host, connection = self._connectionif connection:self._connection = (None, None)connection.close()### Send HTTP request.## @param host Host descriptor (URL or (URL, x509 info) tuple).# @param handler Target RPC handler (a path relative to host)# @param request_body The XML-RPC request body# @param debug Enable debugging if debug is true.# @return An HTTPConnection.def send_request(self, host, handler, request_body, debug):connection = self.make_connection(host)headers = self._headers + self._extra_headersif debug:connection.set_debuglevel(1)if self.accept_gzip_encoding and gzip:connection.putrequest("POST", handler, skip_accept_encoding=True)headers.append(("Accept-Encoding", "gzip"))else:connection.putrequest("POST", handler)headers.append(("Content-Type", "text/xml"))headers.append(("User-Agent", self.user_agent))self.send_headers(connection, headers)self.send_content(connection, request_body)return connection### Send request headers.# This function provides a useful hook for subclassing## @param connection httpConnection.# @param headers list of key,value pairs for HTTP headersdef send_headers(self, connection, headers):for key, val in headers:connection.putheader(key, val)### Send request body.# This function provides a useful hook for subclassing## @param connection httpConnection.# @param request_body XML-RPC request body.def send_content(self, connection, request_body):#optionally encode the requestif (self.encode_threshold is not None andself.encode_threshold < len(request_body) andgzip):connection.putheader("Content-Encoding", "gzip")request_body = gzip_encode(request_body)connection.putheader("Content-Length", str(len(request_body)))connection.endheaders(request_body)### Parse response.## @param file Stream.# @return Response tuple and target method.def parse_response(self, response):# read response data from httpresponse, and parse it# Check for new http response object, otherwise it is a file object.if hasattr(response, 'getheader'):if response.getheader("Content-Encoding", "") == "gzip":stream = GzipDecodedResponse(response)else:stream = responseelse:stream = responsep, u = self.getparser()while 1:data = stream.read(1024)if not data:breakif self.verbose:print("body:", repr(data))p.feed(data)if stream is not response:stream.close()p.close()return u.close()### Standard transport class for XML-RPC over HTTPS.class SafeTransport(Transport):"""Handles an HTTPS transaction to an XML-RPC server."""def __init__(self, use_datetime=False, use_builtin_types=False,*, headers=(), context=None):super().__init__(use_datetime=use_datetime,use_builtin_types=use_builtin_types,headers=headers)self.context = context# FIXME: mostly untesteddef make_connection(self, host):if self._connection and host == self._connection[0]:return self._connection[1]if not hasattr(http.client, "HTTPSConnection"):raise NotImplementedError("your version of http.client doesn't support HTTPS")# create a HTTPS connection object from a host descriptor# host may be a string, or a (host, x509-dict) tuplechost, self._extra_headers, x509 = self.get_host_info(host)self._connection = host, http.client.HTTPSConnection(chost,None, context=self.context, **(x509 or {}))return self._connection[1]### Standard server proxy. This class establishes a virtual connection# to an XML-RPC server.# <p># This class is available as ServerProxy and Server. New code should# use ServerProxy, to avoid confusion.## @def ServerProxy(uri, **options)# @param uri The connection point on the server.# @keyparam transport A transport factory, compatible with the# standard transport class.# @keyparam encoding The default encoding used for 8-bit strings# (default is UTF-8).# @keyparam verbose Use a true value to enable debugging output.# (printed to standard output).# @see Transportclass ServerProxy:"""uri [,options] -> a logical connection to an XML-RPC serveruri is the connection point on the server, given asscheme://host/target.The standard implementation always supports the "http" scheme. IfSSL socket support is available (Python 2.0), it also supports"https".If the target part and the slash preceding it are both omitted,"/RPC2" is assumed.The following options can be given as keyword arguments:transport: a transport factoryencoding: the request encoding (default is UTF-8)All 8-bit strings passed to the server proxy are assumed to usethe given encoding."""def __init__(self, uri, transport=None, encoding=None, verbose=False,allow_none=False, use_datetime=False, use_builtin_types=False,*, headers=(), context=None):# establish a "logical" server connection# get the urltype, uri = urllib.parse._splittype(uri)if type not in ("http", "https"):raise OSError("unsupported XML-RPC protocol")self.__host, self.__handler = urllib.parse._splithost(uri)if not self.__handler:self.__handler = "/RPC2"if transport is None:if type == "https":handler = SafeTransportextra_kwargs = {"context": context}else:handler = Transportextra_kwargs = {}transport = handler(use_datetime=use_datetime,use_builtin_types=use_builtin_types,headers=headers,**extra_kwargs)self.__transport = transportself.__encoding = encoding or 'utf-8'self.__verbose = verboseself.__allow_none = allow_nonedef __close(self):self.__transport.close()def __request(self, methodname, params):# call a method on the remote serverrequest = dumps(params, methodname, encoding=self.__encoding,allow_none=self.__allow_none).encode(self.__encoding, 'xmlcharrefreplace')response = self.__transport.request(self.__host,self.__handler,request,verbose=self.__verbose)if len(response) == 1:response = response[0]return responsedef __repr__(self):return ("<%s for %s%s>" %(self.__class__.__name__, self.__host, self.__handler))def __getattr__(self, name):# magic method dispatcherreturn _Method(self.__request, name)# note: to call a remote object with a non-standard name, use# result getattr(server, "strange-python-name")(args)def __call__(self, attr):"""A workaround to get special attributes on the ServerProxywithout interfering with the magic __getattr__"""if attr == "close":return self.__closeelif attr == "transport":return self.__transportraise AttributeError("Attribute %r not found" % (attr,))def __enter__(self):return selfdef __exit__(self, *args):self.__close()# compatibilityServer = ServerProxy# --------------------------------------------------------------------# test codeif __name__ == "__main__":# simple test program (from the XML-RPC specification)# local server, available from Lib/xmlrpc/server.pyserver = ServerProxy("http://localhost:8000")try:print(server.currentTime.getCurrentTime())except Error as v:print("ERROR", v)multi = MultiCall(server)multi.getData()multi.pow(2,9)multi.add(1,2)try:for response in multi():print(response)except Error as v:print("ERROR", v)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。