/home/fresvfqn/waterdamagerestorationandrepairsmithtown.com/Compressed/xmlrpc.tar
client.py000064400000137774150532415240006420 0ustar00#
# 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 to
implement XML-RPC servers.

Exported exceptions:

  Error          Base class for client errors
  ProtocolError  Indicates an HTTP protocol error
  ResponseError  Indicates a broken response package
  Fault          Indicates an XML-RPC fault package

Exported classes:

  ServerProxy    Represents a logical connection to an XML-RPC server

  MultiCall      Executor of boxcared xmlrpc requests
  DateTime       dateTime wrapper for an ISO 8601 string or time tuple or
                 localtime integer value to generate a "dateTime.iso8601"
                 XML-RPC value
  Binary         binary data wrapper

  Marshaller     Generate an XML-RPC params chunk from a Python data structure
  Unmarshaller   Unmarshal an XML-RPC response from incoming XML event message
  Transport      Handles an HTTP transaction to an XML-RPC server
  SafeTransport  Handles an HTTPS transaction to an XML-RPC server

Exported constants:

  (none)

Exported functions:

  getparser      Create instance of the fastest available parser & attach
                 to an unmarshalling object
  dumps          Convert an argument tuple or a Fault instance to an XML-RPC
                 request (or response, if the methodresponse option is used).
  loads          Convert an XML-RPC packet to unmarshalled data plus a method
                 name (None if not present).
"""

import base64
import sys
import time
from datetime import datetime
from decimal import Decimal
import http.client
import urllib.parse
from xml.parsers import expat
import errno
from io import BytesIO
try:
    import gzip
except ImportError:
    gzip = None #python can be built without zlib/gzip support

# --------------------------------------------------------------------
# Internal stuff

def escape(s):
    s = s.replace("&", "&")
    s = s.replace("<", "&lt;")
    return s.replace(">", "&gt;",)

# used in User-Agent header sent
__version__ = '%d.%d' % sys.version_info[:2]

# xmlrpc integer limits
MAXINT =  2**31-1
MININT = -2**31

# --------------------------------------------------------------------
# Error constants (from Dan Libby's specification at
# http://xmlrpc-epi.sourceforge.net/specs/rfc.fault_codes.php)

# Ranges of errors
PARSE_ERROR       = -32700
SERVER_ERROR      = -32600
APPLICATION_ERROR = -32500
SYSTEM_ERROR      = -32400
TRANSPORT_ERROR   = -32300

# Specific errors
NOT_WELLFORMED_ERROR  = -32700
UNSUPPORTED_ENCODING  = -32701
INVALID_ENCODING_CHAR = -32702
INVALID_XMLRPC        = -32600
METHOD_NOT_FOUND      = -32601
INVALID_METHOD_PARAMS = -32602
INTERNAL_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 = url
        self.errcode = errcode
        self.errmsg = errmsg
        self.headers = headers
    def __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 = faultCode
        self.faultString = faultString
    def __repr__(self):
        return "<%s %s: %r>" % (self.__class__.__name__,
                                self.faultCode, self.faultString)

# --------------------------------------------------------------------
# Special values

##
# Backwards compatibility

boolean = 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 X
    def _iso8601_format(value):
        return value.strftime("%Y%m%dT%H:%M:%S")
elif _day0.strftime('%4Y') == '0001':   # Linux
    def _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 _day0


def _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 or
    localtime integer value to generate 'dateTime.iso8601' XML-RPC
    value.
    """

    def __init__(self, value=0):
        if isinstance(value, str):
            self.value = value
        else:
            self.value = _strftime(value)

    def make_comparable(self, other):
        if isinstance(other, DateTime):
            s = self.value
            o = other.value
        elif isinstance(other, datetime):
            s = self.value
            o = _iso8601_format(other)
        elif isinstance(other, str):
            s = self.value
            o = other
        elif 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, o

    def __lt__(self, other):
        s, o = self.make_comparable(other)
        return s < o

    def __le__(self, other):
        s, o = self.make_comparable(other)
        return s <= o

    def __gt__(self, other):
        s, o = self.make_comparable(other)
        return s > o

    def __ge__(self, other):
        s, o = self.make_comparable(other)
        return s >= o

    def __eq__(self, other):
        s, o = self.make_comparable(other)
        return s == o

    def 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.value

    def __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 value

def _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.data
        return self.data == other

    def 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 structure
    value = Binary()
    value.decode(data)
    return value

WRAPPERS = (DateTime, Binary)

# --------------------------------------------------------------------
# XML parsers

class ExpatParser:
    # fast expat parser for Python 2.0 and later.
    def __init__(self, target):
        self._parser = parser = expat.ParserCreate(None, None)
        self._target = target
        parser.StartElementHandler = target.start
        parser.EndElementHandler = target.end
        parser.CharacterDataHandler = target.data
        encoding = None
        target.xml(encoding, None)

    def feed(self, data):
        self._parser.Parse(data, 0)

    def close(self):
        try:
            parser = self._parser
        except AttributeError:
            pass
        else:
            del self._target, self._parser # get rid of circular references
            parser.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 dumps

class Marshaller:
    """Generate an XML-RPC params chunk from a Python data structure.

    Create a Marshaller instance for each set of parameters, and use
    the "dumps" method to convert your data (represented as a tuple)
    to an XML-RPC params chunk.  To write a fault response, pass a
    Fault instance instead.  You may prefer to use the "dumps" module
    function 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 = None
        self.encoding = encoding
        self.allow_none = allow_none

    dispatch = {}

    def dumps(self, values):
        out = []
        write = out.append
        dump = self.__dump
        if isinstance(values, Fault):
            # fault instance
            write("<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. /F
            write("<params>\n")
            for v in values:
                write("<param>\n")
                dump(v, write)
                write("</param>\n")
            write("</params>\n")
        result = "".join(out)
        return result

    def __dump(self, value, write):
        try:
            f = self.dispatch[type(value)]
        except KeyError:
            # check if this object can be marshalled as a structure
            if 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_nil

    def dump_bool(self, value, write):
        write("<value><boolean>")
        write(value and "1" or "0")
        write("</boolean></value>\n")
    dispatch[bool] = dump_bool

    def 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 compatible
    dump_int = dump_long

    def dump_double(self, value, write):
        write("<value><double>")
        write(repr(value))
        write("</double></value>\n")
    dispatch[float] = dump_double

    def dump_unicode(self, value, write, escape=escape):
        write("<value><string>")
        write(escape(value))
        write("</string></value>\n")
    dispatch[str] = dump_unicode

    def dump_bytes(self, value, write):
        write("<value><base64>\n")
        encoded = base64.encodebytes(value)
        write(encoded.decode('ascii'))
        write("</base64></value>\n")
    dispatch[bytes] = dump_bytes
    dispatch[bytearray] = dump_bytes

    def dump_array(self, value, write):
        i = id(value)
        if i in self.memo:
            raise TypeError("cannot marshal recursive sequences")
        self.memo[i] = None
        dump = self.__dump
        write("<value><array><data>\n")
        for v in value:
            dump(v, write)
        write("</data></array></value>\n")
        del self.memo[i]
    dispatch[tuple] = dump_array
    dispatch[list] = dump_array

    def dump_struct(self, value, write, escape=escape):
        i = id(value)
        if i in self.memo:
            raise TypeError("cannot marshal recursive dictionaries")
        self.memo[i] = None
        dump = self.__dump
        write("<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_struct

    def dump_datetime(self, value, write):
        write("<value><dateTime.iso8601>")
        write(_strftime(value))
        write("</dateTime.iso8601></value>\n")
    dispatch[datetime] = dump_datetime

    def dump_instance(self, value, write):
        # check for special wrappers
        if value.__class__ in WRAPPERS:
            self.write = write
            value.encode(self)
            del self.write
        else:
            # store instance attributes as a struct (really?)
            self.dump_struct(value.__dict__, write)
    dispatch[DateTime] = dump_instance
    dispatch[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 loads

class Unmarshaller:
    """Unmarshal an XML-RPC response, based on incoming XML event
    messages (start, data, end).  Call close() to get the resulting
    data structure.

    Note that this reader is fairly tolerant, and gladly accepts bogus
    XML-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 = None
        self._stack = []
        self._marks = []
        self._data = []
        self._value = False
        self._methodname = None
        self._encoding = "utf-8"
        self.append = self._stack.append
        self._use_datetime = use_builtin_types or use_datetime
        self._use_bytes = use_builtin_types

    def close(self):
        # return response tuple and target method
        if 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 handlers

    def xml(self, encoding, standalone):
        self._encoding = encoding
        # FIXME: assert standalone == 1 ???

    def start(self, tag, attrs):
        # prepare to handle this element
        if ':' 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 handler
        try:
            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 support

    def end_dispatch(self, tag, data):
        # dispatch data
        try:
            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 decoders

    dispatch = {}

    def end_nil (self, data):
        self.append(None)
        self._value = 0
    dispatch["nil"] = end_nil

    def end_boolean(self, data):
        if data == "0":
            self.append(False)
        elif data == "1":
            self.append(True)
        else:
            raise TypeError("bad boolean value")
        self._value = 0
    dispatch["boolean"] = end_boolean

    def end_int(self, data):
        self.append(int(data))
        self._value = 0
    dispatch["i1"] = end_int
    dispatch["i2"] = end_int
    dispatch["i4"] = end_int
    dispatch["i8"] = end_int
    dispatch["int"] = end_int
    dispatch["biginteger"] = end_int

    def end_double(self, data):
        self.append(float(data))
        self._value = 0
    dispatch["double"] = end_double
    dispatch["float"] = end_double

    def end_bigdecimal(self, data):
        self.append(Decimal(data))
        self._value = 0
    dispatch["bigdecimal"] = end_bigdecimal

    def end_string(self, data):
        if self._encoding:
            data = data.decode(self._encoding)
        self.append(data)
        self._value = 0
    dispatch["string"] = end_string
    dispatch["name"] = end_string # struct keys are always strings

    def end_array(self, data):
        mark = self._marks.pop()
        # map arrays to Python lists
        self._stack[mark:] = [self._stack[mark:]]
        self._value = 0
    dispatch["array"] = end_array

    def end_struct(self, data):
        mark = self._marks.pop()
        # map structs to Python dictionaries
        dict = {}
        items = self._stack[mark:]
        for i in range(0, len(items), 2):
            dict[items[i]] = items[i+1]
        self._stack[mark:] = [dict]
        self._value = 0
    dispatch["struct"] = end_struct

    def end_base64(self, data):
        value = Binary()
        value.decode(data.encode("ascii"))
        if self._use_bytes:
            value = value.data
        self.append(value)
        self._value = 0
    dispatch["base64"] = end_base64

    def end_dateTime(self, data):
        value = DateTime()
        value.decode(data)
        if self._use_datetime:
            value = _datetime_type(data)
        self.append(value)
    dispatch["dateTime.iso8601"] = end_dateTime

    def end_value(self, data):
        # if we stumble upon a value element with no internal
        # elements, treat it as a string element
        if self._value:
            self.end_string(data)
    dispatch["value"] = end_value

    def end_params(self, data):
        self._type = "params"
    dispatch["params"] = end_params

    def end_fault(self, data):
        self._type = "fault"
    dispatch["fault"] = end_fault

    def end_methodName(self, data):
        if self._encoding:
            data = data.decode(self._encoding)
        self._methodname = data
        self._type = "methodName" # no params
    dispatch["methodName"] = end_methodName

## Multicall support
#

class _MultiCallMethod:
    # some lesser magic to store calls made to a MultiCall object
    # for batch execution
    def __init__(self, call_list, name):
        self.__call_list = call_list
        self.__name = name
    def __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 are
    raised in response to xmlrpc faults."""

    def __init__(self, results):
        self.results = results

    def __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 calls

    server should be a ServerProxy object.

    Methods can be added to the MultiCall using normal
    method 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 = server
        self.__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 functions

FastMarshaller = 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, unmarshaller

    Create an instance of the fastest available parser, and attach it
    to an unmarshalling object.  Return both objects.
    """
    if FastParser and FastUnmarshaller:
        if use_builtin_types:
            mkdatetime = _datetime_type
            mkbytes = base64.decodebytes
        elif use_datetime:
            mkdatetime = _datetime_type
            mkbytes = _binary
        else:
            mkdatetime = _datetime
            mkbytes = _binary
        target = 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 data

    Convert an argument tuple or a Fault instance to an XML-RPC
    request (or response, if the methodresponse option is used).

    In addition to the data object, the following options can be given
    as keyword arguments:

        methodname: the method name for a methodCall packet

        methodresponse: true to create a methodResponse packet.
        If this option is used with a tuple, the tuple must be
        a 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 the
    packet 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 = 1
    elif 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 wrappings
    if methodname:
        # a method call
        data = (
            xmlheader,
            "<methodCall>\n"
            "<methodName>", methodname, "</methodName>\n",
            data,
            "</methodCall>\n"
            )
    elif methodresponse:
        # a method response, or a fault structure
        data = (
            xmlheader,
            "<methodResponse>\n",
            data,
            "</methodResponse>\n"
            )
    else:
        return data # return as is
    return "".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 Fault

def loads(data, use_datetime=False, use_builtin_types=False):
    """data -> unmarshalled data, method name

    Convert an XML-RPC packet to unmarshalled data plus a method
    name (None if not present).

    If the XML-RPC packet represents a fault condition, this function
    raises 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 data

def gzip_encode(data):
    """data -> gzip encoded data

    Encode data using the gzip content encoding as described in RFC 1952
    """
    if not gzip:
        raise NotImplementedError
    f = 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 exceeded

def gzip_decode(data, max_decode=20971520):
    """gzip encoded data -> unencoded data

    Decode data using the gzip content encoding as described in RFC 1952
    """
    if not gzip:
        raise NotImplementedError
    with gzip.GzipFile(mode="rb", fileobj=BytesIO(data)) as gzf:
        try:
            if max_decode < 0: # no limit
                decoded = 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() from

class GzipDecodedResponse(gzip.GzipFile if gzip else object):
    """a file-like object to decode a response encoded with the gzip
    method, as described in RFC 1952.
    """
    def __init__(self, response):
        #response doesn't support tell() and read(), required by
        #GzipFile
        if not gzip:
            raise NotImplementedError
        self.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 dispatcher

class _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 = send
        self.__name = name
    def __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 encoding
    accept_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 request
    encode_threshold = None #None = don't encode

    def __init__(self, use_datetime=False, use_builtin_types=False,
                 *, headers=()):
        self._use_datetime = use_datetime
        self._use_builtin_types = use_builtin_types
        self._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 cold
        for i in (0, 1):
            try:
                return self.single_request(host, handler, request_body, verbose)
            except http.client.RemoteDisconnected:
                if i:
                    raise
            except OSError as e:
                if i or e.errno not in (errno.ECONNRESET, errno.ECONNABORTED,
                                        errno.EPIPE):
                    raise

    def single_request(self, host, handler, request_body, verbose=False):
        # issue XML-RPC request
        try:
            http_conn = self.send_request(host, handler, request_body, verbose)
            resp = http_conn.getresponse()
            if resp.status == 200:
                self.verbose = verbose
                return self.parse_response(resp)

        except Fault:
            raise
        except 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 exception
        if 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 unmarshaller
        return 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 = host

        auth, 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 whitespace
            extra_headers = [
                ("Authorization", "Basic " + auth)
                ]
        else:
            extra_headers = []

        return host, extra_headers, x509

    ##
    # Connect to server.
    #
    # @param host Target host.
    # @return An HTTPConnection object

    def 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 descriptor
        chost, 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._connection
        if 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_headers
        if 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 headers

    def 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 request
        if (self.encode_threshold is not None and
            self.encode_threshold < len(request_body) and
            gzip):
            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 = response
        else:
            stream = response

        p, u = self.getparser()

        while 1:
            data = stream.read(1024)
            if not data:
                break
            if 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 untested

    def 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) tuple
        chost, 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 Transport

class ServerProxy:
    """uri [,options] -> a logical connection to an XML-RPC server

    uri is the connection point on the server, given as
    scheme://host/target.

    The standard implementation always supports the "http" scheme.  If
    SSL 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 factory
        encoding: the request encoding (default is UTF-8)

    All 8-bit strings passed to the server proxy are assumed to use
    the 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 url
        type, 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 = SafeTransport
                extra_kwargs = {"context": context}
            else:
                handler = Transport
                extra_kwargs = {}
            transport = handler(use_datetime=use_datetime,
                                use_builtin_types=use_builtin_types,
                                headers=headers,
                                **extra_kwargs)
        self.__transport = transport

        self.__encoding = encoding or 'utf-8'
        self.__verbose = verbose
        self.__allow_none = allow_none

    def __close(self):
        self.__transport.close()

    def __request(self, methodname, params):
        # call a method on the remote server

        request = 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 response

    def __repr__(self):
        return (
            "<%s for %s%s>" %
            (self.__class__.__name__, self.__host, self.__handler)
            )

    def __getattr__(self, name):
        # magic method dispatcher
        return _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 ServerProxy
           without interfering with the magic __getattr__
        """
        if attr == "close":
            return self.__close
        elif attr == "transport":
            return self.__transport
        raise AttributeError("Attribute %r not found" % (attr,))

    def __enter__(self):
        return self

    def __exit__(self, *args):
        self.__close()

# compatibility

Server = ServerProxy

# --------------------------------------------------------------------
# test code

if __name__ == "__main__":

    # simple test program (from the XML-RPC specification)

    # local server, available from Lib/xmlrpc/server.py
    server = 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)
__pycache__/__init__.cpython-38.opt-2.pyc000064400000000202150532415240014076 0ustar00U

e5d&�@sdS)N�rrr�'/usr/lib64/python3.8/xmlrpc/__init__.py�<module>�__pycache__/server.cpython-38.pyc000064400000071342150532415240012722 0ustar00U

e5d9��	@sdZddlmZmZmZmZmZddlmZddl	m
Z
ddlmZddl
Z
ddlZddlZddlZddlZddlZddlZddlZzddlZWnek
r�dZYnXd+dd	�Zd
d�ZGdd
�d
�ZGdd�de�ZGdd�deje�ZGdd�de�ZGdd�de�ZGdd�dej�Z Gdd�d�Z!Gdd�de�Z"Gdd�dee!�Z#Gdd�dee!�Z$e%d k�rddl&Z&Gd!d"�d"�Z'ed#��~Z(e(�)e*�e(�)d$d%�d&�e(j+e'�dd'�e(�,�e-d(�e-d)�ze(�.�Wn(e/k
�re-d*�e�0d�YnXW5QRXdS),aXML-RPC Servers.

This module can be used to create simple XML-RPC servers
by creating a server and either installing functions, a
class instance, or by extending the SimpleXMLRPCServer
class.

It can also be used to handle XML-RPC requests in a CGI
environment using CGIXMLRPCRequestHandler.

The Doc* classes can be used to create XML-RPC servers that
serve pydoc-style documentation in response to HTTP
GET requests. This documentation is dynamically generated
based on the functions and methods registered with the
server.

A list of possible usage patterns follows:

1. Install functions:

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_function(pow)
server.register_function(lambda x,y: x+y, 'add')
server.serve_forever()

2. Install an instance:

class MyFuncs:
    def __init__(self):
        # make all of the sys functions available through sys.func_name
        import sys
        self.sys = sys
    def _listMethods(self):
        # implement this method so that system.listMethods
        # knows to advertise the sys methods
        return list_public_methods(self) + \
                ['sys.' + method for method in list_public_methods(self.sys)]
    def pow(self, x, y): return pow(x, y)
    def add(self, x, y) : return x + y

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_introspection_functions()
server.register_instance(MyFuncs())
server.serve_forever()

3. Install an instance with custom dispatch method:

class Math:
    def _listMethods(self):
        # this method must be present for system.listMethods
        # to work
        return ['add', 'pow']
    def _methodHelp(self, method):
        # this method must be present for system.methodHelp
        # to work
        if method == 'add':
            return "add(2,3) => 5"
        elif method == 'pow':
            return "pow(x, y[, z]) => number"
        else:
            # By convention, return empty
            # string if no help is available
            return ""
    def _dispatch(self, method, params):
        if method == 'pow':
            return pow(*params)
        elif method == 'add':
            return params[0] + params[1]
        else:
            raise ValueError('bad method')

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_introspection_functions()
server.register_instance(Math())
server.serve_forever()

4. Subclass SimpleXMLRPCServer:

class MathServer(SimpleXMLRPCServer):
    def _dispatch(self, method, params):
        try:
            # We are forcing the 'export_' prefix on methods that are
            # callable through XML-RPC to prevent potential security
            # problems
            func = getattr(self, 'export_' + method)
        except AttributeError:
            raise Exception('method "%s" is not supported' % method)
        else:
            return func(*params)

    def export_add(self, x, y):
        return x + y

server = MathServer(("localhost", 8000))
server.serve_forever()

5. CGI script:

server = CGIXMLRPCRequestHandler()
server.register_function(pow)
server.handle_request()
�)�Fault�dumps�loads�gzip_encode�gzip_decode)�BaseHTTPRequestHandler)�partial)�	signatureNTcCsF|r|�d�}n|g}|D]&}|�d�r6td|��qt||�}q|S)aGresolve_dotted_attribute(a, 'b.c.d') => a.b.c.d

    Resolves a dotted attribute name to an object.  Raises
    an AttributeError if any attribute in the chain starts with a '_'.

    If the optional allow_dotted_names argument is false, dots are not
    supported and this function operates similar to getattr(obj, attr).
    �.�_z(attempt to access private attribute "%s")�split�
startswith�AttributeError�getattr)�obj�attr�allow_dotted_names�attrs�i�r�%/usr/lib64/python3.8/xmlrpc/server.py�resolve_dotted_attribute|s

�rcs�fdd�t��D�S)zkReturns a list of attribute strings, found in the specified
    object, which represent callable attributescs(g|] }|�d�stt�|��r|�qS)r)r
�callabler)�.0�member�rrr�
<listcomp>�s
�z'list_public_methods.<locals>.<listcomp>)�dirrrrr�list_public_methods�src@speZdZdZddd�Zddd�Zddd	�Zd
d�Zdd
�Zddd�Z	dd�Z
dd�Zdd�Zdd�Z
dd�ZdS)�SimpleXMLRPCDispatchera&Mix-in class that dispatches XML-RPC requests.

    This class is used to register XML-RPC method handlers
    and then to dispatch them. This class doesn't need to be
    instanced directly when used by SimpleXMLRPCServer but it
    can be instanced when used by the MultiPathXMLRPCServer
    FNcCs&i|_d|_||_|pd|_||_dS�N�utf-8)�funcs�instance�
allow_none�encoding�use_builtin_types��selfr$r%r&rrr�__init__�s

zSimpleXMLRPCDispatcher.__init__cCs||_||_dS)aRegisters an instance to respond to XML-RPC requests.

        Only one instance can be installed at a time.

        If the registered instance has a _dispatch method then that
        method will be called with the name of the XML-RPC method and
        its parameters as a tuple
        e.g. instance._dispatch('add',(2,3))

        If the registered instance does not have a _dispatch method
        then the instance will be searched to find a matching method
        and, if found, will be called. Methods beginning with an '_'
        are considered private and will not be called by
        SimpleXMLRPCServer.

        If a registered function matches an XML-RPC request, then it
        will be called instead of the registered instance.

        If the optional allow_dotted_names argument is true and the
        instance does not have a _dispatch method, method names
        containing dots are supported and resolved, as long as none of
        the name segments start with an '_'.

            *** SECURITY WARNING: ***

            Enabling the allow_dotted_names options allows intruders
            to access your module's global variables and may allow
            intruders to execute arbitrary code on your machine.  Only
            use this option on a secure, closed network.

        N)r#r)r(r#rrrr�register_instance�s!z(SimpleXMLRPCDispatcher.register_instancecCs2|dkrt|j|d�S|dkr$|j}||j|<|S)z�Registers a function to respond to XML-RPC requests.

        The optional name argument can be used to set a Unicode name
        for the function.
        N)�name)r�register_function�__name__r")r(Zfunctionr+rrrr,�s
z(SimpleXMLRPCDispatcher.register_functioncCs|j�|j|j|jd��dS)z�Registers the XML-RPC introspection methods in the system
        namespace.

        see http://xmlrpc.usefulinc.com/doc/reserved.html
        )zsystem.listMethodszsystem.methodSignaturezsystem.methodHelpN)r"�update�system_listMethods�system_methodSignature�system_methodHelp�r(rrr� register_introspection_functions�s
�z7SimpleXMLRPCDispatcher.register_introspection_functionscCs|j�d|ji�dS)z�Registers the XML-RPC multicall method in the system
        namespace.

        see http://www.xmlrpc.com/discuss/msgReader$1208zsystem.multicallN)r"r.�system_multicallr2rrr�register_multicall_functions�sz3SimpleXMLRPCDispatcher.register_multicall_functionscCs�zPt||jd�\}}|dk	r(|||�}n|�||�}|f}t|d|j|jd�}Wn�tk
r�}zt||j|jd�}W5d}~XYnNt��\}}	}
z$ttdd||	f�|j|jd�}W5d}}	}
XYnX|�	|jd�S)	a�Dispatches an XML-RPC method from marshalled (XML) data.

        XML-RPC methods are dispatched from the marshalled (XML) data
        using the _dispatch method and the result is returned as
        marshalled data. For backwards compatibility, a dispatch
        function can be provided as an argument (see comment in
        SimpleXMLRPCRequestHandler.do_POST) but overriding the
        existing method through subclassing is the preferred means
        of changing method dispatch behavior.
        )r&N�)Zmethodresponser$r%)r$r%�%s:%s�r%r$�xmlcharrefreplace)
rr&�	_dispatchrr$r%r�sys�exc_info�encode)r(�data�dispatch_method�path�params�method�response�fault�exc_type�	exc_value�exc_tbrrr�_marshaled_dispatch�s0�
��
z*SimpleXMLRPCDispatcher._marshaled_dispatchcCs^t|j���}|jdk	rVt|jd�r8|t|j���O}nt|jd�sV|tt|j��O}t|�S)zwsystem.listMethods() => ['add', 'subtract', 'multiple']

        Returns a list of the methods supported by the server.N�_listMethodsr:)�setr"�keysr#�hasattrrIr�sorted)r(�methodsrrrr/s
z)SimpleXMLRPCDispatcher.system_listMethodscCsdS)a#system.methodSignature('add') => [double, int, int]

        Returns a list describing the signature of the method. In the
        above example, the add method takes two integers as arguments
        and returns a double result.

        This server does NOT support system.methodSignature.zsignatures not supportedr)r(�method_namerrrr0/sz-SimpleXMLRPCDispatcher.system_methodSignaturecCs�d}||jkr|j|}nX|jdk	rrt|jd�r<|j�|�St|jd�srzt|j||j�}Wntk
rpYnX|dkr~dSt�|�SdS)z�system.methodHelp('add') => "Adds two integers together"

        Returns a string containing documentation for the specified method.N�_methodHelpr:�)	r"r#rLrPrrr�pydoc�getdoc)r(rOrBrrrr1<s$

�z(SimpleXMLRPCDispatcher.system_methodHelpc
Cs�g}|D]�}|d}|d}z|�|�||�g�Wqtk
rj}z|�|j|jd��W5d}~XYqt��\}}}	z|�dd||fd��W5d}}}	XYqXq|S)z�system.multicall([{'methodName': 'add', 'params': [2, 2]}, ...]) => [[4], ...]

        Allows the caller to package multiple XML-RPC calls into a single
        request.

        See http://www.xmlrpc.com/discuss/msgReader$1208
        Z
methodNamerA)�	faultCode�faultStringNr6r7)�appendr:rrTrUr;r<)
r(Z	call_list�resultsZcallrOrArDrErFrGrrrr4[s,
��
��z'SimpleXMLRPCDispatcher.system_multicallcCs�z|j|}Wntk
r"YnX|dk	r4||�Std|��|jdk	r�t|jd�rd|j�||�Szt|j||j�}Wntk
r�YnX|dk	r�||�Std|��dS)a�Dispatches the XML-RPC method.

        XML-RPC calls are forwarded to a registered function that
        matches the called XML-RPC method name. If no such function
        exists then the call is forwarded to the registered instance,
        if available.

        If the registered instance has a _dispatch method then that
        method will be called with the name of the XML-RPC method and
        its parameters as a tuple
        e.g. instance._dispatch('add',(2,3))

        If the registered instance does not have a _dispatch method
        then the instance will be searched to find a matching method
        and, if found, will be called.

        Methods beginning with an '_' are considered private and will
        not be called.
        Nzmethod "%s" is not supportedr:)	r"�KeyError�	Exceptionr#rLr:rrr)r(rBrA�funcrrrr:s*
�z SimpleXMLRPCDispatcher._dispatch)FNF)F)NN)NN)r-�
__module__�__qualname__�__doc__r)r*r,r3r5rHr/r0r1r4r:rrrrr�s�

$

)
$rc@sfeZdZdZdZdZdZdZe�	dej
ejB�Zdd�Z
d	d
�Zdd�Zd
d�Zdd�Zddd�ZdS)�SimpleXMLRPCRequestHandlerz�Simple XML-RPC request handler class.

    Handles all HTTP POST requests and attempts to decode them as
    XML-RPC requests.
    )�/z/RPC2ix���Tz�
                            \s* ([^\s;]+) \s*            #content-coding
                            (;\s* q \s*=\s* ([0-9\.]+))? #q
                            cCs^i}|j�dd�}|�d�D]<}|j�|�}|r|�d�}|rFt|�nd}|||�d�<q|S)NzAccept-EncodingrQ�,�g�?r6)�headers�getr�	aepattern�match�group�float)r(�rZae�erf�vrrr�accept_encodings�s
z+SimpleXMLRPCRequestHandler.accept_encodingscCs|jr|j|jkSdSdS)NT)�	rpc_pathsr@r2rrr�is_rpc_path_valid�sz,SimpleXMLRPCRequestHandler.is_rpc_path_validc
Cs�|��s|��dSz�d}t|jd�}g}|rht||�}|j�|�}|sLqh|�|�|t|d�8}q,d�	|�}|�
|�}|dkr�WdS|j�|t
|dd�|j�}Wn�tk
�r6}zp|�d�t|jd��r|jj�r|�d	t|��t��}	t|	�d
d�d
�}	|�d|	�|�d
d�|��W5d}~XYn�X|�d�|�dd�|jdk	�r�t|�|jk�r�|���dd�}
|
�r�zt|�}|�dd�Wntk
�r�YnX|�d
tt|���|��|j�|�dS)z�Handles the HTTP POST request.

        Attempts to interpret all HTTP POST requests as XML-RPC calls,
        which are forwarded to the server's _dispatch method for handling.
        Ni�zcontent-lengthr`�r:i��_send_traceback_headerzX-exception�ASCII�backslashreplacezX-traceback�Content-length�0���Content-typeztext/xml�gziprzContent-Encoding) rn�
report_404�intrc�minZrfile�readrV�len�join�decode_request_content�serverrHrr@rY�
send_responserLrp�send_header�str�	traceback�
format_excr=�end_headers�encode_thresholdrlrdr�NotImplementedError�wfile�write)r(Zmax_chunk_sizeZsize_remaining�LZ
chunk_size�chunkr>rCrjZtrace�qrrr�do_POST�s`




�
�
z"SimpleXMLRPCRequestHandler.do_POSTcCs�|j�dd���}|dkr|S|dkrvz
t|�WStk
rT|�dd|�Yq�tk
rr|�dd�Yq�Xn|�dd|�|�dd	�|��dS)
Nzcontent-encodingZidentityrwi�zencoding %r not supported�zerror decoding gzip contentrsrt)	rcrd�lowerrr�r��
ValueErrorr�r�)r(r>r%rrrr~$s
z1SimpleXMLRPCRequestHandler.decode_request_contentcCsF|�d�d}|�dd�|�dtt|���|��|j�|�dS)Ni�sNo such pagervz
text/plainrs)r�r�r�r|r�r�r��r(rCrrrrx5s
z%SimpleXMLRPCRequestHandler.report_404�-cCs|jjrt�|||�dS)z$Selectively log an accepted request.N)r�logRequestsr�log_request)r(�code�sizerrrr�>sz&SimpleXMLRPCRequestHandler.log_requestN)r�r�)r-r[r\r]rmr�ZwbufsizeZdisable_nagle_algorithm�re�compile�VERBOSE�
IGNORECASErerlrnr�r~rxr�rrrrr^�s
�G	r^c@s.eZdZdZdZdZedddddfdd�ZdS)�SimpleXMLRPCServeragSimple XML-RPC server.

    Simple XML-RPC server that allows functions and a single instance
    to be installed to handle requests. The default implementation
    attempts to dispatch XML-RPC calls to the functions or instance
    installed in the server. Override the _dispatch method inherited
    from SimpleXMLRPCDispatcher to change this behavior.
    TFNcCs,||_t�||||�tj�||||�dS�N)r�rr)�socketserver�	TCPServer�r(ZaddrZrequestHandlerr�r$r%Zbind_and_activater&rrrr)WszSimpleXMLRPCServer.__init__)r-r[r\r]Zallow_reuse_addressrpr^r)rrrrr�Ds	�r�c@s@eZdZdZedddddfdd�Zdd�Zd	d
�Zd
dd�ZdS)�MultiPathXMLRPCServera\Multipath XML-RPC Server
    This specialization of SimpleXMLRPCServer allows the user to create
    multiple Dispatcher instances and assign them to different
    HTTP request paths.  This makes it possible to run two or more
    'virtual XML-RPC servers' at the same port.
    Make sure that the requestHandler accepts the paths in question.
    TFNc
Cs2t�||||||||�i|_||_|p*d|_dSr )r�r)�dispatchersr$r%r�rrrr)hs�zMultiPathXMLRPCServer.__init__cCs||j|<|Sr��r�)r(r@�
dispatcherrrr�add_dispatcherrs
z$MultiPathXMLRPCServer.add_dispatchercCs
|j|Sr�r�)r(r@rrr�get_dispatchervsz$MultiPathXMLRPCServer.get_dispatchercCs|z|j|�|||�}Wn^t��dd�\}}z2ttdd||f�|j|jd�}|�|jd�}W5d}}XYnX|S)N�r6r7r8r9)	r�rHr;r<rrr%r$r=)r(r>r?r@rCrErFrrrrHys"
��z)MultiPathXMLRPCServer._marshaled_dispatch)NN)	r-r[r\r]r^r)r�r�rHrrrrr�`s�

r�c@s4eZdZdZddd�Zdd�Zdd	�Zd
d
d�ZdS)�CGIXMLRPCRequestHandlerz3Simple handler for XML-RPC data passed through CGI.FNcCst�||||�dSr�)rr)r'rrrr)�sz CGIXMLRPCRequestHandler.__init__cCsP|�|�}td�tdt|��t�tj��tjj�|�tjj��dS)zHandle a single XML-RPC requestzContent-Type: text/xml�Content-Length: %dN)rH�printr|r;�stdout�flush�bufferr�)r(�request_textrCrrr�
handle_xmlrpc�s

z%CGIXMLRPCRequestHandler.handle_xmlrpccCs�d}tj|\}}tjj|||d�}|�d�}td||f�tdtjj�tdt|��t�t	j
��t	j
j�
|�t	j
j��dS)z�Handle a single HTTP GET request.

        Default implementation indicates an error because
        XML-RPC uses the POST method.
        r�)r��message�explainr!z
Status: %d %szContent-Type: %sr�N)rZ	responses�httprZDEFAULT_ERROR_MESSAGEr=r�ZDEFAULT_ERROR_CONTENT_TYPEr|r;r�r�r�r�)r(r�r�r�rCrrr�
handle_get�s ��

z"CGIXMLRPCRequestHandler.handle_getc	Csz|dkr$tj�dd�dkr$|��nRzttj�dd��}Wnttfk
rVd}YnX|dkrltj�	|�}|�
|�dS)z�Handle a single XML-RPC request passed through a CGI post method.

        If no XML data is given then it is read from stdin. The resulting
        XML-RPC response is printed to stdout along with the correct HTTP
        headers.
        NZREQUEST_METHODZGETZCONTENT_LENGTHr`)�os�environrdr�ryr��	TypeErrorr;�stdinr{r�)r(r�Zlengthrrr�handle_request�s�

z&CGIXMLRPCRequestHandler.handle_request)FNF)N)r-r[r\r]r)r�r�r�rrrrr��s

r�c@s>eZdZdZdiiifdd�Zdiiidfdd�Zdd�ZdS)	�
ServerHTMLDocz7Class used to generate pydoc HTML document for a serverNcCsZ|p|j}g}d}t�d�}|�||�}	|	s0�q:|	��\}
}|�||||
���|	��\}}
}}}}|
r�||��dd�}|�d||f�n�|r�dt|�}|�d|||�f�n~|r�dt|�}|�d|||�f�nV|||d�d	k�r|�|�	||||��n(|�r"|�d
|�n|�|�	||��|}q|�|||d���d�
|�S)
z�Mark up some plain text, given a context of symbols to look for.
        Each context dictionary maps object names to anchor names.rzM\b((http|ftp)://\S+[\w/]|RFC[- ]?(\d+)|PEP[- ]?(\d+)|(self\.)?((?:\w|\.)+))\b�"z&quot;z<a href="%s">%s</a>z'http://www.rfc-editor.org/rfc/rfc%d.txtz(http://www.python.org/dev/peps/pep-%04d/r6�(zself.<strong>%s</strong>NrQ)�escaper�r��search�spanrV�groups�replaceryZnamelinkr})r(�textr�r"�classesrNrW�here�patternrf�start�end�allZschemeZrfcZpepZselfdotr+Zurlrrr�markup�s6

zServerHTMLDoc.markupcCs�|r
|jpdd|}d}	d|�|�|�|�f}
t|�rHtt|��}nd}t|t�rp|dp`|}|dpld}n
t�|�}|
||	o�|�	d|	�}
|�
||j|||�}|o�d|}d	|
|fS)
z;Produce HTML documentation for a function or method object.rQr�z$<a name="%s"><strong>%s</strong></a>z(...)rr6z'<font face="helvetica, arial">%s</font>z<dd><tt>%s</tt></dd>z<dl><dt>%s</dt>%s</dl>
)r-r�rr�r	�
isinstance�tuplerRrSZgreyr��	preformat)r(�objectr+�modr"r�rNZclZanchorZnote�titleZargspecZ	docstringZdecl�docrrr�
docroutine�s2�

��zServerHTMLDoc.docroutinec	Cs�i}|��D] \}}d|||<||||<q|�|�}d|}|�|dd�}|�||j|�}	|	ohd|	}	|d|	}g}
t|���}|D]\}}|
�|j|||d��q�||�ddd	d
�	|
��}|S)z1Produce HTML documentation for an XML-RPC server.z#-z)<big><big><strong>%s</strong></big></big>z#ffffffz#7799eez<tt>%s</tt>z
<p>%s</p>
)r"ZMethodsz#eeaa77rQ)
�itemsr�Zheadingr�r�rMrVr�Z
bigsectionr})r(�server_nameZpackage_documentationrNZfdict�key�value�head�resultr��contentsZmethod_itemsrrr�	docservers*
�zServerHTMLDoc.docserver)r-r[r\r]r�r�r�rrrrr��s)�
r�c@s8eZdZdZdd�Zdd�Zdd�Zdd	�Zd
d�ZdS)
�XMLRPCDocGeneratorz�Generates documentation for an XML-RPC server.

    This class is designed as mix-in and should not
    be constructed directly.
    cCsd|_d|_d|_dS)NzXML-RPC Server DocumentationzGThis server exports the following methods through the XML-RPC protocol.)r��server_documentation�server_titler2rrrr):s�zXMLRPCDocGenerator.__init__cCs
||_dS)z8Set the HTML title of the generated server documentationN)r�)r(r�rrr�set_server_titleBsz#XMLRPCDocGenerator.set_server_titlecCs
||_dS)z7Set the name of the generated HTML server documentationN)r�)r(r�rrr�set_server_nameGsz"XMLRPCDocGenerator.set_server_namecCs
||_dS)z3Set the documentation string for the entire server.N)r�)r(r�rrr�set_server_documentationLsz+XMLRPCDocGenerator.set_server_documentationc	Csi}|��D]�}||jkr&|j|}n�|jdk	r�ddg}t|jd�rT|j�|�|d<t|jd�rp|j�|�|d<t|�}|dkr�|}q�t|jd�s�zt|j|�}Wq�tk
r�|}Yq�Xq�|}nds�t	d��|||<qt
�}|�|j|j
|�}|�t�|j�|�S)	agenerate_html_documentation() => html documentation for the server

        Generates HTML documentation for the server using introspection for
        installed functions and instances that do not implement the
        _dispatch method. Alternatively, instances can choose to implement
        the _get_method_argstring(method_name) method to provide the
        argument string used in the documentation and the
        _methodHelp(method_name) method to provide the help text used
        in the documentation.N�_get_method_argstringrrPr6)NNr:zACould not find method in self.functions and no instance installed)r/r"r#rLr�rPr�rr�AssertionErrorr�r�r�r�Zpage�htmlr�r�)r(rNrOrBZmethod_infoZ
documenterZ
documentationrrr�generate_html_documentationQs>

�
�z.XMLRPCDocGenerator.generate_html_documentationN)	r-r[r\r]r)r�r�r�r�rrrrr�3sr�c@seZdZdZdd�ZdS)�DocXMLRPCRequestHandlerz�XML-RPC and documentation request handler class.

    Handles all HTTP POST requests and attempts to decode them as
    XML-RPC requests.

    Handles all HTTP GET requests and interprets them as requests
    for documentation.
    cCsf|��s|��dS|j���d�}|�d�|�dd�|�dtt|���|�	�|j
�|�dS)�}Handles the HTTP GET request.

        Interpret all HTTP GET requests as requests for server
        documentation.
        Nr!rurvz	text/htmlrs)rnrxrr�r=r�r�r�r|r�r�r�r�rrr�do_GET�s
zDocXMLRPCRequestHandler.do_GETN)r-r[r\r]r�rrrrr��s	r�c@s&eZdZdZedddddfdd�ZdS)�DocXMLRPCServerz�XML-RPC and HTML documentation server.

    Adds the ability to serve server documentation to the capabilities
    of SimpleXMLRPCServer.
    TFNc
Cs&t�||||||||�t�|�dSr�)r�r)r�r�rrrr)�s�zDocXMLRPCServer.__init__)r-r[r\r]r�r)rrrrr��s�r�c@s eZdZdZdd�Zdd�ZdS)�DocCGIXMLRPCRequestHandlerzJHandler for XML-RPC data and documentation requests passed through
    CGIcCsT|���d�}td�tdt|��t�tj��tjj�|�tjj��dS)r�r!zContent-Type: text/htmlr�N)	r�r=r�r|r;r�r�r�r�r�rrrr��s
z%DocCGIXMLRPCRequestHandler.handle_getcCst�|�t�|�dSr�)r�r)r�r2rrrr)�s
z#DocCGIXMLRPCRequestHandler.__init__N)r-r[r\r]r�r)rrrrr��sr��__main__c@s"eZdZdd�ZGdd�d�ZdS)�ExampleServicecCsdS)NZ42rr2rrr�getData�szExampleService.getDatac@seZdZedd��ZdS)zExampleService.currentTimecCs
tj��Sr�)�datetimeZnowrrrr�getCurrentTime�sz)ExampleService.currentTime.getCurrentTimeN)r-r[r\�staticmethodr�rrrr�currentTime�sr�N)r-r[r\r�r�rrrrr��sr�)Z	localhosti@cCs||Sr�r)�x�yrrr�<lambda>�ror��add)rz&Serving XML-RPC on localhost port 8000zKIt is advisable to run this example server within a secure, closed network.z&
Keyboard interrupt received, exiting.)T)1r]Z
xmlrpc.clientrrrrrZhttp.serverr�	functoolsr�inspectr	r�r�r�r;r�r�rRr�Zfcntl�ImportErrorrrrr^r�r�r�r�ZHTMLDocr�r�r�r�r�r-r�r�rr,�powr*r5r�Z
serve_forever�KeyboardInterrupt�exitrrrr�<module>shj

�,EbQ��
	

__pycache__/__init__.cpython-38.opt-1.pyc000064400000000202150532415240014075 0ustar00U

e5d&�@sdS)N�rrr�'/usr/lib64/python3.8/xmlrpc/__init__.py�<module>�__pycache__/server.cpython-38.opt-1.pyc000064400000071201150532415240013653 0ustar00U

e5d9��	@sdZddlmZmZmZmZmZddlmZddl	m
Z
ddlmZddl
Z
ddlZddlZddlZddlZddlZddlZddlZzddlZWnek
r�dZYnXd+dd	�Zd
d�ZGdd
�d
�ZGdd�de�ZGdd�deje�ZGdd�de�ZGdd�de�ZGdd�dej�Z Gdd�d�Z!Gdd�de�Z"Gdd�dee!�Z#Gdd�dee!�Z$e%d k�rddl&Z&Gd!d"�d"�Z'ed#��~Z(e(�)e*�e(�)d$d%�d&�e(j+e'�dd'�e(�,�e-d(�e-d)�ze(�.�Wn(e/k
�re-d*�e�0d�YnXW5QRXdS),aXML-RPC Servers.

This module can be used to create simple XML-RPC servers
by creating a server and either installing functions, a
class instance, or by extending the SimpleXMLRPCServer
class.

It can also be used to handle XML-RPC requests in a CGI
environment using CGIXMLRPCRequestHandler.

The Doc* classes can be used to create XML-RPC servers that
serve pydoc-style documentation in response to HTTP
GET requests. This documentation is dynamically generated
based on the functions and methods registered with the
server.

A list of possible usage patterns follows:

1. Install functions:

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_function(pow)
server.register_function(lambda x,y: x+y, 'add')
server.serve_forever()

2. Install an instance:

class MyFuncs:
    def __init__(self):
        # make all of the sys functions available through sys.func_name
        import sys
        self.sys = sys
    def _listMethods(self):
        # implement this method so that system.listMethods
        # knows to advertise the sys methods
        return list_public_methods(self) + \
                ['sys.' + method for method in list_public_methods(self.sys)]
    def pow(self, x, y): return pow(x, y)
    def add(self, x, y) : return x + y

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_introspection_functions()
server.register_instance(MyFuncs())
server.serve_forever()

3. Install an instance with custom dispatch method:

class Math:
    def _listMethods(self):
        # this method must be present for system.listMethods
        # to work
        return ['add', 'pow']
    def _methodHelp(self, method):
        # this method must be present for system.methodHelp
        # to work
        if method == 'add':
            return "add(2,3) => 5"
        elif method == 'pow':
            return "pow(x, y[, z]) => number"
        else:
            # By convention, return empty
            # string if no help is available
            return ""
    def _dispatch(self, method, params):
        if method == 'pow':
            return pow(*params)
        elif method == 'add':
            return params[0] + params[1]
        else:
            raise ValueError('bad method')

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_introspection_functions()
server.register_instance(Math())
server.serve_forever()

4. Subclass SimpleXMLRPCServer:

class MathServer(SimpleXMLRPCServer):
    def _dispatch(self, method, params):
        try:
            # We are forcing the 'export_' prefix on methods that are
            # callable through XML-RPC to prevent potential security
            # problems
            func = getattr(self, 'export_' + method)
        except AttributeError:
            raise Exception('method "%s" is not supported' % method)
        else:
            return func(*params)

    def export_add(self, x, y):
        return x + y

server = MathServer(("localhost", 8000))
server.serve_forever()

5. CGI script:

server = CGIXMLRPCRequestHandler()
server.register_function(pow)
server.handle_request()
�)�Fault�dumps�loads�gzip_encode�gzip_decode)�BaseHTTPRequestHandler)�partial)�	signatureNTcCsF|r|�d�}n|g}|D]&}|�d�r6td|��qt||�}q|S)aGresolve_dotted_attribute(a, 'b.c.d') => a.b.c.d

    Resolves a dotted attribute name to an object.  Raises
    an AttributeError if any attribute in the chain starts with a '_'.

    If the optional allow_dotted_names argument is false, dots are not
    supported and this function operates similar to getattr(obj, attr).
    �.�_z(attempt to access private attribute "%s")�split�
startswith�AttributeError�getattr)�obj�attr�allow_dotted_namesZattrs�i�r�%/usr/lib64/python3.8/xmlrpc/server.py�resolve_dotted_attribute|s

�rcs�fdd�t��D�S)zkReturns a list of attribute strings, found in the specified
    object, which represent callable attributescs(g|] }|�d�stt�|��r|�qS)r)r
�callabler)�.0�member�rrr�
<listcomp>�s
�z'list_public_methods.<locals>.<listcomp>)�dirrrrr�list_public_methods�src@speZdZdZddd�Zddd�Zddd	�Zd
d�Zdd
�Zddd�Z	dd�Z
dd�Zdd�Zdd�Z
dd�ZdS)�SimpleXMLRPCDispatchera&Mix-in class that dispatches XML-RPC requests.

    This class is used to register XML-RPC method handlers
    and then to dispatch them. This class doesn't need to be
    instanced directly when used by SimpleXMLRPCServer but it
    can be instanced when used by the MultiPathXMLRPCServer
    FNcCs&i|_d|_||_|pd|_||_dS�N�utf-8)�funcs�instance�
allow_none�encoding�use_builtin_types��selfr#r$r%rrr�__init__�s

zSimpleXMLRPCDispatcher.__init__cCs||_||_dS)aRegisters an instance to respond to XML-RPC requests.

        Only one instance can be installed at a time.

        If the registered instance has a _dispatch method then that
        method will be called with the name of the XML-RPC method and
        its parameters as a tuple
        e.g. instance._dispatch('add',(2,3))

        If the registered instance does not have a _dispatch method
        then the instance will be searched to find a matching method
        and, if found, will be called. Methods beginning with an '_'
        are considered private and will not be called by
        SimpleXMLRPCServer.

        If a registered function matches an XML-RPC request, then it
        will be called instead of the registered instance.

        If the optional allow_dotted_names argument is true and the
        instance does not have a _dispatch method, method names
        containing dots are supported and resolved, as long as none of
        the name segments start with an '_'.

            *** SECURITY WARNING: ***

            Enabling the allow_dotted_names options allows intruders
            to access your module's global variables and may allow
            intruders to execute arbitrary code on your machine.  Only
            use this option on a secure, closed network.

        N)r"r)r'r"rrrr�register_instance�s!z(SimpleXMLRPCDispatcher.register_instancecCs2|dkrt|j|d�S|dkr$|j}||j|<|S)z�Registers a function to respond to XML-RPC requests.

        The optional name argument can be used to set a Unicode name
        for the function.
        N)�name)r�register_function�__name__r!)r'Zfunctionr*rrrr+�s
z(SimpleXMLRPCDispatcher.register_functioncCs|j�|j|j|jd��dS)z�Registers the XML-RPC introspection methods in the system
        namespace.

        see http://xmlrpc.usefulinc.com/doc/reserved.html
        )zsystem.listMethodszsystem.methodSignaturezsystem.methodHelpN)r!�update�system_listMethods�system_methodSignature�system_methodHelp�r'rrr� register_introspection_functions�s
�z7SimpleXMLRPCDispatcher.register_introspection_functionscCs|j�d|ji�dS)z�Registers the XML-RPC multicall method in the system
        namespace.

        see http://www.xmlrpc.com/discuss/msgReader$1208zsystem.multicallN)r!r-�system_multicallr1rrr�register_multicall_functions�sz3SimpleXMLRPCDispatcher.register_multicall_functionscCs�zPt||jd�\}}|dk	r(|||�}n|�||�}|f}t|d|j|jd�}Wn�tk
r�}zt||j|jd�}W5d}~XYnNt��\}}	}
z$ttdd||	f�|j|jd�}W5d}}	}
XYnX|�	|jd�S)	a�Dispatches an XML-RPC method from marshalled (XML) data.

        XML-RPC methods are dispatched from the marshalled (XML) data
        using the _dispatch method and the result is returned as
        marshalled data. For backwards compatibility, a dispatch
        function can be provided as an argument (see comment in
        SimpleXMLRPCRequestHandler.do_POST) but overriding the
        existing method through subclassing is the preferred means
        of changing method dispatch behavior.
        )r%N�)Zmethodresponser#r$)r#r$�%s:%s�r$r#�xmlcharrefreplace)
rr%�	_dispatchrr#r$r�sys�exc_info�encode)r'�data�dispatch_method�path�params�method�response�fault�exc_type�	exc_value�exc_tbrrr�_marshaled_dispatch�s0�
��
z*SimpleXMLRPCDispatcher._marshaled_dispatchcCs^t|j���}|jdk	rVt|jd�r8|t|j���O}nt|jd�sV|tt|j��O}t|�S)zwsystem.listMethods() => ['add', 'subtract', 'multiple']

        Returns a list of the methods supported by the server.N�_listMethodsr9)�setr!�keysr"�hasattrrHr�sorted)r'�methodsrrrr.s
z)SimpleXMLRPCDispatcher.system_listMethodscCsdS)a#system.methodSignature('add') => [double, int, int]

        Returns a list describing the signature of the method. In the
        above example, the add method takes two integers as arguments
        and returns a double result.

        This server does NOT support system.methodSignature.zsignatures not supportedr)r'�method_namerrrr//sz-SimpleXMLRPCDispatcher.system_methodSignaturecCs�d}||jkr|j|}nX|jdk	rrt|jd�r<|j�|�St|jd�srzt|j||j�}Wntk
rpYnX|dkr~dSt�|�SdS)z�system.methodHelp('add') => "Adds two integers together"

        Returns a string containing documentation for the specified method.N�_methodHelpr9�)	r!r"rKrOrrr�pydoc�getdoc)r'rNrArrrr0<s$

�z(SimpleXMLRPCDispatcher.system_methodHelpc
Cs�g}|D]�}|d}|d}z|�|�||�g�Wqtk
rj}z|�|j|jd��W5d}~XYqt��\}}}	z|�dd||fd��W5d}}}	XYqXq|S)z�system.multicall([{'methodName': 'add', 'params': [2, 2]}, ...]) => [[4], ...]

        Allows the caller to package multiple XML-RPC calls into a single
        request.

        See http://www.xmlrpc.com/discuss/msgReader$1208
        Z
methodNamer@)�	faultCode�faultStringNr5r6)�appendr9rrSrTr:r;)
r'Z	call_list�resultsZcallrNr@rCrDrErFrrrr3[s,
��
��z'SimpleXMLRPCDispatcher.system_multicallcCs�z|j|}Wntk
r"YnX|dk	r4||�Std|��|jdk	r�t|jd�rd|j�||�Szt|j||j�}Wntk
r�YnX|dk	r�||�Std|��dS)a�Dispatches the XML-RPC method.

        XML-RPC calls are forwarded to a registered function that
        matches the called XML-RPC method name. If no such function
        exists then the call is forwarded to the registered instance,
        if available.

        If the registered instance has a _dispatch method then that
        method will be called with the name of the XML-RPC method and
        its parameters as a tuple
        e.g. instance._dispatch('add',(2,3))

        If the registered instance does not have a _dispatch method
        then the instance will be searched to find a matching method
        and, if found, will be called.

        Methods beginning with an '_' are considered private and will
        not be called.
        Nzmethod "%s" is not supportedr9)	r!�KeyError�	Exceptionr"rKr9rrr)r'rAr@�funcrrrr9s*
�z SimpleXMLRPCDispatcher._dispatch)FNF)F)NN)NN)r,�
__module__�__qualname__�__doc__r(r)r+r2r4rGr.r/r0r3r9rrrrr�s�

$

)
$rc@sfeZdZdZdZdZdZdZe�	dej
ejB�Zdd�Z
d	d
�Zdd�Zd
d�Zdd�Zddd�ZdS)�SimpleXMLRPCRequestHandlerz�Simple XML-RPC request handler class.

    Handles all HTTP POST requests and attempts to decode them as
    XML-RPC requests.
    )�/z/RPC2ix���Tz�
                            \s* ([^\s;]+) \s*            #content-coding
                            (;\s* q \s*=\s* ([0-9\.]+))? #q
                            cCs^i}|j�dd�}|�d�D]<}|j�|�}|r|�d�}|rFt|�nd}|||�d�<q|S)NzAccept-EncodingrP�,�g�?r5)�headers�getr�	aepattern�match�group�float)r'�rZae�ere�vrrr�accept_encodings�s
z+SimpleXMLRPCRequestHandler.accept_encodingscCs|jr|j|jkSdSdS)NT)�	rpc_pathsr?r1rrr�is_rpc_path_valid�sz,SimpleXMLRPCRequestHandler.is_rpc_path_validc
Cs�|��s|��dSz�d}t|jd�}g}|rht||�}|j�|�}|sLqh|�|�|t|d�8}q,d�	|�}|�
|�}|dkr�WdS|j�|t
|dd�|j�}Wn�tk
�r6}zp|�d�t|jd��r|jj�r|�d	t|��t��}	t|	�d
d�d
�}	|�d|	�|�d
d�|��W5d}~XYn�X|�d�|�dd�|jdk	�r�t|�|jk�r�|���dd�}
|
�r�zt|�}|�dd�Wntk
�r�YnX|�d
tt|���|��|j�|�dS)z�Handles the HTTP POST request.

        Attempts to interpret all HTTP POST requests as XML-RPC calls,
        which are forwarded to the server's _dispatch method for handling.
        Ni�zcontent-lengthr_�r9i��_send_traceback_headerzX-exception�ASCII�backslashreplacezX-traceback�Content-length�0���Content-typeztext/xml�gziprzContent-Encoding) rm�
report_404�intrb�minZrfile�readrU�len�join�decode_request_content�serverrGrr?rX�
send_responserKro�send_header�str�	traceback�
format_excr<�end_headers�encode_thresholdrkrcr�NotImplementedError�wfile�write)r'Zmax_chunk_sizeZsize_remaining�LZ
chunk_size�chunkr=rBriZtrace�qrrr�do_POST�s`




�
�
z"SimpleXMLRPCRequestHandler.do_POSTcCs�|j�dd���}|dkr|S|dkrvz
t|�WStk
rT|�dd|�Yq�tk
rr|�dd�Yq�Xn|�dd|�|�dd	�|��dS)
Nzcontent-encodingZidentityrvi�zencoding %r not supported�zerror decoding gzip contentrrrs)	rbrc�lowerrr�r�
ValueErrorr�r�)r'r=r$rrrr}$s
z1SimpleXMLRPCRequestHandler.decode_request_contentcCsF|�d�d}|�dd�|�dtt|���|��|j�|�dS)Ni�sNo such pageruz
text/plainrr)rr�r�r{r�r�r��r'rBrrrrw5s
z%SimpleXMLRPCRequestHandler.report_404�-cCs|jjrt�|||�dS)z$Selectively log an accepted request.N)r~�logRequestsr�log_request)r'�code�sizerrrr�>sz&SimpleXMLRPCRequestHandler.log_requestN)r�r�)r,rZr[r\rlr�ZwbufsizeZdisable_nagle_algorithm�re�compile�VERBOSE�
IGNORECASErdrkrmr�r}rwr�rrrrr]�s
�G	r]c@s.eZdZdZdZdZedddddfdd�ZdS)�SimpleXMLRPCServeragSimple XML-RPC server.

    Simple XML-RPC server that allows functions and a single instance
    to be installed to handle requests. The default implementation
    attempts to dispatch XML-RPC calls to the functions or instance
    installed in the server. Override the _dispatch method inherited
    from SimpleXMLRPCDispatcher to change this behavior.
    TFNcCs,||_t�||||�tj�||||�dS�N)r�rr(�socketserver�	TCPServer�r'ZaddrZrequestHandlerr�r#r$Zbind_and_activater%rrrr(WszSimpleXMLRPCServer.__init__)r,rZr[r\Zallow_reuse_addressror]r(rrrrr�Ds	�r�c@s@eZdZdZedddddfdd�Zdd�Zd	d
�Zd
dd�ZdS)�MultiPathXMLRPCServera\Multipath XML-RPC Server
    This specialization of SimpleXMLRPCServer allows the user to create
    multiple Dispatcher instances and assign them to different
    HTTP request paths.  This makes it possible to run two or more
    'virtual XML-RPC servers' at the same port.
    Make sure that the requestHandler accepts the paths in question.
    TFNc
Cs2t�||||||||�i|_||_|p*d|_dSr)r�r(�dispatchersr#r$r�rrrr(hs�zMultiPathXMLRPCServer.__init__cCs||j|<|Sr��r�)r'r?�
dispatcherrrr�add_dispatcherrs
z$MultiPathXMLRPCServer.add_dispatchercCs
|j|Sr�r�)r'r?rrr�get_dispatchervsz$MultiPathXMLRPCServer.get_dispatchercCs|z|j|�|||�}Wn^t��dd�\}}z2ttdd||f�|j|jd�}|�|jd�}W5d}}XYnX|S)N�r5r6r7r8)	r�rGr:r;rrr$r#r<)r'r=r>r?rBrDrErrrrGys"
��z)MultiPathXMLRPCServer._marshaled_dispatch)NN)	r,rZr[r\r]r(r�r�rGrrrrr�`s�

r�c@s4eZdZdZddd�Zdd�Zdd	�Zd
d
d�ZdS)�CGIXMLRPCRequestHandlerz3Simple handler for XML-RPC data passed through CGI.FNcCst�||||�dSr�)rr(r&rrrr(�sz CGIXMLRPCRequestHandler.__init__cCsP|�|�}td�tdt|��t�tj��tjj�|�tjj��dS)zHandle a single XML-RPC requestzContent-Type: text/xml�Content-Length: %dN)rG�printr{r:�stdout�flush�bufferr�)r'�request_textrBrrr�
handle_xmlrpc�s

z%CGIXMLRPCRequestHandler.handle_xmlrpccCs�d}tj|\}}tjj|||d�}|�d�}td||f�tdtjj�tdt|��t�t	j
��t	j
j�
|�t	j
j��dS)z�Handle a single HTTP GET request.

        Default implementation indicates an error because
        XML-RPC uses the POST method.
        r�)r��message�explainr z
Status: %d %szContent-Type: %sr�N)rZ	responses�httpr~ZDEFAULT_ERROR_MESSAGEr<r�ZDEFAULT_ERROR_CONTENT_TYPEr{r:r�r�r�r�)r'r�r�r�rBrrr�
handle_get�s ��

z"CGIXMLRPCRequestHandler.handle_getc	Csz|dkr$tj�dd�dkr$|��nRzttj�dd��}Wnttfk
rVd}YnX|dkrltj�	|�}|�
|�dS)z�Handle a single XML-RPC request passed through a CGI post method.

        If no XML data is given then it is read from stdin. The resulting
        XML-RPC response is printed to stdout along with the correct HTTP
        headers.
        NZREQUEST_METHODZGETZCONTENT_LENGTHr_)�os�environrcr�rxr��	TypeErrorr:�stdinrzr�)r'r�Zlengthrrr�handle_request�s�

z&CGIXMLRPCRequestHandler.handle_request)FNF)N)r,rZr[r\r(r�r�r�rrrrr��s

r�c@s>eZdZdZdiiifdd�Zdiiidfdd�Zdd�ZdS)	�
ServerHTMLDocz7Class used to generate pydoc HTML document for a serverNcCsZ|p|j}g}d}t�d�}|�||�}	|	s0�q:|	��\}
}|�||||
���|	��\}}
}}}}|
r�||��dd�}|�d||f�n�|r�dt|�}|�d|||�f�n~|r�dt|�}|�d|||�f�nV|||d�d	k�r|�|�	||||��n(|�r"|�d
|�n|�|�	||��|}q|�|||d���d�
|�S)
z�Mark up some plain text, given a context of symbols to look for.
        Each context dictionary maps object names to anchor names.rzM\b((http|ftp)://\S+[\w/]|RFC[- ]?(\d+)|PEP[- ]?(\d+)|(self\.)?((?:\w|\.)+))\b�"z&quot;z<a href="%s">%s</a>z'http://www.rfc-editor.org/rfc/rfc%d.txtz(http://www.python.org/dev/peps/pep-%04d/r5�(zself.<strong>%s</strong>NrP)�escaper�r��search�spanrU�groups�replacerxZnamelinkr|)r'�textr�r!�classesrMrV�here�patternre�start�end�allZschemeZrfcZpepZselfdotr*Zurlrrr�markup�s6

zServerHTMLDoc.markupcCs�|r
|jpdd|}d}	d|�|�|�|�f}
t|�rHtt|��}nd}t|t�rp|dp`|}|dpld}n
t�|�}|
||	o�|�	d|	�}
|�
||j|||�}|o�d|}d	|
|fS)
z;Produce HTML documentation for a function or method object.rPr�z$<a name="%s"><strong>%s</strong></a>z(...)rr5z'<font face="helvetica, arial">%s</font>z<dd><tt>%s</tt></dd>z<dl><dt>%s</dt>%s</dl>
)r,r�rr�r	�
isinstance�tuplerQrRZgreyr��	preformat)r'�objectr*�modr!r�rMZclZanchorZnote�titleZargspecZ	docstringZdecl�docrrr�
docroutine�s2�

��zServerHTMLDoc.docroutinec	Cs�i}|��D] \}}d|||<||||<q|�|�}d|}|�|dd�}|�||j|�}	|	ohd|	}	|d|	}g}
t|���}|D]\}}|
�|j|||d��q�||�ddd	d
�	|
��}|S)z1Produce HTML documentation for an XML-RPC server.z#-z)<big><big><strong>%s</strong></big></big>z#ffffffz#7799eez<tt>%s</tt>z
<p>%s</p>
)r!ZMethodsz#eeaa77rP)
�itemsr�Zheadingr�r�rLrUr�Z
bigsectionr|)r'�server_nameZpackage_documentationrMZfdict�key�value�head�resultr��contentsZmethod_itemsrrr�	docservers*
�zServerHTMLDoc.docserver)r,rZr[r\r�r�r�rrrrr��s)�
r�c@s8eZdZdZdd�Zdd�Zdd�Zdd	�Zd
d�ZdS)
�XMLRPCDocGeneratorz�Generates documentation for an XML-RPC server.

    This class is designed as mix-in and should not
    be constructed directly.
    cCsd|_d|_d|_dS)NzXML-RPC Server DocumentationzGThis server exports the following methods through the XML-RPC protocol.)r��server_documentation�server_titler1rrrr(:s�zXMLRPCDocGenerator.__init__cCs
||_dS)z8Set the HTML title of the generated server documentationN)r�)r'r�rrr�set_server_titleBsz#XMLRPCDocGenerator.set_server_titlecCs
||_dS)z7Set the name of the generated HTML server documentationN)r�)r'r�rrr�set_server_nameGsz"XMLRPCDocGenerator.set_server_namecCs
||_dS)z3Set the documentation string for the entire server.N)r�)r'r�rrr�set_server_documentationLsz+XMLRPCDocGenerator.set_server_documentationc	Cs�i}|��D]�}||jkr&|j|}n�|jdk	r�ddg}t|jd�rT|j�|�|d<t|jd�rp|j�|�|d<t|�}|dkr�|}q�t|jd�s�zt|j|�}Wq�tk
r�|}Yq�Xq�|}n|||<qt	�}|�
|j|j|�}|�
t�|j�|�S)agenerate_html_documentation() => html documentation for the server

        Generates HTML documentation for the server using introspection for
        installed functions and instances that do not implement the
        _dispatch method. Alternatively, instances can choose to implement
        the _get_method_argstring(method_name) method to provide the
        argument string used in the documentation and the
        _methodHelp(method_name) method to provide the help text used
        in the documentation.N�_get_method_argstringrrOr5)NNr9)r.r!r"rKr�rOr�rrr�r�r�r�Zpage�htmlr�r�)r'rMrNrAZmethod_infoZ
documenterZ
documentationrrr�generate_html_documentationQs<

�
�z.XMLRPCDocGenerator.generate_html_documentationN)	r,rZr[r\r(r�r�r�r�rrrrr�3sr�c@seZdZdZdd�ZdS)�DocXMLRPCRequestHandlerz�XML-RPC and documentation request handler class.

    Handles all HTTP POST requests and attempts to decode them as
    XML-RPC requests.

    Handles all HTTP GET requests and interprets them as requests
    for documentation.
    cCsf|��s|��dS|j���d�}|�d�|�dd�|�dtt|���|�	�|j
�|�dS)�}Handles the HTTP GET request.

        Interpret all HTTP GET requests as requests for server
        documentation.
        Nr rtruz	text/htmlrr)rmrwr~r�r<rr�r�r{r�r�r�r�rrr�do_GET�s
zDocXMLRPCRequestHandler.do_GETN)r,rZr[r\r�rrrrr��s	r�c@s&eZdZdZedddddfdd�ZdS)�DocXMLRPCServerz�XML-RPC and HTML documentation server.

    Adds the ability to serve server documentation to the capabilities
    of SimpleXMLRPCServer.
    TFNc
Cs&t�||||||||�t�|�dSr�)r�r(r�r�rrrr(�s�zDocXMLRPCServer.__init__)r,rZr[r\r�r(rrrrr��s�r�c@s eZdZdZdd�Zdd�ZdS)�DocCGIXMLRPCRequestHandlerzJHandler for XML-RPC data and documentation requests passed through
    CGIcCsT|���d�}td�tdt|��t�tj��tjj�|�tjj��dS)r�r zContent-Type: text/htmlr�N)	r�r<r�r{r:r�r�r�r�r�rrrr��s
z%DocCGIXMLRPCRequestHandler.handle_getcCst�|�t�|�dSr�)r�r(r�r1rrrr(�s
z#DocCGIXMLRPCRequestHandler.__init__N)r,rZr[r\r�r(rrrrr��sr��__main__c@s"eZdZdd�ZGdd�d�ZdS)�ExampleServicecCsdS)NZ42rr1rrr�getData�szExampleService.getDatac@seZdZedd��ZdS)zExampleService.currentTimecCs
tj��Sr�)�datetimeZnowrrrr�getCurrentTime�sz)ExampleService.currentTime.getCurrentTimeN)r,rZr[�staticmethodr�rrrr�currentTime�sr�N)r,rZr[r�r�rrrrr��sr�)Z	localhosti@cCs||Sr�r)�x�yrrr�<lambda>�rnr��add)rz&Serving XML-RPC on localhost port 8000zKIt is advisable to run this example server within a secure, closed network.z&
Keyboard interrupt received, exiting.)T)1r\Z
xmlrpc.clientrrrrrZhttp.serverr�	functoolsr�inspectr	r�r�r�r:r�r�rQr�Zfcntl�ImportErrorrrrr]r�r�r�r�ZHTMLDocr�r�r�r�r�r,r�r�r~r+�powr)r4r�Z
serve_forever�KeyboardInterrupt�exitrrrr�<module>shj

�,EbQ��
	

__pycache__/__init__.cpython-38.pyc000064400000000202150532415240013136 0ustar00U

e5d&�@sdS)N�rrr�'/usr/lib64/python3.8/xmlrpc/__init__.py�<module>�__pycache__/client.cpython-38.opt-1.pyc000064400000103134150532415240013624 0ustar00U

e5d���
@sfdZddlZddlZddlZddlmZddlmZddlZddl	Z
ddlmZddl
Z
ddlmZzddlZWnek
r�dZYnXdd�Zd	ejdd
�ZdZdZd
ZdZdZdZdZd
ZdZdZdZdZ dZ!dZ"Gdd�de#�Z$Gdd�de$�Z%Gdd�de$�Z&Gdd�de$�Z'e(Z)Z*eddd�Z+e+�,d �d!k�rJd"d#�Z-n"e+�,d$�d!k�rdd%d#�Z-nd&d#�Z-[+d'd(�Z.Gd)d*�d*�Z/d+d,�Z0d-d.�Z1Gd/d0�d0�Z2d1d2�Z3e/e2fZ4Gd3d4�d4�Z5Gd5d6�d6�Z6Gd7d8�d8�Z7Gd9d:�d:�Z8Gd;d<�d<�Z9Gd=d>�d>�Z:dZ;Z<Z=dYd@dA�Z>dZdBdC�Z?d[dDdE�Z@dFdG�ZAd\dIdJ�ZBGdKdL�dLe�rXejCneD�ZEGdMdN�dN�ZFGdOdP�dP�ZGGdQdR�dReG�ZHGdSdT�dT�ZIeIZJeKdUk�rbeIdV�ZLzeMeLjN�O��Wn.e$k
�r�ZPzeMdWeP�W5dZP[PXYnXe:eL�ZQeQ�R�eQ�Sd
dX�eQ�Tdd
�zeQ�D]ZUeMeU��q Wn.e$k
�r`ZPzeMdWeP�W5dZP[PXYnXdS)]a�
An XML-RPC client interface for Python.

The marshalling and response parser code can also be used to
implement XML-RPC servers.

Exported exceptions:

  Error          Base class for client errors
  ProtocolError  Indicates an HTTP protocol error
  ResponseError  Indicates a broken response package
  Fault          Indicates an XML-RPC fault package

Exported classes:

  ServerProxy    Represents a logical connection to an XML-RPC server

  MultiCall      Executor of boxcared xmlrpc requests
  DateTime       dateTime wrapper for an ISO 8601 string or time tuple or
                 localtime integer value to generate a "dateTime.iso8601"
                 XML-RPC value
  Binary         binary data wrapper

  Marshaller     Generate an XML-RPC params chunk from a Python data structure
  Unmarshaller   Unmarshal an XML-RPC response from incoming XML event message
  Transport      Handles an HTTP transaction to an XML-RPC server
  SafeTransport  Handles an HTTPS transaction to an XML-RPC server

Exported constants:

  (none)

Exported functions:

  getparser      Create instance of the fastest available parser & attach
                 to an unmarshalling object
  dumps          Convert an argument tuple or a Fault instance to an XML-RPC
                 request (or response, if the methodresponse option is used).
  loads          Convert an XML-RPC packet to unmarshalled data plus a method
                 name (None if not present).
�N)�datetime)�Decimal)�expat)�BytesIOcCs$|�dd�}|�dd�}|�dd�S)N�&z&amp;�<z&lt;�>z&gt;)�replace)�s�r�%/usr/lib64/python3.8/xmlrpc/client.py�escape�sr
z%d.%d�i���i�iD���i����i���ip���iԁ��iC���iB���i����i����i����c@seZdZdZejZdS)�ErrorzBase class for client errors.N)�__name__�
__module__�__qualname__�__doc__�object�__str__rrrrr�src@s eZdZdZdd�Zdd�ZdS)�
ProtocolErrorz!Indicates an HTTP protocol error.cCs&t�|�||_||_||_||_dS�N)r�__init__�url�errcode�errmsg�headers)�selfrrrrrrrr�s

zProtocolError.__init__cCsd|jj|j|j|jfS)Nz<%s for %s: %s %s>)�	__class__rrrr�rrrr�__repr__�s��zProtocolError.__repr__N�rrrrrr rrrrr�src@seZdZdZdS)�
ResponseErrorz$Indicates a broken response package.N)rrrrrrrrr"�sr"c@s eZdZdZdd�Zdd�ZdS)�Faultz#Indicates an XML-RPC fault package.cKst�|�||_||_dSr)rr�	faultCode�faultString)rr$r%Zextrarrrr�s
zFault.__init__cCsd|jj|j|jfS)Nz<%s %s: %r>)rrr$r%rrrrr �s�zFault.__repr__Nr!rrrrr#�sr#�z%YZ0001cCs
|�d�S�N�%Y%m%dT%H:%M:%S��strftime��valuerrr�_iso8601_formatsr-z%4YcCs
|�d�S)Nz%4Y%m%dT%H:%M:%Sr)r+rrrr-scCs|�d��d�S)Nr(�)r*�zfillr+rrrr-scCsLt|t�rt|�St|ttjf�s<|dkr2t��}t�|�}d|dd�S)Nrz%04d%02d%02dT%02d:%02d:%02d�)�
isinstancerr-�tuple�time�struct_time�	localtimer+rrr�	_strftimes

r6c@sreZdZdZddd�Zdd�Zdd�Zd	d
�Zdd�Zd
d�Z	dd�Z
dd�Zdd�Zdd�Z
dd�Zdd�ZdS)�DateTimez�DateTime wrapper for an ISO 8601 string or time tuple or
    localtime integer value to generate 'dateTime.iso8601' XML-RPC
    value.
    rcCs t|t�r||_n
t|�|_dSr)r1�strr,r6)rr,rrrr(s
zDateTime.__init__cCs�t|t�r|j}|j}nzt|t�r2|j}t|�}n`t|t�rH|j}|}nJt|d�rd|��}|��}n.t|d�rv|jj	p|t
|�}td|jj	|f��||fS)N�	timetuplerzCan't compare %s and %s)r1r7r,rr-r8�hasattrr9rr�type�	TypeError)r�otherr
�oZotyperrr�make_comparable.s*






��
�zDateTime.make_comparablecCs|�|�\}}||kSr�r?�rr=r
r>rrr�__lt__CszDateTime.__lt__cCs|�|�\}}||kSrr@rArrr�__le__GszDateTime.__le__cCs|�|�\}}||kSrr@rArrr�__gt__KszDateTime.__gt__cCs|�|�\}}||kSrr@rArrr�__ge__OszDateTime.__ge__cCs|�|�\}}||kSrr@rArrr�__eq__SszDateTime.__eq__cCst�|jd�Sr')r3�strptimer,rrrrr9WszDateTime.timetuplecCs|jSrr+rrrrr_szDateTime.__str__cCsd|jj|jt|�fS)Nz<%s %r at %#x>)rrr,�idrrrrr bszDateTime.__repr__cCst|���|_dSr)r8�stripr,�r�datarrr�decodeeszDateTime.decodecCs$|�d�|�|j�|�d�dS�Nz<value><dateTime.iso8601>z</dateTime.iso8601></value>
)�writer,)r�outrrr�encodehs
zDateTime.encodeN)r)rrrrrr?rBrCrDrErFr9rr rLrPrrrrr7"s
r7cCst�}|�|�|Sr)r7rL�rKr,rrr�	_datetimems
rRcCst�|d�Sr')rrG)rKrrr�_datetime_typessrSc@s:eZdZdZd
dd�Zdd�Zdd�Zd	d
�Zdd�ZdS)�BinaryzWrapper for binary data.NcCs>|dkrd}n&t|ttf�s,td|jj��t|�}||_dS)N�z#expected bytes or bytearray, not %s)r1�bytes�	bytearrayr<rrrKrJrrrrs�zBinary.__init__cCst|jd�S)Nzlatin-1)r8rKrrrrr�szBinary.__str__cCst|t�r|j}|j|kSr)r1rTrK)rr=rrrrF�s
z
Binary.__eq__cCst�|�|_dSr)�base64�decodebytesrKrJrrrrL�sz
Binary.decodecCs4|�d�t�|j�}|�|�d��|�d�dS�Nz<value><base64>
�asciiz</base64></value>
)rNrX�encodebytesrKrL)rrO�encodedrrrrP�s
z
Binary.encode)N)	rrrrrrrFrLrPrrrrrT|s
rTcCst�}|�|�|Sr)rTrLrQrrr�_binary�s
r^c@s$eZdZdd�Zdd�Zdd�ZdS)�ExpatParsercCsDt�dd�|_}||_|j|_|j|_|j|_	d}|�
|d�dSr)rZParserCreate�_parser�_target�startZStartElementHandler�endZEndElementHandlerrKZCharacterDataHandler�xml)r�target�parser�encodingrrrr�szExpatParser.__init__cCs|j�|d�dS�Nr)r`�ParserJrrr�feed�szExpatParser.feedcCs8z
|j}Wntk
rYnX|`|`|�dd�dS)NrUT)r`�AttributeErrorrari)rrfrrr�close�s
zExpatParser.closeN)rrrrrjrlrrrrr_�s	r_c@s�eZdZdZddd�ZiZdd�Zdd	�Zd
d�Zeee	d�<dd
�Z
e
ee<dd�Zeee
<eZdd�Zeee<efdd�Zeee<dd�Zeee<eee<dd�Zeee<eee<efdd�Zeee<dd�Zeee<dd�Zeee<eee <eed<dS) �
MarshalleravGenerate an XML-RPC params chunk from a Python data structure.

    Create a Marshaller instance for each set of parameters, and use
    the "dumps" method to convert your data (represented as a tuple)
    to an XML-RPC params chunk.  To write a fault response, pass a
    Fault instance instead.  You may prefer to use the "dumps" module
    function for this purpose.
    NFcCsi|_d|_||_||_dSr)�memorKrg�
allow_none)rrgrorrrr�szMarshaller.__init__cCs�g}|j}|j}t|t�r@|d�||j|jd�|�|d�n4|d�|D]}|d�|||�|d�qL|d�d�|�}|S)	Nz<fault>
)r$r%z	</fault>
z	<params>
z<param>
z	</param>
z
</params>
�)�append�_Marshaller__dumpr1r#r$r%�join)r�valuesrOrN�dump�v�resultrrr�dumps�s&
��



zMarshaller.dumpscCs�z|jt|�}Wnftk
rxt|d�s<tdt|���t|�jD]"}||j��krFtdt|���qF|jd}YnX||||�dS)N�__dict__zcannot marshal %s objects�_arbitrary_instance)�dispatchr;�KeyErrorr:r<�__mro__�keys)rr,rN�fZtype_rrrZ__dump�s
zMarshaller.__dumpcCs|jstd��|d�dS)Nz0cannot marshal None unless allow_none is enabledz<value><nil/></value>)ror<�rr,rNrrr�dump_nil
szMarshaller.dump_nilcCs$|d�||rdpd�|d�dS)Nz<value><boolean>�1�0z</boolean></value>
rr�rrr�	dump_boolszMarshaller.dump_boolcCs<|tks|tkrtd��|d�|tt|���|d�dS)Nzint exceeds XML-RPC limitsz<value><int>z</int></value>
)�MAXINT�MININT�
OverflowErrorr8�intr�rrr�	dump_longs
zMarshaller.dump_longcCs |d�|t|��|d�dS)Nz<value><double>z</double></value>
)�reprr�rrr�dump_double$szMarshaller.dump_doublecCs |d�|||��|d�dS)Nz<value><string>z</string></value>
r)rr,rNr
rrr�dump_unicode*szMarshaller.dump_unicodecCs,|d�t�|�}||�d��|d�dSrZ)rXr\rL)rr,rNr]rrr�
dump_bytes0s
zMarshaller.dump_bytescCsZt|�}||jkrtd��d|j|<|j}|d�|D]}|||�q6|d�|j|=dS)Nz"cannot marshal recursive sequencesz<value><array><data>
z</data></array></value>
)rHrnr<rr)rr,rN�irurvrrr�
dump_array8s

zMarshaller.dump_arraycCs�t|�}||jkrtd��d|j|<|j}|d�|��D]D\}}|d�t|t�s\td��|d||��|||�|d�q:|d�|j|=dS)Nz%cannot marshal recursive dictionariesz<value><struct>
z	<member>
zdictionary key must be stringz<name>%s</name>
z
</member>
z</struct></value>
)rHrnr<rr�itemsr1r8)rr,rNr
r�ru�krvrrr�dump_structFs




zMarshaller.dump_structcCs |d�|t|��|d�dSrM)r6r�rrr�
dump_datetimeXszMarshaller.dump_datetimecCs2|jtkr ||_|�|�|`n|�|j|�dSr)r�WRAPPERSrNrPr�ryr�rrr�
dump_instance^s


zMarshaller.dump_instancerz)NF)!rrrrrr{rxrrr�r;r��boolr�r�Zdump_intr��floatr
r�r8r�rVrWr�r2�listr��dictr�rr�r7rTrrrrrm�s<
	rmc@sneZdZdZdEdd�Zdd�Zdd�Zd	d
�Zdd�Zd
d�Z	dd�Z
dd�ZiZdd�Z
e
ed<dd�Zeed<dd�Zeed<eed<eed<eed<eed<eed <d!d"�Zeed#<eed$<d%d&�Zeed'<d(d)�Zeed*<eed+<d,d-�Zeed.<d/d0�Zeed1<d2d3�Zeed4<d5d6�Zeed7<d8d9�Zeed:<d;d<�Zeed=<d>d?�Zeed@<dAdB�ZeedC<dDS)F�UnmarshalleraUnmarshal an XML-RPC response, based on incoming XML event
    messages (start, data, end).  Call close() to get the resulting
    data structure.

    Note that this reader is fairly tolerant, and gladly accepts bogus
    XML-RPC data without complaining (but not bogus XML).
    FcCsHd|_g|_g|_g|_d|_d|_d|_|jj|_|p:||_||_	dS)NF�utf-8)
�_type�_stack�_marks�_data�_value�_methodname�	_encodingrq�
_use_datetime�
_use_bytes)r�use_datetime�use_builtin_typesrrrr~s

zUnmarshaller.__init__cCs:|jdks|jrt��|jdkr0tf|jd��t|j�S)N�faultr)r�r�r"r#r�r2rrrrrl�s

zUnmarshaller.closecCs|jSr)r�rrrr�
getmethodname�szUnmarshaller.getmethodnamecCs
||_dSr)r�)rrgZ
standalonerrrrd�szUnmarshaller.xmlcCshd|kr|�d�d}|dks&|dkr8|j�t|j��g|_|jrZ||jkrZtd|��|dk|_dS)N�:����array�structzunknown tag %rr,)	�splitr�rq�lenr�r�r�r{r")r�tagZattrsrrrrb�szUnmarshaller.startcCs|j�|�dSr)r�rq)r�textrrrrK�szUnmarshaller.datacCsvz|j|}WnTtk
rbd|kr,YdSz|j|�d�d}Wntk
r\YYdSXYnX||d�|j��S)Nr�r�rp)r{r|r�rsr�)rr�rrrrrc�szUnmarshaller.endcCsnz|j|}WnTtk
rbd|kr,YdSz|j|�d�d}Wntk
r\YYdSXYnX|||�S)Nr�r�)r{r|r�)rr�rKrrrr�end_dispatch�szUnmarshaller.end_dispatchcCs|�d�d|_dSrh)rqr�rJrrr�end_nil�s
zUnmarshaller.end_nilZnilcCs:|dkr|�d�n|dkr(|�d�ntd��d|_dS)Nr�Fr�Tzbad boolean valuer)rqr<r�rJrrr�end_boolean�szUnmarshaller.end_boolean�booleancCs|�t|��d|_dSrh)rqr�r�rJrrr�end_int�szUnmarshaller.end_intZi1Zi2Zi4Zi8r�Z
bigintegercCs|�t|��d|_dSrh)rqr�r�rJrrr�
end_double�szUnmarshaller.end_doubleZdoubler�cCs|�t|��d|_dSrh)rqrr�rJrrr�end_bigdecimal�szUnmarshaller.end_bigdecimalZ
bigdecimalcCs&|jr|�|j�}|�|�d|_dSrh)r�rLrqr�rJrrr�
end_string�s
zUnmarshaller.end_string�string�namecCs.|j��}|j|d�g|j|d�<d|_dSrh)r��popr�r�)rrK�markrrr�	end_array�s
zUnmarshaller.end_arrayr�cCs`|j��}i}|j|d�}tdt|�d�D]}||d|||<q,|g|j|d�<d|_dS)Nrrr&)r�r�r��ranger�r�)rrKr�r�r�r�rrr�
end_struct�s
zUnmarshaller.end_structr�cCs6t�}|�|�d��|jr"|j}|�|�d|_dS)Nr[r)rTrLrPr�rKrqr��rrKr,rrr�
end_base64
s
zUnmarshaller.end_base64rXcCs,t�}|�|�|jrt|�}|�|�dSr)r7rLr�rSrqr�rrr�end_dateTimes

zUnmarshaller.end_dateTimezdateTime.iso8601cCs|jr|�|�dSr)r�r�rJrrr�	end_valueszUnmarshaller.end_valuer,cCs
d|_dS)N�params�r�rJrrr�
end_params"szUnmarshaller.end_paramsr�cCs
d|_dS)Nr�r�rJrrr�	end_fault&szUnmarshaller.end_faultr�cCs"|jr|�|j�}||_d|_dS)N�
methodName)r�rLr�r�rJrrr�end_methodName*szUnmarshaller.end_methodNamer�N)FF)rrrrrrlr�rdrbrKrcr�r{r�r�r�r�r�r�r�r�r�r�r�r�r�r�rrrrr�rsZ
	r�c@s$eZdZdd�Zdd�Zdd�ZdS)�_MultiCallMethodcCs||_||_dSr)�_MultiCallMethod__call_list�_MultiCallMethod__name)rZ	call_listr�rrrr7sz_MultiCallMethod.__init__cCst|jd|j|f�S�Nz%s.%s)r�r�r��rr�rrr�__getattr__:sz_MultiCallMethod.__getattr__cGs|j�|j|f�dSr)r�rqr��r�argsrrr�__call__<sz_MultiCallMethod.__call__N�rrrrr�r�rrrrr�4sr�c@s eZdZdZdd�Zdd�ZdS)�MultiCallIteratorzaIterates over the results of a multicall. Exceptions are
    raised in response to xmlrpc faults.cCs
||_dSr)�results)rr�rrrrCszMultiCallIterator.__init__cCsR|j|}t|�ti�kr.t|d|d��n t|�tg�krF|dStd��dS)Nr$r%rz#unexpected type in multicall result)r�r;r#�
ValueError)rr��itemrrr�__getitem__Fs
zMultiCallIterator.__getitem__N)rrrrrr�rrrrr�?sr�c@s0eZdZdZdd�Zdd�Zdd�Zdd	�Zd
S)�	MultiCalla~server -> an object used to boxcar method calls

    server should be a ServerProxy object.

    Methods can be added to the MultiCall using normal
    method 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()
    cCs||_g|_dSr)�_MultiCall__server�_MultiCall__call_list)r�serverrrrr`szMultiCall.__init__cCsd|jjt|�fS)Nz<%s at %#x>)rrrHrrrrr dszMultiCall.__repr__cCst|j|�Sr)r�r�r�rrrr�gszMultiCall.__getattr__cCs6g}|jD]\}}|�||d��q
t|jj�|��S)N)r�r�)r�rqr�r��systemZ	multicall)rZmarshalled_listr�r�rrrr�jszMultiCall.__call__N)rrrrrr r�r�rrrrr�Os
r�FcCsrtrHtrH|rt}tj}n|r&t}t}nt}t}tdd||t�}t|�}n"t||d�}trbt|�}nt	|�}||fS)z�getparser() -> parser, unmarshaller

    Create an instance of the fastest available parser, and attach it
    to an unmarshalling object.  Return both objects.
    TF�r�r�)
�
FastParser�FastUnmarshallerrSrXrYr^rRr#r�r_)r�r�Z
mkdatetimeZmkbytesrerfrrr�	getparser|s 

r�cCs�t|t�rd}n|rt|t�r|s&d}tr4t|�}n
t||�}|�|�}|dkr^dt|�}nd}|rx|d|d|df}n|r�|d|d	f}n|Sd
�|�S)a�data [,options] -> marshalled data

    Convert an argument tuple or a Fault instance to an XML-RPC
    request (or response, if the methodresponse option is used).

    In addition to the data object, the following options can be given
    as keyword arguments:

        methodname: the method name for a methodCall packet

        methodresponse: true to create a methodResponse packet.
        If this option is used with a tuple, the tuple must be
        a 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 the
    packet encoding.  Unicode strings are automatically converted,
    where necessary.
    r&r�z$<?xml version='1.0' encoding='%s'?>
z<?xml version='1.0'?>
z<methodCall>
<methodName>z</methodName>
z</methodCall>
z<methodResponse>
z</methodResponse>
rp)r1r#r2�FastMarshallerrmrxr8rs)r��
methodnameZmethodresponsergro�mrKZ	xmlheaderrrrrx�s8



��rxcCs2t||d�\}}|�|�|��|��|��fS)z�data -> unmarshalled data, method name

    Convert an XML-RPC packet to unmarshalled data plus a method
    name (None if not present).

    If the XML-RPC packet represents a fault condition, this function
    raises a Fault exception.
    r�)r�rjrlr�)rKr�r��p�urrr�loads�s	
r�c	Cs<tst�t�}tjd|dd��}|�|�W5QRX|��S)zhdata -> gzip encoded data

    Encode data using the gzip content encoding as described in RFC 1952
    �wbr&)�mode�fileobjZ
compresslevel)�gzip�NotImplementedErrorr�GzipFilerN�getvalue)rKr�gzfrrr�gzip_encodesr��@c	Cs�tst�tjdt|�d��H}z$|dkr0|��}n|�|d�}Wntk
r\td��YnXW5QRX|dkr�t|�|kr�td��|S)zrgzip encoded data -> unencoded data

    Decode data using the gzip content encoding as described in RFC 1952
    �rb�r�r�rr&zinvalid dataz#max gzipped payload length exceeded)r�r�r�r�read�OSErrorr�r�)rKZ
max_decoder�Zdecodedrrr�gzip_decodes
r�c@s eZdZdZdd�Zdd�ZdS)�GzipDecodedResponsezha file-like object to decode a response encoded with the gzip
    method, as described in RFC 1952.
    cCs.tst�t|���|_tjj|d|jd�dS)Nr�r�)r�r�rr��ior�r)r�responserrrr:szGzipDecodedResponse.__init__cCs"ztj�|�W5|j��XdSr)r�rlr�r�rrrrrlBszGzipDecodedResponse.closeN)rrrrrrlrrrrr�6sr�c@s$eZdZdd�Zdd�Zdd�ZdS)�_MethodcCs||_||_dSr��
_Method__send�
_Method__name)r�sendr�rrrrOsz_Method.__init__cCst|jd|j|f�Sr�)r�r�r�r�rrrr�Rsz_Method.__getattr__cGs|�|j|�Srr�r�rrrr�Tsz_Method.__call__Nr�rrrrr�Lsr�c@s�eZdZdZdeZdZdZddd�dd	�Zdd
d�Z	d dd
�Z
dd�Zdd�Zdd�Z
dd�Zdd�Zdd�Zdd�Zdd�ZdS)!�	Transportz1Handles an HTTP transaction to an XML-RPC server.zPython-xmlrpc/%sTNFr)rcCs&||_||_d|_t|�|_g|_dS�N)NN)r��_use_builtin_types�_connectionr��_headers�_extra_headers)rr�r�rrrrrks

zTransport.__init__cCs�dD]v}z|�||||�WStjjk
r<|r8�Yqtk
rx}z |sf|jtjtjtjfkrh�W5d}~XYqXqdS)N)rr&)	�single_request�http�clientZRemoteDisconnectedr��errnoZ
ECONNRESETZECONNABORTEDZEPIPE)r�host�handler�request_body�verboser��errr�request}s�zTransport.requestcCs�z8|�||||�}|��}|jdkr6||_|�|�WSWn2tk
rN�Yntk
rj|���YnX|�dd�r�|�	�t
|||j|jt|�
����dS)N��zcontent-lengthrp)�send_requestZgetresponseZstatusr�parse_responser#�	Exceptionrl�	getheaderr�r�reasonr�Z
getheaders)rr	r
rrZ	http_connZresprrrr�s&

�zTransport.single_requestcCst|j|jd�S)Nr�)r�r�rrrrrr��s�zTransport.getparsercCsri}t|t�r|\}}tj�|�\}}|rdtj�|�}t�|��d�}d�	|�
��}dd|fg}ng}|||fS)Nr�rpZ
AuthorizationzBasic )r1r2�urllib�parseZ
_splituserZunquote_to_bytesrXr\rLrsr�)rr	�x509ZauthZ
extra_headersrrr�
get_host_info�s

�zTransport.get_host_infocCsL|jr||jdkr|jdS|�|�\}|_}|tj�|�f|_|jdS)Nrr&)rrrrrZHTTPConnection�rr	Zchostrrrr�make_connection�s

zTransport.make_connectioncCs |j\}}|rd|_|��dSr)rrl)rr	�
connectionrrrrl�s
zTransport.closecCs�|�|�}|j|j}|r$|�d�|jrJtrJ|jd|dd�|�d�n|�d|�|�d�|�d|jf�|�	||�|�
||�|S)Nr&ZPOSTT)Zskip_accept_encoding)zAccept-Encodingr�)zContent-Typeztext/xmlz
User-Agent)rrrZset_debuglevel�accept_gzip_encodingr�Z
putrequestrq�
user_agent�send_headers�send_content)rr	r
r�debugrrrrrr�s



zTransport.send_requestcCs|D]\}}|�||�qdSr)�	putheader)rrr�key�valrrrrszTransport.send_headerscCsR|jdk	r0|jt|�kr0tr0|�dd�t|�}|�dtt|���|�|�dS)N�Content-Encodingr�zContent-Length)�encode_thresholdr�r�r!r�r8Z
endheaders)rrrrrrrs
��zTransport.send_contentcCs�t|d�r*|�dd�dkr$t|�}q.|}n|}|��\}}|�d�}|sJqj|jr^tdt|��|�|�q:||k	rz|�	�|�	�|�	�S)Nrr$rpr�izbody:)
r:rr�r�r�r�printr�rjrl)rr��streamr�r�rKrrrr$s 


zTransport.parse_response)FF)F)F)rrrr�__version__rrr%rrrr�rrrlrrrrrrrrr�]s"�

!r�cs2eZdZdZd
ddd��fdd�Zdd	�Z�ZS)�
SafeTransportz2Handles an HTTPS transaction to an XML-RPC server.FrN�r�contextcst�j|||d�||_dS)N�r�r�r)�superrr+)rr�r�rr+�rrrrEs
�zSafeTransport.__init__cCst|jr||jdkr|jdSttjd�s2td��|�|�\}|_}|tjj|dfd|ji|p`i��f|_|jdS)Nrr&�HTTPSConnectionz1your version of http.client doesn't support HTTPSr+)	rr:rrr�rrr/r+rrrrrNs
�
���
zSafeTransport.make_connection)FF)rrrrrr�
__classcell__rrr.rr)Bs�	r)c@sZeZdZdZdddd�dd�Zdd	�Zd
d�Zdd
�Zdd�Zdd�Z	dd�Z
dd�ZdS)�ServerProxya�uri [,options] -> a logical connection to an XML-RPC server

    uri is the connection point on the server, given as
    scheme://host/target.

    The standard implementation always supports the "http" scheme.  If
    SSL 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 factory
        encoding: the request encoding (default is UTF-8)

    All 8-bit strings passed to the server proxy are assumed to use
    the given encoding.
    NFrr*c
Cs�tj�|�\}
}|
dkr td��tj�|�\|_|_|js@d|_|dkr||
dkr^t}d|	i}nt}i}|f|||d�|��}||_	|p�d|_
||_||_dS)N)r�httpszunsupported XML-RPC protocolz/RPC2r2r+r,r�)
rrZ
_splittyper�Z
_splithost�_ServerProxy__host�_ServerProxy__handlerr)r��_ServerProxy__transport�_ServerProxy__encoding�_ServerProxy__verbose�_ServerProxy__allow_none)
rZuri�	transportrgrror�r�rr+r;r
Zextra_kwargsrrrr�s,
��
zServerProxy.__init__cCs|j��dSr)r5rlrrrrZ__close�szServerProxy.__closecCsPt|||j|jd��|jd�}|jj|j|j||jd�}t	|�dkrL|d}|S)N)rgro�xmlcharrefreplace)rr&r)
rxr6r8rPr5rr3r4r7r�)rr�r�rr�rrrZ	__request�s
���zServerProxy.__requestcCsd|jj|j|jfS)Nz
<%s for %s%s>)rrr3r4rrrrr �s��zServerProxy.__repr__cCst|j|�Sr)r��_ServerProxy__requestr�rrrr��szServerProxy.__getattr__cCs.|dkr|jS|dkr|jStd|f��dS)z|A workaround to get special attributes on the ServerProxy
           without interfering with the magic __getattr__
        rlr9zAttribute %r not foundN)�_ServerProxy__closer5rk)r�attrrrrr��s
zServerProxy.__call__cCs|Srrrrrr�	__enter__�szServerProxy.__enter__cGs|��dSr)r<r�rrr�__exit__�szServerProxy.__exit__)NNFFFF)rrrrrr<r;r r�r�r>r?rrrrr1ms ��
r1�__main__zhttp://localhost:8000ZERROR�	)FF)NNNF)FF)r�)VrrX�sysr3r�decimalrZhttp.clientrZurllib.parserZxml.parsersrrr�rr��ImportErrorr
�version_infor(r�r�ZPARSE_ERRORZSERVER_ERRORZAPPLICATION_ERRORZSYSTEM_ERRORZTRANSPORT_ERRORZNOT_WELLFORMED_ERRORZUNSUPPORTED_ENCODINGZINVALID_ENCODING_CHARZINVALID_XMLRPCZMETHOD_NOT_FOUNDZINVALID_METHOD_PARAMSZINTERNAL_ERRORrrrr"r#r�r�ZBooleanZ_day0r*r-r6r7rRrSrTr^r�r_rmr�r�r�r�r�r�r�r�rxr�r�r�r�rr�r�r�r)r1ZServerrr�r&ZcurrentTimeZgetCurrentTimervZmultiZgetData�pow�addr�rrrr�<module>Ys�*



K	#!(C%
'�
K

f+h

__pycache__/client.cpython-38.pyc000064400000103355150532415240012672 0ustar00U

e5d���
@sfdZddlZddlZddlZddlmZddlmZddlZddl	Z
ddlmZddl
Z
ddlmZzddlZWnek
r�dZYnXdd�Zd	ejdd
�ZdZdZd
ZdZdZdZdZd
ZdZdZdZdZ dZ!dZ"Gdd�de#�Z$Gdd�de$�Z%Gdd�de$�Z&Gdd�de$�Z'e(Z)Z*eddd�Z+e+�,d �d!k�rJd"d#�Z-n"e+�,d$�d!k�rdd%d#�Z-nd&d#�Z-[+d'd(�Z.Gd)d*�d*�Z/d+d,�Z0d-d.�Z1Gd/d0�d0�Z2d1d2�Z3e/e2fZ4Gd3d4�d4�Z5Gd5d6�d6�Z6Gd7d8�d8�Z7Gd9d:�d:�Z8Gd;d<�d<�Z9Gd=d>�d>�Z:dZ;Z<Z=dYd@dA�Z>dZdBdC�Z?d[dDdE�Z@dFdG�ZAd\dIdJ�ZBGdKdL�dLe�rXejCneD�ZEGdMdN�dN�ZFGdOdP�dP�ZGGdQdR�dReG�ZHGdSdT�dT�ZIeIZJeKdUk�rbeIdV�ZLzeMeLjN�O��Wn.e$k
�r�ZPzeMdWeP�W5dZP[PXYnXe:eL�ZQeQ�R�eQ�Sd
dX�eQ�Tdd
�zeQ�D]ZUeMeU��q Wn.e$k
�r`ZPzeMdWeP�W5dZP[PXYnXdS)]a�
An XML-RPC client interface for Python.

The marshalling and response parser code can also be used to
implement XML-RPC servers.

Exported exceptions:

  Error          Base class for client errors
  ProtocolError  Indicates an HTTP protocol error
  ResponseError  Indicates a broken response package
  Fault          Indicates an XML-RPC fault package

Exported classes:

  ServerProxy    Represents a logical connection to an XML-RPC server

  MultiCall      Executor of boxcared xmlrpc requests
  DateTime       dateTime wrapper for an ISO 8601 string or time tuple or
                 localtime integer value to generate a "dateTime.iso8601"
                 XML-RPC value
  Binary         binary data wrapper

  Marshaller     Generate an XML-RPC params chunk from a Python data structure
  Unmarshaller   Unmarshal an XML-RPC response from incoming XML event message
  Transport      Handles an HTTP transaction to an XML-RPC server
  SafeTransport  Handles an HTTPS transaction to an XML-RPC server

Exported constants:

  (none)

Exported functions:

  getparser      Create instance of the fastest available parser & attach
                 to an unmarshalling object
  dumps          Convert an argument tuple or a Fault instance to an XML-RPC
                 request (or response, if the methodresponse option is used).
  loads          Convert an XML-RPC packet to unmarshalled data plus a method
                 name (None if not present).
�N)�datetime)�Decimal)�expat)�BytesIOcCs$|�dd�}|�dd�}|�dd�S)N�&z&amp;�<z&lt;�>z&gt;)�replace)�s�r�%/usr/lib64/python3.8/xmlrpc/client.py�escape�sr
z%d.%d�i���i�iD���i����i���ip���iԁ��iC���iB���i����i����i����c@seZdZdZejZdS)�ErrorzBase class for client errors.N)�__name__�
__module__�__qualname__�__doc__�object�__str__rrrrr�src@s eZdZdZdd�Zdd�ZdS)�
ProtocolErrorz!Indicates an HTTP protocol error.cCs&t�|�||_||_||_||_dS�N)r�__init__�url�errcode�errmsg�headers)�selfrrrrrrrr�s

zProtocolError.__init__cCsd|jj|j|j|jfS)Nz<%s for %s: %s %s>)�	__class__rrrr�rrrr�__repr__�s��zProtocolError.__repr__N�rrrrrr rrrrr�src@seZdZdZdS)�
ResponseErrorz$Indicates a broken response package.N)rrrrrrrrr"�sr"c@s eZdZdZdd�Zdd�ZdS)�Faultz#Indicates an XML-RPC fault package.cKst�|�||_||_dSr)rr�	faultCode�faultString)rr$r%Zextrarrrr�s
zFault.__init__cCsd|jj|j|jfS)Nz<%s %s: %r>)rrr$r%rrrrr �s�zFault.__repr__Nr!rrrrr#�sr#�z%YZ0001cCs
|�d�S�N�%Y%m%dT%H:%M:%S��strftime��valuerrr�_iso8601_formatsr-z%4YcCs
|�d�S)Nz%4Y%m%dT%H:%M:%Sr)r+rrrr-scCs|�d��d�S)Nr(�)r*�zfillr+rrrr-scCsLt|t�rt|�St|ttjf�s<|dkr2t��}t�|�}d|dd�S)Nrz%04d%02d%02dT%02d:%02d:%02d�)�
isinstancerr-�tuple�time�struct_time�	localtimer+rrr�	_strftimes

r6c@sreZdZdZddd�Zdd�Zdd�Zd	d
�Zdd�Zd
d�Z	dd�Z
dd�Zdd�Zdd�Z
dd�Zdd�ZdS)�DateTimez�DateTime wrapper for an ISO 8601 string or time tuple or
    localtime integer value to generate 'dateTime.iso8601' XML-RPC
    value.
    rcCs t|t�r||_n
t|�|_dSr)r1�strr,r6)rr,rrrr(s
zDateTime.__init__cCs�t|t�r|j}|j}nzt|t�r2|j}t|�}n`t|t�rH|j}|}nJt|d�rd|��}|��}n.t|d�rv|jj	p|t
|�}td|jj	|f��||fS)N�	timetuplerzCan't compare %s and %s)r1r7r,rr-r8�hasattrr9rr�type�	TypeError)r�otherr
�oZotyperrr�make_comparable.s*






��
�zDateTime.make_comparablecCs|�|�\}}||kSr�r?�rr=r
r>rrr�__lt__CszDateTime.__lt__cCs|�|�\}}||kSrr@rArrr�__le__GszDateTime.__le__cCs|�|�\}}||kSrr@rArrr�__gt__KszDateTime.__gt__cCs|�|�\}}||kSrr@rArrr�__ge__OszDateTime.__ge__cCs|�|�\}}||kSrr@rArrr�__eq__SszDateTime.__eq__cCst�|jd�Sr')r3�strptimer,rrrrr9WszDateTime.timetuplecCs|jSrr+rrrrr_szDateTime.__str__cCsd|jj|jt|�fS)Nz<%s %r at %#x>)rrr,�idrrrrr bszDateTime.__repr__cCst|���|_dSr)r8�stripr,�r�datarrr�decodeeszDateTime.decodecCs$|�d�|�|j�|�d�dS�Nz<value><dateTime.iso8601>z</dateTime.iso8601></value>
)�writer,)r�outrrr�encodehs
zDateTime.encodeN)r)rrrrrr?rBrCrDrErFr9rr rLrPrrrrr7"s
r7cCst�}|�|�|Sr)r7rL�rKr,rrr�	_datetimems
rRcCst�|d�Sr')rrG)rKrrr�_datetime_typessrSc@s:eZdZdZd
dd�Zdd�Zdd�Zd	d
�Zdd�ZdS)�BinaryzWrapper for binary data.NcCs>|dkrd}n&t|ttf�s,td|jj��t|�}||_dS)N�z#expected bytes or bytearray, not %s)r1�bytes�	bytearrayr<rrrKrJrrrrs�zBinary.__init__cCst|jd�S)Nzlatin-1)r8rKrrrrr�szBinary.__str__cCst|t�r|j}|j|kSr)r1rTrK)rr=rrrrF�s
z
Binary.__eq__cCst�|�|_dSr)�base64�decodebytesrKrJrrrrL�sz
Binary.decodecCs4|�d�t�|j�}|�|�d��|�d�dS�Nz<value><base64>
�asciiz</base64></value>
)rNrX�encodebytesrKrL)rrO�encodedrrrrP�s
z
Binary.encode)N)	rrrrrrrFrLrPrrrrrT|s
rTcCst�}|�|�|Sr)rTrLrQrrr�_binary�s
r^c@s$eZdZdd�Zdd�Zdd�ZdS)�ExpatParsercCsDt�dd�|_}||_|j|_|j|_|j|_	d}|�
|d�dSr)rZParserCreate�_parser�_target�startZStartElementHandler�endZEndElementHandlerrKZCharacterDataHandler�xml)r�target�parser�encodingrrrr�szExpatParser.__init__cCs|j�|d�dS�Nr)r`�ParserJrrr�feed�szExpatParser.feedcCs8z
|j}Wntk
rYnX|`|`|�dd�dS)NrUT)r`�AttributeErrorrari)rrfrrr�close�s
zExpatParser.closeN)rrrrrjrlrrrrr_�s	r_c@s�eZdZdZddd�ZiZdd�Zdd	�Zd
d�Zeee	d�<dd
�Z
e
ee<dd�Zeee
<eZdd�Zeee<efdd�Zeee<dd�Zeee<eee<dd�Zeee<eee<efdd�Zeee<dd�Zeee<dd�Zeee<eee <eed<dS) �
MarshalleravGenerate an XML-RPC params chunk from a Python data structure.

    Create a Marshaller instance for each set of parameters, and use
    the "dumps" method to convert your data (represented as a tuple)
    to an XML-RPC params chunk.  To write a fault response, pass a
    Fault instance instead.  You may prefer to use the "dumps" module
    function for this purpose.
    NFcCsi|_d|_||_||_dSr)�memorKrg�
allow_none)rrgrorrrr�szMarshaller.__init__cCs�g}|j}|j}t|t�r@|d�||j|jd�|�|d�n4|d�|D]}|d�|||�|d�qL|d�d�|�}|S)	Nz<fault>
)r$r%z	</fault>
z	<params>
z<param>
z	</param>
z
</params>
�)�append�_Marshaller__dumpr1r#r$r%�join)r�valuesrOrN�dump�v�resultrrr�dumps�s&
��



zMarshaller.dumpscCs�z|jt|�}Wnftk
rxt|d�s<tdt|���t|�jD]"}||j��krFtdt|���qF|jd}YnX||||�dS)N�__dict__zcannot marshal %s objects�_arbitrary_instance)�dispatchr;�KeyErrorr:r<�__mro__�keys)rr,rN�fZtype_rrrZ__dump�s
zMarshaller.__dumpcCs|jstd��|d�dS)Nz0cannot marshal None unless allow_none is enabledz<value><nil/></value>)ror<�rr,rNrrr�dump_nil
szMarshaller.dump_nilcCs$|d�||rdpd�|d�dS)Nz<value><boolean>�1�0z</boolean></value>
rr�rrr�	dump_boolszMarshaller.dump_boolcCs<|tks|tkrtd��|d�|tt|���|d�dS)Nzint exceeds XML-RPC limitsz<value><int>z</int></value>
)�MAXINT�MININT�
OverflowErrorr8�intr�rrr�	dump_longs
zMarshaller.dump_longcCs |d�|t|��|d�dS)Nz<value><double>z</double></value>
)�reprr�rrr�dump_double$szMarshaller.dump_doublecCs |d�|||��|d�dS)Nz<value><string>z</string></value>
r)rr,rNr
rrr�dump_unicode*szMarshaller.dump_unicodecCs,|d�t�|�}||�d��|d�dSrZ)rXr\rL)rr,rNr]rrr�
dump_bytes0s
zMarshaller.dump_bytescCsZt|�}||jkrtd��d|j|<|j}|d�|D]}|||�q6|d�|j|=dS)Nz"cannot marshal recursive sequencesz<value><array><data>
z</data></array></value>
)rHrnr<rr)rr,rN�irurvrrr�
dump_array8s

zMarshaller.dump_arraycCs�t|�}||jkrtd��d|j|<|j}|d�|��D]D\}}|d�t|t�s\td��|d||��|||�|d�q:|d�|j|=dS)Nz%cannot marshal recursive dictionariesz<value><struct>
z	<member>
zdictionary key must be stringz<name>%s</name>
z
</member>
z</struct></value>
)rHrnr<rr�itemsr1r8)rr,rNr
r�ru�krvrrr�dump_structFs




zMarshaller.dump_structcCs |d�|t|��|d�dSrM)r6r�rrr�
dump_datetimeXszMarshaller.dump_datetimecCs2|jtkr ||_|�|�|`n|�|j|�dSr)r�WRAPPERSrNrPr�ryr�rrr�
dump_instance^s


zMarshaller.dump_instancerz)NF)!rrrrrr{rxrrr�r;r��boolr�r�Zdump_intr��floatr
r�r8r�rVrWr�r2�listr��dictr�rr�r7rTrrrrrm�s<
	rmc@sneZdZdZdEdd�Zdd�Zdd�Zd	d
�Zdd�Zd
d�Z	dd�Z
dd�ZiZdd�Z
e
ed<dd�Zeed<dd�Zeed<eed<eed<eed<eed<eed <d!d"�Zeed#<eed$<d%d&�Zeed'<d(d)�Zeed*<eed+<d,d-�Zeed.<d/d0�Zeed1<d2d3�Zeed4<d5d6�Zeed7<d8d9�Zeed:<d;d<�Zeed=<d>d?�Zeed@<dAdB�ZeedC<dDS)F�UnmarshalleraUnmarshal an XML-RPC response, based on incoming XML event
    messages (start, data, end).  Call close() to get the resulting
    data structure.

    Note that this reader is fairly tolerant, and gladly accepts bogus
    XML-RPC data without complaining (but not bogus XML).
    FcCsHd|_g|_g|_g|_d|_d|_d|_|jj|_|p:||_||_	dS)NF�utf-8)
�_type�_stack�_marks�_data�_value�_methodname�	_encodingrq�
_use_datetime�
_use_bytes)r�use_datetime�use_builtin_typesrrrr~s

zUnmarshaller.__init__cCs:|jdks|jrt��|jdkr0tf|jd��t|j�S)N�faultr)r�r�r"r#r�r2rrrrrl�s

zUnmarshaller.closecCs|jSr)r�rrrr�
getmethodname�szUnmarshaller.getmethodnamecCs
||_dSr)r�)rrgZ
standalonerrrrd�szUnmarshaller.xmlcCshd|kr|�d�d}|dks&|dkr8|j�t|j��g|_|jrZ||jkrZtd|��|dk|_dS)N�:����array�structzunknown tag %rr,)	�splitr�rq�lenr�r�r�r{r")r�tag�attrsrrrrb�szUnmarshaller.startcCs|j�|�dSr)r�rq)r�textrrrrK�szUnmarshaller.datacCsvz|j|}WnTtk
rbd|kr,YdSz|j|�d�d}Wntk
r\YYdSXYnX||d�|j��S)Nr�r�rp)r{r|r�rsr�)rr�rrrrrc�szUnmarshaller.endcCsnz|j|}WnTtk
rbd|kr,YdSz|j|�d�d}Wntk
r\YYdSXYnX|||�S)Nr�r�)r{r|r�)rr�rKrrrr�end_dispatch�szUnmarshaller.end_dispatchcCs|�d�d|_dSrh)rqr�rJrrr�end_nil�s
zUnmarshaller.end_nilZnilcCs:|dkr|�d�n|dkr(|�d�ntd��d|_dS)Nr�Fr�Tzbad boolean valuer)rqr<r�rJrrr�end_boolean�szUnmarshaller.end_boolean�booleancCs|�t|��d|_dSrh)rqr�r�rJrrr�end_int�szUnmarshaller.end_intZi1Zi2Zi4Zi8r�Z
bigintegercCs|�t|��d|_dSrh)rqr�r�rJrrr�
end_double�szUnmarshaller.end_doubleZdoubler�cCs|�t|��d|_dSrh)rqrr�rJrrr�end_bigdecimal�szUnmarshaller.end_bigdecimalZ
bigdecimalcCs&|jr|�|j�}|�|�d|_dSrh)r�rLrqr�rJrrr�
end_string�s
zUnmarshaller.end_string�string�namecCs.|j��}|j|d�g|j|d�<d|_dSrh)r��popr�r�)rrK�markrrr�	end_array�s
zUnmarshaller.end_arrayr�cCs`|j��}i}|j|d�}tdt|�d�D]}||d|||<q,|g|j|d�<d|_dS)Nrrr&)r�r�r��ranger�r�)rrKr�r�r�r�rrr�
end_struct�s
zUnmarshaller.end_structr�cCs6t�}|�|�d��|jr"|j}|�|�d|_dS)Nr[r)rTrLrPr�rKrqr��rrKr,rrr�
end_base64
s
zUnmarshaller.end_base64rXcCs,t�}|�|�|jrt|�}|�|�dSr)r7rLr�rSrqr�rrr�end_dateTimes

zUnmarshaller.end_dateTimezdateTime.iso8601cCs|jr|�|�dSr)r�r�rJrrr�	end_valueszUnmarshaller.end_valuer,cCs
d|_dS)N�params�r�rJrrr�
end_params"szUnmarshaller.end_paramsr�cCs
d|_dS)Nr�r�rJrrr�	end_fault&szUnmarshaller.end_faultr�cCs"|jr|�|j�}||_d|_dS)N�
methodName)r�rLr�r�rJrrr�end_methodName*szUnmarshaller.end_methodNamer�N)FF)rrrrrrlr�rdrbrKrcr�r{r�r�r�r�r�r�r�r�r�r�r�r�r�r�rrrrr�rsZ
	r�c@s$eZdZdd�Zdd�Zdd�ZdS)�_MultiCallMethodcCs||_||_dSr)�_MultiCallMethod__call_list�_MultiCallMethod__name)rZ	call_listr�rrrr7sz_MultiCallMethod.__init__cCst|jd|j|f�S�Nz%s.%s)r�r�r��rr�rrr�__getattr__:sz_MultiCallMethod.__getattr__cGs|j�|j|f�dSr)r�rqr��r�argsrrr�__call__<sz_MultiCallMethod.__call__N�rrrrr�r�rrrrr�4sr�c@s eZdZdZdd�Zdd�ZdS)�MultiCallIteratorzaIterates over the results of a multicall. Exceptions are
    raised in response to xmlrpc faults.cCs
||_dSr)�results)rr�rrrrCszMultiCallIterator.__init__cCsR|j|}t|�ti�kr.t|d|d��n t|�tg�krF|dStd��dS)Nr$r%rz#unexpected type in multicall result)r�r;r#�
ValueError)rr��itemrrr�__getitem__Fs
zMultiCallIterator.__getitem__N)rrrrrr�rrrrr�?sr�c@s0eZdZdZdd�Zdd�Zdd�Zdd	�Zd
S)�	MultiCalla~server -> an object used to boxcar method calls

    server should be a ServerProxy object.

    Methods can be added to the MultiCall using normal
    method 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()
    cCs||_g|_dSr)�_MultiCall__server�_MultiCall__call_list)r�serverrrrr`szMultiCall.__init__cCsd|jjt|�fS)Nz<%s at %#x>)rrrHrrrrr dszMultiCall.__repr__cCst|j|�Sr)r�r�r�rrrr�gszMultiCall.__getattr__cCs6g}|jD]\}}|�||d��q
t|jj�|��S)N)r�r�)r�rqr�r��systemZ	multicall)rZmarshalled_listr�r�rrrr�jszMultiCall.__call__N)rrrrrr r�r�rrrrr�Os
r�FcCsrtrHtrH|rt}tj}n|r&t}t}nt}t}tdd||t�}t|�}n"t||d�}trbt|�}nt	|�}||fS)z�getparser() -> parser, unmarshaller

    Create an instance of the fastest available parser, and attach it
    to an unmarshalling object.  Return both objects.
    TF�r�r�)
�
FastParser�FastUnmarshallerrSrXrYr^rRr#r�r_)r�r�Z
mkdatetimeZmkbytesrerfrrr�	getparser|s 

r�cCs�t|ttf�std��t|t�r&d}n"|rHt|t�rHt|�dksHtd��|sPd}tr^t|�}n
t||�}|�|�}|dkr�dt|�}nd}|r�|d|d|d	f}n|r�|d
|df}n|Sd�	|�S)
a�data [,options] -> marshalled data

    Convert an argument tuple or a Fault instance to an XML-RPC
    request (or response, if the methodresponse option is used).

    In addition to the data object, the following options can be given
    as keyword arguments:

        methodname: the method name for a methodCall packet

        methodresponse: true to create a methodResponse packet.
        If this option is used with a tuple, the tuple must be
        a 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 the
    packet encoding.  Unicode strings are automatically converted,
    where necessary.
    z(argument must be tuple or Fault instancer&z"response tuple must be a singletonr�z$<?xml version='1.0' encoding='%s'?>
z<?xml version='1.0'?>
z<methodCall>
<methodName>z</methodName>
z</methodCall>
z<methodResponse>
z</methodResponse>
rp)
r1r2r#�AssertionErrorr��FastMarshallerrmrxr8rs)r��
methodnameZmethodresponsergro�mrKZ	xmlheaderrrrrx�s<



��rxcCs2t||d�\}}|�|�|��|��|��fS)z�data -> unmarshalled data, method name

    Convert an XML-RPC packet to unmarshalled data plus a method
    name (None if not present).

    If the XML-RPC packet represents a fault condition, this function
    raises a Fault exception.
    r�)r�rjrlr�)rKr�r��p�urrr�loads�s	
r�c	Cs<tst�t�}tjd|dd��}|�|�W5QRX|��S)zhdata -> gzip encoded data

    Encode data using the gzip content encoding as described in RFC 1952
    �wbr&)�mode�fileobjZ
compresslevel)�gzip�NotImplementedErrorr�GzipFilerN�getvalue)rKr�gzfrrr�gzip_encodesr��@c	Cs�tst�tjdt|�d��H}z$|dkr0|��}n|�|d�}Wntk
r\td��YnXW5QRX|dkr�t|�|kr�td��|S)zrgzip encoded data -> unencoded data

    Decode data using the gzip content encoding as described in RFC 1952
    �rb�r�r�rr&zinvalid dataz#max gzipped payload length exceeded)r�r�r�r�read�OSErrorr�r�)rKZ
max_decoder�Zdecodedrrr�gzip_decodes
r�c@s eZdZdZdd�Zdd�ZdS)�GzipDecodedResponsezha file-like object to decode a response encoded with the gzip
    method, as described in RFC 1952.
    cCs.tst�t|���|_tjj|d|jd�dS)Nr�r�)r�r�rr��ior�r)r�responserrrr:szGzipDecodedResponse.__init__cCs"ztj�|�W5|j��XdSr)r�rlr�r�rrrrrlBszGzipDecodedResponse.closeN)rrrrrrlrrrrr�6sr�c@s$eZdZdd�Zdd�Zdd�ZdS)�_MethodcCs||_||_dSr��
_Method__send�
_Method__name)r�sendr�rrrrOsz_Method.__init__cCst|jd|j|f�Sr�)r�r�r�r�rrrr�Rsz_Method.__getattr__cGs|�|j|�Srr�r�rrrr�Tsz_Method.__call__Nr�rrrrr�Lsr�c@s�eZdZdZdeZdZdZddd�dd	�Zdd
d�Z	d dd
�Z
dd�Zdd�Zdd�Z
dd�Zdd�Zdd�Zdd�Zdd�ZdS)!�	Transportz1Handles an HTTP transaction to an XML-RPC server.zPython-xmlrpc/%sTNFr)rcCs&||_||_d|_t|�|_g|_dS�N)NN)r��_use_builtin_types�_connectionr��_headers�_extra_headers)rr�r�rrrrrks

zTransport.__init__cCs�dD]v}z|�||||�WStjjk
r<|r8�Yqtk
rx}z |sf|jtjtjtjfkrh�W5d}~XYqXqdS)N)rr&)	�single_request�http�clientZRemoteDisconnectedr��errnoZ
ECONNRESETZECONNABORTEDZEPIPE)r�host�handler�request_body�verboser��errr�request}s�zTransport.requestcCs�z8|�||||�}|��}|jdkr6||_|�|�WSWn2tk
rN�Yntk
rj|���YnX|�dd�r�|�	�t
|||j|jt|�
����dS)N��zcontent-lengthrp)�send_requestZgetresponseZstatusr�parse_responser#�	Exceptionrl�	getheaderr�r�reasonr�Z
getheaders)rrrr
rZ	http_connZresprrrr�s&

�zTransport.single_requestcCst|j|jd�S)Nr�)r�r�rrrrrr��s�zTransport.getparsercCsri}t|t�r|\}}tj�|�\}}|rdtj�|�}t�|��d�}d�	|�
��}dd|fg}ng}|||fS)Nr�rpZ
AuthorizationzBasic )r1r2�urllib�parseZ
_splituserZunquote_to_bytesrXr\rLrsr�)rr�x509ZauthZ
extra_headersrrr�
get_host_info�s

�zTransport.get_host_infocCsL|jr||jdkr|jdS|�|�\}|_}|tj�|�f|_|jdS)Nrr&)rrrrr	ZHTTPConnection�rrZchostrrrr�make_connection�s

zTransport.make_connectioncCs |j\}}|rd|_|��dSr)rrl)rr�
connectionrrrrl�s
zTransport.closecCs�|�|�}|j|j}|r$|�d�|jrJtrJ|jd|dd�|�d�n|�d|�|�d�|�d|jf�|�	||�|�
||�|S)Nr&ZPOSTT)Zskip_accept_encoding)zAccept-Encodingr�)zContent-Typeztext/xmlz
User-Agent)rrrZset_debuglevel�accept_gzip_encodingr�Z
putrequestrq�
user_agent�send_headers�send_content)rrrr
�debugrrrrrr�s



zTransport.send_requestcCs|D]\}}|�||�qdSr)�	putheader)rrr�key�valrrrr szTransport.send_headerscCsR|jdk	r0|jt|�kr0tr0|�dd�t|�}|�dtt|���|�|�dS)N�Content-Encodingr�zContent-Length)�encode_thresholdr�r�r#r�r8Z
endheaders)rrr
rrrr!s
��zTransport.send_contentcCs�t|d�r*|�dd�dkr$t|�}q.|}n|}|��\}}|�d�}|sJqj|jr^tdt|��|�|�q:||k	rz|�	�|�	�|�	�S)Nrr&rpr�izbody:)
r:rr�r�r�r�printr�rjrl)rr��streamr�r�rKrrrr$s 


zTransport.parse_response)FF)F)F)rrrr�__version__rrr'rrrr�rrrlrr r!rrrrrr]s"�

!rcs2eZdZdZd
ddd��fdd�Zdd	�Z�ZS)�
SafeTransportz2Handles an HTTPS transaction to an XML-RPC server.FrN�r�contextcst�j|||d�||_dS)N�r�r�r)�superrr-)rr�r�rr-�rrrrEs
�zSafeTransport.__init__cCst|jr||jdkr|jdSttjd�s2td��|�|�\}|_}|tjj|dfd|ji|p`i��f|_|jdS)Nrr&�HTTPSConnectionz1your version of http.client doesn't support HTTPSr-)	rr:rr	r�rrr1r-rrrrrNs
�
���
zSafeTransport.make_connection)FF)rrrrrr�
__classcell__rrr0rr+Bs�	r+c@sZeZdZdZdddd�dd�Zdd	�Zd
d�Zdd
�Zdd�Zdd�Z	dd�Z
dd�ZdS)�ServerProxya�uri [,options] -> a logical connection to an XML-RPC server

    uri is the connection point on the server, given as
    scheme://host/target.

    The standard implementation always supports the "http" scheme.  If
    SSL 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 factory
        encoding: the request encoding (default is UTF-8)

    All 8-bit strings passed to the server proxy are assumed to use
    the given encoding.
    NFrr,c
Cs�tj�|�\}
}|
dkr td��tj�|�\|_|_|js@d|_|dkr||
dkr^t}d|	i}nt}i}|f|||d�|��}||_	|p�d|_
||_||_dS)N)r�httpszunsupported XML-RPC protocolz/RPC2r4r-r.r�)
rrZ
_splittyper�Z
_splithost�_ServerProxy__host�_ServerProxy__handlerr+r�_ServerProxy__transport�_ServerProxy__encoding�_ServerProxy__verbose�_ServerProxy__allow_none)
rZuri�	transportrgrror�r�rr-r;rZextra_kwargsrrrr�s,
��
zServerProxy.__init__cCs|j��dSr)r7rlrrrrZ__close�szServerProxy.__closecCsPt|||j|jd��|jd�}|jj|j|j||jd�}t	|�dkrL|d}|S)N)rgro�xmlcharrefreplace)rr&r)
rxr8r:rPr7rr5r6r9r�)rr�r�rr�rrrZ	__request�s
���zServerProxy.__requestcCsd|jj|j|jfS)Nz
<%s for %s%s>)rrr5r6rrrrr �s��zServerProxy.__repr__cCst|j|�Sr)r��_ServerProxy__requestr�rrrr��szServerProxy.__getattr__cCs.|dkr|jS|dkr|jStd|f��dS)z|A workaround to get special attributes on the ServerProxy
           without interfering with the magic __getattr__
        rlr;zAttribute %r not foundN)�_ServerProxy__closer7rk)r�attrrrrr��s
zServerProxy.__call__cCs|Srrrrrr�	__enter__�szServerProxy.__enter__cGs|��dSr)r>r�rrr�__exit__�szServerProxy.__exit__)NNFFFF)rrrrrr>r=r r�r�r@rArrrrr3ms ��
r3�__main__zhttp://localhost:8000ZERROR�	)FF)NNNF)FF)r�)VrrX�sysr3r�decimalrZhttp.clientrZurllib.parserZxml.parsersrr
r�rr��ImportErrorr
�version_infor*r�r�ZPARSE_ERRORZSERVER_ERRORZAPPLICATION_ERRORZSYSTEM_ERRORZTRANSPORT_ERRORZNOT_WELLFORMED_ERRORZUNSUPPORTED_ENCODINGZINVALID_ENCODING_CHARZINVALID_XMLRPCZMETHOD_NOT_FOUNDZINVALID_METHOD_PARAMSZINTERNAL_ERRORrrrr"r#r�r�ZBooleanZ_day0r*r-r6r7rRrSrTr^r�r_rmr�r�r�r�r�r�r�r�rxr�r�r�r�rr�r�rr+r3ZServerrr�r(ZcurrentTimeZgetCurrentTimervZmultiZgetData�pow�addr�rrrr�<module>Ys�*



K	#!(C%
'�
K

f+h

__pycache__/client.cpython-38.opt-2.pyc000064400000070442150532415240013632 0ustar00U

e5d���
@sbddlZddlZddlZddlmZddlmZddlZddlZ	ddl
mZddlZddl
mZzddlZWnek
r�dZYnXdd�Zdejdd	�Zd
ZdZdZd
ZdZdZdZdZdZdZd
ZdZdZ dZ!Gdd�de"�Z#Gdd�de#�Z$Gdd�de#�Z%Gdd�de#�Z&e'Z(Z)eddd�Z*e*�+d�d k�rFd!d"�Z,n"e*�+d#�d k�r`d$d"�Z,nd%d"�Z,[*d&d'�Z-Gd(d)�d)�Z.d*d+�Z/d,d-�Z0Gd.d/�d/�Z1d0d1�Z2e.e1fZ3Gd2d3�d3�Z4Gd4d5�d5�Z5Gd6d7�d7�Z6Gd8d9�d9�Z7Gd:d;�d;�Z8Gd<d=�d=�Z9dZ:Z;Z<dXd?d@�Z=dYdAdB�Z>dZdCdD�Z?dEdF�Z@d[dHdI�ZAGdJdK�dKe�rTejBneC�ZDGdLdM�dM�ZEGdNdO�dO�ZFGdPdQ�dQeF�ZGGdRdS�dS�ZHeHZIeJdTk�r^eHdU�ZKzeLeKjM�N��Wn.e#k
�r�ZOzeLdVeO�W5dZO[OXYnXe9eK�ZPeP�Q�eP�Rd	dW�eP�Sdd	�zeP�D]ZTeLeT��qWn.e#k
�r\ZOzeLdVeO�W5dZO[OXYnXdS)\�N)�datetime)�Decimal)�expat)�BytesIOcCs$|�dd�}|�dd�}|�dd�S)N�&z&amp;�<z&lt;�>z&gt;)�replace)�s�r�%/usr/lib64/python3.8/xmlrpc/client.py�escape�sr
z%d.%d�i���i�iD���i����i���ip���iԁ��iC���iB���i����i����i����c@seZdZejZdS)�ErrorN)�__name__�
__module__�__qualname__�object�__str__rrrrr�src@seZdZdd�Zdd�ZdS)�
ProtocolErrorcCs&t�|�||_||_||_||_dS�N)r�__init__�url�errcode�errmsg�headers)�selfrrrrrrrr�s

zProtocolError.__init__cCsd|jj|j|j|jfS)Nz<%s for %s: %s %s>)�	__class__rrrr�rrrr�__repr__�s��zProtocolError.__repr__N�rrrrrrrrrr�src@seZdZdS)�
ResponseErrorN)rrrrrrrr!�sr!c@seZdZdd�Zdd�ZdS)�FaultcKst�|�||_||_dSr)rr�	faultCode�faultString)rr#r$Zextrarrrr�s
zFault.__init__cCsd|jj|j|jfS)Nz<%s %s: %r>)rrr#r$rrrrr�s�zFault.__repr__Nr rrrrr"�sr"�z%YZ0001cCs
|�d�S�N�%Y%m%dT%H:%M:%S��strftime��valuerrr�_iso8601_formatsr,z%4YcCs
|�d�S)Nz%4Y%m%dT%H:%M:%Sr(r*rrrr,scCs|�d��d�S)Nr'�)r)�zfillr*rrrr,scCsLt|t�rt|�St|ttjf�s<|dkr2t��}t�|�}d|dd�S)Nrz%04d%02d%02dT%02d:%02d:%02d�)�
isinstancerr,�tuple�time�struct_time�	localtimer*rrr�	_strftimes

r5c@sneZdZddd�Zdd�Zdd�Zdd	�Zd
d�Zdd
�Zdd�Z	dd�Z
dd�Zdd�Zdd�Z
dd�ZdS)�DateTimercCs t|t�r||_n
t|�|_dSr)r0�strr+r5)rr+rrrr(s
zDateTime.__init__cCs�t|t�r|j}|j}nzt|t�r2|j}t|�}n`t|t�rH|j}|}nJt|d�rd|��}|��}n.t|d�rv|jj	p|t
|�}td|jj	|f��||fS)N�	timetuplerzCan't compare %s and %s)r0r6r+rr,r7�hasattrr8rr�type�	TypeError)r�otherr
�oZotyperrr�make_comparable.s*






��
�zDateTime.make_comparablecCs|�|�\}}||kSr�r>�rr<r
r=rrr�__lt__CszDateTime.__lt__cCs|�|�\}}||kSrr?r@rrr�__le__GszDateTime.__le__cCs|�|�\}}||kSrr?r@rrr�__gt__KszDateTime.__gt__cCs|�|�\}}||kSrr?r@rrr�__ge__OszDateTime.__ge__cCs|�|�\}}||kSrr?r@rrr�__eq__SszDateTime.__eq__cCst�|jd�Sr&)r2�strptimer+rrrrr8WszDateTime.timetuplecCs|jSrr*rrrrr_szDateTime.__str__cCsd|jj|jt|�fS)Nz<%s %r at %#x>)rrr+�idrrrrrbszDateTime.__repr__cCst|���|_dSr)r7�stripr+�r�datarrr�decodeeszDateTime.decodecCs$|�d�|�|j�|�d�dS�Nz<value><dateTime.iso8601>z</dateTime.iso8601></value>
)�writer+)r�outrrr�encodehs
zDateTime.encodeN)r)rrrrr>rArBrCrDrEr8rrrKrOrrrrr6"s
r6cCst�}|�|�|Sr)r6rK�rJr+rrr�	_datetimems
rQcCst�|d�Sr&)rrF)rJrrr�_datetime_typessrRc@s6eZdZddd�Zdd�Zdd�Zdd	�Zd
d�ZdS)
�BinaryNcCs>|dkrd}n&t|ttf�s,td|jj��t|�}||_dS)N�z#expected bytes or bytearray, not %s)r0�bytes�	bytearrayr;rrrJrIrrrrs�zBinary.__init__cCst|jd�S)Nzlatin-1)r7rJrrrrr�szBinary.__str__cCst|t�r|j}|j|kSr)r0rSrJ)rr<rrrrE�s
z
Binary.__eq__cCst�|�|_dSr)�base64�decodebytesrJrIrrrrK�sz
Binary.decodecCs4|�d�t�|j�}|�|�d��|�d�dS�Nz<value><base64>
�asciiz</base64></value>
)rMrW�encodebytesrJrK)rrN�encodedrrrrO�s
z
Binary.encode)N)rrrrrrErKrOrrrrrS|s

rScCst�}|�|�|Sr)rSrKrPrrr�_binary�s
r]c@s$eZdZdd�Zdd�Zdd�ZdS)�ExpatParsercCsDt�dd�|_}||_|j|_|j|_|j|_	d}|�
|d�dSr)rZParserCreate�_parser�_target�startZStartElementHandler�endZEndElementHandlerrJZCharacterDataHandler�xml)r�target�parser�encodingrrrr�szExpatParser.__init__cCs|j�|d�dS�Nr)r_�ParserIrrr�feed�szExpatParser.feedcCs8z
|j}Wntk
rYnX|`|`|�dd�dS)NrTT)r_�AttributeErrorr`rh)rrerrr�close�s
zExpatParser.closeN)rrrrrirkrrrrr^�s	r^c@s�eZdZddd�ZiZdd�Zdd�Zd	d
�Zeeed�<dd�Z	e	ee
<d
d�Zeee<eZ
dd�Zeee<efdd�Zeee<dd�Zeee<eee<dd�Zeee<eee<efdd�Zeee<dd�Zeee<dd�Zeee<eee<eed<dS)�
MarshallerNFcCsi|_d|_||_||_dSr)�memorJrf�
allow_none)rrfrnrrrr�szMarshaller.__init__cCs�g}|j}|j}t|t�r@|d�||j|jd�|�|d�n4|d�|D]}|d�|||�|d�qL|d�d�|�}|S)	Nz<fault>
)r#r$z	</fault>
z	<params>
z<param>
z	</param>
z
</params>
�)�append�_Marshaller__dumpr0r"r#r$�join)r�valuesrNrM�dump�v�resultrrr�dumps�s&
��



zMarshaller.dumpscCs�z|jt|�}Wnftk
rxt|d�s<tdt|���t|�jD]"}||j��krFtdt|���qF|jd}YnX||||�dS)N�__dict__zcannot marshal %s objects�_arbitrary_instance)�dispatchr:�KeyErrorr9r;�__mro__�keys)rr+rM�fZtype_rrrZ__dump�s
zMarshaller.__dumpcCs|jstd��|d�dS)Nz0cannot marshal None unless allow_none is enabledz<value><nil/></value>)rnr;�rr+rMrrr�dump_nil
szMarshaller.dump_nilcCs$|d�||rdpd�|d�dS)Nz<value><boolean>�1�0z</boolean></value>
rrrrr�	dump_boolszMarshaller.dump_boolcCs<|tks|tkrtd��|d�|tt|���|d�dS)Nzint exceeds XML-RPC limitsz<value><int>z</int></value>
)�MAXINT�MININT�
OverflowErrorr7�intrrrr�	dump_longs
zMarshaller.dump_longcCs |d�|t|��|d�dS)Nz<value><double>z</double></value>
)�reprrrrr�dump_double$szMarshaller.dump_doublecCs |d�|||��|d�dS)Nz<value><string>z</string></value>
r)rr+rMr
rrr�dump_unicode*szMarshaller.dump_unicodecCs,|d�t�|�}||�d��|d�dSrY)rWr[rK)rr+rMr\rrr�
dump_bytes0s
zMarshaller.dump_bytescCsZt|�}||jkrtd��d|j|<|j}|d�|D]}|||�q6|d�|j|=dS)Nz"cannot marshal recursive sequencesz<value><array><data>
z</data></array></value>
)rGrmr;rq)rr+rM�irtrurrr�
dump_array8s

zMarshaller.dump_arraycCs�t|�}||jkrtd��d|j|<|j}|d�|��D]D\}}|d�t|t�s\td��|d||��|||�|d�q:|d�|j|=dS)Nz%cannot marshal recursive dictionariesz<value><struct>
z	<member>
zdictionary key must be stringz<name>%s</name>
z
</member>
z</struct></value>
)rGrmr;rq�itemsr0r7)rr+rMr
r�rt�krurrr�dump_structFs




zMarshaller.dump_structcCs |d�|t|��|d�dSrL)r5rrrr�
dump_datetimeXszMarshaller.dump_datetimecCs2|jtkr ||_|�|�|`n|�|j|�dSr)r�WRAPPERSrMrOr�rxrrrr�
dump_instance^s


zMarshaller.dump_instancery)NF) rrrrrzrwrqr�r:r��boolr�r�Zdump_intr��floatr
r�r7r�rUrVr�r1�listr��dictr�rr�r6rSrrrrrl�s:
	rlc@sjeZdZdDdd�Zdd�Zdd�Zdd	�Zd
d�Zdd
�Zdd�Z	dd�Z
iZdd�Zeed<dd�Z
e
ed<dd�Zeed<eed<eed<eed<eed<eed<d d!�Zeed"<eed#<d$d%�Zeed&<d'd(�Zeed)<eed*<d+d,�Zeed-<d.d/�Zeed0<d1d2�Zeed3<d4d5�Zeed6<d7d8�Zeed9<d:d;�Zeed<<d=d>�Zeed?<d@dA�ZeedB<dCS)E�UnmarshallerFcCsHd|_g|_g|_g|_d|_d|_d|_|jj|_|p:||_||_	dS)NF�utf-8)
�_type�_stack�_marks�_data�_value�_methodname�	_encodingrp�
_use_datetime�
_use_bytes)r�use_datetime�use_builtin_typesrrrr~s

zUnmarshaller.__init__cCs:|jdks|jrt��|jdkr0tf|jd��t|j�S)N�faultr)r�r�r!r"r�r1rrrrrk�s

zUnmarshaller.closecCs|jSr)r�rrrr�
getmethodname�szUnmarshaller.getmethodnamecCs
||_dSr)r�)rrfZ
standalonerrrrc�szUnmarshaller.xmlcCshd|kr|�d�d}|dks&|dkr8|j�t|j��g|_|jrZ||jkrZtd|��|dk|_dS)N�:����array�structzunknown tag %rr+)	�splitr�rp�lenr�r�r�rzr!)r�tagZattrsrrrra�szUnmarshaller.startcCs|j�|�dSr)r�rp)r�textrrrrJ�szUnmarshaller.datacCsvz|j|}WnTtk
rbd|kr,YdSz|j|�d�d}Wntk
r\YYdSXYnX||d�|j��S)Nr�r�ro)rzr{r�rrr�)rr�r~rrrrb�szUnmarshaller.endcCsnz|j|}WnTtk
rbd|kr,YdSz|j|�d�d}Wntk
r\YYdSXYnX|||�S)Nr�r�)rzr{r�)rr�rJr~rrr�end_dispatch�szUnmarshaller.end_dispatchcCs|�d�d|_dSrg)rpr�rIrrr�end_nil�s
zUnmarshaller.end_nilZnilcCs:|dkr|�d�n|dkr(|�d�ntd��d|_dS)Nr�Fr�Tzbad boolean valuer)rpr;r�rIrrr�end_boolean�szUnmarshaller.end_boolean�booleancCs|�t|��d|_dSrg)rpr�r�rIrrr�end_int�szUnmarshaller.end_intZi1Zi2Zi4Zi8r�Z
bigintegercCs|�t|��d|_dSrg)rpr�r�rIrrr�
end_double�szUnmarshaller.end_doubleZdoubler�cCs|�t|��d|_dSrg)rprr�rIrrr�end_bigdecimal�szUnmarshaller.end_bigdecimalZ
bigdecimalcCs&|jr|�|j�}|�|�d|_dSrg)r�rKrpr�rIrrr�
end_string�s
zUnmarshaller.end_string�string�namecCs.|j��}|j|d�g|j|d�<d|_dSrg)r��popr�r�)rrJ�markrrr�	end_array�s
zUnmarshaller.end_arrayr�cCs`|j��}i}|j|d�}tdt|�d�D]}||d|||<q,|g|j|d�<d|_dS)Nrrr%)r�r�r��ranger�r�)rrJr�r�r�r�rrr�
end_struct�s
zUnmarshaller.end_structr�cCs6t�}|�|�d��|jr"|j}|�|�d|_dS)NrZr)rSrKrOr�rJrpr��rrJr+rrr�
end_base64
s
zUnmarshaller.end_base64rWcCs,t�}|�|�|jrt|�}|�|�dSr)r6rKr�rRrpr�rrr�end_dateTimes

zUnmarshaller.end_dateTimezdateTime.iso8601cCs|jr|�|�dSr)r�r�rIrrr�	end_valueszUnmarshaller.end_valuer+cCs
d|_dS)N�params�r�rIrrr�
end_params"szUnmarshaller.end_paramsr�cCs
d|_dS)Nr�r�rIrrr�	end_fault&szUnmarshaller.end_faultr�cCs"|jr|�|j�}||_d|_dS)N�
methodName)r�rKr�r�rIrrr�end_methodName*szUnmarshaller.end_methodNamer�N)FF)rrrrrkr�rcrarJrbr�rzr�r�r�r�r�r�r�r�r�r�r�r�r�r�rrrrr�rsX
	r�c@s$eZdZdd�Zdd�Zdd�ZdS)�_MultiCallMethodcCs||_||_dSr)�_MultiCallMethod__call_list�_MultiCallMethod__name)rZ	call_listr�rrrr7sz_MultiCallMethod.__init__cCst|jd|j|f�S�Nz%s.%s)r�r�r��rr�rrr�__getattr__:sz_MultiCallMethod.__getattr__cGs|j�|j|f�dSr)r�rpr��r�argsrrr�__call__<sz_MultiCallMethod.__call__N�rrrrr�r�rrrrr�4sr�c@seZdZdd�Zdd�ZdS)�MultiCallIteratorcCs
||_dSr)�results)rr�rrrrCszMultiCallIterator.__init__cCsR|j|}t|�ti�kr.t|d|d��n t|�tg�krF|dStd��dS)Nr#r$rz#unexpected type in multicall result)r�r:r"�
ValueError)rr��itemrrr�__getitem__Fs
zMultiCallIterator.__getitem__N)rrrrr�rrrrr�?sr�c@s,eZdZdd�Zdd�Zdd�Zdd�Zd	S)
�	MultiCallcCs||_g|_dSr)�_MultiCall__server�_MultiCall__call_list)r�serverrrrr`szMultiCall.__init__cCsd|jjt|�fS)Nz<%s at %#x>)rrrGrrrrrdszMultiCall.__repr__cCst|j|�Sr)r�r�r�rrrr�gszMultiCall.__getattr__cCs6g}|jD]\}}|�||d��q
t|jj�|��S)N)r�r�)r�rpr�r��systemZ	multicall)rZmarshalled_listr�r�rrrr�jszMultiCall.__call__N)rrrrrr�r�rrrrr�Osr�FcCsrtrHtrH|rt}tj}n|r&t}t}nt}t}tdd||t�}t|�}n"t||d�}trbt|�}nt	|�}||fS)NTF�r�r�)
�
FastParser�FastUnmarshallerrRrWrXr]rQr"r�r^)r�r�Z
mkdatetimeZmkbytesrdrerrr�	getparser|s 

r�cCs�t|t�rd}n|rt|t�r|s&d}tr4t|�}n
t||�}|�|�}|dkr^dt|�}nd}|rx|d|d|df}n|r�|d|d	f}n|Sd
�|�S)Nr%r�z$<?xml version='1.0' encoding='%s'?>
z<?xml version='1.0'?>
z<methodCall>
<methodName>z</methodName>
z</methodCall>
z<methodResponse>
z</methodResponse>
ro)r0r"r1�FastMarshallerrlrwr7rr)r��
methodnameZmethodresponserfrn�mrJZ	xmlheaderrrrrw�s8



��rwcCs2t||d�\}}|�|�|��|��|��fS�Nr�)r�rirkr�)rJr�r��p�urrr�loads�s	
r�c	Cs<tst�t�}tjd|dd��}|�|�W5QRX|��S)N�wbr%)�mode�fileobjZ
compresslevel)�gzip�NotImplementedErrorr�GzipFilerM�getvalue)rJr~�gzfrrr�gzip_encodesr��@c	Cs�tst�tjdt|�d��H}z$|dkr0|��}n|�|d�}Wntk
r\td��YnXW5QRX|dkr�t|�|kr�td��|S)N�rb�r�r�rr%zinvalid dataz#max gzipped payload length exceeded)r�r�r�r�read�OSErrorr�r�)rJZ
max_decoder�Zdecodedrrr�gzip_decodes
r�c@seZdZdd�Zdd�ZdS)�GzipDecodedResponsecCs.tst�t|���|_tjj|d|jd�dS)Nr�r�)r�r�rr��ior�r)r�responserrrr:szGzipDecodedResponse.__init__cCs"ztj�|�W5|j��XdSr)r�rkr�r�rrrrrkBszGzipDecodedResponse.closeN)rrrrrkrrrrr�6sr�c@s$eZdZdd�Zdd�Zdd�ZdS)�_MethodcCs||_||_dSr��
_Method__send�
_Method__name)r�sendr�rrrrOsz_Method.__init__cCst|jd|j|f�Sr�)r�r�r�r�rrrr�Rsz_Method.__getattr__cGs|�|j|�Srr�r�rrrr�Tsz_Method.__call__Nr�rrrrr�Lsr�c@s�eZdZdeZdZdZddd�dd�Zdd	d
�Zddd�Z	d
d�Z
dd�Zdd�Zdd�Z
dd�Zdd�Zdd�Zdd�ZdS) �	TransportzPython-xmlrpc/%sTNFr)rcCs&||_||_d|_t|�|_g|_dS�N)NN)r��_use_builtin_types�_connectionr��_headers�_extra_headers)rr�r�rrrrrks

zTransport.__init__cCs�dD]v}z|�||||�WStjjk
r<|r8�Yqtk
rx}z |sf|jtjtjtjfkrh�W5d}~XYqXqdS)N)rr%)	�single_request�http�clientZRemoteDisconnectedr��errnoZ
ECONNRESETZECONNABORTEDZEPIPE)r�host�handler�request_body�verboser��errr�request}s�zTransport.requestcCs�z8|�||||�}|��}|jdkr6||_|�|�WSWn2tk
rN�Yntk
rj|���YnX|�dd�r�|�	�t
|||j|jt|�
����dS)N��zcontent-lengthro)�send_requestZgetresponseZstatusr�parse_responser"�	Exceptionrk�	getheaderr�r�reasonr�Z
getheaders)rr	r
rrZ	http_connZresprrrr�s&

�zTransport.single_requestcCst|j|jd�Sr�)r�r�rrrrrr��s�zTransport.getparsercCsri}t|t�r|\}}tj�|�\}}|rdtj�|�}t�|��d�}d�	|�
��}dd|fg}ng}|||fS)Nr�roZ
AuthorizationzBasic )r0r1�urllib�parseZ
_splituserZunquote_to_bytesrWr[rKrrr�)rr	�x509ZauthZ
extra_headersrrr�
get_host_info�s

�zTransport.get_host_infocCsL|jr||jdkr|jdS|�|�\}|_}|tj�|�f|_|jdS)Nrr%)rrrrrZHTTPConnection�rr	Zchostrrrr�make_connection�s

zTransport.make_connectioncCs |j\}}|rd|_|��dSr)rrk)rr	�
connectionrrrrk�s
zTransport.closecCs�|�|�}|j|j}|r$|�d�|jrJtrJ|jd|dd�|�d�n|�d|�|�d�|�d|jf�|�	||�|�
||�|S)Nr%ZPOSTT)Zskip_accept_encoding)zAccept-Encodingr�)zContent-Typeztext/xmlz
User-Agent)rrrZset_debuglevel�accept_gzip_encodingr�Z
putrequestrp�
user_agent�send_headers�send_content)rr	r
r�debugrrrrrr�s



zTransport.send_requestcCs|D]\}}|�||�qdSr)�	putheader)rrr�key�valrrrrszTransport.send_headerscCsR|jdk	r0|jt|�kr0tr0|�dd�t|�}|�dtt|���|�|�dS)N�Content-Encodingr�zContent-Length)�encode_thresholdr�r�r!r�r7Z
endheaders)rrrrrrrs
��zTransport.send_contentcCs�t|d�r*|�dd�dkr$t|�}q.|}n|}|��\}}|�d�}|sJqj|jr^tdt|��|�|�q:||k	rz|�	�|�	�|�	�S)Nrr$ror�izbody:)
r9rr�r�r�r�printr�rirk)rr��streamr�r�rJrrrr$s 


zTransport.parse_response)FF)F)F)rrr�__version__rrr%rrrr�rrrkrrrrrrrrr�]s �

!r�cs.eZdZd	ddd��fdd�Zdd�Z�ZS)
�
SafeTransportFrN�r�contextcst�j|||d�||_dS)N�r�r�r)�superrr+)rr�r�rr+�rrrrEs
�zSafeTransport.__init__cCst|jr||jdkr|jdSttjd�s2td��|�|�\}|_}|tjj|dfd|ji|p`i��f|_|jdS)Nrr%�HTTPSConnectionz1your version of http.client doesn't support HTTPSr+)	rr9rrr�rrr/r+rrrrrNs
�
���
zSafeTransport.make_connection)FF)rrrrr�
__classcell__rrr.rr)Bs
�	r)c@sVeZdZdddd�dd�Zdd�Zd	d
�Zdd�Zd
d�Zdd�Zdd�Z	dd�Z
dS)�ServerProxyNFrr*c
Cs�tj�|�\}
}|
dkr td��tj�|�\|_|_|js@d|_|dkr||
dkr^t}d|	i}nt}i}|f|||d�|��}||_	|p�d|_
||_||_dS)N)r�httpszunsupported XML-RPC protocolz/RPC2r2r+r,r�)
rrZ
_splittyper�Z
_splithost�_ServerProxy__host�_ServerProxy__handlerr)r��_ServerProxy__transport�_ServerProxy__encoding�_ServerProxy__verbose�_ServerProxy__allow_none)
rZuri�	transportrfrrnr�r�rr+r:r
Zextra_kwargsrrrr�s,
��
zServerProxy.__init__cCs|j��dSr)r5rkrrrrZ__close�szServerProxy.__closecCsPt|||j|jd��|jd�}|jj|j|j||jd�}t	|�dkrL|d}|S)N)rfrn�xmlcharrefreplace)rr%r)
rwr6r8rOr5rr3r4r7r�)rr�r�rr�rrrZ	__request�s
���zServerProxy.__requestcCsd|jj|j|jfS)Nz
<%s for %s%s>)rrr3r4rrrrr�s��zServerProxy.__repr__cCst|j|�Sr)r��_ServerProxy__requestr�rrrr��szServerProxy.__getattr__cCs.|dkr|jS|dkr|jStd|f��dS)Nrkr9zAttribute %r not found)�_ServerProxy__closer5rj)r�attrrrrr��s
zServerProxy.__call__cCs|Srrrrrr�	__enter__�szServerProxy.__enter__cGs|��dSr)r<r�rrr�__exit__�szServerProxy.__exit__)NNFFFF)rrrrr<r;rr�r�r>r?rrrrr1ms��
r1�__main__zhttp://localhost:8000ZERROR�	)FF)NNNF)FF)r�)UrW�sysr2r�decimalrZhttp.clientrZurllib.parserZxml.parsersrrr�rr��ImportErrorr
�version_infor(r�r�ZPARSE_ERRORZSERVER_ERRORZAPPLICATION_ERRORZSYSTEM_ERRORZTRANSPORT_ERRORZNOT_WELLFORMED_ERRORZUNSUPPORTED_ENCODINGZINVALID_ENCODING_CHARZINVALID_XMLRPCZMETHOD_NOT_FOUNDZINVALID_METHOD_PARAMSZINTERNAL_ERRORrrrr!r"r�r�ZBooleanZ_day0r)r,r5r6rQrRrSr]r�r^rlr�r�r�r�r�r�r�r�rwr�r�r�r�rr�r�r�r)r1ZServerrr�r&ZcurrentTimeZgetCurrentTimeruZmultiZgetData�pow�addr�rrrr�<module>�s�



K	#!(C%
'�
K

f+h

__pycache__/server.cpython-38.opt-2.pyc000064400000043607150532415240013665 0ustar00U

e5d9��	@sddlmZmZmZmZmZddlmZddlm	Z	ddl
mZddlZddlZ
ddlZddlZddlZddlZddlZddlZzddlZWnek
r�dZYnXd*dd�Zd	d
�ZGdd�d�ZGd
d�de�ZGdd�deje�ZGdd�de�ZGdd�de�ZGdd�dej�ZGdd�d�Z Gdd�de�Z!Gdd�dee �Z"Gdd�dee �Z#e$dk�r
ddl%Z%Gd d!�d!�Z&ed"��~Z'e'�(e)�e'�(d#d$�d%�e'j*e&�dd&�e'�+�e,d'�e,d(�ze'�-�Wn(e.k
�r�e,d)�e�/d�YnXW5QRXdS)+�)�Fault�dumps�loads�gzip_encode�gzip_decode)�BaseHTTPRequestHandler)�partial)�	signatureNTcCsF|r|�d�}n|g}|D]&}|�d�r6td|��qt||�}q|S)N�.�_z(attempt to access private attribute "%s")�split�
startswith�AttributeError�getattr)�obj�attr�allow_dotted_namesZattrs�i�r�%/usr/lib64/python3.8/xmlrpc/server.py�resolve_dotted_attribute|s

�rcs�fdd�t��D�S)Ncs(g|] }|�d�stt�|��r|�qS)r)r
�callabler)�.0�member�rrr�
<listcomp>�s
�z'list_public_methods.<locals>.<listcomp>)�dirrrrr�list_public_methods�src@sleZdZddd�Zddd�Zddd�Zd	d
�Zdd�Zdd
d�Zdd�Z	dd�Z
dd�Zdd�Zdd�Z
dS)�SimpleXMLRPCDispatcherFNcCs&i|_d|_||_|pd|_||_dS�N�utf-8)�funcs�instance�
allow_none�encoding�use_builtin_types��selfr#r$r%rrr�__init__�s

zSimpleXMLRPCDispatcher.__init__cCs||_||_dS�N)r"r)r'r"rrrr�register_instance�s!z(SimpleXMLRPCDispatcher.register_instancecCs2|dkrt|j|d�S|dkr$|j}||j|<|S)N)�name)r�register_function�__name__r!)r'Zfunctionr+rrrr,�s
z(SimpleXMLRPCDispatcher.register_functioncCs|j�|j|j|jd��dS)N)zsystem.listMethodszsystem.methodSignaturezsystem.methodHelp)r!�update�system_listMethods�system_methodSignature�system_methodHelp�r'rrr� register_introspection_functions�s
�z7SimpleXMLRPCDispatcher.register_introspection_functionscCs|j�d|ji�dS)Nzsystem.multicall)r!r.�system_multicallr2rrr�register_multicall_functions�sz3SimpleXMLRPCDispatcher.register_multicall_functionscCs�zPt||jd�\}}|dk	r(|||�}n|�||�}|f}t|d|j|jd�}Wn�tk
r�}zt||j|jd�}W5d}~XYnNt��\}}	}
z$ttdd||	f�|j|jd�}W5d}}	}
XYnX|�	|jd�S)N)r%�)Zmethodresponser#r$)r#r$�%s:%s�r$r#�xmlcharrefreplace)
rr%�	_dispatchrr#r$r�sys�exc_info�encode)r'�data�dispatch_method�path�params�method�response�fault�exc_type�	exc_value�exc_tbrrr�_marshaled_dispatch�s0�
��
z*SimpleXMLRPCDispatcher._marshaled_dispatchcCs^t|j���}|jdk	rVt|jd�r8|t|j���O}nt|jd�sV|tt|j��O}t|�S)N�_listMethodsr:)�setr!�keysr"�hasattrrIr�sorted)r'�methodsrrrr/s
z)SimpleXMLRPCDispatcher.system_listMethodscCsdS)Nzsignatures not supportedr)r'�method_namerrrr0/sz-SimpleXMLRPCDispatcher.system_methodSignaturecCs�d}||jkr|j|}nX|jdk	rrt|jd�r<|j�|�St|jd�srzt|j||j�}Wntk
rpYnX|dkr~dSt�|�SdS)N�_methodHelpr:�)	r!r"rLrPrrr�pydoc�getdoc)r'rOrBrrrr1<s$

�z(SimpleXMLRPCDispatcher.system_methodHelpc
Cs�g}|D]�}|d}|d}z|�|�||�g�Wqtk
rj}z|�|j|jd��W5d}~XYqt��\}}}	z|�dd||fd��W5d}}}	XYqXq|S)NZ
methodNamerA)�	faultCode�faultStringr6r7)�appendr:rrTrUr;r<)
r'Z	call_list�resultsZcallrOrArDrErFrGrrrr4[s,
��
��z'SimpleXMLRPCDispatcher.system_multicallcCs�z|j|}Wntk
r"YnX|dk	r4||�Std|��|jdk	r�t|jd�rd|j�||�Szt|j||j�}Wntk
r�YnX|dk	r�||�Std|��dS)Nzmethod "%s" is not supportedr:)	r!�KeyError�	Exceptionr"rLr:rrr)r'rBrA�funcrrrr:s*
�z SimpleXMLRPCDispatcher._dispatch)FNF)F)NN)NN)r-�
__module__�__qualname__r(r*r,r3r5rHr/r0r1r4r:rrrrr�s	�

$

)
$rc@sbeZdZdZdZdZdZe�dej	ej
B�Zdd�Zdd	�Z
d
d�Zdd
�Zdd�Zddd�ZdS)�SimpleXMLRPCRequestHandler)�/z/RPC2ix���Tz�
                            \s* ([^\s;]+) \s*            #content-coding
                            (;\s* q \s*=\s* ([0-9\.]+))? #q
                            cCs^i}|j�dd�}|�d�D]<}|j�|�}|r|�d�}|rFt|�nd}|||�d�<q|S)NzAccept-EncodingrQ�,�g�?r6)�headers�getr�	aepattern�match�group�float)r'�rZae�ere�vrrr�accept_encodings�s
z+SimpleXMLRPCRequestHandler.accept_encodingscCs|jr|j|jkSdSdS)NT)�	rpc_pathsr@r2rrr�is_rpc_path_valid�sz,SimpleXMLRPCRequestHandler.is_rpc_path_validc
Cs�|��s|��dSz�d}t|jd�}g}|rht||�}|j�|�}|sLqh|�|�|t|d�8}q,d�	|�}|�
|�}|dkr�WdS|j�|t
|dd�|j�}Wn�tk
�r6}zp|�d�t|jd��r|jj�r|�dt|��t��}	t|	�d	d
�d	�}	|�d|	�|�dd
�|��W5d}~XYn�X|�d�|�dd�|jdk	�r�t|�|jk�r�|���dd�}
|
�r�zt|�}|�dd�Wntk
�r�YnX|�dtt|���|��|j�|�dS)Ni�zcontent-lengthr_�r:i��_send_traceback_headerzX-exception�ASCII�backslashreplacezX-traceback�Content-length�0���Content-typeztext/xml�gziprzContent-Encoding) rm�
report_404�intrb�minZrfile�readrV�len�join�decode_request_content�serverrHrr@rY�
send_responserLro�send_header�str�	traceback�
format_excr=�end_headers�encode_thresholdrkrcr�NotImplementedError�wfile�write)r'Zmax_chunk_sizeZsize_remaining�LZ
chunk_size�chunkr>rCriZtrace�qrrr�do_POST�s`




�
�
z"SimpleXMLRPCRequestHandler.do_POSTcCs�|j�dd���}|dkr|S|dkrvz
t|�WStk
rT|�dd|�Yq�tk
rr|�dd�Yq�Xn|�dd|�|�dd	�|��dS)
Nzcontent-encodingZidentityrvi�zencoding %r not supported�zerror decoding gzip contentrrrs)	rbrc�lowerrr�r�
ValueErrorr�r�)r'r>r$rrrr}$s
z1SimpleXMLRPCRequestHandler.decode_request_contentcCsF|�d�d}|�dd�|�dtt|���|��|j�|�dS)Ni�sNo such pageruz
text/plainrr)rr�r�r{r�r�r��r'rCrrrrw5s
z%SimpleXMLRPCRequestHandler.report_404�-cCs|jjrt�|||�dSr))r~�logRequestsr�log_request)r'�code�sizerrrr�>sz&SimpleXMLRPCRequestHandler.log_requestN)r�r�)r-r[r\rlr�ZwbufsizeZdisable_nagle_algorithm�re�compile�VERBOSE�
IGNORECASErdrkrmr�r}rwr�rrrrr]�s	
�G	r]c@s*eZdZdZdZedddddfdd�ZdS)�SimpleXMLRPCServerTFNcCs,||_t�||||�tj�||||�dSr))r�rr(�socketserver�	TCPServer�r'ZaddrZrequestHandlerr�r#r$Zbind_and_activater%rrrr(WszSimpleXMLRPCServer.__init__)r-r[r\Zallow_reuse_addressror]r(rrrrr�Ds�r�c@s<eZdZedddddfdd�Zdd�Zdd	�Zdd
d�ZdS)
�MultiPathXMLRPCServerTFNc
Cs2t�||||||||�i|_||_|p*d|_dSr)r�r(�dispatchersr#r$r�rrrr(hs�zMultiPathXMLRPCServer.__init__cCs||j|<|Sr)�r�)r'r@�
dispatcherrrr�add_dispatcherrs
z$MultiPathXMLRPCServer.add_dispatchercCs
|j|Sr)r�)r'r@rrr�get_dispatchervsz$MultiPathXMLRPCServer.get_dispatchercCs|z|j|�|||�}Wn^t��dd�\}}z2ttdd||f�|j|jd�}|�|jd�}W5d}}XYnX|S)N�r6r7r8r9)	r�rHr;r<rrr$r#r=)r'r>r?r@rCrErFrrrrHys"
��z)MultiPathXMLRPCServer._marshaled_dispatch)NN)r-r[r\r]r(r�r�rHrrrrr�`s�

r�c@s0eZdZddd�Zdd�Zdd�Zdd	d
�ZdS)
�CGIXMLRPCRequestHandlerFNcCst�||||�dSr))rr(r&rrrr(�sz CGIXMLRPCRequestHandler.__init__cCsP|�|�}td�tdt|��t�tj��tjj�|�tjj��dS)NzContent-Type: text/xml�Content-Length: %d)rH�printr{r;�stdout�flush�bufferr�)r'�request_textrCrrr�
handle_xmlrpc�s

z%CGIXMLRPCRequestHandler.handle_xmlrpccCs�d}tj|\}}tjj|||d�}|�d�}td||f�tdtjj�tdt|��t�t	j
��t	j
j�
|�t	j
j��dS)Nr�)r��message�explainr z
Status: %d %szContent-Type: %sr�)rZ	responses�httpr~ZDEFAULT_ERROR_MESSAGEr=r�ZDEFAULT_ERROR_CONTENT_TYPEr{r;r�r�r�r�)r'r�r�r�rCrrr�
handle_get�s ��

z"CGIXMLRPCRequestHandler.handle_getc	Csz|dkr$tj�dd�dkr$|��nRzttj�dd��}Wnttfk
rVd}YnX|dkrltj�	|�}|�
|�dS)NZREQUEST_METHODZGETZCONTENT_LENGTHr_)�os�environrcr�rxr��	TypeErrorr;�stdinrzr�)r'r�Zlengthrrr�handle_request�s�

z&CGIXMLRPCRequestHandler.handle_request)FNF)N)r-r[r\r(r�r�r�rrrrr��s
r�c@s:eZdZdiiifdd�Zdiiidfdd�Zdd�ZdS)�
ServerHTMLDocNcCsZ|p|j}g}d}t�d�}|�||�}	|	s0�q:|	��\}
}|�||||
���|	��\}}
}}}}|
r�||��dd�}|�d||f�n�|r�dt|�}|�d|||�f�n~|r�dt|�}|�d|||�f�nV|||d�d	k�r|�|�	||||��n(|�r"|�d
|�n|�|�	||��|}q|�|||d���d�
|�S)NrzM\b((http|ftp)://\S+[\w/]|RFC[- ]?(\d+)|PEP[- ]?(\d+)|(self\.)?((?:\w|\.)+))\b�"z&quot;z<a href="%s">%s</a>z'http://www.rfc-editor.org/rfc/rfc%d.txtz(http://www.python.org/dev/peps/pep-%04d/r6�(zself.<strong>%s</strong>rQ)�escaper�r��search�spanrV�groups�replacerxZnamelinkr|)r'�textr�r!�classesrNrW�here�patternre�start�end�allZschemeZrfcZpepZselfdotr+Zurlrrr�markup�s6

zServerHTMLDoc.markupcCs�|r
|jpdd|}d}	d|�|�|�|�f}
t|�rHtt|��}nd}t|t�rp|dp`|}|dpld}n
t�|�}|
||	o�|�	d|	�}
|�
||j|||�}|o�d|}d	|
|fS)
NrQr�z$<a name="%s"><strong>%s</strong></a>z(...)rr6z'<font face="helvetica, arial">%s</font>z<dd><tt>%s</tt></dd>z<dl><dt>%s</dt>%s</dl>
)r-r�rr�r	�
isinstance�tuplerRrSZgreyr��	preformat)r'�objectr+�modr!r�rNZclZanchorZnote�titleZargspecZ	docstringZdecl�docrrr�
docroutine�s2�

��zServerHTMLDoc.docroutinec	Cs�i}|��D] \}}d|||<||||<q|�|�}d|}|�|dd�}|�||j|�}	|	ohd|	}	|d|	}g}
t|���}|D]\}}|
�|j|||d��q�||�ddd	d
�	|
��}|S)Nz#-z)<big><big><strong>%s</strong></big></big>z#ffffffz#7799eez<tt>%s</tt>z
<p>%s</p>
)r!ZMethodsz#eeaa77rQ)
�itemsr�Zheadingr�r�rMrVr�Z
bigsectionr|)r'�server_nameZpackage_documentationrNZfdict�key�value�head�resultr��contentsZmethod_itemsrrr�	docservers*
�zServerHTMLDoc.docserver)r-r[r\r�r�r�rrrrr��s)�
r�c@s4eZdZdd�Zdd�Zdd�Zdd�Zd	d
�ZdS)�XMLRPCDocGeneratorcCsd|_d|_d|_dS)NzXML-RPC Server DocumentationzGThis server exports the following methods through the XML-RPC protocol.)r��server_documentation�server_titler2rrrr(:s�zXMLRPCDocGenerator.__init__cCs
||_dSr))r�)r'r�rrr�set_server_titleBsz#XMLRPCDocGenerator.set_server_titlecCs
||_dSr))r�)r'r�rrr�set_server_nameGsz"XMLRPCDocGenerator.set_server_namecCs
||_dSr))r�)r'r�rrr�set_server_documentationLsz+XMLRPCDocGenerator.set_server_documentationc	Cs�i}|��D]�}||jkr&|j|}n�|jdk	r�ddg}t|jd�rT|j�|�|d<t|jd�rp|j�|�|d<t|�}|dkr�|}q�t|jd�s�zt|j|�}Wq�tk
r�|}Yq�Xq�|}n|||<qt	�}|�
|j|j|�}|�
t�|j�|�S)N�_get_method_argstringrrPr6)NNr:)r/r!r"rLr�rPr�rrr�r�r�r�Zpage�htmlr�r�)r'rNrOrBZmethod_infoZ
documenterZ
documentationrrr�generate_html_documentationQs<

�
�z.XMLRPCDocGenerator.generate_html_documentationN)r-r[r\r(r�r�r�r�rrrrr�3s
r�c@seZdZdd�ZdS)�DocXMLRPCRequestHandlercCsf|��s|��dS|j���d�}|�d�|�dd�|�dtt|���|�	�|j
�|�dS)Nr rtruz	text/htmlrr)rmrwr~r�r=rr�r�r{r�r�r�r�rrr�do_GET�s
zDocXMLRPCRequestHandler.do_GETN)r-r[r\r�rrrrr��s
r�c@s"eZdZedddddfdd�ZdS)�DocXMLRPCServerTFNc
Cs&t�||||||||�t�|�dSr))r�r(r�r�rrrr(�s�zDocXMLRPCServer.__init__)r-r[r\r�r(rrrrr��s�r�c@seZdZdd�Zdd�ZdS)�DocCGIXMLRPCRequestHandlercCsT|���d�}td�tdt|��t�tj��tjj�|�tjj��dS)Nr zContent-Type: text/htmlr�)	r�r=r�r{r;r�r�r�r�r�rrrr��s
z%DocCGIXMLRPCRequestHandler.handle_getcCst�|�t�|�dSr))r�r(r�r2rrrr(�s
z#DocCGIXMLRPCRequestHandler.__init__N)r-r[r\r�r(rrrrr��sr��__main__c@s"eZdZdd�ZGdd�d�ZdS)�ExampleServicecCsdS)NZ42rr2rrr�getData�szExampleService.getDatac@seZdZedd��ZdS)zExampleService.currentTimecCs
tj��Sr))�datetimeZnowrrrr�getCurrentTime�sz)ExampleService.currentTime.getCurrentTimeN)r-r[r\�staticmethodr�rrrr�currentTime�sr�N)r-r[r\r�r�rrrrr��sr�)Z	localhosti@cCs||Sr)r)�x�yrrr�<lambda>�rnr��add)rz&Serving XML-RPC on localhost port 8000zKIt is advisable to run this example server within a secure, closed network.z&
Keyboard interrupt received, exiting.)T)0Z
xmlrpc.clientrrrrrZhttp.serverr�	functoolsr�inspectr	r�r�r�r;r�r�rRr�Zfcntl�ImportErrorrrrr]r�r�r�r�ZHTMLDocr�r�r�r�r�r-r�r�r~r,�powr*r5r�Z
serve_forever�KeyboardInterrupt�exitrrrr�<module>ksf

�,EbQ��
	

server.py000064400000107471150532415240006437 0ustar00r"""XML-RPC Servers.

This module can be used to create simple XML-RPC servers
by creating a server and either installing functions, a
class instance, or by extending the SimpleXMLRPCServer
class.

It can also be used to handle XML-RPC requests in a CGI
environment using CGIXMLRPCRequestHandler.

The Doc* classes can be used to create XML-RPC servers that
serve pydoc-style documentation in response to HTTP
GET requests. This documentation is dynamically generated
based on the functions and methods registered with the
server.

A list of possible usage patterns follows:

1. Install functions:

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_function(pow)
server.register_function(lambda x,y: x+y, 'add')
server.serve_forever()

2. Install an instance:

class MyFuncs:
    def __init__(self):
        # make all of the sys functions available through sys.func_name
        import sys
        self.sys = sys
    def _listMethods(self):
        # implement this method so that system.listMethods
        # knows to advertise the sys methods
        return list_public_methods(self) + \
                ['sys.' + method for method in list_public_methods(self.sys)]
    def pow(self, x, y): return pow(x, y)
    def add(self, x, y) : return x + y

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_introspection_functions()
server.register_instance(MyFuncs())
server.serve_forever()

3. Install an instance with custom dispatch method:

class Math:
    def _listMethods(self):
        # this method must be present for system.listMethods
        # to work
        return ['add', 'pow']
    def _methodHelp(self, method):
        # this method must be present for system.methodHelp
        # to work
        if method == 'add':
            return "add(2,3) => 5"
        elif method == 'pow':
            return "pow(x, y[, z]) => number"
        else:
            # By convention, return empty
            # string if no help is available
            return ""
    def _dispatch(self, method, params):
        if method == 'pow':
            return pow(*params)
        elif method == 'add':
            return params[0] + params[1]
        else:
            raise ValueError('bad method')

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_introspection_functions()
server.register_instance(Math())
server.serve_forever()

4. Subclass SimpleXMLRPCServer:

class MathServer(SimpleXMLRPCServer):
    def _dispatch(self, method, params):
        try:
            # We are forcing the 'export_' prefix on methods that are
            # callable through XML-RPC to prevent potential security
            # problems
            func = getattr(self, 'export_' + method)
        except AttributeError:
            raise Exception('method "%s" is not supported' % method)
        else:
            return func(*params)

    def export_add(self, x, y):
        return x + y

server = MathServer(("localhost", 8000))
server.serve_forever()

5. CGI script:

server = CGIXMLRPCRequestHandler()
server.register_function(pow)
server.handle_request()
"""

# Written by Brian Quinlan (brian@sweetapp.com).
# Based on code written by Fredrik Lundh.

from xmlrpc.client import Fault, dumps, loads, gzip_encode, gzip_decode
from http.server import BaseHTTPRequestHandler
from functools import partial
from inspect import signature
import html
import http.server
import socketserver
import sys
import os
import re
import pydoc
import traceback
try:
    import fcntl
except ImportError:
    fcntl = None

def resolve_dotted_attribute(obj, attr, allow_dotted_names=True):
    """resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d

    Resolves a dotted attribute name to an object.  Raises
    an AttributeError if any attribute in the chain starts with a '_'.

    If the optional allow_dotted_names argument is false, dots are not
    supported and this function operates similar to getattr(obj, attr).
    """

    if allow_dotted_names:
        attrs = attr.split('.')
    else:
        attrs = [attr]

    for i in attrs:
        if i.startswith('_'):
            raise AttributeError(
                'attempt to access private attribute "%s"' % i
                )
        else:
            obj = getattr(obj,i)
    return obj

def list_public_methods(obj):
    """Returns a list of attribute strings, found in the specified
    object, which represent callable attributes"""

    return [member for member in dir(obj)
                if not member.startswith('_') and
                    callable(getattr(obj, member))]

class SimpleXMLRPCDispatcher:
    """Mix-in class that dispatches XML-RPC requests.

    This class is used to register XML-RPC method handlers
    and then to dispatch them. This class doesn't need to be
    instanced directly when used by SimpleXMLRPCServer but it
    can be instanced when used by the MultiPathXMLRPCServer
    """

    def __init__(self, allow_none=False, encoding=None,
                 use_builtin_types=False):
        self.funcs = {}
        self.instance = None
        self.allow_none = allow_none
        self.encoding = encoding or 'utf-8'
        self.use_builtin_types = use_builtin_types

    def register_instance(self, instance, allow_dotted_names=False):
        """Registers an instance to respond to XML-RPC requests.

        Only one instance can be installed at a time.

        If the registered instance has a _dispatch method then that
        method will be called with the name of the XML-RPC method and
        its parameters as a tuple
        e.g. instance._dispatch('add',(2,3))

        If the registered instance does not have a _dispatch method
        then the instance will be searched to find a matching method
        and, if found, will be called. Methods beginning with an '_'
        are considered private and will not be called by
        SimpleXMLRPCServer.

        If a registered function matches an XML-RPC request, then it
        will be called instead of the registered instance.

        If the optional allow_dotted_names argument is true and the
        instance does not have a _dispatch method, method names
        containing dots are supported and resolved, as long as none of
        the name segments start with an '_'.

            *** SECURITY WARNING: ***

            Enabling the allow_dotted_names options allows intruders
            to access your module's global variables and may allow
            intruders to execute arbitrary code on your machine.  Only
            use this option on a secure, closed network.

        """

        self.instance = instance
        self.allow_dotted_names = allow_dotted_names

    def register_function(self, function=None, name=None):
        """Registers a function to respond to XML-RPC requests.

        The optional name argument can be used to set a Unicode name
        for the function.
        """
        # decorator factory
        if function is None:
            return partial(self.register_function, name=name)

        if name is None:
            name = function.__name__
        self.funcs[name] = function

        return function

    def register_introspection_functions(self):
        """Registers the XML-RPC introspection methods in the system
        namespace.

        see http://xmlrpc.usefulinc.com/doc/reserved.html
        """

        self.funcs.update({'system.listMethods' : self.system_listMethods,
                      'system.methodSignature' : self.system_methodSignature,
                      'system.methodHelp' : self.system_methodHelp})

    def register_multicall_functions(self):
        """Registers the XML-RPC multicall method in the system
        namespace.

        see http://www.xmlrpc.com/discuss/msgReader$1208"""

        self.funcs.update({'system.multicall' : self.system_multicall})

    def _marshaled_dispatch(self, data, dispatch_method = None, path = None):
        """Dispatches an XML-RPC method from marshalled (XML) data.

        XML-RPC methods are dispatched from the marshalled (XML) data
        using the _dispatch method and the result is returned as
        marshalled data. For backwards compatibility, a dispatch
        function can be provided as an argument (see comment in
        SimpleXMLRPCRequestHandler.do_POST) but overriding the
        existing method through subclassing is the preferred means
        of changing method dispatch behavior.
        """

        try:
            params, method = loads(data, use_builtin_types=self.use_builtin_types)

            # generate response
            if dispatch_method is not None:
                response = dispatch_method(method, params)
            else:
                response = self._dispatch(method, params)
            # wrap response in a singleton tuple
            response = (response,)
            response = dumps(response, methodresponse=1,
                             allow_none=self.allow_none, encoding=self.encoding)
        except Fault as fault:
            response = dumps(fault, allow_none=self.allow_none,
                             encoding=self.encoding)
        except:
            # report exception back to server
            exc_type, exc_value, exc_tb = sys.exc_info()
            try:
                response = dumps(
                    Fault(1, "%s:%s" % (exc_type, exc_value)),
                    encoding=self.encoding, allow_none=self.allow_none,
                    )
            finally:
                # Break reference cycle
                exc_type = exc_value = exc_tb = None

        return response.encode(self.encoding, 'xmlcharrefreplace')

    def system_listMethods(self):
        """system.listMethods() => ['add', 'subtract', 'multiple']

        Returns a list of the methods supported by the server."""

        methods = set(self.funcs.keys())
        if self.instance is not None:
            # Instance can implement _listMethod to return a list of
            # methods
            if hasattr(self.instance, '_listMethods'):
                methods |= set(self.instance._listMethods())
            # if the instance has a _dispatch method then we
            # don't have enough information to provide a list
            # of methods
            elif not hasattr(self.instance, '_dispatch'):
                methods |= set(list_public_methods(self.instance))
        return sorted(methods)

    def system_methodSignature(self, method_name):
        """system.methodSignature('add') => [double, int, int]

        Returns a list describing the signature of the method. In the
        above example, the add method takes two integers as arguments
        and returns a double result.

        This server does NOT support system.methodSignature."""

        # See http://xmlrpc.usefulinc.com/doc/sysmethodsig.html

        return 'signatures not supported'

    def system_methodHelp(self, method_name):
        """system.methodHelp('add') => "Adds two integers together"

        Returns a string containing documentation for the specified method."""

        method = None
        if method_name in self.funcs:
            method = self.funcs[method_name]
        elif self.instance is not None:
            # Instance can implement _methodHelp to return help for a method
            if hasattr(self.instance, '_methodHelp'):
                return self.instance._methodHelp(method_name)
            # if the instance has a _dispatch method then we
            # don't have enough information to provide help
            elif not hasattr(self.instance, '_dispatch'):
                try:
                    method = resolve_dotted_attribute(
                                self.instance,
                                method_name,
                                self.allow_dotted_names
                                )
                except AttributeError:
                    pass

        # Note that we aren't checking that the method actually
        # be a callable object of some kind
        if method is None:
            return ""
        else:
            return pydoc.getdoc(method)

    def system_multicall(self, call_list):
        """system.multicall([{'methodName': 'add', 'params': [2, 2]}, ...]) => \
[[4], ...]

        Allows the caller to package multiple XML-RPC calls into a single
        request.

        See http://www.xmlrpc.com/discuss/msgReader$1208
        """

        results = []
        for call in call_list:
            method_name = call['methodName']
            params = call['params']

            try:
                # XXX A marshalling error in any response will fail the entire
                # multicall. If someone cares they should fix this.
                results.append([self._dispatch(method_name, params)])
            except Fault as fault:
                results.append(
                    {'faultCode' : fault.faultCode,
                     'faultString' : fault.faultString}
                    )
            except:
                exc_type, exc_value, exc_tb = sys.exc_info()
                try:
                    results.append(
                        {'faultCode' : 1,
                         'faultString' : "%s:%s" % (exc_type, exc_value)}
                        )
                finally:
                    # Break reference cycle
                    exc_type = exc_value = exc_tb = None
        return results

    def _dispatch(self, method, params):
        """Dispatches the XML-RPC method.

        XML-RPC calls are forwarded to a registered function that
        matches the called XML-RPC method name. If no such function
        exists then the call is forwarded to the registered instance,
        if available.

        If the registered instance has a _dispatch method then that
        method will be called with the name of the XML-RPC method and
        its parameters as a tuple
        e.g. instance._dispatch('add',(2,3))

        If the registered instance does not have a _dispatch method
        then the instance will be searched to find a matching method
        and, if found, will be called.

        Methods beginning with an '_' are considered private and will
        not be called.
        """

        try:
            # call the matching registered function
            func = self.funcs[method]
        except KeyError:
            pass
        else:
            if func is not None:
                return func(*params)
            raise Exception('method "%s" is not supported' % method)

        if self.instance is not None:
            if hasattr(self.instance, '_dispatch'):
                # call the `_dispatch` method on the instance
                return self.instance._dispatch(method, params)

            # call the instance's method directly
            try:
                func = resolve_dotted_attribute(
                    self.instance,
                    method,
                    self.allow_dotted_names
                )
            except AttributeError:
                pass
            else:
                if func is not None:
                    return func(*params)

        raise Exception('method "%s" is not supported' % method)

class SimpleXMLRPCRequestHandler(BaseHTTPRequestHandler):
    """Simple XML-RPC request handler class.

    Handles all HTTP POST requests and attempts to decode them as
    XML-RPC requests.
    """

    # Class attribute listing the accessible path components;
    # paths not on this list will result in a 404 error.
    rpc_paths = ('/', '/RPC2')

    #if not None, encode responses larger than this, if possible
    encode_threshold = 1400 #a common MTU

    #Override form StreamRequestHandler: full buffering of output
    #and no Nagle.
    wbufsize = -1
    disable_nagle_algorithm = True

    # a re to match a gzip Accept-Encoding
    aepattern = re.compile(r"""
                            \s* ([^\s;]+) \s*            #content-coding
                            (;\s* q \s*=\s* ([0-9\.]+))? #q
                            """, re.VERBOSE | re.IGNORECASE)

    def accept_encodings(self):
        r = {}
        ae = self.headers.get("Accept-Encoding", "")
        for e in ae.split(","):
            match = self.aepattern.match(e)
            if match:
                v = match.group(3)
                v = float(v) if v else 1.0
                r[match.group(1)] = v
        return r

    def is_rpc_path_valid(self):
        if self.rpc_paths:
            return self.path in self.rpc_paths
        else:
            # If .rpc_paths is empty, just assume all paths are legal
            return True

    def do_POST(self):
        """Handles the HTTP POST request.

        Attempts to interpret all HTTP POST requests as XML-RPC calls,
        which are forwarded to the server's _dispatch method for handling.
        """

        # Check that the path is legal
        if not self.is_rpc_path_valid():
            self.report_404()
            return

        try:
            # Get arguments by reading body of request.
            # We read this in chunks to avoid straining
            # socket.read(); around the 10 or 15Mb mark, some platforms
            # begin to have problems (bug #792570).
            max_chunk_size = 10*1024*1024
            size_remaining = int(self.headers["content-length"])
            L = []
            while size_remaining:
                chunk_size = min(size_remaining, max_chunk_size)
                chunk = self.rfile.read(chunk_size)
                if not chunk:
                    break
                L.append(chunk)
                size_remaining -= len(L[-1])
            data = b''.join(L)

            data = self.decode_request_content(data)
            if data is None:
                return #response has been sent

            # In previous versions of SimpleXMLRPCServer, _dispatch
            # could be overridden in this class, instead of in
            # SimpleXMLRPCDispatcher. To maintain backwards compatibility,
            # check to see if a subclass implements _dispatch and dispatch
            # using that method if present.
            response = self.server._marshaled_dispatch(
                    data, getattr(self, '_dispatch', None), self.path
                )
        except Exception as e: # This should only happen if the module is buggy
            # internal error, report as HTTP server error
            self.send_response(500)

            # Send information about the exception if requested
            if hasattr(self.server, '_send_traceback_header') and \
                    self.server._send_traceback_header:
                self.send_header("X-exception", str(e))
                trace = traceback.format_exc()
                trace = str(trace.encode('ASCII', 'backslashreplace'), 'ASCII')
                self.send_header("X-traceback", trace)

            self.send_header("Content-length", "0")
            self.end_headers()
        else:
            self.send_response(200)
            self.send_header("Content-type", "text/xml")
            if self.encode_threshold is not None:
                if len(response) > self.encode_threshold:
                    q = self.accept_encodings().get("gzip", 0)
                    if q:
                        try:
                            response = gzip_encode(response)
                            self.send_header("Content-Encoding", "gzip")
                        except NotImplementedError:
                            pass
            self.send_header("Content-length", str(len(response)))
            self.end_headers()
            self.wfile.write(response)

    def decode_request_content(self, data):
        #support gzip encoding of request
        encoding = self.headers.get("content-encoding", "identity").lower()
        if encoding == "identity":
            return data
        if encoding == "gzip":
            try:
                return gzip_decode(data)
            except NotImplementedError:
                self.send_response(501, "encoding %r not supported" % encoding)
            except ValueError:
                self.send_response(400, "error decoding gzip content")
        else:
            self.send_response(501, "encoding %r not supported" % encoding)
        self.send_header("Content-length", "0")
        self.end_headers()

    def report_404 (self):
            # Report a 404 error
        self.send_response(404)
        response = b'No such page'
        self.send_header("Content-type", "text/plain")
        self.send_header("Content-length", str(len(response)))
        self.end_headers()
        self.wfile.write(response)

    def log_request(self, code='-', size='-'):
        """Selectively log an accepted request."""

        if self.server.logRequests:
            BaseHTTPRequestHandler.log_request(self, code, size)

class SimpleXMLRPCServer(socketserver.TCPServer,
                         SimpleXMLRPCDispatcher):
    """Simple XML-RPC server.

    Simple XML-RPC server that allows functions and a single instance
    to be installed to handle requests. The default implementation
    attempts to dispatch XML-RPC calls to the functions or instance
    installed in the server. Override the _dispatch method inherited
    from SimpleXMLRPCDispatcher to change this behavior.
    """

    allow_reuse_address = True

    # Warning: this is for debugging purposes only! Never set this to True in
    # production code, as will be sending out sensitive information (exception
    # and stack trace details) when exceptions are raised inside
    # SimpleXMLRPCRequestHandler.do_POST
    _send_traceback_header = False

    def __init__(self, addr, requestHandler=SimpleXMLRPCRequestHandler,
                 logRequests=True, allow_none=False, encoding=None,
                 bind_and_activate=True, use_builtin_types=False):
        self.logRequests = logRequests

        SimpleXMLRPCDispatcher.__init__(self, allow_none, encoding, use_builtin_types)
        socketserver.TCPServer.__init__(self, addr, requestHandler, bind_and_activate)


class MultiPathXMLRPCServer(SimpleXMLRPCServer):
    """Multipath XML-RPC Server
    This specialization of SimpleXMLRPCServer allows the user to create
    multiple Dispatcher instances and assign them to different
    HTTP request paths.  This makes it possible to run two or more
    'virtual XML-RPC servers' at the same port.
    Make sure that the requestHandler accepts the paths in question.
    """
    def __init__(self, addr, requestHandler=SimpleXMLRPCRequestHandler,
                 logRequests=True, allow_none=False, encoding=None,
                 bind_and_activate=True, use_builtin_types=False):

        SimpleXMLRPCServer.__init__(self, addr, requestHandler, logRequests, allow_none,
                                    encoding, bind_and_activate, use_builtin_types)
        self.dispatchers = {}
        self.allow_none = allow_none
        self.encoding = encoding or 'utf-8'

    def add_dispatcher(self, path, dispatcher):
        self.dispatchers[path] = dispatcher
        return dispatcher

    def get_dispatcher(self, path):
        return self.dispatchers[path]

    def _marshaled_dispatch(self, data, dispatch_method = None, path = None):
        try:
            response = self.dispatchers[path]._marshaled_dispatch(
               data, dispatch_method, path)
        except:
            # report low level exception back to server
            # (each dispatcher should have handled their own
            # exceptions)
            exc_type, exc_value = sys.exc_info()[:2]
            try:
                response = dumps(
                    Fault(1, "%s:%s" % (exc_type, exc_value)),
                    encoding=self.encoding, allow_none=self.allow_none)
                response = response.encode(self.encoding, 'xmlcharrefreplace')
            finally:
                # Break reference cycle
                exc_type = exc_value = None
        return response

class CGIXMLRPCRequestHandler(SimpleXMLRPCDispatcher):
    """Simple handler for XML-RPC data passed through CGI."""

    def __init__(self, allow_none=False, encoding=None, use_builtin_types=False):
        SimpleXMLRPCDispatcher.__init__(self, allow_none, encoding, use_builtin_types)

    def handle_xmlrpc(self, request_text):
        """Handle a single XML-RPC request"""

        response = self._marshaled_dispatch(request_text)

        print('Content-Type: text/xml')
        print('Content-Length: %d' % len(response))
        print()
        sys.stdout.flush()
        sys.stdout.buffer.write(response)
        sys.stdout.buffer.flush()

    def handle_get(self):
        """Handle a single HTTP GET request.

        Default implementation indicates an error because
        XML-RPC uses the POST method.
        """

        code = 400
        message, explain = BaseHTTPRequestHandler.responses[code]

        response = http.server.DEFAULT_ERROR_MESSAGE % \
            {
             'code' : code,
             'message' : message,
             'explain' : explain
            }
        response = response.encode('utf-8')
        print('Status: %d %s' % (code, message))
        print('Content-Type: %s' % http.server.DEFAULT_ERROR_CONTENT_TYPE)
        print('Content-Length: %d' % len(response))
        print()
        sys.stdout.flush()
        sys.stdout.buffer.write(response)
        sys.stdout.buffer.flush()

    def handle_request(self, request_text=None):
        """Handle a single XML-RPC request passed through a CGI post method.

        If no XML data is given then it is read from stdin. The resulting
        XML-RPC response is printed to stdout along with the correct HTTP
        headers.
        """

        if request_text is None and \
            os.environ.get('REQUEST_METHOD', None) == 'GET':
            self.handle_get()
        else:
            # POST data is normally available through stdin
            try:
                length = int(os.environ.get('CONTENT_LENGTH', None))
            except (ValueError, TypeError):
                length = -1
            if request_text is None:
                request_text = sys.stdin.read(length)

            self.handle_xmlrpc(request_text)


# -----------------------------------------------------------------------------
# Self documenting XML-RPC Server.

class ServerHTMLDoc(pydoc.HTMLDoc):
    """Class used to generate pydoc HTML document for a server"""

    def markup(self, text, escape=None, funcs={}, classes={}, methods={}):
        """Mark up some plain text, given a context of symbols to look for.
        Each context dictionary maps object names to anchor names."""
        escape = escape or self.escape
        results = []
        here = 0

        # XXX Note that this regular expression does not allow for the
        # hyperlinking of arbitrary strings being used as method
        # names. Only methods with names consisting of word characters
        # and '.'s are hyperlinked.
        pattern = re.compile(r'\b((http|ftp)://\S+[\w/]|'
                                r'RFC[- ]?(\d+)|'
                                r'PEP[- ]?(\d+)|'
                                r'(self\.)?((?:\w|\.)+))\b')
        while 1:
            match = pattern.search(text, here)
            if not match: break
            start, end = match.span()
            results.append(escape(text[here:start]))

            all, scheme, rfc, pep, selfdot, name = match.groups()
            if scheme:
                url = escape(all).replace('"', '&quot;')
                results.append('<a href="%s">%s</a>' % (url, url))
            elif rfc:
                url = 'http://www.rfc-editor.org/rfc/rfc%d.txt' % int(rfc)
                results.append('<a href="%s">%s</a>' % (url, escape(all)))
            elif pep:
                url = 'http://www.python.org/dev/peps/pep-%04d/' % int(pep)
                results.append('<a href="%s">%s</a>' % (url, escape(all)))
            elif text[end:end+1] == '(':
                results.append(self.namelink(name, methods, funcs, classes))
            elif selfdot:
                results.append('self.<strong>%s</strong>' % name)
            else:
                results.append(self.namelink(name, classes))
            here = end
        results.append(escape(text[here:]))
        return ''.join(results)

    def docroutine(self, object, name, mod=None,
                   funcs={}, classes={}, methods={}, cl=None):
        """Produce HTML documentation for a function or method object."""

        anchor = (cl and cl.__name__ or '') + '-' + name
        note = ''

        title = '<a name="%s"><strong>%s</strong></a>' % (
            self.escape(anchor), self.escape(name))

        if callable(object):
            argspec = str(signature(object))
        else:
            argspec = '(...)'

        if isinstance(object, tuple):
            argspec = object[0] or argspec
            docstring = object[1] or ""
        else:
            docstring = pydoc.getdoc(object)

        decl = title + argspec + (note and self.grey(
               '<font face="helvetica, arial">%s</font>' % note))

        doc = self.markup(
            docstring, self.preformat, funcs, classes, methods)
        doc = doc and '<dd><tt>%s</tt></dd>' % doc
        return '<dl><dt>%s</dt>%s</dl>\n' % (decl, doc)

    def docserver(self, server_name, package_documentation, methods):
        """Produce HTML documentation for an XML-RPC server."""

        fdict = {}
        for key, value in methods.items():
            fdict[key] = '#-' + key
            fdict[value] = fdict[key]

        server_name = self.escape(server_name)
        head = '<big><big><strong>%s</strong></big></big>' % server_name
        result = self.heading(head, '#ffffff', '#7799ee')

        doc = self.markup(package_documentation, self.preformat, fdict)
        doc = doc and '<tt>%s</tt>' % doc
        result = result + '<p>%s</p>\n' % doc

        contents = []
        method_items = sorted(methods.items())
        for key, value in method_items:
            contents.append(self.docroutine(value, key, funcs=fdict))
        result = result + self.bigsection(
            'Methods', '#ffffff', '#eeaa77', ''.join(contents))

        return result

class XMLRPCDocGenerator:
    """Generates documentation for an XML-RPC server.

    This class is designed as mix-in and should not
    be constructed directly.
    """

    def __init__(self):
        # setup variables used for HTML documentation
        self.server_name = 'XML-RPC Server Documentation'
        self.server_documentation = \
            "This server exports the following methods through the XML-RPC "\
            "protocol."
        self.server_title = 'XML-RPC Server Documentation'

    def set_server_title(self, server_title):
        """Set the HTML title of the generated server documentation"""

        self.server_title = server_title

    def set_server_name(self, server_name):
        """Set the name of the generated HTML server documentation"""

        self.server_name = server_name

    def set_server_documentation(self, server_documentation):
        """Set the documentation string for the entire server."""

        self.server_documentation = server_documentation

    def generate_html_documentation(self):
        """generate_html_documentation() => html documentation for the server

        Generates HTML documentation for the server using introspection for
        installed functions and instances that do not implement the
        _dispatch method. Alternatively, instances can choose to implement
        the _get_method_argstring(method_name) method to provide the
        argument string used in the documentation and the
        _methodHelp(method_name) method to provide the help text used
        in the documentation."""

        methods = {}

        for method_name in self.system_listMethods():
            if method_name in self.funcs:
                method = self.funcs[method_name]
            elif self.instance is not None:
                method_info = [None, None] # argspec, documentation
                if hasattr(self.instance, '_get_method_argstring'):
                    method_info[0] = self.instance._get_method_argstring(method_name)
                if hasattr(self.instance, '_methodHelp'):
                    method_info[1] = self.instance._methodHelp(method_name)

                method_info = tuple(method_info)
                if method_info != (None, None):
                    method = method_info
                elif not hasattr(self.instance, '_dispatch'):
                    try:
                        method = resolve_dotted_attribute(
                                    self.instance,
                                    method_name
                                    )
                    except AttributeError:
                        method = method_info
                else:
                    method = method_info
            else:
                assert 0, "Could not find method in self.functions and no "\
                          "instance installed"

            methods[method_name] = method

        documenter = ServerHTMLDoc()
        documentation = documenter.docserver(
                                self.server_name,
                                self.server_documentation,
                                methods
                            )

        return documenter.page(html.escape(self.server_title), documentation)

class DocXMLRPCRequestHandler(SimpleXMLRPCRequestHandler):
    """XML-RPC and documentation request handler class.

    Handles all HTTP POST requests and attempts to decode them as
    XML-RPC requests.

    Handles all HTTP GET requests and interprets them as requests
    for documentation.
    """

    def do_GET(self):
        """Handles the HTTP GET request.

        Interpret all HTTP GET requests as requests for server
        documentation.
        """
        # Check that the path is legal
        if not self.is_rpc_path_valid():
            self.report_404()
            return

        response = self.server.generate_html_documentation().encode('utf-8')
        self.send_response(200)
        self.send_header("Content-type", "text/html")
        self.send_header("Content-length", str(len(response)))
        self.end_headers()
        self.wfile.write(response)

class DocXMLRPCServer(  SimpleXMLRPCServer,
                        XMLRPCDocGenerator):
    """XML-RPC and HTML documentation server.

    Adds the ability to serve server documentation to the capabilities
    of SimpleXMLRPCServer.
    """

    def __init__(self, addr, requestHandler=DocXMLRPCRequestHandler,
                 logRequests=True, allow_none=False, encoding=None,
                 bind_and_activate=True, use_builtin_types=False):
        SimpleXMLRPCServer.__init__(self, addr, requestHandler, logRequests,
                                    allow_none, encoding, bind_and_activate,
                                    use_builtin_types)
        XMLRPCDocGenerator.__init__(self)

class DocCGIXMLRPCRequestHandler(   CGIXMLRPCRequestHandler,
                                    XMLRPCDocGenerator):
    """Handler for XML-RPC data and documentation requests passed through
    CGI"""

    def handle_get(self):
        """Handles the HTTP GET request.

        Interpret all HTTP GET requests as requests for server
        documentation.
        """

        response = self.generate_html_documentation().encode('utf-8')

        print('Content-Type: text/html')
        print('Content-Length: %d' % len(response))
        print()
        sys.stdout.flush()
        sys.stdout.buffer.write(response)
        sys.stdout.buffer.flush()

    def __init__(self):
        CGIXMLRPCRequestHandler.__init__(self)
        XMLRPCDocGenerator.__init__(self)


if __name__ == '__main__':
    import datetime

    class ExampleService:
        def getData(self):
            return '42'

        class currentTime:
            @staticmethod
            def getCurrentTime():
                return datetime.datetime.now()

    with SimpleXMLRPCServer(("localhost", 8000)) as server:
        server.register_function(pow)
        server.register_function(lambda x,y: x+y, 'add')
        server.register_instance(ExampleService(), allow_dotted_names=True)
        server.register_multicall_functions()
        print('Serving XML-RPC on localhost port 8000')
        print('It is advisable to run this example server within a secure, closed network.')
        try:
            server.serve_forever()
        except KeyboardInterrupt:
            print("\nKeyboard interrupt received, exiting.")
            sys.exit(0)
__init__.py000064400000000046150532415240006656 0ustar00# This directory is a Python package.
__pycache__/__init__.cpython-36.opt-1.pyc000064400000000172150532427440014106 0ustar003


 \&�@sdS)N�rrr�'/usr/lib64/python3.6/xmlrpc/__init__.py�<module>s__pycache__/server.cpython-36.pyc000064400000071624150532427440012730 0ustar003

�\dhK��@sdZddlmZmZmZmZmZddlmZddl	Z	ddlZ
ddlZddlZddl
Z
ddlZddlZddlZddlZyddlZWnek
r�dZYnXd*dd�Zdd	�ZGd
d�d�ZGdd
�d
e�ZGdd�deje�ZGdd�de�ZGdd�de�ZGdd�dej�ZGdd�d�ZGdd�de�ZGdd�dee�Z Gdd�dee�Z!e"dk�r�ddl#Z#Gdd �d �Z$ed+��~Z%e%j&e'�e%j&d#d$�d%�e%j(e$�dd&�e%j)�e*d'�e*d(�ye%j+�Wn(e,k
�r�e*d)�ej-d�YnXWdQRXdS),aXML-RPC Servers.

This module can be used to create simple XML-RPC servers
by creating a server and either installing functions, a
class instance, or by extending the SimpleXMLRPCServer
class.

It can also be used to handle XML-RPC requests in a CGI
environment using CGIXMLRPCRequestHandler.

The Doc* classes can be used to create XML-RPC servers that
serve pydoc-style documentation in response to HTTP
GET requests. This documentation is dynamically generated
based on the functions and methods registered with the
server.

A list of possible usage patterns follows:

1. Install functions:

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_function(pow)
server.register_function(lambda x,y: x+y, 'add')
server.serve_forever()

2. Install an instance:

class MyFuncs:
    def __init__(self):
        # make all of the sys functions available through sys.func_name
        import sys
        self.sys = sys
    def _listMethods(self):
        # implement this method so that system.listMethods
        # knows to advertise the sys methods
        return list_public_methods(self) + \
                ['sys.' + method for method in list_public_methods(self.sys)]
    def pow(self, x, y): return pow(x, y)
    def add(self, x, y) : return x + y

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_introspection_functions()
server.register_instance(MyFuncs())
server.serve_forever()

3. Install an instance with custom dispatch method:

class Math:
    def _listMethods(self):
        # this method must be present for system.listMethods
        # to work
        return ['add', 'pow']
    def _methodHelp(self, method):
        # this method must be present for system.methodHelp
        # to work
        if method == 'add':
            return "add(2,3) => 5"
        elif method == 'pow':
            return "pow(x, y[, z]) => number"
        else:
            # By convention, return empty
            # string if no help is available
            return ""
    def _dispatch(self, method, params):
        if method == 'pow':
            return pow(*params)
        elif method == 'add':
            return params[0] + params[1]
        else:
            raise ValueError('bad method')

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_introspection_functions()
server.register_instance(Math())
server.serve_forever()

4. Subclass SimpleXMLRPCServer:

class MathServer(SimpleXMLRPCServer):
    def _dispatch(self, method, params):
        try:
            # We are forcing the 'export_' prefix on methods that are
            # callable through XML-RPC to prevent potential security
            # problems
            func = getattr(self, 'export_' + method)
        except AttributeError:
            raise Exception('method "%s" is not supported' % method)
        else:
            return func(*params)

    def export_add(self, x, y):
        return x + y

server = MathServer(("localhost", 8000))
server.serve_forever()

5. CGI script:

server = CGIXMLRPCRequestHandler()
server.register_function(pow)
server.handle_request()
�)�Fault�dumps�loads�gzip_encode�gzip_decode)�BaseHTTPRequestHandlerNTcCsJ|r|jd�}n|g}x.|D]&}|jd�r8td|��qt||�}qW|S)aGresolve_dotted_attribute(a, 'b.c.d') => a.b.c.d

    Resolves a dotted attribute name to an object.  Raises
    an AttributeError if any attribute in the chain starts with a '_'.

    If the optional allow_dotted_names argument is false, dots are not
    supported and this function operates similar to getattr(obj, attr).
    �.�_z(attempt to access private attribute "%s")�split�
startswith�AttributeError�getattr)�obj�attr�allow_dotted_namesZattrs�i�r�%/usr/lib64/python3.6/xmlrpc/server.py�resolve_dotted_attribute{s


rcs�fdd�t��D�S)zkReturns a list of attribute strings, found in the specified
    object, which represent callable attributescs*g|]"}|jd�rtt�|��r|�qS)r	)r�callabler
)�.0�member)rrr�
<listcomp>�sz'list_public_methods.<locals>.<listcomp>)�dir)rr)rr�list_public_methods�src@speZdZdZddd�Zddd�Zddd	�Zd
d�Zdd
�Zddd�Z	dd�Z
dd�Zdd�Zdd�Z
dd�ZdS)�SimpleXMLRPCDispatchera&Mix-in class that dispatches XML-RPC requests.

    This class is used to register XML-RPC method handlers
    and then to dispatch them. This class doesn't need to be
    instanced directly when used by SimpleXMLRPCServer but it
    can be instanced when used by the MultiPathXMLRPCServer
    FNcCs&i|_d|_||_|pd|_||_dS)Nzutf-8)�funcs�instance�
allow_none�encoding�use_builtin_types)�selfrrr rrr�__init__�s

zSimpleXMLRPCDispatcher.__init__cCs||_||_dS)aRegisters an instance to respond to XML-RPC requests.

        Only one instance can be installed at a time.

        If the registered instance has a _dispatch method then that
        method will be called with the name of the XML-RPC method and
        its parameters as a tuple
        e.g. instance._dispatch('add',(2,3))

        If the registered instance does not have a _dispatch method
        then the instance will be searched to find a matching method
        and, if found, will be called. Methods beginning with an '_'
        are considered private and will not be called by
        SimpleXMLRPCServer.

        If a registered function matches an XML-RPC request, then it
        will be called instead of the registered instance.

        If the optional allow_dotted_names argument is true and the
        instance does not have a _dispatch method, method names
        containing dots are supported and resolved, as long as none of
        the name segments start with an '_'.

            *** SECURITY WARNING: ***

            Enabling the allow_dotted_names options allows intruders
            to access your module's global variables and may allow
            intruders to execute arbitrary code on your machine.  Only
            use this option on a secure, closed network.

        N)rr)r!rrrrr�register_instance�s!z(SimpleXMLRPCDispatcher.register_instancecCs|dkr|j}||j|<dS)z�Registers a function to respond to XML-RPC requests.

        The optional name argument can be used to set a Unicode name
        for the function.
        N)�__name__r)r!Zfunction�namerrr�register_function�sz(SimpleXMLRPCDispatcher.register_functioncCs|jj|j|j|jd��dS)z�Registers the XML-RPC introspection methods in the system
        namespace.

        see http://xmlrpc.usefulinc.com/doc/reserved.html
        )zsystem.listMethodszsystem.methodSignaturezsystem.methodHelpN)r�update�system_listMethods�system_methodSignature�system_methodHelp)r!rrr� register_introspection_functions�s
z7SimpleXMLRPCDispatcher.register_introspection_functionscCs|jjd|ji�dS)z�Registers the XML-RPC multicall method in the system
        namespace.

        see http://www.xmlrpc.com/discuss/msgReader$1208zsystem.multicallN)rr'�system_multicall)r!rrr�register_multicall_functions�sz3SimpleXMLRPCDispatcher.register_multicall_functionscCs�yPt||jd�\}}|dk	r(|||�}n|j||�}|f}t|d|j|jd�}Wn�tk
r�}zt||j|jd�}WYdd}~XnNtj�\}}	}
z$ttdd||	f�|j|jd�}Wdd}}	}
XYnX|j	|jd�S)	a�Dispatches an XML-RPC method from marshalled (XML) data.

        XML-RPC methods are dispatched from the marshalled (XML) data
        using the _dispatch method and the result is returned as
        marshalled data. For backwards compatibility, a dispatch
        function can be provided as an argument (see comment in
        SimpleXMLRPCRequestHandler.do_POST) but overriding the
        existing method through subclassing is the preferred means
        of changing method dispatch behavior.
        )r N�)Zmethodresponserr)rrz%s:%s)rr�xmlcharrefreplace)
rr �	_dispatchrrrr�sys�exc_info�encode)r!�data�dispatch_method�path�params�method�response�fault�exc_type�	exc_value�exc_tbrrr�_marshaled_dispatch�s&z*SimpleXMLRPCDispatcher._marshaled_dispatchcCs^t|jj��}|jdk	rVt|jd�r8|t|jj��O}nt|jd�sV|tt|j��O}t|�S)zwsystem.listMethods() => ['add', 'subtract', 'multiple']

        Returns a list of the methods supported by the server.N�_listMethodsr0)�setr�keysr�hasattrr?r�sorted)r!�methodsrrrr(s
z)SimpleXMLRPCDispatcher.system_listMethodscCsdS)a#system.methodSignature('add') => [double, int, int]

        Returns a list describing the signature of the method. In the
        above example, the add method takes two integers as arguments
        and returns a double result.

        This server does NOT support system.methodSignature.zsignatures not supportedr)r!�method_namerrrr))sz-SimpleXMLRPCDispatcher.system_methodSignaturecCs�d}||jkr|j|}nX|jdk	rrt|jd�r<|jj|�St|jd�sryt|j||j�}Wntk
rpYnX|dkr~dStj|�SdS)z�system.methodHelp('add') => "Adds two integers together"

        Returns a string containing documentation for the specified method.N�_methodHelpr0�)	rrrBrFrrr�pydoc�getdoc)r!rEr8rrrr*6s"

z(SimpleXMLRPCDispatcher.system_methodHelpc
Cs�g}x�|D]�}|d}|d}y|j|j||�g�Wq
tk
rl}z|j|j|jd��WYdd}~Xq
tj�\}}}	z|jdd||fd��Wdd}}}	XYq
Xq
W|S)z�system.multicall([{'methodName': 'add', 'params': [2, 2]}, ...]) => [[4], ...]

        Allows the caller to package multiple XML-RPC calls into a single
        request.

        See http://www.xmlrpc.com/discuss/msgReader$1208
        Z
methodNamer7)�	faultCode�faultStringNr.z%s:%s)�appendr0rrJrKr1r2)
r!Z	call_list�resultsZcallrEr7r:r;r<r=rrrr,Us$

z'SimpleXMLRPCDispatcher.system_multicallcCs�y|j|}Wntk
r"YnX|dk	r4||�Std|��|jdk	r�t|jd�rd|jj||�Syt|j||j�}Wntk
r�YnX|dk	r�||�Std|��dS)a�Dispatches the XML-RPC method.

        XML-RPC calls are forwarded to a registered function that
        matches the called XML-RPC method name. If no such function
        exists then the call is forwarded to the registered instance,
        if available.

        If the registered instance has a _dispatch method then that
        method will be called with the name of the XML-RPC method and
        its parameters as a tuple
        e.g. instance._dispatch('add',(2,3))

        If the registered instance does not have a _dispatch method
        then the instance will be searched to find a matching method
        and, if found, will be called.

        Methods beginning with an '_' are considered private and will
        not be called.
        Nzmethod "%s" is not supportedr0)	r�KeyError�	ExceptionrrBr0rrr)r!r8r7�funcrrrr0ys(
z SimpleXMLRPCDispatcher._dispatch)FNF)F)N)NN)r$�
__module__�__qualname__�__doc__r"r#r&r+r-r>r(r)r*r,r0rrrrr�s

$

)
$rc@sfeZdZdZdZdZdZdZej	dej
ejB�Zdd	�Z
d
d�Zdd
�Zdd�Zdd�Zddd�ZdS)�SimpleXMLRPCRequestHandlerz�Simple XML-RPC request handler class.

    Handles all HTTP POST requests and attempts to decode them as
    XML-RPC requests.
    �/�/RPC2ixr.Tz�
                            \s* ([^\s;]+) \s*            #content-coding
                            (;\s* q \s*=\s* ([0-9\.]+))? #q
                            cCsbi}|jjdd�}xJ|jd�D]<}|jj|�}|r|jd�}|rHt|�nd}|||jd�<qW|S)NzAccept-EncodingrG�,�g�?r.)�headers�getr
�	aepattern�match�group�float)r!�rZae�er\�vrrr�accept_encodings�s
z+SimpleXMLRPCRequestHandler.accept_encodingscCs|jr|j|jkSdSdS)NT)�	rpc_pathsr6)r!rrr�is_rpc_path_valid�sz,SimpleXMLRPCRequestHandler.is_rpc_path_validcCs�|j�s|j�dSy�d}t|jd�}g}x>|rjt||�}|jj|�}|sNP|j|�|t|d�8}q.Wdj	|�}|j
|�}|dkr�dS|jj|t
|dd�|j�}Wn�tk
�r6}zp|jd�t|jd	�o�|jj�r|jd
t|��tj�}	t|	jdd�d�}	|jd
|	�|jdd�|j�WYdd}~Xn�X|jd�|jdd�|jdk	�r�t|�|jk�r�|j�jdd�}
|
�r�yt|�}|jdd�Wntk
�r�YnX|jdtt|���|j�|jj|�dS)z�Handles the HTTP POST request.

        Attempts to interpret all HTTP POST requests as XML-RPC calls,
        which are forwarded to the server's _dispatch method for handling.
        N�
izcontent-lengthr.�r0i��_send_traceback_headerzX-exception�ASCII�backslashreplacezX-tracebackzContent-length�0��zContent-typeztext/xml�gziprzContent-Encodingi(i����) rd�
report_404�intrY�minZrfile�readrL�len�join�decode_request_content�serverr>r
r6rO�
send_responserBrg�send_header�str�	traceback�
format_excr3�end_headers�encode_thresholdrbrZr�NotImplementedError�wfile�write)r!Zmax_chunk_sizeZsize_remaining�LZ
chunk_size�chunkr4r9r`Ztrace�qrrr�do_POST�sX






z"SimpleXMLRPCRequestHandler.do_POSTcCs�|jjdd�j�}|dkr|S|dkrtyt|�Stk
rR|jdd|�Yq�tk
rp|jdd�Yq�Xn|jdd|�|jdd	�|j�dS)
Nzcontent-encodingZidentityrli�zencoding %r not supportedi�zerror decoding gzip contentzContent-lengthrj)	rYrZ�lowerrr}rv�
ValueErrorrwr{)r!r4rrrrrtsz1SimpleXMLRPCRequestHandler.decode_request_contentcCsF|jd�d}|jdd�|jdtt|���|j�|jj|�dS)Ni�sNo such pagezContent-typez
text/plainzContent-length)rvrwrxrrr{r~r)r!r9rrrrn/s
z%SimpleXMLRPCRequestHandler.report_404�-cCs|jjrtj|||�dS)z$Selectively log an accepted request.N)ru�logRequestsr�log_request)r!�code�sizerrrr�8sz&SimpleXMLRPCRequestHandler.log_requestN)rUrVrm)r�r�)r$rQrRrSrcr|ZwbufsizeZdisable_nagle_algorithm�re�compile�VERBOSE�
IGNORECASEr[rbrdr�rtrnr�rrrrrT�sG	rTc@s.eZdZdZdZdZedddddfdd�ZdS)�SimpleXMLRPCServeragSimple XML-RPC server.

    Simple XML-RPC server that allows functions and a single instance
    to be installed to handle requests. The default implementation
    attempts to dispatch XML-RPC calls to the functions or instance
    installed in the server. Override the _dispatch method inherited
    from SimpleXMLRPCDispatcher to change this behavior.
    TFNcCs,||_tj||||�tjj||||�dS)N)r�rr"�socketserver�	TCPServer)r!�addr�requestHandlerr�rr�bind_and_activater rrrr"QszSimpleXMLRPCServer.__init__)r$rQrRrSZallow_reuse_addressrgrTr"rrrrr�>s	r�c@s@eZdZdZedddddfdd�Zdd�Zd	d
�Zd
dd�ZdS)�MultiPathXMLRPCServera\Multipath XML-RPC Server
    This specialization of SimpleXMLRPCServer allows the user to create
    multiple Dispatcher instances and assign them to different
    HTTP request paths.  This makes it possible to run two or more
    'virtual XML-RPC servers' at the same port.
    Make sure that the requestHandler accepts the paths in question.
    TFNc	Cs2tj||||||||�i|_||_|p*d|_dS)Nzutf-8)r�r"�dispatchersrr)r!r�r�r�rrr�r rrrr"bs

zMultiPathXMLRPCServer.__init__cCs||j|<|S)N)r�)r!r6Z
dispatcherrrr�add_dispatcherls
z$MultiPathXMLRPCServer.add_dispatchercCs
|j|S)N)r�)r!r6rrr�get_dispatcherpsz$MultiPathXMLRPCServer.get_dispatchercCs|y|j|j|||�}Wn^tj�dd�\}}z2ttdd||f�|j|jd�}|j|jd�}Wdd}}XYnX|S)N�r.z%s:%s)rrr/)	r�r>r1r2rrrrr3)r!r4r5r6r9r;r<rrrr>ss
z)MultiPathXMLRPCServer._marshaled_dispatch)NN)	r$rQrRrSrTr"r�r�r>rrrrr�Zsr�c@s4eZdZdZddd�Zdd�Zdd	�Zd
d
d�ZdS)�CGIXMLRPCRequestHandlerz3Simple handler for XML-RPC data passed through CGI.FNcCstj||||�dS)N)rr")r!rrr rrrr"�sz CGIXMLRPCRequestHandler.__init__cCsP|j|�}td�tdt|��t�tjj�tjjj|�tjjj�dS)zHandle a single XML-RPC requestzContent-Type: text/xmlzContent-Length: %dN)r>�printrrr1�stdout�flush�bufferr)r!�request_textr9rrr�
handle_xmlrpc�s

z%CGIXMLRPCRequestHandler.handle_xmlrpccCs�d}tj|\}}tjj|||d�}|jd�}td||f�tdtjj�tdt|��t�t	j
j�t	j
jj
|�t	j
jj�dS)z�Handle a single HTTP GET request.

        Default implementation indicates an error because
        XML-RPC uses the POST method.
        i�)r��message�explainzutf-8z
Status: %d %szContent-Type: %szContent-Length: %dN)rZ	responses�httpruZDEFAULT_ERROR_MESSAGEr3r�ZDEFAULT_ERROR_CONTENT_TYPErrr1r�r�r�r)r!r�r�r�r9rrr�
handle_get�s


z"CGIXMLRPCRequestHandler.handle_getcCsz|dkr$tjjdd�dkr$|j�nRyttjjdd��}Wnttfk
rVd}YnX|dkrltjj	|�}|j
|�dS)z�Handle a single XML-RPC request passed through a CGI post method.

        If no XML data is given then it is read from stdin. The resulting
        XML-RPC response is printed to stdout along with the correct HTTP
        headers.
        NZREQUEST_METHODZGETZCONTENT_LENGTHr.rm)�os�environrZr�ror��	TypeErrorr1�stdinrqr�)r!r�Zlengthrrr�handle_request�s

z&CGIXMLRPCRequestHandler.handle_request)FNF)N)r$rQrRrSr"r�r�r�rrrrr��s

r�c@s>eZdZdZdiiifdd�Zdiiidfdd�Zdd�ZdS)	�
ServerHTMLDocz7Class used to generate pydoc HTML document for a serverNcCs^|p|j}g}d}tjd�}�x|j||�}	|	s2P|	j�\}
}|j||||
���|	j�\}}
}}}}|
r�||�jdd�}|jd||f�n�|r�dt|�}|jd|||�f�n~|r�dt|�}|jd|||�f�nV|||d�d	k�r|j|j	||||��n(|�r$|jd
|�n|j|j	||��|}q W|j|||d���dj
|�S)
z�Mark up some plain text, given a context of symbols to look for.
        Each context dictionary maps object names to anchor names.rzM\b((http|ftp)://\S+[\w/]|RFC[- ]?(\d+)|PEP[- ]?(\d+)|(self\.)?((?:\w|\.)+))\b�"z&quot;z<a href="%s">%s</a>z'http://www.rfc-editor.org/rfc/rfc%d.txtz(http://www.python.org/dev/peps/pep-%04d/r.�(zself.<strong>%s</strong>NrG)�escaper�r��search�spanrL�groups�replaceroZnamelinkrs)r!�textr�r�classesrDrM�here�patternr\�start�end�all�schemeZrfcZpepZselfdotr%Zurlrrr�markup�s8

zServerHTMLDoc.markupcCs$|r
|jpdd|}d}	d|j|�|j|�f}
tj|�rrtj|�}tj|jdd�|j|j|j	|j
|jd�}n<tj|�r�tj|�}tj|j|j|j|j	|j
|jd�}nd}t
|t�r�|dp�|}|dp�d}
n
tj|�}
|
||	o�|jd	|	�}|j|
|j|||�}|�od
|}d||fS)z;Produce HTML documentation for a function or method object.rGr�z$<a name="%s"><strong>%s</strong></a>r.N)�annotations�formatvaluez(...)rz'<font face="helvetica, arial">%s</font>z<dd><tt>%s</tt></dd>z<dl><dt>%s</dt>%s</dl>
)r$r��inspectZismethodZgetfullargspecZ
formatargspec�argsZvarargsZvarkwZdefaultsr�r�Z
isfunction�
isinstance�tuplerHrIZgreyr��	preformat)r!�objectr%�modrr�rDZclZanchorZnote�titler�ZargspecZ	docstringZdecl�docrrr�
docroutine�s<





zServerHTMLDoc.docroutinecCs�i}x,|j�D] \}}d|||<||||<qW|j|�}d|}|j|dd�}|j||j|�}	|	old|	}	|d|	}g}
t|j��}x&|D]\}}|
j|j|||d��q�W||jddd	d
j	|
��}|S)z1Produce HTML documentation for an XML-RPC server.z#-z)<big><big><strong>%s</strong></big></big>z#ffffffz#7799eez<tt>%s</tt>z
<p>%s</p>
)rZMethodsz#eeaa77rG)
�itemsr�Zheadingr�r�rCrLr�Z
bigsectionrs)r!�server_nameZpackage_documentationrDZfdict�key�value�head�resultr��contentsZmethod_itemsrrr�	docserver$s"
zServerHTMLDoc.docserver)r$rQrRrSr�r�r�rrrrr��s
),r�c@s8eZdZdZdd�Zdd�Zdd�Zdd	�Zd
d�ZdS)
�XMLRPCDocGeneratorz�Generates documentation for an XML-RPC server.

    This class is designed as mix-in and should not
    be constructed directly.
    cCsd|_d|_d|_dS)NzXML-RPC Server DocumentationzGThis server exports the following methods through the XML-RPC protocol.)r��server_documentation�server_title)r!rrrr"DszXMLRPCDocGenerator.__init__cCs
||_dS)z8Set the HTML title of the generated server documentationN)r�)r!r�rrr�set_server_titleLsz#XMLRPCDocGenerator.set_server_titlecCs
||_dS)z7Set the name of the generated HTML server documentationN)r�)r!r�rrr�set_server_nameQsz"XMLRPCDocGenerator.set_server_namecCs
||_dS)z3Set the documentation string for the entire server.N)r�)r!r�rrr�set_server_documentationVsz+XMLRPCDocGenerator.set_server_documentationcCs
i}x�|j�D]�}||jkr(|j|}n�|jdk	r�ddg}t|jd�rV|jj|�|d<t|jd�rr|jj|�|d<t|�}|dkr�|}q�t|jd�s�yt|j|�}Wq�tk
r�|}Yq�Xq�|}nds�t	d��|||<qWt
�}|j|j|j
|�}|jtj|j�|�S)	agenerate_html_documentation() => html documentation for the server

        Generates HTML documentation for the server using introspection for
        installed functions and instances that do not implement the
        _dispatch method. Alternatively, instances can choose to implement
        the _get_method_argstring(method_name) method to provide the
        argument string used in the documentation and the
        _methodHelp(method_name) method to provide the help text used
        in the documentation.N�_get_method_argstringrrFr.r0zACould not find method in self.functions and no instance installed)NN)r(rrrBr�rFr�rr�AssertionErrorr�r�r�r�Zpage�htmlr�r�)r!rDrEr8Zmethod_infoZ
documenterZ
documentationrrr�generate_html_documentation[s:


z.XMLRPCDocGenerator.generate_html_documentationN)	r$rQrRrSr"r�r�r�r�rrrrr�=sr�c@seZdZdZdd�ZdS)�DocXMLRPCRequestHandlerz�XML-RPC and documentation request handler class.

    Handles all HTTP POST requests and attempts to decode them as
    XML-RPC requests.

    Handles all HTTP GET requests and interprets them as requests
    for documentation.
    cCsf|j�s|j�dS|jj�jd�}|jd�|jdd�|jdtt|���|j	�|j
j|�dS)z}Handles the HTTP GET request.

        Interpret all HTTP GET requests as requests for server
        documentation.
        Nzutf-8rkzContent-typez	text/htmlzContent-length)rdrnrur�r3rvrwrxrrr{r~r)r!r9rrr�do_GET�s
zDocXMLRPCRequestHandler.do_GETN)r$rQrRrSr�rrrrr��sr�c@s&eZdZdZedddddfdd�ZdS)�DocXMLRPCServerz�XML-RPC and HTML documentation server.

    Adds the ability to serve server documentation to the capabilities
    of SimpleXMLRPCServer.
    TFNc	Cs&tj||||||||�tj|�dS)N)r�r"r�)r!r�r�r�rrr�r rrrr"�szDocXMLRPCServer.__init__)r$rQrRrSr�r"rrrrr��sr�c@s eZdZdZdd�Zdd�ZdS)�DocCGIXMLRPCRequestHandlerzJHandler for XML-RPC data and documentation requests passed through
    CGIcCsT|j�jd�}td�tdt|��t�tjj�tjjj|�tjjj�dS)z}Handles the HTTP GET request.

        Interpret all HTTP GET requests as requests for server
        documentation.
        zutf-8zContent-Type: text/htmlzContent-Length: %dN)	r�r3r�rrr1r�r�r�r)r!r9rrrr��s
z%DocCGIXMLRPCRequestHandler.handle_getcCstj|�tj|�dS)N)r�r"r�)r!rrrr"�s
z#DocCGIXMLRPCRequestHandler.__init__N)r$rQrRrSr�r"rrrrr��sr��__main__c@s"eZdZdd�ZGdd�d�ZdS)�ExampleServicecCsdS)NZ42r)r!rrr�getData�szExampleService.getDatac@seZdZedd��ZdS)zExampleService.currentTimecCs
tjj�S)N)�datetimeZnowrrrr�getCurrentTime�sz)ExampleService.currentTime.getCurrentTimeN)r$rQrR�staticmethodr�rrrr�currentTime�sr�N)r$rQrRr�r�rrrrr��sr��	localhost�@cCs||S)Nr)�x�yrrr�<lambda>�sr��add)rz&Serving XML-RPC on localhost port 8000zKIt is advisable to run this example server within a secure, closed network.z&
Keyboard interrupt received, exiting.)T)r�r�).rSZ
xmlrpc.clientrrrrrZhttp.serverrr�r�r�r1r�r�rHr�ryZfcntl�ImportErrorrrrrTr�r�r�r�ZHTMLDocr�r�r�r�r�r$r�r�rur&�powr#r-r�Z
serve_forever�KeyboardInterrupt�exitrrrr�<module>fs`

,ErQ
	

__pycache__/client.cpython-36.opt-1.pyc000064400000103330150532427440013625 0ustar003


 \\��&@sjdZddlZddlZddlZddlmZddlmZddlZddl	Z
ddlmZddl
Z
ddlmZyddlZWnek
r�dZYnXdd�Zd	ejdd
�ZdYZd[Zd\Zd]Zd^Zd_Zd`ZdaZdbZdcZddZdeZ dfZ!dgZ"Gdd�de#�Z$Gdd�de$�Z%Gdd�de$�Z&Gdd�de$�Z'e(Z)Z*eddd�Z+e+j,d�d k�rJd!d"�Z-n"e+j,d#�d k�rdd$d"�Z-nd%d"�Z-[+d&d'�Z.Gd(d)�d)�Z/d*d+�Z0d,d-�Z1Gd.d/�d/�Z2d0d1�Z3e/e2fZ4Gd2d3�d3�Z5Gd4d5�d5�Z6Gd6d7�d7�Z7Gd8d9�d9�Z8Gd:d;�d;�Z9Gd<d=�d=�Z:dZ;Z<Z=dhd?d@�Z>didAdB�Z?djdCdD�Z@dEdF�ZAdkdHdI�ZBGdJdK�dKe�rXejCneD�ZEGdLdM�dM�ZFGdNdO�dO�ZGGdPdQ�dQeG�ZHGdRdS�dS�ZIeIZJeKdTk�rfeIdU�ZLyeMeLjNjO��Wn.e$k
�r�ZPzeMdVeP�WYddZP[PXnXe:eL�ZQeQjR�eQjSd
dW�eQjTdd
�yxeQ�D]ZUeMeU��q"WWn.e$k
�rdZPzeMdVeP�WYddZP[PXnXdS)la�
An XML-RPC client interface for Python.

The marshalling and response parser code can also be used to
implement XML-RPC servers.

Exported exceptions:

  Error          Base class for client errors
  ProtocolError  Indicates an HTTP protocol error
  ResponseError  Indicates a broken response package
  Fault          Indicates an XML-RPC fault package

Exported classes:

  ServerProxy    Represents a logical connection to an XML-RPC server

  MultiCall      Executor of boxcared xmlrpc requests
  DateTime       dateTime wrapper for an ISO 8601 string or time tuple or
                 localtime integer value to generate a "dateTime.iso8601"
                 XML-RPC value
  Binary         binary data wrapper

  Marshaller     Generate an XML-RPC params chunk from a Python data structure
  Unmarshaller   Unmarshal an XML-RPC response from incoming XML event message
  Transport      Handles an HTTP transaction to an XML-RPC server
  SafeTransport  Handles an HTTPS transaction to an XML-RPC server

Exported constants:

  (none)

Exported functions:

  getparser      Create instance of the fastest available parser & attach
                 to an unmarshalling object
  dumps          Convert an argument tuple or a Fault instance to an XML-RPC
                 request (or response, if the methodresponse option is used).
  loads          Convert an XML-RPC packet to unmarshalled data plus a method
                 name (None if not present).
�N)�datetime)�Decimal)�expat)�BytesIOcCs$|jdd�}|jdd�}|jdd�S)N�&z&amp;�<z&lt;�>z&gt;)�replace)�s�r�%/usr/lib64/python3.6/xmlrpc/client.py�escape�sr
z%d.%d���i�iXi�~i�~i,~i�i�iYiZi[c@seZdZdZdd�ZdS)�ErrorzBase class for client errors.cCst|�S)N)�repr)�selfrrr�__str__�sz
Error.__str__N)�__name__�
__module__�__qualname__�__doc__rrrrrr�src@s eZdZdZdd�Zdd�ZdS)�
ProtocolErrorz!Indicates an HTTP protocol error.cCs&tj|�||_||_||_||_dS)N)r�__init__�url�errcode�errmsg�headers)rrrrrrrrr�s

zProtocolError.__init__cCsd|jj|j|j|jfS)Nz<%s for %s: %s %s>)�	__class__rrrr)rrrr�__repr__�szProtocolError.__repr__N)rrrrrr rrrrr�src@seZdZdZdS)�
ResponseErrorz$Indicates a broken response package.N)rrrrrrrrr!�sr!c@s eZdZdZdd�Zdd�ZdS)�Faultz#Indicates an XML-RPC fault package.cKstj|�||_||_dS)N)rr�	faultCode�faultString)rr#r$Zextrarrrr�s
zFault.__init__cCsd|jj|j|jfS)Nz<%s %s: %r>)rrr#r$)rrrrr �szFault.__repr__N)rrrrrr rrrrr"�sr"z%YZ0001cCs
|jd�S)Nz%Y%m%dT%H:%M:%S)�strftime)�valuerrr�_iso8601_format
sr'z%4YcCs
|jd�S)Nz%4Y%m%dT%H:%M:%S)r%)r&rrrr'scCs|jd�jd�S)Nz%Y%m%dT%H:%M:%S�)r%�zfill)r&rrrr'scCsLt|t�rt|�St|ttjf�s<|dkr2tj�}tj|�}d|dd�S)Nrz%04d%02d%02dT%02d:%02d:%02d�)�
isinstancerr'�tuple�timeZstruct_timeZ	localtime)r&rrr�	_strftimes

r.c@sreZdZdZddd�Zdd�Zdd�Zd	d
�Zdd�Zd
d�Z	dd�Z
dd�Zdd�Zdd�Z
dd�Zdd�ZdS)�DateTimez�DateTime wrapper for an ISO 8601 string or time tuple or
    localtime integer value to generate 'dateTime.iso8601' XML-RPC
    value.
    rcCs t|t�r||_n
t|�|_dS)N)r+�strr&r.)rr&rrrr)s
zDateTime.__init__cCs�t|t�r|j}|j}nzt|t�r2|j}t|�}n`t|t�rH|j}|}nJt|d�rd|j�}|j�}n.t|d�rv|jj	p|t
|�}td|jj	|f��||fS)N�	timetuplerzCan't compare %s and %s)r+r/r&rr'r0�hasattrr1rr�type�	TypeError)r�otherr
�oZotyperrr�make_comparable/s$






zDateTime.make_comparablecCs|j|�\}}||kS)N)r7)rr5r
r6rrr�__lt__DszDateTime.__lt__cCs|j|�\}}||kS)N)r7)rr5r
r6rrr�__le__HszDateTime.__le__cCs|j|�\}}||kS)N)r7)rr5r
r6rrr�__gt__LszDateTime.__gt__cCs|j|�\}}||kS)N)r7)rr5r
r6rrr�__ge__PszDateTime.__ge__cCs|j|�\}}||kS)N)r7)rr5r
r6rrr�__eq__TszDateTime.__eq__cCstj|jd�S)Nz%Y%m%dT%H:%M:%S)r-�strptimer&)rrrrr1XszDateTime.timetuplecCs|jS)N)r&)rrrrr`szDateTime.__str__cCsd|jj|jt|�fS)Nz<%s %r at %#x>)rrr&�id)rrrrr cszDateTime.__repr__cCst|�j�|_dS)N)r0�stripr&)r�datarrr�decodefszDateTime.decodecCs$|jd�|j|j�|jd�dS)Nz<value><dateTime.iso8601>z</dateTime.iso8601></value>
)�writer&)r�outrrr�encodeis
zDateTime.encodeN)r)rrrrrr7r8r9r:r;r<r1rr rArDrrrrr/#s
r/cCst�}|j|�|S)N)r/rA)r@r&rrr�	_datetimens
rEcCstj|d�S)Nz%Y%m%dT%H:%M:%S)rr=)r@rrr�_datetime_typetsrFc@s:eZdZdZd
dd�Zdd�Zdd�Zd	d
�Zdd�ZdS)�BinaryzWrapper for binary data.NcCs>|dkrd}n&t|ttf�s,td|jj��t|�}||_dS)N�z#expected bytes or bytearray, not %s)r+�bytes�	bytearrayr4rrr@)rr@rrrr�szBinary.__init__cCst|jd�S)Nzlatin-1)r0r@)rrrrr�szBinary.__str__cCst|t�r|j}|j|kS)N)r+rGr@)rr5rrrr<�s
z
Binary.__eq__cCstj|�|_dS)N)�base64�decodebytesr@)rr@rrrrA�sz
Binary.decodecCs4|jd�tj|j�}|j|jd��|jd�dS)Nz<value><base64>
�asciiz</base64></value>
)rBrK�encodebytesr@rA)rrC�encodedrrrrD�s
z
Binary.encode)N)	rrrrrrr<rArDrrrrrG}s
rGcCst�}|j|�|S)N)rGrA)r@r&rrr�_binary�s
rPc@s$eZdZdd�Zdd�Zdd�ZdS)�ExpatParsercCsDtjdd�|_}||_|j|_|j|_|j|_	d}|j
|d�dS)N)rZParserCreate�_parser�_target�startZStartElementHandler�endZEndElementHandlerr@ZCharacterDataHandler�xml)r�target�parser�encodingrrrr�szExpatParser.__init__cCs|jj|d�dS)Nr)rR�Parse)rr@rrr�feed�szExpatParser.feedcCs8y
|j}Wntk
rYnX|`|`|jdd�dS)NrHT)rR�AttributeErrorrSrZ)rrXrrr�close�s
zExpatParser.closeN)rrrrr[r]rrrrrQ�s	rQc@s�eZdZdZddd�ZiZdd�Zdd	�Zd
d�Zeee	d�<dd
�Z
e
ee<dd�Zeee
<eZdd�Zeee<efdd�Zeee<dd�Zeee<eee<dd�Zeee<eee<efdd�Zeee<dd�Zeee<dd�Zeee<eee <eed<dS) �
MarshalleravGenerate an XML-RPC params chunk from a Python data structure.

    Create a Marshaller instance for each set of parameters, and use
    the "dumps" method to convert your data (represented as a tuple)
    to an XML-RPC params chunk.  To write a fault response, pass a
    Fault instance instead.  You may prefer to use the "dumps" module
    function for this purpose.
    NFcCsi|_d|_||_||_dS)N)�memor@rY�
allow_none)rrYr`rrrr�szMarshaller.__init__cCs�g}|j}|j}t|t�r@|d�||j|jd�|�|d�n8|d�x&|D]}|d�|||�|d�qNW|d�dj|�}|S)	Nz<fault>
)r#r$z	</fault>
z	<params>
z<param>
z	</param>
z
</params>
�)�append�_Marshaller__dumpr+r"r#r$�join)r�valuesrCrB�dump�v�resultrrr�dumps�s"




zMarshaller.dumpscCs�y|jt|�}Wnjtk
r|t|d�s<tdt|���x0t|�jD]"}||jj�krHtdt|���qHW|jd}YnX||||�dS)N�__dict__zcannot marshal %s objects�_arbitrary_instance)�dispatchr3�KeyErrorr2r4�__mro__�keys)rr&rB�fZtype_rrrZ__dump�s
zMarshaller.__dumpcCs|jstd��|d�dS)Nz0cannot marshal None unless allow_none is enabledz<value><nil/></value>)r`r4)rr&rBrrr�dump_nilszMarshaller.dump_nilcCs$|d�||rdpd�|d�dS)Nz<value><boolean>�1�0z</boolean></value>
r)rr&rBrrr�	dump_boolszMarshaller.dump_boolcCs<|tks|tkrtd��|d�|tt|���|d�dS)Nzint exceeds XML-RPC limitsz<value><int>z</int></value>
)�MAXINT�MININT�
OverflowErrorr0�int)rr&rBrrr�	dump_longs
zMarshaller.dump_longcCs |d�|t|��|d�dS)Nz<value><double>z</double></value>
)r)rr&rBrrr�dump_double%szMarshaller.dump_doublecCs |d�|||��|d�dS)Nz<value><string>z</string></value>
r)rr&rBr
rrr�dump_unicode+szMarshaller.dump_unicodecCs,|d�tj|�}||jd��|d�dS)Nz<value><base64>
rMz</base64></value>
)rKrNrA)rr&rBrOrrr�
dump_bytes1s
zMarshaller.dump_bytescCs^t|�}||jkrtd��d|j|<|j}|d�x|D]}|||�q8W|d�|j|=dS)Nz"cannot marshal recursive sequencesz<value><array><data>
z</data></array></value>
)r>r_r4rc)rr&rB�irfrgrrr�
dump_array9s


zMarshaller.dump_arraycCs�t|�}||jkrtd��d|j|<|j}|d�xP|j�D]D\}}|d�t|t�s^td��|d||��|||�|d�q<W|d�|j|=dS)Nz%cannot marshal recursive dictionariesz<value><struct>
z	<member>
zdictionary key must be stringz<name>%s</name>
z
</member>
z</struct></value>
)r>r_r4rc�itemsr+r0)rr&rBr
r}rf�krgrrr�dump_structGs



zMarshaller.dump_structcCs |d�|t|��|d�dS)Nz<value><dateTime.iso8601>z</dateTime.iso8601></value>
)r.)rr&rBrrr�
dump_datetimeYszMarshaller.dump_datetimecCs2|jtkr ||_|j|�|`n|j|j|�dS)N)r�WRAPPERSrBrDr�rj)rr&rBrrr�
dump_instance_s


zMarshaller.dump_instancerk)NF)!rrrrrrlrircrqr3rt�boolryrxZdump_intrz�floatr
r{r0r|rIrJr~r,�listr��dictr�rr�r/rGrrrrr^�s<
	r^c@sneZdZdZdEdd�Zdd�Zdd�Zd	d
�Zdd�Zd
d�Z	dd�Z
dd�ZiZdd�Z
e
ed<dd�Zeed<dd�Zeed<eed<eed<eed<eed<eed <d!d"�Zeed#<eed$<d%d&�Zeed'<d(d)�Zeed*<eed+<d,d-�Zeed.<d/d0�Zeed1<d2d3�Zeed4<d5d6�Zeed7<d8d9�Zeed:<d;d<�Zeed=<d>d?�Zeed@<dAdB�ZeedC<dDS)F�UnmarshalleraUnmarshal an XML-RPC response, based on incoming XML event
    messages (start, data, end).  Call close() to get the resulting
    data structure.

    Note that this reader is fairly tolerant, and gladly accepts bogus
    XML-RPC data without complaining (but not bogus XML).
    FcCsHd|_g|_g|_g|_d|_d|_d|_|jj|_|p:||_||_	dS)NFzutf-8)
�_type�_stack�_marks�_data�_value�_methodname�	_encodingrb�
_use_datetime�
_use_bytes)r�use_datetime�use_builtin_typesrrrrs

zUnmarshaller.__init__cCs:|jdks|jrt��|jdkr0tf|jd��t|j�S)N�faultr)r�r�r!r"r�r,)rrrrr]�s

zUnmarshaller.closecCs|jS)N)r�)rrrr�
getmethodname�szUnmarshaller.getmethodnamecCs
||_dS)N)r�)rrYZ
standalonerrrrV�szUnmarshaller.xmlcCshd|kr|jd�d}|dks&|dkr8|jjt|j��g|_|jrZ||jkrZtd|��|dk|_dS)N�:r�array�structzunknown tag %rr&���)	�splitr�rb�lenr�r�r�rlr!)r�tagZattrsrrrrT�szUnmarshaller.startcCs|jj|�dS)N)r�rb)r�textrrrr@�szUnmarshaller.datacCspy|j|}WnNtk
r\d|kr*dSy|j|jd�d}Wntk
rVdSXYnX||dj|j��S)Nr�rrar�)rlrmr�rdr�)rr�rprrrrU�szUnmarshaller.endcCshy|j|}WnNtk
r\d|kr*dSy|j|jd�d}Wntk
rVdSXYnX|||�S)Nr�rr�)rlrmr�)rr�r@rprrr�end_dispatch�szUnmarshaller.end_dispatchcCs|jd�d|_dS)Nr)rbr�)rr@rrr�end_nil�s
zUnmarshaller.end_nilZnilcCs:|dkr|jd�n|dkr(|jd�ntd��d|_dS)NrsFrrTzbad boolean valuer)rbr4r�)rr@rrr�end_boolean�szUnmarshaller.end_boolean�booleancCs|jt|��d|_dS)Nr)rbrxr�)rr@rrr�end_int�szUnmarshaller.end_intZi1Zi2Zi4Zi8rxZ
bigintegercCs|jt|��d|_dS)Nr)rbr�r�)rr@rrr�
end_double�szUnmarshaller.end_doubleZdoubler�cCs|jt|��d|_dS)Nr)rbrr�)rr@rrr�end_bigdecimal�szUnmarshaller.end_bigdecimalZ
bigdecimalcCs&|jr|j|j�}|j|�d|_dS)Nr)r�rArbr�)rr@rrr�
end_string�s
zUnmarshaller.end_string�string�namecCs.|jj�}|j|d�g|j|d�<d|_dS)Nr)r��popr�r�)rr@�markrrr�	end_array�s
zUnmarshaller.end_arrayr�cCsd|jj�}i}|j|d�}x,tdt|�d�D]}||d|||<q.W|g|j|d�<d|_dS)Nrrr)r�r�r��ranger�r�)rr@r�r�rr}rrr�
end_structs
zUnmarshaller.end_structr�cCs6t�}|j|jd��|jr"|j}|j|�d|_dS)NrMr)rGrArDr�r@rbr�)rr@r&rrr�
end_base64s
zUnmarshaller.end_base64rKcCs,t�}|j|�|jrt|�}|j|�dS)N)r/rAr�rFrb)rr@r&rrr�end_dateTimes

zUnmarshaller.end_dateTimezdateTime.iso8601cCs|jr|j|�dS)N)r�r�)rr@rrr�	end_valueszUnmarshaller.end_valuer&cCs
d|_dS)N�params)r�)rr@rrr�
end_params#szUnmarshaller.end_paramsr�cCs
d|_dS)Nr�)r�)rr@rrr�	end_fault'szUnmarshaller.end_faultr�cCs"|jr|j|j�}||_d|_dS)N�
methodName)r�rAr�r�)rr@rrr�end_methodName+szUnmarshaller.end_methodNamer�N)FF)rrrrrr]r�rVrTr@rUr�rlr�r�r�r�r�r�r�r�r�r�r�r�r�r�rrrrr�ssZ
	r�c@s$eZdZdd�Zdd�Zdd�ZdS)�_MultiCallMethodcCs||_||_dS)N)�_MultiCallMethod__call_list�_MultiCallMethod__name)rZ	call_listr�rrrr8sz_MultiCallMethod.__init__cCst|jd|j|f�S)Nz%s.%s)r�r�r�)rr�rrr�__getattr__;sz_MultiCallMethod.__getattr__cGs|jj|j|f�dS)N)r�rbr�)r�argsrrr�__call__=sz_MultiCallMethod.__call__N)rrrrr�r�rrrrr�5sr�c@s eZdZdZdd�Zdd�ZdS)�MultiCallIteratorzaIterates over the results of a multicall. Exceptions are
    raised in response to xmlrpc faults.cCs
||_dS)N)�results)rr�rrrrDszMultiCallIterator.__init__cCsR|j|}t|�ti�kr.t|d|d��n t|�tg�krF|dStd��dS)Nr#r$rz#unexpected type in multicall result)r�r3r"�
ValueError)rr}�itemrrr�__getitem__Gs
zMultiCallIterator.__getitem__N)rrrrrr�rrrrr�@sr�c@s4eZdZdZdd�Zdd�ZeZdd�Zdd	�Zd
S)�	MultiCalla~server -> an object used to boxcar method calls

    server should be a ServerProxy object.

    Methods can be added to the MultiCall using normal
    method 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()
    cCs||_g|_dS)N)�_MultiCall__server�_MultiCall__call_list)r�serverrrrraszMultiCall.__init__cCsd|jjt|�fS)Nz<%s at %#x>)rrr>)rrrrr eszMultiCall.__repr__cCst|j|�S)N)r�r�)rr�rrrr�jszMultiCall.__getattr__cCs:g}x"|jD]\}}|j||d��qWt|jjj|��S)N)r�r�)r�rbr�r��systemZ	multicall)rZmarshalled_listr�r�rrrr�mszMultiCall.__call__N)	rrrrrr rr�r�rrrrr�Psr�FcCsrtrHtrH|rt}tj}n|r&t}t}nt}t}tdd||t�}t|�}n"t||d�}trbt|�}nt	|�}||fS)z�getparser() -> parser, unmarshaller

    Create an instance of the fastest available parser, and attach it
    to an unmarshalling object.  Return both objects.
    TF)r�r�)
�
FastParser�FastUnmarshallerrFrKrLrPrEr"r�rQ)r�r�Z
mkdatetimeZmkbytesrWrXrrr�	getparsers 

r�cCs�t|t�rd}n|rt|t�r|s&d}tr4t|�}n
t||�}|j|�}|dkr^dt|�}nd}|rx|d|d|df}n|r�|d|d	f}n|Sd
j|�S)a�data [,options] -> marshalled data

    Convert an argument tuple or a Fault instance to an XML-RPC
    request (or response, if the methodresponse option is used).

    In addition to the data object, the following options can be given
    as keyword arguments:

        methodname: the method name for a methodCall packet

        methodresponse: true to create a methodResponse packet.
        If this option is used with a tuple, the tuple must be
        a 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 the
    packet encoding.  Unicode strings are automatically converted,
    where necessary.
    rzutf-8z$<?xml version='1.0' encoding='%s'?>
z<?xml version='1.0'?>
z<methodCall>
<methodName>z</methodName>
z</methodCall>
z<methodResponse>
z</methodResponse>
ra)r+r"r,�FastMarshallerr^rir0rd)r��
methodnameZmethodresponserYr`�mr@Z	xmlheaderrrrri�s2



ricCs2t||d�\}}|j|�|j�|j�|j�fS)z�data -> unmarshalled data, method name

    Convert an XML-RPC packet to unmarshalled data plus a method
    name (None if not present).

    If the XML-RPC packet represents a fault condition, this function
    raises a Fault exception.
    )r�r�)r�r[r]r�)r@r�r��p�urrr�loads�s	
r�c	Cs<tst�t�}tjd|dd��}|j|�WdQRX|j�S)zhdata -> gzip encoded data

    Encode data using the gzip content encoding as described in RFC 1952
    �wbr)�mode�fileobjZ
compresslevelN)�gzip�NotImplementedErrorr�GzipFilerB�getvalue)r@rp�gzfrrr�gzip_encodesr��@cCs�tst�tjdt|�d��H}y$|dkr0|j�}n|j|d�}Wntk
r\td��YnXWdQRX|dkr�t|�|kr�td��|S)zrgzip encoded data -> unencoded data

    Decode data using the gzip content encoding as described in RFC 1952
    �rb)r�r�rrzinvalid dataNz#max gzipped payload length exceeded)r�r�r�r�read�OSErrorr�r�)r@Z
max_decoder�Zdecodedrrr�gzip_decodes
r�c@s eZdZdZdd�Zdd�ZdS)�GzipDecodedResponsezha file-like object to decode a response encoded with the gzip
    method, as described in RFC 1952.
    cCs.tst�t|j��|_tjj|d|jd�dS)Nr�)r�r�)r�r�rr��ior�r)r�responserrrr=szGzipDecodedResponse.__init__c
Cs"ztjj|�Wd|jj�XdS)N)r�r�r]r�)rrrrr]EszGzipDecodedResponse.closeN)rrrrrr]rrrrr�9sr�c@s$eZdZdd�Zdd�Zdd�ZdS)�_MethodcCs||_||_dS)N)�
_Method__send�
_Method__name)r�sendr�rrrrRsz_Method.__init__cCst|jd|j|f�S)Nz%s.%s)r�r�r�)rr�rrrr�Usz_Method.__getattr__cGs|j|j|�S)N)r�r�)rr�rrrr�Wsz_Method.__call__N)rrrrr�r�rrrrr�Osr�c@s~eZdZdZdeZdZdZddd�Zddd	�Z	dd
d�Z
dd
�Zdd�Zdd�Z
dd�Zdd�Zdd�Zdd�Zdd�ZdS)�	Transportz1Handles an HTTP transaction to an XML-RPC server.zPython-xmlrpc/%sTNFcCs||_||_d|_g|_dS)N)NN)r��_use_builtin_types�_connection�_extra_headers)rr�r�rrrrnszTransport.__init__cCs~xxdD]p}y|j||||�Stjjk
r8|r4�Yqtk
rt}z"|sb|jtjtjtjfkrd�WYdd}~XqXqWdS)Nrr)rr)	�single_request�http�clientZRemoteDisconnectedr��errnoZ
ECONNRESETZECONNABORTEDZEPIPE)r�host�handler�request_body�verboser}�errr�request~s

zTransport.requestcCs�y6|j||||�}|j�}|jdkr4||_|j|�SWn2tk
rL�Yntk
rh|j��YnX|jdd�r~|j	�t
|||j|jt|j
����dS)N��zcontent-lengthra)�send_requestZgetresponseZstatusr��parse_responser"�	Exceptionr]�	getheaderr�r�reasonr�Z
getheaders)rr�r�r�r�Z	http_connZresprrrr��s"
zTransport.single_requestcCst|j|jd�S)N)r�r�)r�r�r�)rrrrr��szTransport.getparsercCsri}t|t�r|\}}tjj|�\}}|rdtjj|�}tj|�jd�}dj	|j
��}dd|fg}ng}|||fS)Nzutf-8raZ
AuthorizationzBasic )r+r,�urllib�parseZ	splituserZunquote_to_bytesrKrNrArdr�)rr��x509ZauthZ
extra_headersrrr�
get_host_info�s
zTransport.get_host_infocCsL|jr||jdkr|jdS|j|�\}|_}|tjj|�f|_|jdS)Nrr)r�r�r�r�r�ZHTTPConnection)rr��chostr�rrr�make_connection�s

zTransport.make_connectioncCs |j\}}|rd|_|j�dS)N)NN)r�r])rr��
connectionrrrr]�s
zTransport.closecCs�|j|�}|jdd�}|r&|jd�|jrLtrL|jd|dd�|jd
�n|jd|�|jd�|jd	|jf�|j||�|j	||�|S)NrZPOSTT)Zskip_accept_encoding�Accept-Encodingr��Content-Type�text/xmlz
User-Agent)r�r�)rr)
r�r�Zset_debuglevel�accept_gzip_encodingr�Z
putrequestrb�
user_agent�send_headers�send_content)rr�r�r��debugr�rrrrr��s



zTransport.send_requestcCs"x|D]\}}|j||�qWdS)N)�	putheader)rr�r�key�valrrrr	szTransport.send_headerscCsR|jdk	r0|jt|�kr0tr0|jdd�t|�}|jdtt|���|j|�dS)NzContent-Encodingr�zContent-Length)�encode_thresholdr�r�rr�r0Z
endheaders)rr�r�rrrrs
zTransport.send_contentcCs�t|d�r*|jdd�dkr$t|�}q.|}n|}|j�\}}x2|jd�}|sLP|jr`tdt|��|j|�q<W||k	r~|j	�|j	�|j	�S)Nr�zContent-Encodingrar�izbody:)
r2r�r�r�r�r��printrr[r])rr��streamr�r�r@rrrr�%s"


zTransport.parse_response)FF)F)F)rrrr�__version__rrr
rr�r�r�r�r�r]r�rrr�rrrrr�`s


!r�cs0eZdZdZd	dd��fdd�Zdd�Z�ZS)
�
SafeTransportz2Handles an HTTPS transaction to an XML-RPC server.FN)�contextcst�j||d�||_dS)N)r�r�)�superrr)rr�r�r)rrrrFszSafeTransport.__init__cCst|jr||jdkr|jdSttjd�s2td��|j|�\}|_}|tjj|dfd|ji|p`i��f|_|jdS)Nrr�HTTPSConnectionz1your version of http.client doesn't support HTTPSr)	r�r2r�r�r�r�r�rr)rr�r�r�rrrr�Ms

zSafeTransport.make_connection)FF)rrrrrr��
__classcell__rr)rrrCsrc@s\eZdZdZddd�dd�Zdd�Zd	d
�Zdd�ZeZd
d�Z	dd�Z
dd�Zdd�ZdS)�ServerProxya�uri [,options] -> a logical connection to an XML-RPC server

    uri is the connection point on the server, given as
    scheme://host/target.

    The standard implementation always supports the "http" scheme.  If
    SSL 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 factory
        encoding: the request encoding (default is UTF-8)

    All 8-bit strings passed to the server proxy are assumed to use
    the given encoding.
    NF)rcCs�tjj|�\}	}|	dkr td��tjj|�\|_|_|js@d|_|dkrz|	dkr^t}
d|i}nt}
i}|
f||d�|��}||_	|p�d|_
||_||_dS)	Nr��httpszunsupported XML-RPC protocolz/RPC2r)r�r�zutf-8)r�r)
r�r�Z	splittyper�Z	splithost�_ServerProxy__host�_ServerProxy__handlerrr��_ServerProxy__transport�_ServerProxy__encoding�_ServerProxy__verbose�_ServerProxy__allow_none)rZuri�	transportrYr�r`r�r�rr3r�Zextra_kwargsrrrr�s&

zServerProxy.__init__cCs|jj�dS)N)rr])rrrrZ__close�szServerProxy.__closecCsPt|||j|jd�j|jd�}|jj|j|j||jd�}t	|�dkrL|d}|S)N)rYr`�xmlcharrefreplace)r�rr)
rirrrDrr�rrrr�)rr�r�r�r�rrrZ	__request�s

zServerProxy.__requestcCsd|jj|j|jfS)Nz
<%s for %s%s>)rrrr)rrrrr �szServerProxy.__repr__cCst|j|�S)N)r��_ServerProxy__request)rr�rrrr��szServerProxy.__getattr__cCs.|dkr|jS|dkr|jStd|f��dS)z|A workaround to get special attributes on the ServerProxy
           without interfering with the magic __getattr__
        r]rzAttribute %r not foundN)�_ServerProxy__closerr\)r�attrrrrr��s
zServerProxy.__call__cCs|S)Nr)rrrr�	__enter__�szServerProxy.__enter__cGs|j�dS)N)r)rr�rrr�__exit__�szServerProxy.__exit__)NNFFFF)
rrrrrrrr rr�r�r r!rrrrrls
r�__main__zhttp://localhost:8000ZERROR�	li���li�iD���i����i���ip���iԁ��iD���iC���iB���i����i����i����i����)FF)NNNF)FF)r�)VrrK�sysr-r�decimalrZhttp.clientr�Zurllib.parser�Zxml.parsersrr�r�rr��ImportErrorr
�version_infor
rurvZPARSE_ERRORZSERVER_ERRORZAPPLICATION_ERRORZSYSTEM_ERRORZTRANSPORT_ERRORZNOT_WELLFORMED_ERRORZUNSUPPORTED_ENCODINGZINVALID_ENCODING_CHARZINVALID_XMLRPCZMETHOD_NOT_FOUNDZINVALID_METHOD_PARAMSZINTERNAL_ERRORr�rrr!r"r�r�ZBooleanZ_day0r%r'r.r/rErFrGrPr�rQr^r�r�r�r�r�r�r�r�rir�r�r�r��objectr�r�r�rrZServerrr�rZcurrentTimeZgetCurrentTimergZmultiZgetData�pow�addr�rrrr�<module>�s�



K	#!(C'
'
J

d)i
__pycache__/client.cpython-36.opt-2.pyc000064400000070632150532427440013636 0ustar003


 \\��&@sfddlZddlZddlZddlmZddlmZddlZddlZ	ddl
mZddlZddl
mZyddlZWnek
r�dZYnXdd�Zdejdd	�ZdXZdZZd[Zd\Zd]Zd^Zd_Zd`ZdaZdbZdcZddZdeZ dfZ!Gdd�de"�Z#Gdd�de#�Z$Gdd�de#�Z%Gdd�de#�Z&e'Z(Z)eddd�Z*e*j+d�dk�rFd d!�Z,n"e*j+d"�dk�r`d#d!�Z,nd$d!�Z,[*d%d&�Z-Gd'd(�d(�Z.d)d*�Z/d+d,�Z0Gd-d.�d.�Z1d/d0�Z2e.e1fZ3Gd1d2�d2�Z4Gd3d4�d4�Z5Gd5d6�d6�Z6Gd7d8�d8�Z7Gd9d:�d:�Z8Gd;d<�d<�Z9dZ:Z;Z<dgd>d?�Z=dhd@dA�Z>didBdC�Z?dDdE�Z@djdGdH�ZAGdIdJ�dJe�rTejBneC�ZDGdKdL�dL�ZEGdMdN�dN�ZFGdOdP�dPeF�ZGGdQdR�dR�ZHeHZIeJdSk�rbeHdT�ZKyeLeKjMjN��Wn.e#k
�r�ZOzeLdUeO�WYddZO[OXnXe9eK�ZPePjQ�ePjRd	dV�ePjSdd	�yxeP�D]ZTeLeT��qWWn.e#k
�r`ZOzeLdUeO�WYddZO[OXnXdS)k�N)�datetime)�Decimal)�expat)�BytesIOcCs$|jdd�}|jdd�}|jdd�S)N�&z&amp;�<z&lt;�>z&gt;)�replace)�s�r�%/usr/lib64/python3.6/xmlrpc/client.py�escape�sr
z%d.%d���i�iXi�~i�~i,~i�i�iYiZi[c@seZdZdd�ZdS)�ErrorcCst|�S)N)�repr)�selfrrr�__str__�sz
Error.__str__N)�__name__�
__module__�__qualname__rrrrrr�src@seZdZdd�Zdd�ZdS)�
ProtocolErrorcCs&tj|�||_||_||_||_dS)N)r�__init__�url�errcode�errmsg�headers)rrrrrrrrr�s

zProtocolError.__init__cCsd|jj|j|j|jfS)Nz<%s for %s: %s %s>)�	__class__rrrr)rrrr�__repr__�szProtocolError.__repr__N)rrrrrrrrrr�src@seZdZdS)�
ResponseErrorN)rrrrrrrr �sr c@seZdZdd�Zdd�ZdS)�FaultcKstj|�||_||_dS)N)rr�	faultCode�faultString)rr"r#Zextrarrrr�s
zFault.__init__cCsd|jj|j|jfS)Nz<%s %s: %r>)rrr"r#)rrrrr�szFault.__repr__N)rrrrrrrrrr!�sr!z%YZ0001cCs
|jd�S)Nz%Y%m%dT%H:%M:%S)�strftime)�valuerrr�_iso8601_format
sr&z%4YcCs
|jd�S)Nz%4Y%m%dT%H:%M:%S)r$)r%rrrr&scCs|jd�jd�S)Nz%Y%m%dT%H:%M:%S�)r$�zfill)r%rrrr&scCsLt|t�rt|�St|ttjf�s<|dkr2tj�}tj|�}d|dd�S)Nrz%04d%02d%02dT%02d:%02d:%02d�)�
isinstancerr&�tuple�timeZstruct_timeZ	localtime)r%rrr�	_strftimes

r-c@sneZdZddd�Zdd�Zdd�Zdd	�Zd
d�Zdd
�Zdd�Z	dd�Z
dd�Zdd�Zdd�Z
dd�ZdS)�DateTimercCs t|t�r||_n
t|�|_dS)N)r*�strr%r-)rr%rrrr)s
zDateTime.__init__cCs�t|t�r|j}|j}nzt|t�r2|j}t|�}n`t|t�rH|j}|}nJt|d�rd|j�}|j�}n.t|d�rv|jj	p|t
|�}td|jj	|f��||fS)N�	timetuplerzCan't compare %s and %s)r*r.r%rr&r/�hasattrr0rr�type�	TypeError)r�otherr
�oZotyperrr�make_comparable/s$






zDateTime.make_comparablecCs|j|�\}}||kS)N)r6)rr4r
r5rrr�__lt__DszDateTime.__lt__cCs|j|�\}}||kS)N)r6)rr4r
r5rrr�__le__HszDateTime.__le__cCs|j|�\}}||kS)N)r6)rr4r
r5rrr�__gt__LszDateTime.__gt__cCs|j|�\}}||kS)N)r6)rr4r
r5rrr�__ge__PszDateTime.__ge__cCs|j|�\}}||kS)N)r6)rr4r
r5rrr�__eq__TszDateTime.__eq__cCstj|jd�S)Nz%Y%m%dT%H:%M:%S)r,�strptimer%)rrrrr0XszDateTime.timetuplecCs|jS)N)r%)rrrrr`szDateTime.__str__cCsd|jj|jt|�fS)Nz<%s %r at %#x>)rrr%�id)rrrrrcszDateTime.__repr__cCst|�j�|_dS)N)r/�stripr%)r�datarrr�decodefszDateTime.decodecCs$|jd�|j|j�|jd�dS)Nz<value><dateTime.iso8601>z</dateTime.iso8601></value>
)�writer%)r�outrrr�encodeis
zDateTime.encodeN)r)rrrrr6r7r8r9r:r;r0rrr@rCrrrrr.#s
r.cCst�}|j|�|S)N)r.r@)r?r%rrr�	_datetimens
rDcCstj|d�S)Nz%Y%m%dT%H:%M:%S)rr<)r?rrr�_datetime_typetsrEc@s6eZdZddd�Zdd�Zdd�Zdd	�Zd
d�ZdS)
�BinaryNcCs>|dkrd}n&t|ttf�s,td|jj��t|�}||_dS)N�z#expected bytes or bytearray, not %s)r*�bytes�	bytearrayr3rrr?)rr?rrrr�szBinary.__init__cCst|jd�S)Nzlatin-1)r/r?)rrrrr�szBinary.__str__cCst|t�r|j}|j|kS)N)r*rFr?)rr4rrrr;�s
z
Binary.__eq__cCstj|�|_dS)N)�base64�decodebytesr?)rr?rrrr@�sz
Binary.decodecCs4|jd�tj|j�}|j|jd��|jd�dS)Nz<value><base64>
�asciiz</base64></value>
)rArJ�encodebytesr?r@)rrB�encodedrrrrC�s
z
Binary.encode)N)rrrrrr;r@rCrrrrrF}s

rFcCst�}|j|�|S)N)rFr@)r?r%rrr�_binary�s
rOc@s$eZdZdd�Zdd�Zdd�ZdS)�ExpatParsercCsDtjdd�|_}||_|j|_|j|_|j|_	d}|j
|d�dS)N)rZParserCreate�_parser�_target�startZStartElementHandler�endZEndElementHandlerr?ZCharacterDataHandler�xml)r�target�parser�encodingrrrr�szExpatParser.__init__cCs|jj|d�dS)Nr)rQ�Parse)rr?rrr�feed�szExpatParser.feedcCs8y
|j}Wntk
rYnX|`|`|jdd�dS)NrGT)rQ�AttributeErrorrRrY)rrWrrr�close�s
zExpatParser.closeN)rrrrrZr\rrrrrP�s	rPc@s�eZdZddd�ZiZdd�Zdd�Zd	d
�Zeeed�<dd�Z	e	ee
<d
d�Zeee<eZ
dd�Zeee<efdd�Zeee<dd�Zeee<eee<dd�Zeee<eee<efdd�Zeee<dd�Zeee<dd�Zeee<eee<eed<dS)�
MarshallerNFcCsi|_d|_||_||_dS)N)�memor?rX�
allow_none)rrXr_rrrr�szMarshaller.__init__cCs�g}|j}|j}t|t�r@|d�||j|jd�|�|d�n8|d�x&|D]}|d�|||�|d�qNW|d�dj|�}|S)	Nz<fault>
)r"r#z	</fault>
z	<params>
z<param>
z	</param>
z
</params>
�)�append�_Marshaller__dumpr*r!r"r#�join)r�valuesrBrA�dump�v�resultrrr�dumps�s"




zMarshaller.dumpscCs�y|jt|�}Wnjtk
r|t|d�s<tdt|���x0t|�jD]"}||jj�krHtdt|���qHW|jd}YnX||||�dS)N�__dict__zcannot marshal %s objects�_arbitrary_instance)�dispatchr2�KeyErrorr1r3�__mro__�keys)rr%rA�fZtype_rrrZ__dump�s
zMarshaller.__dumpcCs|jstd��|d�dS)Nz0cannot marshal None unless allow_none is enabledz<value><nil/></value>)r_r3)rr%rArrr�dump_nilszMarshaller.dump_nilcCs$|d�||rdpd�|d�dS)Nz<value><boolean>�1�0z</boolean></value>
r)rr%rArrr�	dump_boolszMarshaller.dump_boolcCs<|tks|tkrtd��|d�|tt|���|d�dS)Nzint exceeds XML-RPC limitsz<value><int>z</int></value>
)�MAXINT�MININT�
OverflowErrorr/�int)rr%rArrr�	dump_longs
zMarshaller.dump_longcCs |d�|t|��|d�dS)Nz<value><double>z</double></value>
)r)rr%rArrr�dump_double%szMarshaller.dump_doublecCs |d�|||��|d�dS)Nz<value><string>z</string></value>
r)rr%rAr
rrr�dump_unicode+szMarshaller.dump_unicodecCs,|d�tj|�}||jd��|d�dS)Nz<value><base64>
rLz</base64></value>
)rJrMr@)rr%rArNrrr�
dump_bytes1s
zMarshaller.dump_bytescCs^t|�}||jkrtd��d|j|<|j}|d�x|D]}|||�q8W|d�|j|=dS)Nz"cannot marshal recursive sequencesz<value><array><data>
z</data></array></value>
)r=r^r3rb)rr%rA�irerfrrr�
dump_array9s


zMarshaller.dump_arraycCs�t|�}||jkrtd��d|j|<|j}|d�xP|j�D]D\}}|d�t|t�s^td��|d||��|||�|d�q<W|d�|j|=dS)Nz%cannot marshal recursive dictionariesz<value><struct>
z	<member>
zdictionary key must be stringz<name>%s</name>
z
</member>
z</struct></value>
)r=r^r3rb�itemsr*r/)rr%rAr
r|re�krfrrr�dump_structGs



zMarshaller.dump_structcCs |d�|t|��|d�dS)Nz<value><dateTime.iso8601>z</dateTime.iso8601></value>
)r-)rr%rArrr�
dump_datetimeYszMarshaller.dump_datetimecCs2|jtkr ||_|j|�|`n|j|j|�dS)N)r�WRAPPERSrArCr�ri)rr%rArrr�
dump_instance_s


zMarshaller.dump_instancerj)NF) rrrrrkrhrbrpr2rs�boolrxrwZdump_intry�floatr
rzr/r{rHrIr}r+�listr��dictr�rr�r.rFrrrrr]�s:
	r]c@sjeZdZdDdd�Zdd�Zdd�Zdd	�Zd
d�Zdd
�Zdd�Z	dd�Z
iZdd�Zeed<dd�Z
e
ed<dd�Zeed<eed<eed<eed<eed<eed<d d!�Zeed"<eed#<d$d%�Zeed&<d'd(�Zeed)<eed*<d+d,�Zeed-<d.d/�Zeed0<d1d2�Zeed3<d4d5�Zeed6<d7d8�Zeed9<d:d;�Zeed<<d=d>�Zeed?<d@dA�ZeedB<dCS)E�UnmarshallerFcCsHd|_g|_g|_g|_d|_d|_d|_|jj|_|p:||_||_	dS)NFzutf-8)
�_type�_stack�_marks�_data�_value�_methodname�	_encodingra�
_use_datetime�
_use_bytes)r�use_datetime�use_builtin_typesrrrrs

zUnmarshaller.__init__cCs:|jdks|jrt��|jdkr0tf|jd��t|j�S)N�faultr)r�r�r r!r�r+)rrrrr\�s

zUnmarshaller.closecCs|jS)N)r�)rrrr�
getmethodname�szUnmarshaller.getmethodnamecCs
||_dS)N)r�)rrXZ
standalonerrrrU�szUnmarshaller.xmlcCshd|kr|jd�d}|dks&|dkr8|jjt|j��g|_|jrZ||jkrZtd|��|dk|_dS)N�:r�array�structzunknown tag %rr%���)	�splitr�ra�lenr�r�r�rkr )r�tagZattrsrrrrS�szUnmarshaller.startcCs|jj|�dS)N)r�ra)r�textrrrr?�szUnmarshaller.datacCspy|j|}WnNtk
r\d|kr*dSy|j|jd�d}Wntk
rVdSXYnX||dj|j��S)Nr�rr`r�)rkrlr�rcr�)rr�rorrrrT�szUnmarshaller.endcCshy|j|}WnNtk
r\d|kr*dSy|j|jd�d}Wntk
rVdSXYnX|||�S)Nr�rr�)rkrlr�)rr�r?rorrr�end_dispatch�szUnmarshaller.end_dispatchcCs|jd�d|_dS)Nr)rar�)rr?rrr�end_nil�s
zUnmarshaller.end_nilZnilcCs:|dkr|jd�n|dkr(|jd�ntd��d|_dS)NrrFrqTzbad boolean valuer)rar3r�)rr?rrr�end_boolean�szUnmarshaller.end_boolean�booleancCs|jt|��d|_dS)Nr)rarwr�)rr?rrr�end_int�szUnmarshaller.end_intZi1Zi2Zi4Zi8rwZ
bigintegercCs|jt|��d|_dS)Nr)rar�r�)rr?rrr�
end_double�szUnmarshaller.end_doubleZdoubler�cCs|jt|��d|_dS)Nr)rarr�)rr?rrr�end_bigdecimal�szUnmarshaller.end_bigdecimalZ
bigdecimalcCs&|jr|j|j�}|j|�d|_dS)Nr)r�r@rar�)rr?rrr�
end_string�s
zUnmarshaller.end_string�string�namecCs.|jj�}|j|d�g|j|d�<d|_dS)Nr)r��popr�r�)rr?�markrrr�	end_array�s
zUnmarshaller.end_arrayr�cCsd|jj�}i}|j|d�}x,tdt|�d�D]}||d|||<q.W|g|j|d�<d|_dS)Nrrr)r�r�r��ranger�r�)rr?r�r�r~r|rrr�
end_structs
zUnmarshaller.end_structr�cCs6t�}|j|jd��|jr"|j}|j|�d|_dS)NrLr)rFr@rCr�r?rar�)rr?r%rrr�
end_base64s
zUnmarshaller.end_base64rJcCs,t�}|j|�|jrt|�}|j|�dS)N)r.r@r�rEra)rr?r%rrr�end_dateTimes

zUnmarshaller.end_dateTimezdateTime.iso8601cCs|jr|j|�dS)N)r�r�)rr?rrr�	end_valueszUnmarshaller.end_valuer%cCs
d|_dS)N�params)r�)rr?rrr�
end_params#szUnmarshaller.end_paramsr�cCs
d|_dS)Nr�)r�)rr?rrr�	end_fault'szUnmarshaller.end_faultr�cCs"|jr|j|j�}||_d|_dS)N�
methodName)r�r@r�r�)rr?rrr�end_methodName+szUnmarshaller.end_methodNamer�N)FF)rrrrr\r�rUrSr?rTr�rkr�r�r�r�r�r�r�r�r�r�r�r�r�r�rrrrr�ssX
	r�c@s$eZdZdd�Zdd�Zdd�ZdS)�_MultiCallMethodcCs||_||_dS)N)�_MultiCallMethod__call_list�_MultiCallMethod__name)rZ	call_listr�rrrr8sz_MultiCallMethod.__init__cCst|jd|j|f�S)Nz%s.%s)r�r�r�)rr�rrr�__getattr__;sz_MultiCallMethod.__getattr__cGs|jj|j|f�dS)N)r�rar�)r�argsrrr�__call__=sz_MultiCallMethod.__call__N)rrrrr�r�rrrrr�5sr�c@seZdZdd�Zdd�ZdS)�MultiCallIteratorcCs
||_dS)N)�results)rr�rrrrDszMultiCallIterator.__init__cCsR|j|}t|�ti�kr.t|d|d��n t|�tg�krF|dStd��dS)Nr"r#rz#unexpected type in multicall result)r�r2r!�
ValueError)rr|�itemrrr�__getitem__Gs
zMultiCallIterator.__getitem__N)rrrrr�rrrrr�@sr�c@s0eZdZdd�Zdd�ZeZdd�Zdd�Zd	S)
�	MultiCallcCs||_g|_dS)N)�_MultiCall__server�_MultiCall__call_list)r�serverrrrraszMultiCall.__init__cCsd|jjt|�fS)Nz<%s at %#x>)rrr=)rrrrreszMultiCall.__repr__cCst|j|�S)N)r�r�)rr�rrrr�jszMultiCall.__getattr__cCs:g}x"|jD]\}}|j||d��qWt|jjj|��S)N)r�r�)r�rar�r��systemZ	multicall)rZmarshalled_listr�r�rrrr�mszMultiCall.__call__N)rrrrrrr�r�rrrrr�Ps
r�FcCsrtrHtrH|rt}tj}n|r&t}t}nt}t}tdd||t�}t|�}n"t||d�}trbt|�}nt	|�}||fS)NTF)r�r�)
�
FastParser�FastUnmarshallerrErJrKrOrDr!r�rP)r�r�Z
mkdatetimeZmkbytesrVrWrrr�	getparsers 

r�cCs�t|t�rd}n|rt|t�r|s&d}tr4t|�}n
t||�}|j|�}|dkr^dt|�}nd}|rx|d|d|df}n|r�|d|d	f}n|Sd
j|�S)Nrzutf-8z$<?xml version='1.0' encoding='%s'?>
z<?xml version='1.0'?>
z<methodCall>
<methodName>z</methodName>
z</methodCall>
z<methodResponse>
z</methodResponse>
r`)r*r!r+�FastMarshallerr]rhr/rc)r��
methodnameZmethodresponserXr_�mr?Z	xmlheaderrrrrh�s2



rhcCs2t||d�\}}|j|�|j�|j�|j�fS)N)r�r�)r�rZr\r�)r?r�r��p�urrr�loads�s	
r�c	Cs<tst�t�}tjd|dd��}|j|�WdQRX|j�S)N�wbr)�mode�fileobjZ
compresslevel)�gzip�NotImplementedErrorr�GzipFilerA�getvalue)r?ro�gzfrrr�gzip_encodesr��@cCs�tst�tjdt|�d��H}y$|dkr0|j�}n|j|d�}Wntk
r\td��YnXWdQRX|dkr�t|�|kr�td��|S)N�rb)r�r�rrzinvalid dataz#max gzipped payload length exceeded)r�r�r�r�read�OSErrorr�r�)r?Z
max_decoder�Zdecodedrrr�gzip_decodes
r�c@seZdZdd�Zdd�ZdS)�GzipDecodedResponsecCs.tst�t|j��|_tjj|d|jd�dS)Nr�)r�r�)r�r�rr��ior�r)r�responserrrr=szGzipDecodedResponse.__init__c
Cs"ztjj|�Wd|jj�XdS)N)r�r�r\r�)rrrrr\EszGzipDecodedResponse.closeN)rrrrr\rrrrr�9sr�c@s$eZdZdd�Zdd�Zdd�ZdS)�_MethodcCs||_||_dS)N)�
_Method__send�
_Method__name)r�sendr�rrrrRsz_Method.__init__cCst|jd|j|f�S)Nz%s.%s)r�r�r�)rr�rrrr�Usz_Method.__getattr__cGs|j|j|�S)N)r�r�)rr�rrrr�Wsz_Method.__call__N)rrrrr�r�rrrrr�Osr�c@szeZdZdeZdZdZddd�Zddd�Zdd	d
�Z	dd�Z
d
d�Zdd�Zdd�Z
dd�Zdd�Zdd�Zdd�ZdS)�	TransportzPython-xmlrpc/%sTNFcCs||_||_d|_g|_dS)N)NN)r��_use_builtin_types�_connection�_extra_headers)rr�r�rrrrnszTransport.__init__cCs~xxdD]p}y|j||||�Stjjk
r8|r4�Yqtk
rt}z"|sb|jtjtjtjfkrd�WYdd}~XqXqWdS)Nrr)rr)	�single_request�http�clientZRemoteDisconnectedr��errnoZ
ECONNRESETZECONNABORTEDZEPIPE)r�host�handler�request_body�verboser|�errr�request~s

zTransport.requestcCs�y6|j||||�}|j�}|jdkr4||_|j|�SWn2tk
rL�Yntk
rh|j��YnX|jdd�r~|j	�t
|||j|jt|j
����dS)N��zcontent-lengthr`)�send_requestZgetresponseZstatusr��parse_responser!�	Exceptionr\�	getheaderr�r�reasonr�Z
getheaders)rr�r�r�r�Z	http_connZresprrrr��s"
zTransport.single_requestcCst|j|jd�S)N)r�r�)r�r�r�)rrrrr��szTransport.getparsercCsri}t|t�r|\}}tjj|�\}}|rdtjj|�}tj|�jd�}dj	|j
��}dd|fg}ng}|||fS)Nzutf-8r`Z
AuthorizationzBasic )r*r+�urllib�parseZ	splituserZunquote_to_bytesrJrMr@rcr�)rr��x509ZauthZ
extra_headersrrr�
get_host_info�s
zTransport.get_host_infocCsL|jr||jdkr|jdS|j|�\}|_}|tjj|�f|_|jdS)Nrr)r�r�r�r�r�ZHTTPConnection)rr��chostr�rrr�make_connection�s

zTransport.make_connectioncCs |j\}}|rd|_|j�dS)N)NN)r�r\)rr��
connectionrrrr\�s
zTransport.closecCs�|j|�}|jdd�}|r&|jd�|jrLtrL|jd|dd�|jd
�n|jd|�|jd�|jd	|jf�|j||�|j	||�|S)NrZPOSTT)Zskip_accept_encoding�Accept-Encodingr��Content-Type�text/xmlz
User-Agent)r�r�)r�r)
r�r�Zset_debuglevel�accept_gzip_encodingr�Z
putrequestra�
user_agent�send_headers�send_content)rr�r�r��debugr�rrrrr��s



zTransport.send_requestcCs"x|D]\}}|j||�qWdS)N)�	putheader)rr�r�key�valrrrr	szTransport.send_headerscCsR|jdk	r0|jt|�kr0tr0|jdd�t|�}|jdtt|���|j|�dS)NzContent-Encodingr�zContent-Length)�encode_thresholdr�r�rr�r/Z
endheaders)rr�r�rrrrs
zTransport.send_contentcCs�t|d�r*|jdd�dkr$t|�}q.|}n|}|j�\}}x2|jd�}|sLP|jr`tdt|��|j|�q<W||k	r~|j	�|j	�|j	�S)Nr�zContent-Encodingr`r�izbody:)
r1r�r�r�r�r��printrrZr\)rr��streamr�r�r?rrrr�%s"


zTransport.parse_response)FF)F)F)rrr�__version__rrr	rr�r�r�r�r�r\r�rrr�rrrrr�`s


!r�cs,eZdZddd��fdd�Zdd�Z�ZS)	�
SafeTransportFN)�contextcst�j||d�||_dS)N)r�r�)�superrr)rr�r�r)rrrrFszSafeTransport.__init__cCst|jr||jdkr|jdSttjd�s2td��|j|�\}|_}|tjj|dfd|ji|p`i��f|_|jdS)Nrr�HTTPSConnectionz1your version of http.client doesn't support HTTPSr)	r�r1r�r�r�r�r�rr)rr�r�r�rrrr�Ms

zSafeTransport.make_connection)FF)rrrrr��
__classcell__rr)rrr
Csr
c@sXeZdZddd�dd�Zdd�Zdd	�Zd
d�ZeZdd
�Zdd�Z	dd�Z
dd�ZdS)�ServerProxyNF)rcCs�tjj|�\}	}|	dkr td��tjj|�\|_|_|js@d|_|dkrz|	dkr^t}
d|i}nt}
i}|
f||d�|��}||_	|p�d|_
||_||_dS)	Nr��httpszunsupported XML-RPC protocolz/RPC2r)r�r�zutf-8)r�r)
r�r�Z	splittyper�Z	splithost�_ServerProxy__host�_ServerProxy__handlerr
r��_ServerProxy__transport�_ServerProxy__encoding�_ServerProxy__verbose�_ServerProxy__allow_none)rZuri�	transportrXr�r_r�r�rr2r�Zextra_kwargsrrrr�s&

zServerProxy.__init__cCs|jj�dS)N)rr\)rrrrZ__close�szServerProxy.__closecCsPt|||j|jd�j|jd�}|jj|j|j||jd�}t	|�dkrL|d}|S)N)rXr_�xmlcharrefreplace)r�rr)
rhrrrCrr�rrrr�)rr�r�r�r�rrrZ	__request�s

zServerProxy.__requestcCsd|jj|j|jfS)Nz
<%s for %s%s>)rrrr)rrrrr�szServerProxy.__repr__cCst|j|�S)N)r��_ServerProxy__request)rr�rrrr��szServerProxy.__getattr__cCs.|dkr|jS|dkr|jStd|f��dS)Nr\rzAttribute %r not found)�_ServerProxy__closerr[)r�attrrrrr��s
zServerProxy.__call__cCs|S)Nr)rrrr�	__enter__�szServerProxy.__enter__cGs|j�dS)N)r)rr�rrr�__exit__�szServerProxy.__exit__)NNFFFF)rrrrrrrrr�r�rr rrrrrls
r�__main__zhttp://localhost:8000ZERROR�	li���li�iD���i����i���ip���iԁ��iD���iC���iB���i����i����i����i����)FF)NNNF)FF)r�)UrJ�sysr,r�decimalrZhttp.clientr�Zurllib.parser�Zxml.parsersrr�r�rr��ImportErrorr
�version_inforrtruZPARSE_ERRORZSERVER_ERRORZAPPLICATION_ERRORZSYSTEM_ERRORZTRANSPORT_ERRORZNOT_WELLFORMED_ERRORZUNSUPPORTED_ENCODINGZINVALID_ENCODING_CHARZINVALID_XMLRPCZMETHOD_NOT_FOUNDZINVALID_METHOD_PARAMSZINTERNAL_ERRORr�rrr r!r�r�ZBooleanZ_day0r$r&r-r.rDrErFrOr�rPr]r�r�r�r�r�r�r�r�rhr�r�r�r��objectr�r�r�r
rZServerrr�r
ZcurrentTimeZgetCurrentTimerfZmultiZgetData�pow�addr�rrrr�<module>�s�



K	#!(C'
'
J

d)i
__pycache__/__init__.cpython-36.opt-2.pyc000064400000000172150532427440014107 0ustar003


 \&�@sdS)N�rrr�'/usr/lib64/python3.6/xmlrpc/__init__.py�<module>s__pycache__/__init__.cpython-36.pyc000064400000000172150532427440013147 0ustar003


 \&�@sdS)N�rrr�'/usr/lib64/python3.6/xmlrpc/__init__.py�<module>s__pycache__/client.cpython-36.pyc000064400000103551150532427440012673 0ustar003


 \\��&@sjdZddlZddlZddlZddlmZddlmZddlZddl	Z
ddlmZddl
Z
ddlmZyddlZWnek
r�dZYnXdd�Zd	ejdd
�ZdYZd[Zd\Zd]Zd^Zd_Zd`ZdaZdbZdcZddZdeZ dfZ!dgZ"Gdd�de#�Z$Gdd�de$�Z%Gdd�de$�Z&Gdd�de$�Z'e(Z)Z*eddd�Z+e+j,d�d k�rJd!d"�Z-n"e+j,d#�d k�rdd$d"�Z-nd%d"�Z-[+d&d'�Z.Gd(d)�d)�Z/d*d+�Z0d,d-�Z1Gd.d/�d/�Z2d0d1�Z3e/e2fZ4Gd2d3�d3�Z5Gd4d5�d5�Z6Gd6d7�d7�Z7Gd8d9�d9�Z8Gd:d;�d;�Z9Gd<d=�d=�Z:dZ;Z<Z=dhd?d@�Z>didAdB�Z?djdCdD�Z@dEdF�ZAdkdHdI�ZBGdJdK�dKe�rXejCneD�ZEGdLdM�dM�ZFGdNdO�dO�ZGGdPdQ�dQeG�ZHGdRdS�dS�ZIeIZJeKdTk�rfeIdU�ZLyeMeLjNjO��Wn.e$k
�r�ZPzeMdVeP�WYddZP[PXnXe:eL�ZQeQjR�eQjSd
dW�eQjTdd
�yxeQ�D]ZUeMeU��q"WWn.e$k
�rdZPzeMdVeP�WYddZP[PXnXdS)la�
An XML-RPC client interface for Python.

The marshalling and response parser code can also be used to
implement XML-RPC servers.

Exported exceptions:

  Error          Base class for client errors
  ProtocolError  Indicates an HTTP protocol error
  ResponseError  Indicates a broken response package
  Fault          Indicates an XML-RPC fault package

Exported classes:

  ServerProxy    Represents a logical connection to an XML-RPC server

  MultiCall      Executor of boxcared xmlrpc requests
  DateTime       dateTime wrapper for an ISO 8601 string or time tuple or
                 localtime integer value to generate a "dateTime.iso8601"
                 XML-RPC value
  Binary         binary data wrapper

  Marshaller     Generate an XML-RPC params chunk from a Python data structure
  Unmarshaller   Unmarshal an XML-RPC response from incoming XML event message
  Transport      Handles an HTTP transaction to an XML-RPC server
  SafeTransport  Handles an HTTPS transaction to an XML-RPC server

Exported constants:

  (none)

Exported functions:

  getparser      Create instance of the fastest available parser & attach
                 to an unmarshalling object
  dumps          Convert an argument tuple or a Fault instance to an XML-RPC
                 request (or response, if the methodresponse option is used).
  loads          Convert an XML-RPC packet to unmarshalled data plus a method
                 name (None if not present).
�N)�datetime)�Decimal)�expat)�BytesIOcCs$|jdd�}|jdd�}|jdd�S)N�&z&amp;�<z&lt;�>z&gt;)�replace)�s�r�%/usr/lib64/python3.6/xmlrpc/client.py�escape�sr
z%d.%d���i�iXi�~i�~i,~i�i�iYiZi[c@seZdZdZdd�ZdS)�ErrorzBase class for client errors.cCst|�S)N)�repr)�selfrrr�__str__�sz
Error.__str__N)�__name__�
__module__�__qualname__�__doc__rrrrrr�src@s eZdZdZdd�Zdd�ZdS)�
ProtocolErrorz!Indicates an HTTP protocol error.cCs&tj|�||_||_||_||_dS)N)r�__init__�url�errcode�errmsg�headers)rrrrrrrrr�s

zProtocolError.__init__cCsd|jj|j|j|jfS)Nz<%s for %s: %s %s>)�	__class__rrrr)rrrr�__repr__�szProtocolError.__repr__N)rrrrrr rrrrr�src@seZdZdZdS)�
ResponseErrorz$Indicates a broken response package.N)rrrrrrrrr!�sr!c@s eZdZdZdd�Zdd�ZdS)�Faultz#Indicates an XML-RPC fault package.cKstj|�||_||_dS)N)rr�	faultCode�faultString)rr#r$Zextrarrrr�s
zFault.__init__cCsd|jj|j|jfS)Nz<%s %s: %r>)rrr#r$)rrrrr �szFault.__repr__N)rrrrrr rrrrr"�sr"z%YZ0001cCs
|jd�S)Nz%Y%m%dT%H:%M:%S)�strftime)�valuerrr�_iso8601_format
sr'z%4YcCs
|jd�S)Nz%4Y%m%dT%H:%M:%S)r%)r&rrrr'scCs|jd�jd�S)Nz%Y%m%dT%H:%M:%S�)r%�zfill)r&rrrr'scCsLt|t�rt|�St|ttjf�s<|dkr2tj�}tj|�}d|dd�S)Nrz%04d%02d%02dT%02d:%02d:%02d�)�
isinstancerr'�tuple�timeZstruct_timeZ	localtime)r&rrr�	_strftimes

r.c@sreZdZdZddd�Zdd�Zdd�Zd	d
�Zdd�Zd
d�Z	dd�Z
dd�Zdd�Zdd�Z
dd�Zdd�ZdS)�DateTimez�DateTime wrapper for an ISO 8601 string or time tuple or
    localtime integer value to generate 'dateTime.iso8601' XML-RPC
    value.
    rcCs t|t�r||_n
t|�|_dS)N)r+�strr&r.)rr&rrrr)s
zDateTime.__init__cCs�t|t�r|j}|j}nzt|t�r2|j}t|�}n`t|t�rH|j}|}nJt|d�rd|j�}|j�}n.t|d�rv|jj	p|t
|�}td|jj	|f��||fS)N�	timetuplerzCan't compare %s and %s)r+r/r&rr'r0�hasattrr1rr�type�	TypeError)r�otherr
�oZotyperrr�make_comparable/s$






zDateTime.make_comparablecCs|j|�\}}||kS)N)r7)rr5r
r6rrr�__lt__DszDateTime.__lt__cCs|j|�\}}||kS)N)r7)rr5r
r6rrr�__le__HszDateTime.__le__cCs|j|�\}}||kS)N)r7)rr5r
r6rrr�__gt__LszDateTime.__gt__cCs|j|�\}}||kS)N)r7)rr5r
r6rrr�__ge__PszDateTime.__ge__cCs|j|�\}}||kS)N)r7)rr5r
r6rrr�__eq__TszDateTime.__eq__cCstj|jd�S)Nz%Y%m%dT%H:%M:%S)r-�strptimer&)rrrrr1XszDateTime.timetuplecCs|jS)N)r&)rrrrr`szDateTime.__str__cCsd|jj|jt|�fS)Nz<%s %r at %#x>)rrr&�id)rrrrr cszDateTime.__repr__cCst|�j�|_dS)N)r0�stripr&)r�datarrr�decodefszDateTime.decodecCs$|jd�|j|j�|jd�dS)Nz<value><dateTime.iso8601>z</dateTime.iso8601></value>
)�writer&)r�outrrr�encodeis
zDateTime.encodeN)r)rrrrrr7r8r9r:r;r<r1rr rArDrrrrr/#s
r/cCst�}|j|�|S)N)r/rA)r@r&rrr�	_datetimens
rEcCstj|d�S)Nz%Y%m%dT%H:%M:%S)rr=)r@rrr�_datetime_typetsrFc@s:eZdZdZd
dd�Zdd�Zdd�Zd	d
�Zdd�ZdS)�BinaryzWrapper for binary data.NcCs>|dkrd}n&t|ttf�s,td|jj��t|�}||_dS)N�z#expected bytes or bytearray, not %s)r+�bytes�	bytearrayr4rrr@)rr@rrrr�szBinary.__init__cCst|jd�S)Nzlatin-1)r0r@)rrrrr�szBinary.__str__cCst|t�r|j}|j|kS)N)r+rGr@)rr5rrrr<�s
z
Binary.__eq__cCstj|�|_dS)N)�base64�decodebytesr@)rr@rrrrA�sz
Binary.decodecCs4|jd�tj|j�}|j|jd��|jd�dS)Nz<value><base64>
�asciiz</base64></value>
)rBrK�encodebytesr@rA)rrC�encodedrrrrD�s
z
Binary.encode)N)	rrrrrrr<rArDrrrrrG}s
rGcCst�}|j|�|S)N)rGrA)r@r&rrr�_binary�s
rPc@s$eZdZdd�Zdd�Zdd�ZdS)�ExpatParsercCsDtjdd�|_}||_|j|_|j|_|j|_	d}|j
|d�dS)N)rZParserCreate�_parser�_target�startZStartElementHandler�endZEndElementHandlerr@ZCharacterDataHandler�xml)r�target�parser�encodingrrrr�szExpatParser.__init__cCs|jj|d�dS)Nr)rR�Parse)rr@rrr�feed�szExpatParser.feedcCs8y
|j}Wntk
rYnX|`|`|jdd�dS)NrHT)rR�AttributeErrorrSrZ)rrXrrr�close�s
zExpatParser.closeN)rrrrr[r]rrrrrQ�s	rQc@s�eZdZdZddd�ZiZdd�Zdd	�Zd
d�Zeee	d�<dd
�Z
e
ee<dd�Zeee
<eZdd�Zeee<efdd�Zeee<dd�Zeee<eee<dd�Zeee<eee<efdd�Zeee<dd�Zeee<dd�Zeee<eee <eed<dS) �
MarshalleravGenerate an XML-RPC params chunk from a Python data structure.

    Create a Marshaller instance for each set of parameters, and use
    the "dumps" method to convert your data (represented as a tuple)
    to an XML-RPC params chunk.  To write a fault response, pass a
    Fault instance instead.  You may prefer to use the "dumps" module
    function for this purpose.
    NFcCsi|_d|_||_||_dS)N)�memor@rY�
allow_none)rrYr`rrrr�szMarshaller.__init__cCs�g}|j}|j}t|t�r@|d�||j|jd�|�|d�n8|d�x&|D]}|d�|||�|d�qNW|d�dj|�}|S)	Nz<fault>
)r#r$z	</fault>
z	<params>
z<param>
z	</param>
z
</params>
�)�append�_Marshaller__dumpr+r"r#r$�join)r�valuesrCrB�dump�v�resultrrr�dumps�s"




zMarshaller.dumpscCs�y|jt|�}Wnjtk
r|t|d�s<tdt|���x0t|�jD]"}||jj�krHtdt|���qHW|jd}YnX||||�dS)N�__dict__zcannot marshal %s objects�_arbitrary_instance)�dispatchr3�KeyErrorr2r4�__mro__�keys)rr&rB�fZtype_rrrZ__dump�s
zMarshaller.__dumpcCs|jstd��|d�dS)Nz0cannot marshal None unless allow_none is enabledz<value><nil/></value>)r`r4)rr&rBrrr�dump_nilszMarshaller.dump_nilcCs$|d�||rdpd�|d�dS)Nz<value><boolean>�1�0z</boolean></value>
r)rr&rBrrr�	dump_boolszMarshaller.dump_boolcCs<|tks|tkrtd��|d�|tt|���|d�dS)Nzint exceeds XML-RPC limitsz<value><int>z</int></value>
)�MAXINT�MININT�
OverflowErrorr0�int)rr&rBrrr�	dump_longs
zMarshaller.dump_longcCs |d�|t|��|d�dS)Nz<value><double>z</double></value>
)r)rr&rBrrr�dump_double%szMarshaller.dump_doublecCs |d�|||��|d�dS)Nz<value><string>z</string></value>
r)rr&rBr
rrr�dump_unicode+szMarshaller.dump_unicodecCs,|d�tj|�}||jd��|d�dS)Nz<value><base64>
rMz</base64></value>
)rKrNrA)rr&rBrOrrr�
dump_bytes1s
zMarshaller.dump_bytescCs^t|�}||jkrtd��d|j|<|j}|d�x|D]}|||�q8W|d�|j|=dS)Nz"cannot marshal recursive sequencesz<value><array><data>
z</data></array></value>
)r>r_r4rc)rr&rB�irfrgrrr�
dump_array9s


zMarshaller.dump_arraycCs�t|�}||jkrtd��d|j|<|j}|d�xP|j�D]D\}}|d�t|t�s^td��|d||��|||�|d�q<W|d�|j|=dS)Nz%cannot marshal recursive dictionariesz<value><struct>
z	<member>
zdictionary key must be stringz<name>%s</name>
z
</member>
z</struct></value>
)r>r_r4rc�itemsr+r0)rr&rBr
r}rf�krgrrr�dump_structGs



zMarshaller.dump_structcCs |d�|t|��|d�dS)Nz<value><dateTime.iso8601>z</dateTime.iso8601></value>
)r.)rr&rBrrr�
dump_datetimeYszMarshaller.dump_datetimecCs2|jtkr ||_|j|�|`n|j|j|�dS)N)r�WRAPPERSrBrDr�rj)rr&rBrrr�
dump_instance_s


zMarshaller.dump_instancerk)NF)!rrrrrrlrircrqr3rt�boolryrxZdump_intrz�floatr
r{r0r|rIrJr~r,�listr��dictr�rr�r/rGrrrrr^�s<
	r^c@sneZdZdZdEdd�Zdd�Zdd�Zd	d
�Zdd�Zd
d�Z	dd�Z
dd�ZiZdd�Z
e
ed<dd�Zeed<dd�Zeed<eed<eed<eed<eed<eed <d!d"�Zeed#<eed$<d%d&�Zeed'<d(d)�Zeed*<eed+<d,d-�Zeed.<d/d0�Zeed1<d2d3�Zeed4<d5d6�Zeed7<d8d9�Zeed:<d;d<�Zeed=<d>d?�Zeed@<dAdB�ZeedC<dDS)F�UnmarshalleraUnmarshal an XML-RPC response, based on incoming XML event
    messages (start, data, end).  Call close() to get the resulting
    data structure.

    Note that this reader is fairly tolerant, and gladly accepts bogus
    XML-RPC data without complaining (but not bogus XML).
    FcCsHd|_g|_g|_g|_d|_d|_d|_|jj|_|p:||_||_	dS)NFzutf-8)
�_type�_stack�_marks�_data�_value�_methodname�	_encodingrb�
_use_datetime�
_use_bytes)r�use_datetime�use_builtin_typesrrrrs

zUnmarshaller.__init__cCs:|jdks|jrt��|jdkr0tf|jd��t|j�S)N�faultr)r�r�r!r"r�r,)rrrrr]�s

zUnmarshaller.closecCs|jS)N)r�)rrrr�
getmethodname�szUnmarshaller.getmethodnamecCs
||_dS)N)r�)rrYZ
standalonerrrrV�szUnmarshaller.xmlcCshd|kr|jd�d}|dks&|dkr8|jjt|j��g|_|jrZ||jkrZtd|��|dk|_dS)N�:r�array�structzunknown tag %rr&���)	�splitr�rb�lenr�r�r�rlr!)r�tagZattrsrrrrT�szUnmarshaller.startcCs|jj|�dS)N)r�rb)r�textrrrr@�szUnmarshaller.datacCspy|j|}WnNtk
r\d|kr*dSy|j|jd�d}Wntk
rVdSXYnX||dj|j��S)Nr�rrar�)rlrmr�rdr�)rr�rprrrrU�szUnmarshaller.endcCshy|j|}WnNtk
r\d|kr*dSy|j|jd�d}Wntk
rVdSXYnX|||�S)Nr�rr�)rlrmr�)rr�r@rprrr�end_dispatch�szUnmarshaller.end_dispatchcCs|jd�d|_dS)Nr)rbr�)rr@rrr�end_nil�s
zUnmarshaller.end_nilZnilcCs:|dkr|jd�n|dkr(|jd�ntd��d|_dS)NrsFrrTzbad boolean valuer)rbr4r�)rr@rrr�end_boolean�szUnmarshaller.end_boolean�booleancCs|jt|��d|_dS)Nr)rbrxr�)rr@rrr�end_int�szUnmarshaller.end_intZi1Zi2Zi4Zi8rxZ
bigintegercCs|jt|��d|_dS)Nr)rbr�r�)rr@rrr�
end_double�szUnmarshaller.end_doubleZdoubler�cCs|jt|��d|_dS)Nr)rbrr�)rr@rrr�end_bigdecimal�szUnmarshaller.end_bigdecimalZ
bigdecimalcCs&|jr|j|j�}|j|�d|_dS)Nr)r�rArbr�)rr@rrr�
end_string�s
zUnmarshaller.end_string�string�namecCs.|jj�}|j|d�g|j|d�<d|_dS)Nr)r��popr�r�)rr@�markrrr�	end_array�s
zUnmarshaller.end_arrayr�cCsd|jj�}i}|j|d�}x,tdt|�d�D]}||d|||<q.W|g|j|d�<d|_dS)Nrrr)r�r�r��ranger�r�)rr@r�r�rr}rrr�
end_structs
zUnmarshaller.end_structr�cCs6t�}|j|jd��|jr"|j}|j|�d|_dS)NrMr)rGrArDr�r@rbr�)rr@r&rrr�
end_base64s
zUnmarshaller.end_base64rKcCs,t�}|j|�|jrt|�}|j|�dS)N)r/rAr�rFrb)rr@r&rrr�end_dateTimes

zUnmarshaller.end_dateTimezdateTime.iso8601cCs|jr|j|�dS)N)r�r�)rr@rrr�	end_valueszUnmarshaller.end_valuer&cCs
d|_dS)N�params)r�)rr@rrr�
end_params#szUnmarshaller.end_paramsr�cCs
d|_dS)Nr�)r�)rr@rrr�	end_fault'szUnmarshaller.end_faultr�cCs"|jr|j|j�}||_d|_dS)N�
methodName)r�rAr�r�)rr@rrr�end_methodName+szUnmarshaller.end_methodNamer�N)FF)rrrrrr]r�rVrTr@rUr�rlr�r�r�r�r�r�r�r�r�r�r�r�r�r�rrrrr�ssZ
	r�c@s$eZdZdd�Zdd�Zdd�ZdS)�_MultiCallMethodcCs||_||_dS)N)�_MultiCallMethod__call_list�_MultiCallMethod__name)rZ	call_listr�rrrr8sz_MultiCallMethod.__init__cCst|jd|j|f�S)Nz%s.%s)r�r�r�)rr�rrr�__getattr__;sz_MultiCallMethod.__getattr__cGs|jj|j|f�dS)N)r�rbr�)r�argsrrr�__call__=sz_MultiCallMethod.__call__N)rrrrr�r�rrrrr�5sr�c@s eZdZdZdd�Zdd�ZdS)�MultiCallIteratorzaIterates over the results of a multicall. Exceptions are
    raised in response to xmlrpc faults.cCs
||_dS)N)�results)rr�rrrrDszMultiCallIterator.__init__cCsR|j|}t|�ti�kr.t|d|d��n t|�tg�krF|dStd��dS)Nr#r$rz#unexpected type in multicall result)r�r3r"�
ValueError)rr}�itemrrr�__getitem__Gs
zMultiCallIterator.__getitem__N)rrrrrr�rrrrr�@sr�c@s4eZdZdZdd�Zdd�ZeZdd�Zdd	�Zd
S)�	MultiCalla~server -> an object used to boxcar method calls

    server should be a ServerProxy object.

    Methods can be added to the MultiCall using normal
    method 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()
    cCs||_g|_dS)N)�_MultiCall__server�_MultiCall__call_list)r�serverrrrraszMultiCall.__init__cCsd|jjt|�fS)Nz<%s at %#x>)rrr>)rrrrr eszMultiCall.__repr__cCst|j|�S)N)r�r�)rr�rrrr�jszMultiCall.__getattr__cCs:g}x"|jD]\}}|j||d��qWt|jjj|��S)N)r�r�)r�rbr�r��systemZ	multicall)rZmarshalled_listr�r�rrrr�mszMultiCall.__call__N)	rrrrrr rr�r�rrrrr�Psr�FcCsrtrHtrH|rt}tj}n|r&t}t}nt}t}tdd||t�}t|�}n"t||d�}trbt|�}nt	|�}||fS)z�getparser() -> parser, unmarshaller

    Create an instance of the fastest available parser, and attach it
    to an unmarshalling object.  Return both objects.
    TF)r�r�)
�
FastParser�FastUnmarshallerrFrKrLrPrEr"r�rQ)r�r�Z
mkdatetimeZmkbytesrWrXrrr�	getparsers 

r�cCs�t|ttf�std��t|t�r&d}n"|rHt|t�rHt|�dksHtd��|sPd}tr^t|�}n
t||�}|j|�}|dkr�dt|�}nd}|r�|d|d|d	f}n|r�|d
|df}n|Sdj	|�S)
a�data [,options] -> marshalled data

    Convert an argument tuple or a Fault instance to an XML-RPC
    request (or response, if the methodresponse option is used).

    In addition to the data object, the following options can be given
    as keyword arguments:

        methodname: the method name for a methodCall packet

        methodresponse: true to create a methodResponse packet.
        If this option is used with a tuple, the tuple must be
        a 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 the
    packet encoding.  Unicode strings are automatically converted,
    where necessary.
    z(argument must be tuple or Fault instancerz"response tuple must be a singletonzutf-8z$<?xml version='1.0' encoding='%s'?>
z<?xml version='1.0'?>
z<methodCall>
<methodName>z</methodName>
z</methodCall>
z<methodResponse>
z</methodResponse>
ra)
r+r,r"�AssertionErrorr��FastMarshallerr^rir0rd)r��
methodnameZmethodresponserYr`�mr@Z	xmlheaderrrrri�s6



ricCs2t||d�\}}|j|�|j�|j�|j�fS)z�data -> unmarshalled data, method name

    Convert an XML-RPC packet to unmarshalled data plus a method
    name (None if not present).

    If the XML-RPC packet represents a fault condition, this function
    raises a Fault exception.
    )r�r�)r�r[r]r�)r@r�r��p�urrr�loads�s	
r�c	Cs<tst�t�}tjd|dd��}|j|�WdQRX|j�S)zhdata -> gzip encoded data

    Encode data using the gzip content encoding as described in RFC 1952
    �wbr)�mode�fileobjZ
compresslevelN)�gzip�NotImplementedErrorr�GzipFilerB�getvalue)r@rp�gzfrrr�gzip_encodesr��@cCs�tst�tjdt|�d��H}y$|dkr0|j�}n|j|d�}Wntk
r\td��YnXWdQRX|dkr�t|�|kr�td��|S)zrgzip encoded data -> unencoded data

    Decode data using the gzip content encoding as described in RFC 1952
    �rb)r�r�rrzinvalid dataNz#max gzipped payload length exceeded)r�r�r�r�read�OSErrorr�r�)r@Z
max_decoder�Zdecodedrrr�gzip_decodes
r�c@s eZdZdZdd�Zdd�ZdS)�GzipDecodedResponsezha file-like object to decode a response encoded with the gzip
    method, as described in RFC 1952.
    cCs.tst�t|j��|_tjj|d|jd�dS)Nr�)r�r�)r�r�rr��ior�r)r�responserrrr=szGzipDecodedResponse.__init__c
Cs"ztjj|�Wd|jj�XdS)N)r�r�r]r�)rrrrr]EszGzipDecodedResponse.closeN)rrrrrr]rrrrr�9sr�c@s$eZdZdd�Zdd�Zdd�ZdS)�_MethodcCs||_||_dS)N)�
_Method__send�
_Method__name)r�sendr�rrrrRsz_Method.__init__cCst|jd|j|f�S)Nz%s.%s)r�r�r�)rr�rrrr�Usz_Method.__getattr__cGs|j|j|�S)N)r�r�)rr�rrrr�Wsz_Method.__call__N)rrrrr�r�rrrrr�Osr�c@s~eZdZdZdeZdZdZddd�Zddd	�Z	dd
d�Z
dd
�Zdd�Zdd�Z
dd�Zdd�Zdd�Zdd�Zdd�ZdS)�	Transportz1Handles an HTTP transaction to an XML-RPC server.zPython-xmlrpc/%sTNFcCs||_||_d|_g|_dS)N)NN)r��_use_builtin_types�_connection�_extra_headers)rr�r�rrrrnszTransport.__init__cCs~xxdD]p}y|j||||�Stjjk
r8|r4�Yqtk
rt}z"|sb|jtjtjtjfkrd�WYdd}~XqXqWdS)Nrr)rr)	�single_request�http�clientZRemoteDisconnectedr��errnoZ
ECONNRESETZECONNABORTEDZEPIPE)r�host�handler�request_body�verboser}�errr�request~s

zTransport.requestcCs�y6|j||||�}|j�}|jdkr4||_|j|�SWn2tk
rL�Yntk
rh|j��YnX|jdd�r~|j	�t
|||j|jt|j
����dS)N��zcontent-lengthra)�send_requestZgetresponseZstatusr��parse_responser"�	Exceptionr]�	getheaderr�r�reasonr�Z
getheaders)rr�r�r�r�Z	http_connZresprrrr��s"
zTransport.single_requestcCst|j|jd�S)N)r�r�)r�r�r�)rrrrr��szTransport.getparsercCsri}t|t�r|\}}tjj|�\}}|rdtjj|�}tj|�jd�}dj	|j
��}dd|fg}ng}|||fS)Nzutf-8raZ
AuthorizationzBasic )r+r,�urllib�parseZ	splituserZunquote_to_bytesrKrNrArdr�)rr��x509ZauthZ
extra_headersrrr�
get_host_info�s
zTransport.get_host_infocCsL|jr||jdkr|jdS|j|�\}|_}|tjj|�f|_|jdS)Nrr)r�r�r�r�r�ZHTTPConnection)rr��chostr�rrr�make_connection�s

zTransport.make_connectioncCs |j\}}|rd|_|j�dS)N)NN)r�r])rr��
connectionrrrr]�s
zTransport.closecCs�|j|�}|jdd�}|r&|jd�|jrLtrL|jd|dd�|jd
�n|jd|�|jd�|jd	|jf�|j||�|j	||�|S)NrZPOSTT)Zskip_accept_encoding�Accept-Encodingr��Content-Type�text/xmlz
User-Agent)rr�)rr)
r�r�Zset_debuglevel�accept_gzip_encodingr�Z
putrequestrb�
user_agent�send_headers�send_content)rr�r�r��debugr�rrrrr��s



zTransport.send_requestcCs"x|D]\}}|j||�qWdS)N)�	putheader)rr�r�key�valrrrr	szTransport.send_headerscCsR|jdk	r0|jt|�kr0tr0|jdd�t|�}|jdtt|���|j|�dS)NzContent-Encodingr�zContent-Length)�encode_thresholdr�r�rr�r0Z
endheaders)rr�r�rrrrs
zTransport.send_contentcCs�t|d�r*|jdd�dkr$t|�}q.|}n|}|j�\}}x2|jd�}|sLP|jr`tdt|��|j|�q<W||k	r~|j	�|j	�|j	�S)Nr�zContent-Encodingrar�izbody:)
r2r�r�r�r�r��printrr[r])rr��streamr�r�r@rrrr�%s"


zTransport.parse_response)FF)F)F)rrrr�__version__rrrrr�r�r�r�r�r]r�rrr�rrrrr�`s


!r�cs0eZdZdZd	dd��fdd�Zdd�Z�ZS)
�
SafeTransportz2Handles an HTTPS transaction to an XML-RPC server.FN)�contextcst�j||d�||_dS)N)r�r�)�superrr)rr�r�r)rrrrFszSafeTransport.__init__cCst|jr||jdkr|jdSttjd�s2td��|j|�\}|_}|tjj|dfd|ji|p`i��f|_|jdS)Nrr�HTTPSConnectionz1your version of http.client doesn't support HTTPSr)	r�r2r�r�r�r�r�rr)rr�r�r�rrrr�Ms

zSafeTransport.make_connection)FF)rrrrrr��
__classcell__rr)rrrCsrc@s\eZdZdZddd�dd�Zdd�Zd	d
�Zdd�ZeZd
d�Z	dd�Z
dd�Zdd�ZdS)�ServerProxya�uri [,options] -> a logical connection to an XML-RPC server

    uri is the connection point on the server, given as
    scheme://host/target.

    The standard implementation always supports the "http" scheme.  If
    SSL 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 factory
        encoding: the request encoding (default is UTF-8)

    All 8-bit strings passed to the server proxy are assumed to use
    the given encoding.
    NF)rcCs�tjj|�\}	}|	dkr td��tjj|�\|_|_|js@d|_|dkrz|	dkr^t}
d|i}nt}
i}|
f||d�|��}||_	|p�d|_
||_||_dS)	Nr��httpszunsupported XML-RPC protocolz/RPC2r)r�r�zutf-8)r�r)
r�r�Z	splittyper�Z	splithost�_ServerProxy__host�_ServerProxy__handlerrr��_ServerProxy__transport�_ServerProxy__encoding�_ServerProxy__verbose�_ServerProxy__allow_none)rZuri�	transportrYr�r`r�r�rr3r�Zextra_kwargsrrrr�s&

zServerProxy.__init__cCs|jj�dS)N)rr])rrrrZ__close�szServerProxy.__closecCsPt|||j|jd�j|jd�}|jj|j|j||jd�}t	|�dkrL|d}|S)N)rYr`�xmlcharrefreplace)r�rr)
rirrrDrr�rrrr�)rr�r�r�r�rrrZ	__request�s

zServerProxy.__requestcCsd|jj|j|jfS)Nz
<%s for %s%s>)rrrr)rrrrr �szServerProxy.__repr__cCst|j|�S)N)r��_ServerProxy__request)rr�rrrr��szServerProxy.__getattr__cCs.|dkr|jS|dkr|jStd|f��dS)z|A workaround to get special attributes on the ServerProxy
           without interfering with the magic __getattr__
        r]rzAttribute %r not foundN)�_ServerProxy__closerr\)r�attrrrrr��s
zServerProxy.__call__cCs|S)Nr)rrrr�	__enter__�szServerProxy.__enter__cGs|j�dS)N)r)rr�rrr�__exit__�szServerProxy.__exit__)NNFFFF)
rrrrrrrr rr�r�r!r"rrrrrls
r�__main__zhttp://localhost:8000ZERROR�	li���li�iD���i����i���ip���iԁ��iD���iC���iB���i����i����i����i����)FF)NNNF)FF)r�)VrrK�sysr-r�decimalrZhttp.clientr�Zurllib.parser�Zxml.parsersrr�r�rr��ImportErrorr
�version_inforrurvZPARSE_ERRORZSERVER_ERRORZAPPLICATION_ERRORZSYSTEM_ERRORZTRANSPORT_ERRORZNOT_WELLFORMED_ERRORZUNSUPPORTED_ENCODINGZINVALID_ENCODING_CHARZINVALID_XMLRPCZMETHOD_NOT_FOUNDZINVALID_METHOD_PARAMSZINTERNAL_ERRORr�rrr!r"r�r�ZBooleanZ_day0r%r'r.r/rErFrGrPr�rQr^r�r�r�r�r�r�r�r�rir�r�r�r��objectr�r�r�rrZServerrr�rZcurrentTimeZgetCurrentTimergZmultiZgetData�pow�addr�rrrr�<module>�s�



K	#!(C'
'
J

d)i
__pycache__/server.cpython-36.opt-2.pyc000064400000043664150532427440013673 0ustar003

�\dhK��@s�ddlmZmZmZmZmZddlmZddlZddlZ	ddl
Z
ddlZddlZddl
Z
ddlZddlZddlZyddlZWnek
r�dZYnXd)dd�Zdd�ZGd	d
�d
�ZGdd�de�ZGd
d�de
je�ZGdd�de�ZGdd�de�ZGdd�dej�ZGdd�d�ZGdd�de�ZGdd�dee�ZGdd�dee�Z e!dk�r�ddl"Z"Gdd�d�Z#ed*��~Z$e$j%e&�e$j%d"d#�d$�e$j'e#�dd%�e$j(�e)d&�e)d'�ye$j*�Wn(e+k
�r�e)d(�ej,d�YnXWdQRXdS)+�)�Fault�dumps�loads�gzip_encode�gzip_decode)�BaseHTTPRequestHandlerNTcCsJ|r|jd�}n|g}x.|D]&}|jd�r8td|��qt||�}qW|S)N�.�_z(attempt to access private attribute "%s")�split�
startswith�AttributeError�getattr)�obj�attr�allow_dotted_namesZattrs�i�r�%/usr/lib64/python3.6/xmlrpc/server.py�resolve_dotted_attribute{s


rcs�fdd�t��D�S)Ncs*g|]"}|jd�rtt�|��r|�qS)r	)r�callabler
)�.0�member)rrr�
<listcomp>�sz'list_public_methods.<locals>.<listcomp>)�dir)rr)rr�list_public_methods�src@sleZdZddd�Zddd�Zddd�Zd	d
�Zdd�Zdd
d�Zdd�Z	dd�Z
dd�Zdd�Zdd�Z
dS)�SimpleXMLRPCDispatcherFNcCs&i|_d|_||_|pd|_||_dS)Nzutf-8)�funcs�instance�
allow_none�encoding�use_builtin_types)�selfrrr rrr�__init__�s

zSimpleXMLRPCDispatcher.__init__cCs||_||_dS)N)rr)r!rrrrr�register_instance�s!z(SimpleXMLRPCDispatcher.register_instancecCs|dkr|j}||j|<dS)N)�__name__r)r!Zfunction�namerrr�register_function�sz(SimpleXMLRPCDispatcher.register_functioncCs|jj|j|j|jd��dS)N)zsystem.listMethodszsystem.methodSignaturezsystem.methodHelp)r�update�system_listMethods�system_methodSignature�system_methodHelp)r!rrr� register_introspection_functions�s
z7SimpleXMLRPCDispatcher.register_introspection_functionscCs|jjd|ji�dS)Nzsystem.multicall)rr'�system_multicall)r!rrr�register_multicall_functions�sz3SimpleXMLRPCDispatcher.register_multicall_functionscCs�yPt||jd�\}}|dk	r(|||�}n|j||�}|f}t|d|j|jd�}Wn�tk
r�}zt||j|jd�}WYdd}~XnNtj�\}}	}
z$ttdd||	f�|j|jd�}Wdd}}	}
XYnX|j	|jd�S)N)r �)Zmethodresponserr)rrz%s:%s)rr�xmlcharrefreplace)
rr �	_dispatchrrrr�sys�exc_info�encode)r!�data�dispatch_method�path�params�method�response�fault�exc_type�	exc_value�exc_tbrrr�_marshaled_dispatch�s&z*SimpleXMLRPCDispatcher._marshaled_dispatchcCs^t|jj��}|jdk	rVt|jd�r8|t|jj��O}nt|jd�sV|tt|j��O}t|�S)N�_listMethodsr0)�setr�keysr�hasattrr?r�sorted)r!�methodsrrrr(s
z)SimpleXMLRPCDispatcher.system_listMethodscCsdS)Nzsignatures not supportedr)r!�method_namerrrr))sz-SimpleXMLRPCDispatcher.system_methodSignaturecCs�d}||jkr|j|}nX|jdk	rrt|jd�r<|jj|�St|jd�sryt|j||j�}Wntk
rpYnX|dkr~dStj|�SdS)N�_methodHelpr0�)	rrrBrFrrr�pydoc�getdoc)r!rEr8rrrr*6s"

z(SimpleXMLRPCDispatcher.system_methodHelpc
Cs�g}x�|D]�}|d}|d}y|j|j||�g�Wq
tk
rl}z|j|j|jd��WYdd}~Xq
tj�\}}}	z|jdd||fd��Wdd}}}	XYq
Xq
W|S)NZ
methodNamer7)�	faultCode�faultStringr.z%s:%s)�appendr0rrJrKr1r2)
r!Z	call_list�resultsZcallrEr7r:r;r<r=rrrr,Us$

z'SimpleXMLRPCDispatcher.system_multicallcCs�y|j|}Wntk
r"YnX|dk	r4||�Std|��|jdk	r�t|jd�rd|jj||�Syt|j||j�}Wntk
r�YnX|dk	r�||�Std|��dS)Nzmethod "%s" is not supportedr0)	r�KeyError�	ExceptionrrBr0rrr)r!r8r7�funcrrrr0ys(
z SimpleXMLRPCDispatcher._dispatch)FNF)F)N)NN)r$�
__module__�__qualname__r"r#r&r+r-r>r(r)r*r,r0rrrrr�s	

$

)
$rc@sbeZdZdZdZdZdZejdej	ej
B�Zdd�Zd	d
�Z
dd�Zd
d�Zdd�Zddd�ZdS)�SimpleXMLRPCRequestHandler�/�/RPC2ixr.Tz�
                            \s* ([^\s;]+) \s*            #content-coding
                            (;\s* q \s*=\s* ([0-9\.]+))? #q
                            cCsbi}|jjdd�}xJ|jd�D]<}|jj|�}|r|jd�}|rHt|�nd}|||jd�<qW|S)NzAccept-EncodingrG�,�g�?r.)�headers�getr
�	aepattern�match�group�float)r!�rZae�er[�vrrr�accept_encodings�s
z+SimpleXMLRPCRequestHandler.accept_encodingscCs|jr|j|jkSdSdS)NT)�	rpc_pathsr6)r!rrr�is_rpc_path_valid�sz,SimpleXMLRPCRequestHandler.is_rpc_path_validcCs�|j�s|j�dSy�d}t|jd�}g}x>|rjt||�}|jj|�}|sNP|j|�|t|d�8}q.Wdj	|�}|j
|�}|dkr�dS|jj|t
|dd�|j�}Wn�tk
�r6}zp|jd�t|jd�o�|jj�r|jd	t|��tj�}	t|	jd
d�d
�}	|jd|	�|jd
d�|j�WYdd}~Xn�X|jd�|jdd�|jdk	�r�t|�|jk�r�|j�jdd�}
|
�r�yt|�}|jdd�Wntk
�r�YnX|jd
tt|���|j�|jj|�dS)N�
izcontent-lengthr.�r0i��_send_traceback_headerzX-exception�ASCII�backslashreplacezX-tracebackzContent-length�0��zContent-typeztext/xml�gziprzContent-Encodingi(i����) rc�
report_404�intrX�minZrfile�readrL�len�join�decode_request_content�serverr>r
r6rO�
send_responserBrf�send_header�str�	traceback�
format_excr3�end_headers�encode_thresholdrarYr�NotImplementedError�wfile�write)r!Zmax_chunk_sizeZsize_remaining�LZ
chunk_size�chunkr4r9r_Ztrace�qrrr�do_POST�sX






z"SimpleXMLRPCRequestHandler.do_POSTcCs�|jjdd�j�}|dkr|S|dkrtyt|�Stk
rR|jdd|�Yq�tk
rp|jdd�Yq�Xn|jdd|�|jdd	�|j�dS)
Nzcontent-encodingZidentityrki�zencoding %r not supportedi�zerror decoding gzip contentzContent-lengthri)	rXrY�lowerrr|ru�
ValueErrorrvrz)r!r4rrrrrssz1SimpleXMLRPCRequestHandler.decode_request_contentcCsF|jd�d}|jdd�|jdtt|���|j�|jj|�dS)Ni�sNo such pagezContent-typez
text/plainzContent-length)rurvrwrqrzr}r~)r!r9rrrrm/s
z%SimpleXMLRPCRequestHandler.report_404�-cCs|jjrtj|||�dS)N)rt�logRequestsr�log_request)r!�code�sizerrrr�8sz&SimpleXMLRPCRequestHandler.log_requestN)rTrUrl)r�r�)r$rQrRrbr{ZwbufsizeZdisable_nagle_algorithm�re�compile�VERBOSE�
IGNORECASErZrarcr�rsrmr�rrrrrS�s	G	rSc@s*eZdZdZdZedddddfdd�ZdS)�SimpleXMLRPCServerTFNcCs,||_tj||||�tjj||||�dS)N)r�rr"�socketserver�	TCPServer)r!�addr�requestHandlerr�rr�bind_and_activater rrrr"QszSimpleXMLRPCServer.__init__)r$rQrRZallow_reuse_addressrfrSr"rrrrr�>s
r�c@s<eZdZedddddfdd�Zdd�Zdd	�Zdd
d�ZdS)
�MultiPathXMLRPCServerTFNc	Cs2tj||||||||�i|_||_|p*d|_dS)Nzutf-8)r�r"�dispatchersrr)r!r�r�r�rrr�r rrrr"bs

zMultiPathXMLRPCServer.__init__cCs||j|<|S)N)r�)r!r6Z
dispatcherrrr�add_dispatcherls
z$MultiPathXMLRPCServer.add_dispatchercCs
|j|S)N)r�)r!r6rrr�get_dispatcherpsz$MultiPathXMLRPCServer.get_dispatchercCs|y|j|j|||�}Wn^tj�dd�\}}z2ttdd||f�|j|jd�}|j|jd�}Wdd}}XYnX|S)N�r.z%s:%s)rrr/)	r�r>r1r2rrrrr3)r!r4r5r6r9r;r<rrrr>ss
z)MultiPathXMLRPCServer._marshaled_dispatch)NN)r$rQrRrSr"r�r�r>rrrrr�Zsr�c@s0eZdZddd�Zdd�Zdd�Zdd	d
�ZdS)
�CGIXMLRPCRequestHandlerFNcCstj||||�dS)N)rr")r!rrr rrrr"�sz CGIXMLRPCRequestHandler.__init__cCsP|j|�}td�tdt|��t�tjj�tjjj|�tjjj�dS)NzContent-Type: text/xmlzContent-Length: %d)r>�printrqr1�stdout�flush�bufferr~)r!�request_textr9rrr�
handle_xmlrpc�s

z%CGIXMLRPCRequestHandler.handle_xmlrpccCs�d}tj|\}}tjj|||d�}|jd�}td||f�tdtjj�tdt|��t�t	j
j�t	j
jj
|�t	j
jj�dS)Ni�)r��message�explainzutf-8z
Status: %d %szContent-Type: %szContent-Length: %d)rZ	responses�httprtZDEFAULT_ERROR_MESSAGEr3r�ZDEFAULT_ERROR_CONTENT_TYPErqr1r�r�r�r~)r!r�r�r�r9rrr�
handle_get�s


z"CGIXMLRPCRequestHandler.handle_getcCsz|dkr$tjjdd�dkr$|j�nRyttjjdd��}Wnttfk
rVd}YnX|dkrltjj	|�}|j
|�dS)NZREQUEST_METHODZGETZCONTENT_LENGTHr.rl)�os�environrYr�rnr��	TypeErrorr1�stdinrpr�)r!r�Zlengthrrr�handle_request�s

z&CGIXMLRPCRequestHandler.handle_request)FNF)N)r$rQrRr"r�r�r�rrrrr��s
r�c@s:eZdZdiiifdd�Zdiiidfdd�Zdd�ZdS)�
ServerHTMLDocNcCs^|p|j}g}d}tjd�}�x|j||�}	|	s2P|	j�\}
}|j||||
���|	j�\}}
}}}}|
r�||�jdd�}|jd||f�n�|r�dt|�}|jd|||�f�n~|r�dt|�}|jd|||�f�nV|||d�d	k�r|j|j	||||��n(|�r$|jd
|�n|j|j	||��|}q W|j|||d���dj
|�S)NrzM\b((http|ftp)://\S+[\w/]|RFC[- ]?(\d+)|PEP[- ]?(\d+)|(self\.)?((?:\w|\.)+))\b�"z&quot;z<a href="%s">%s</a>z'http://www.rfc-editor.org/rfc/rfc%d.txtz(http://www.python.org/dev/peps/pep-%04d/r.�(zself.<strong>%s</strong>rG)�escaper�r��search�spanrL�groups�replacernZnamelinkrr)r!�textr�r�classesrDrM�here�patternr[�start�end�all�schemeZrfcZpepZselfdotr%Zurlrrr�markup�s8

zServerHTMLDoc.markupcCs$|r
|jpdd|}d}	d|j|�|j|�f}
tj|�rrtj|�}tj|jdd�|j|j|j	|j
|jd�}n<tj|�r�tj|�}tj|j|j|j|j	|j
|jd�}nd}t
|t�r�|dp�|}|dp�d}
n
tj|�}
|
||	o�|jd|	�}|j|
|j|||�}|�od	|}d
||fS)NrGr�z$<a name="%s"><strong>%s</strong></a>r.)�annotations�formatvaluez(...)rz'<font face="helvetica, arial">%s</font>z<dd><tt>%s</tt></dd>z<dl><dt>%s</dt>%s</dl>
)r$r��inspectZismethodZgetfullargspecZ
formatargspec�argsZvarargsZvarkwZdefaultsr�r�Z
isfunction�
isinstance�tuplerHrIZgreyr��	preformat)r!�objectr%�modrr�rDZclZanchorZnote�titler�ZargspecZ	docstringZdecl�docrrr�
docroutine�s<





zServerHTMLDoc.docroutinecCs�i}x,|j�D] \}}d|||<||||<qW|j|�}d|}|j|dd�}|j||j|�}	|	old|	}	|d|	}g}
t|j��}x&|D]\}}|
j|j|||d��q�W||jddd	d
j	|
��}|S)Nz#-z)<big><big><strong>%s</strong></big></big>z#ffffffz#7799eez<tt>%s</tt>z
<p>%s</p>
)rZMethodsz#eeaa77rG)
�itemsr�Zheadingr�r�rCrLr�Z
bigsectionrr)r!�server_nameZpackage_documentationrDZfdict�key�value�head�resultr��contentsZmethod_itemsrrr�	docserver$s"
zServerHTMLDoc.docserver)r$rQrRr�r�r�rrrrr��s),r�c@s4eZdZdd�Zdd�Zdd�Zdd�Zd	d
�ZdS)�XMLRPCDocGeneratorcCsd|_d|_d|_dS)NzXML-RPC Server DocumentationzGThis server exports the following methods through the XML-RPC protocol.)r��server_documentation�server_title)r!rrrr"DszXMLRPCDocGenerator.__init__cCs
||_dS)N)r�)r!r�rrr�set_server_titleLsz#XMLRPCDocGenerator.set_server_titlecCs
||_dS)N)r�)r!r�rrr�set_server_nameQsz"XMLRPCDocGenerator.set_server_namecCs
||_dS)N)r�)r!r�rrr�set_server_documentationVsz+XMLRPCDocGenerator.set_server_documentationcCs�i}x�|j�D]�}||jkr(|j|}n�|jdk	r�ddg}t|jd�rV|jj|�|d<t|jd�rr|jj|�|d<t|�}|dkr�|}q�t|jd�s�yt|j|�}Wq�tk
r�|}Yq�Xq�|}n|||<qWt	�}|j
|j|j|�}|j
tj|j�|�S)N�_get_method_argstringrrFr.r0)NN)r(rrrBr�rFr�rrr�r�r�r�Zpage�htmlr�r�)r!rDrEr8Zmethod_infoZ
documenterZ
documentationrrr�generate_html_documentation[s8


z.XMLRPCDocGenerator.generate_html_documentationN)r$rQrRr"r�r�r�r�rrrrr�=s
r�c@seZdZdd�ZdS)�DocXMLRPCRequestHandlercCsf|j�s|j�dS|jj�jd�}|jd�|jdd�|jdtt|���|j	�|j
j|�dS)Nzutf-8rjzContent-typez	text/htmlzContent-length)rcrmrtr�r3rurvrwrqrzr}r~)r!r9rrr�do_GET�s
zDocXMLRPCRequestHandler.do_GETN)r$rQrRr�rrrrr��s
r�c@s"eZdZedddddfdd�ZdS)�DocXMLRPCServerTFNc	Cs&tj||||||||�tj|�dS)N)r�r"r�)r!r�r�r�rrr�r rrrr"�szDocXMLRPCServer.__init__)r$rQrRr�r"rrrrr��sr�c@seZdZdd�Zdd�ZdS)�DocCGIXMLRPCRequestHandlercCsT|j�jd�}td�tdt|��t�tjj�tjjj|�tjjj�dS)Nzutf-8zContent-Type: text/htmlzContent-Length: %d)	r�r3r�rqr1r�r�r�r~)r!r9rrrr��s
z%DocCGIXMLRPCRequestHandler.handle_getcCstj|�tj|�dS)N)r�r"r�)r!rrrr"�s
z#DocCGIXMLRPCRequestHandler.__init__N)r$rQrRr�r"rrrrr��sr��__main__c@s"eZdZdd�ZGdd�d�ZdS)�ExampleServicecCsdS)NZ42r)r!rrr�getData�szExampleService.getDatac@seZdZedd��ZdS)zExampleService.currentTimecCs
tjj�S)N)�datetimeZnowrrrr�getCurrentTime�sz)ExampleService.currentTime.getCurrentTimeN)r$rQrR�staticmethodr�rrrr�currentTime�sr�N)r$rQrRr�r�rrrrr��sr��	localhost�@cCs||S)Nr)�x�yrrr�<lambda>�sr��add)rz&Serving XML-RPC on localhost port 8000zKIt is advisable to run this example server within a secure, closed network.z&
Keyboard interrupt received, exiting.)T)r�r�)-Z
xmlrpc.clientrrrrrZhttp.serverrr�r�r�r1r�r�rHr�rxZfcntl�ImportErrorrrrrSr�r�r�r�ZHTMLDocr�r�r�r�r�r$r�r�rtr&�powr#r-r�Z
serve_forever�KeyboardInterrupt�exitrrrr�<module>ks^

,ErQ
	

__pycache__/server.cpython-36.opt-1.pyc000064400000071463150532427440013670 0ustar003

�\dhK��@sdZddlmZmZmZmZmZddlmZddl	Z	ddlZ
ddlZddlZddl
Z
ddlZddlZddlZddlZyddlZWnek
r�dZYnXd*dd�Zdd	�ZGd
d�d�ZGdd
�d
e�ZGdd�deje�ZGdd�de�ZGdd�de�ZGdd�dej�ZGdd�d�ZGdd�de�ZGdd�dee�Z Gdd�dee�Z!e"dk�r�ddl#Z#Gdd �d �Z$ed+��~Z%e%j&e'�e%j&d#d$�d%�e%j(e$�dd&�e%j)�e*d'�e*d(�ye%j+�Wn(e,k
�r�e*d)�ej-d�YnXWdQRXdS),aXML-RPC Servers.

This module can be used to create simple XML-RPC servers
by creating a server and either installing functions, a
class instance, or by extending the SimpleXMLRPCServer
class.

It can also be used to handle XML-RPC requests in a CGI
environment using CGIXMLRPCRequestHandler.

The Doc* classes can be used to create XML-RPC servers that
serve pydoc-style documentation in response to HTTP
GET requests. This documentation is dynamically generated
based on the functions and methods registered with the
server.

A list of possible usage patterns follows:

1. Install functions:

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_function(pow)
server.register_function(lambda x,y: x+y, 'add')
server.serve_forever()

2. Install an instance:

class MyFuncs:
    def __init__(self):
        # make all of the sys functions available through sys.func_name
        import sys
        self.sys = sys
    def _listMethods(self):
        # implement this method so that system.listMethods
        # knows to advertise the sys methods
        return list_public_methods(self) + \
                ['sys.' + method for method in list_public_methods(self.sys)]
    def pow(self, x, y): return pow(x, y)
    def add(self, x, y) : return x + y

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_introspection_functions()
server.register_instance(MyFuncs())
server.serve_forever()

3. Install an instance with custom dispatch method:

class Math:
    def _listMethods(self):
        # this method must be present for system.listMethods
        # to work
        return ['add', 'pow']
    def _methodHelp(self, method):
        # this method must be present for system.methodHelp
        # to work
        if method == 'add':
            return "add(2,3) => 5"
        elif method == 'pow':
            return "pow(x, y[, z]) => number"
        else:
            # By convention, return empty
            # string if no help is available
            return ""
    def _dispatch(self, method, params):
        if method == 'pow':
            return pow(*params)
        elif method == 'add':
            return params[0] + params[1]
        else:
            raise ValueError('bad method')

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_introspection_functions()
server.register_instance(Math())
server.serve_forever()

4. Subclass SimpleXMLRPCServer:

class MathServer(SimpleXMLRPCServer):
    def _dispatch(self, method, params):
        try:
            # We are forcing the 'export_' prefix on methods that are
            # callable through XML-RPC to prevent potential security
            # problems
            func = getattr(self, 'export_' + method)
        except AttributeError:
            raise Exception('method "%s" is not supported' % method)
        else:
            return func(*params)

    def export_add(self, x, y):
        return x + y

server = MathServer(("localhost", 8000))
server.serve_forever()

5. CGI script:

server = CGIXMLRPCRequestHandler()
server.register_function(pow)
server.handle_request()
�)�Fault�dumps�loads�gzip_encode�gzip_decode)�BaseHTTPRequestHandlerNTcCsJ|r|jd�}n|g}x.|D]&}|jd�r8td|��qt||�}qW|S)aGresolve_dotted_attribute(a, 'b.c.d') => a.b.c.d

    Resolves a dotted attribute name to an object.  Raises
    an AttributeError if any attribute in the chain starts with a '_'.

    If the optional allow_dotted_names argument is false, dots are not
    supported and this function operates similar to getattr(obj, attr).
    �.�_z(attempt to access private attribute "%s")�split�
startswith�AttributeError�getattr)�obj�attr�allow_dotted_namesZattrs�i�r�%/usr/lib64/python3.6/xmlrpc/server.py�resolve_dotted_attribute{s


rcs�fdd�t��D�S)zkReturns a list of attribute strings, found in the specified
    object, which represent callable attributescs*g|]"}|jd�rtt�|��r|�qS)r	)r�callabler
)�.0�member)rrr�
<listcomp>�sz'list_public_methods.<locals>.<listcomp>)�dir)rr)rr�list_public_methods�src@speZdZdZddd�Zddd�Zddd	�Zd
d�Zdd
�Zddd�Z	dd�Z
dd�Zdd�Zdd�Z
dd�ZdS)�SimpleXMLRPCDispatchera&Mix-in class that dispatches XML-RPC requests.

    This class is used to register XML-RPC method handlers
    and then to dispatch them. This class doesn't need to be
    instanced directly when used by SimpleXMLRPCServer but it
    can be instanced when used by the MultiPathXMLRPCServer
    FNcCs&i|_d|_||_|pd|_||_dS)Nzutf-8)�funcs�instance�
allow_none�encoding�use_builtin_types)�selfrrr rrr�__init__�s

zSimpleXMLRPCDispatcher.__init__cCs||_||_dS)aRegisters an instance to respond to XML-RPC requests.

        Only one instance can be installed at a time.

        If the registered instance has a _dispatch method then that
        method will be called with the name of the XML-RPC method and
        its parameters as a tuple
        e.g. instance._dispatch('add',(2,3))

        If the registered instance does not have a _dispatch method
        then the instance will be searched to find a matching method
        and, if found, will be called. Methods beginning with an '_'
        are considered private and will not be called by
        SimpleXMLRPCServer.

        If a registered function matches an XML-RPC request, then it
        will be called instead of the registered instance.

        If the optional allow_dotted_names argument is true and the
        instance does not have a _dispatch method, method names
        containing dots are supported and resolved, as long as none of
        the name segments start with an '_'.

            *** SECURITY WARNING: ***

            Enabling the allow_dotted_names options allows intruders
            to access your module's global variables and may allow
            intruders to execute arbitrary code on your machine.  Only
            use this option on a secure, closed network.

        N)rr)r!rrrrr�register_instance�s!z(SimpleXMLRPCDispatcher.register_instancecCs|dkr|j}||j|<dS)z�Registers a function to respond to XML-RPC requests.

        The optional name argument can be used to set a Unicode name
        for the function.
        N)�__name__r)r!Zfunction�namerrr�register_function�sz(SimpleXMLRPCDispatcher.register_functioncCs|jj|j|j|jd��dS)z�Registers the XML-RPC introspection methods in the system
        namespace.

        see http://xmlrpc.usefulinc.com/doc/reserved.html
        )zsystem.listMethodszsystem.methodSignaturezsystem.methodHelpN)r�update�system_listMethods�system_methodSignature�system_methodHelp)r!rrr� register_introspection_functions�s
z7SimpleXMLRPCDispatcher.register_introspection_functionscCs|jjd|ji�dS)z�Registers the XML-RPC multicall method in the system
        namespace.

        see http://www.xmlrpc.com/discuss/msgReader$1208zsystem.multicallN)rr'�system_multicall)r!rrr�register_multicall_functions�sz3SimpleXMLRPCDispatcher.register_multicall_functionscCs�yPt||jd�\}}|dk	r(|||�}n|j||�}|f}t|d|j|jd�}Wn�tk
r�}zt||j|jd�}WYdd}~XnNtj�\}}	}
z$ttdd||	f�|j|jd�}Wdd}}	}
XYnX|j	|jd�S)	a�Dispatches an XML-RPC method from marshalled (XML) data.

        XML-RPC methods are dispatched from the marshalled (XML) data
        using the _dispatch method and the result is returned as
        marshalled data. For backwards compatibility, a dispatch
        function can be provided as an argument (see comment in
        SimpleXMLRPCRequestHandler.do_POST) but overriding the
        existing method through subclassing is the preferred means
        of changing method dispatch behavior.
        )r N�)Zmethodresponserr)rrz%s:%s)rr�xmlcharrefreplace)
rr �	_dispatchrrrr�sys�exc_info�encode)r!�data�dispatch_method�path�params�method�response�fault�exc_type�	exc_value�exc_tbrrr�_marshaled_dispatch�s&z*SimpleXMLRPCDispatcher._marshaled_dispatchcCs^t|jj��}|jdk	rVt|jd�r8|t|jj��O}nt|jd�sV|tt|j��O}t|�S)zwsystem.listMethods() => ['add', 'subtract', 'multiple']

        Returns a list of the methods supported by the server.N�_listMethodsr0)�setr�keysr�hasattrr?r�sorted)r!�methodsrrrr(s
z)SimpleXMLRPCDispatcher.system_listMethodscCsdS)a#system.methodSignature('add') => [double, int, int]

        Returns a list describing the signature of the method. In the
        above example, the add method takes two integers as arguments
        and returns a double result.

        This server does NOT support system.methodSignature.zsignatures not supportedr)r!�method_namerrrr))sz-SimpleXMLRPCDispatcher.system_methodSignaturecCs�d}||jkr|j|}nX|jdk	rrt|jd�r<|jj|�St|jd�sryt|j||j�}Wntk
rpYnX|dkr~dStj|�SdS)z�system.methodHelp('add') => "Adds two integers together"

        Returns a string containing documentation for the specified method.N�_methodHelpr0�)	rrrBrFrrr�pydoc�getdoc)r!rEr8rrrr*6s"

z(SimpleXMLRPCDispatcher.system_methodHelpc
Cs�g}x�|D]�}|d}|d}y|j|j||�g�Wq
tk
rl}z|j|j|jd��WYdd}~Xq
tj�\}}}	z|jdd||fd��Wdd}}}	XYq
Xq
W|S)z�system.multicall([{'methodName': 'add', 'params': [2, 2]}, ...]) => [[4], ...]

        Allows the caller to package multiple XML-RPC calls into a single
        request.

        See http://www.xmlrpc.com/discuss/msgReader$1208
        Z
methodNamer7)�	faultCode�faultStringNr.z%s:%s)�appendr0rrJrKr1r2)
r!Z	call_list�resultsZcallrEr7r:r;r<r=rrrr,Us$

z'SimpleXMLRPCDispatcher.system_multicallcCs�y|j|}Wntk
r"YnX|dk	r4||�Std|��|jdk	r�t|jd�rd|jj||�Syt|j||j�}Wntk
r�YnX|dk	r�||�Std|��dS)a�Dispatches the XML-RPC method.

        XML-RPC calls are forwarded to a registered function that
        matches the called XML-RPC method name. If no such function
        exists then the call is forwarded to the registered instance,
        if available.

        If the registered instance has a _dispatch method then that
        method will be called with the name of the XML-RPC method and
        its parameters as a tuple
        e.g. instance._dispatch('add',(2,3))

        If the registered instance does not have a _dispatch method
        then the instance will be searched to find a matching method
        and, if found, will be called.

        Methods beginning with an '_' are considered private and will
        not be called.
        Nzmethod "%s" is not supportedr0)	r�KeyError�	ExceptionrrBr0rrr)r!r8r7�funcrrrr0ys(
z SimpleXMLRPCDispatcher._dispatch)FNF)F)N)NN)r$�
__module__�__qualname__�__doc__r"r#r&r+r-r>r(r)r*r,r0rrrrr�s

$

)
$rc@sfeZdZdZdZdZdZdZej	dej
ejB�Zdd	�Z
d
d�Zdd
�Zdd�Zdd�Zddd�ZdS)�SimpleXMLRPCRequestHandlerz�Simple XML-RPC request handler class.

    Handles all HTTP POST requests and attempts to decode them as
    XML-RPC requests.
    �/�/RPC2ixr.Tz�
                            \s* ([^\s;]+) \s*            #content-coding
                            (;\s* q \s*=\s* ([0-9\.]+))? #q
                            cCsbi}|jjdd�}xJ|jd�D]<}|jj|�}|r|jd�}|rHt|�nd}|||jd�<qW|S)NzAccept-EncodingrG�,�g�?r.)�headers�getr
�	aepattern�match�group�float)r!�rZae�er\�vrrr�accept_encodings�s
z+SimpleXMLRPCRequestHandler.accept_encodingscCs|jr|j|jkSdSdS)NT)�	rpc_pathsr6)r!rrr�is_rpc_path_valid�sz,SimpleXMLRPCRequestHandler.is_rpc_path_validcCs�|j�s|j�dSy�d}t|jd�}g}x>|rjt||�}|jj|�}|sNP|j|�|t|d�8}q.Wdj	|�}|j
|�}|dkr�dS|jj|t
|dd�|j�}Wn�tk
�r6}zp|jd�t|jd	�o�|jj�r|jd
t|��tj�}	t|	jdd�d�}	|jd
|	�|jdd�|j�WYdd}~Xn�X|jd�|jdd�|jdk	�r�t|�|jk�r�|j�jdd�}
|
�r�yt|�}|jdd�Wntk
�r�YnX|jdtt|���|j�|jj|�dS)z�Handles the HTTP POST request.

        Attempts to interpret all HTTP POST requests as XML-RPC calls,
        which are forwarded to the server's _dispatch method for handling.
        N�
izcontent-lengthr.�r0i��_send_traceback_headerzX-exception�ASCII�backslashreplacezX-tracebackzContent-length�0��zContent-typeztext/xml�gziprzContent-Encodingi(i����) rd�
report_404�intrY�minZrfile�readrL�len�join�decode_request_content�serverr>r
r6rO�
send_responserBrg�send_header�str�	traceback�
format_excr3�end_headers�encode_thresholdrbrZr�NotImplementedError�wfile�write)r!Zmax_chunk_sizeZsize_remaining�LZ
chunk_size�chunkr4r9r`Ztrace�qrrr�do_POST�sX






z"SimpleXMLRPCRequestHandler.do_POSTcCs�|jjdd�j�}|dkr|S|dkrtyt|�Stk
rR|jdd|�Yq�tk
rp|jdd�Yq�Xn|jdd|�|jdd	�|j�dS)
Nzcontent-encodingZidentityrli�zencoding %r not supportedi�zerror decoding gzip contentzContent-lengthrj)	rYrZ�lowerrr}rv�
ValueErrorrwr{)r!r4rrrrrtsz1SimpleXMLRPCRequestHandler.decode_request_contentcCsF|jd�d}|jdd�|jdtt|���|j�|jj|�dS)Ni�sNo such pagezContent-typez
text/plainzContent-length)rvrwrxrrr{r~r)r!r9rrrrn/s
z%SimpleXMLRPCRequestHandler.report_404�-cCs|jjrtj|||�dS)z$Selectively log an accepted request.N)ru�logRequestsr�log_request)r!�code�sizerrrr�8sz&SimpleXMLRPCRequestHandler.log_requestN)rUrVrm)r�r�)r$rQrRrSrcr|ZwbufsizeZdisable_nagle_algorithm�re�compile�VERBOSE�
IGNORECASEr[rbrdr�rtrnr�rrrrrT�sG	rTc@s.eZdZdZdZdZedddddfdd�ZdS)�SimpleXMLRPCServeragSimple XML-RPC server.

    Simple XML-RPC server that allows functions and a single instance
    to be installed to handle requests. The default implementation
    attempts to dispatch XML-RPC calls to the functions or instance
    installed in the server. Override the _dispatch method inherited
    from SimpleXMLRPCDispatcher to change this behavior.
    TFNcCs,||_tj||||�tjj||||�dS)N)r�rr"�socketserver�	TCPServer)r!�addr�requestHandlerr�rr�bind_and_activater rrrr"QszSimpleXMLRPCServer.__init__)r$rQrRrSZallow_reuse_addressrgrTr"rrrrr�>s	r�c@s@eZdZdZedddddfdd�Zdd�Zd	d
�Zd
dd�ZdS)�MultiPathXMLRPCServera\Multipath XML-RPC Server
    This specialization of SimpleXMLRPCServer allows the user to create
    multiple Dispatcher instances and assign them to different
    HTTP request paths.  This makes it possible to run two or more
    'virtual XML-RPC servers' at the same port.
    Make sure that the requestHandler accepts the paths in question.
    TFNc	Cs2tj||||||||�i|_||_|p*d|_dS)Nzutf-8)r�r"�dispatchersrr)r!r�r�r�rrr�r rrrr"bs

zMultiPathXMLRPCServer.__init__cCs||j|<|S)N)r�)r!r6Z
dispatcherrrr�add_dispatcherls
z$MultiPathXMLRPCServer.add_dispatchercCs
|j|S)N)r�)r!r6rrr�get_dispatcherpsz$MultiPathXMLRPCServer.get_dispatchercCs|y|j|j|||�}Wn^tj�dd�\}}z2ttdd||f�|j|jd�}|j|jd�}Wdd}}XYnX|S)N�r.z%s:%s)rrr/)	r�r>r1r2rrrrr3)r!r4r5r6r9r;r<rrrr>ss
z)MultiPathXMLRPCServer._marshaled_dispatch)NN)	r$rQrRrSrTr"r�r�r>rrrrr�Zsr�c@s4eZdZdZddd�Zdd�Zdd	�Zd
d
d�ZdS)�CGIXMLRPCRequestHandlerz3Simple handler for XML-RPC data passed through CGI.FNcCstj||||�dS)N)rr")r!rrr rrrr"�sz CGIXMLRPCRequestHandler.__init__cCsP|j|�}td�tdt|��t�tjj�tjjj|�tjjj�dS)zHandle a single XML-RPC requestzContent-Type: text/xmlzContent-Length: %dN)r>�printrrr1�stdout�flush�bufferr)r!�request_textr9rrr�
handle_xmlrpc�s

z%CGIXMLRPCRequestHandler.handle_xmlrpccCs�d}tj|\}}tjj|||d�}|jd�}td||f�tdtjj�tdt|��t�t	j
j�t	j
jj
|�t	j
jj�dS)z�Handle a single HTTP GET request.

        Default implementation indicates an error because
        XML-RPC uses the POST method.
        i�)r��message�explainzutf-8z
Status: %d %szContent-Type: %szContent-Length: %dN)rZ	responses�httpruZDEFAULT_ERROR_MESSAGEr3r�ZDEFAULT_ERROR_CONTENT_TYPErrr1r�r�r�r)r!r�r�r�r9rrr�
handle_get�s


z"CGIXMLRPCRequestHandler.handle_getcCsz|dkr$tjjdd�dkr$|j�nRyttjjdd��}Wnttfk
rVd}YnX|dkrltjj	|�}|j
|�dS)z�Handle a single XML-RPC request passed through a CGI post method.

        If no XML data is given then it is read from stdin. The resulting
        XML-RPC response is printed to stdout along with the correct HTTP
        headers.
        NZREQUEST_METHODZGETZCONTENT_LENGTHr.rm)�os�environrZr�ror��	TypeErrorr1�stdinrqr�)r!r�Zlengthrrr�handle_request�s

z&CGIXMLRPCRequestHandler.handle_request)FNF)N)r$rQrRrSr"r�r�r�rrrrr��s

r�c@s>eZdZdZdiiifdd�Zdiiidfdd�Zdd�ZdS)	�
ServerHTMLDocz7Class used to generate pydoc HTML document for a serverNcCs^|p|j}g}d}tjd�}�x|j||�}	|	s2P|	j�\}
}|j||||
���|	j�\}}
}}}}|
r�||�jdd�}|jd||f�n�|r�dt|�}|jd|||�f�n~|r�dt|�}|jd|||�f�nV|||d�d	k�r|j|j	||||��n(|�r$|jd
|�n|j|j	||��|}q W|j|||d���dj
|�S)
z�Mark up some plain text, given a context of symbols to look for.
        Each context dictionary maps object names to anchor names.rzM\b((http|ftp)://\S+[\w/]|RFC[- ]?(\d+)|PEP[- ]?(\d+)|(self\.)?((?:\w|\.)+))\b�"z&quot;z<a href="%s">%s</a>z'http://www.rfc-editor.org/rfc/rfc%d.txtz(http://www.python.org/dev/peps/pep-%04d/r.�(zself.<strong>%s</strong>NrG)�escaper�r��search�spanrL�groups�replaceroZnamelinkrs)r!�textr�r�classesrDrM�here�patternr\�start�end�all�schemeZrfcZpepZselfdotr%Zurlrrr�markup�s8

zServerHTMLDoc.markupcCs$|r
|jpdd|}d}	d|j|�|j|�f}
tj|�rrtj|�}tj|jdd�|j|j|j	|j
|jd�}n<tj|�r�tj|�}tj|j|j|j|j	|j
|jd�}nd}t
|t�r�|dp�|}|dp�d}
n
tj|�}
|
||	o�|jd	|	�}|j|
|j|||�}|�od
|}d||fS)z;Produce HTML documentation for a function or method object.rGr�z$<a name="%s"><strong>%s</strong></a>r.N)�annotations�formatvaluez(...)rz'<font face="helvetica, arial">%s</font>z<dd><tt>%s</tt></dd>z<dl><dt>%s</dt>%s</dl>
)r$r��inspectZismethodZgetfullargspecZ
formatargspec�argsZvarargsZvarkwZdefaultsr�r�Z
isfunction�
isinstance�tuplerHrIZgreyr��	preformat)r!�objectr%�modrr�rDZclZanchorZnote�titler�ZargspecZ	docstringZdecl�docrrr�
docroutine�s<





zServerHTMLDoc.docroutinecCs�i}x,|j�D] \}}d|||<||||<qW|j|�}d|}|j|dd�}|j||j|�}	|	old|	}	|d|	}g}
t|j��}x&|D]\}}|
j|j|||d��q�W||jddd	d
j	|
��}|S)z1Produce HTML documentation for an XML-RPC server.z#-z)<big><big><strong>%s</strong></big></big>z#ffffffz#7799eez<tt>%s</tt>z
<p>%s</p>
)rZMethodsz#eeaa77rG)
�itemsr�Zheadingr�r�rCrLr�Z
bigsectionrs)r!�server_nameZpackage_documentationrDZfdict�key�value�head�resultr��contentsZmethod_itemsrrr�	docserver$s"
zServerHTMLDoc.docserver)r$rQrRrSr�r�r�rrrrr��s
),r�c@s8eZdZdZdd�Zdd�Zdd�Zdd	�Zd
d�ZdS)
�XMLRPCDocGeneratorz�Generates documentation for an XML-RPC server.

    This class is designed as mix-in and should not
    be constructed directly.
    cCsd|_d|_d|_dS)NzXML-RPC Server DocumentationzGThis server exports the following methods through the XML-RPC protocol.)r��server_documentation�server_title)r!rrrr"DszXMLRPCDocGenerator.__init__cCs
||_dS)z8Set the HTML title of the generated server documentationN)r�)r!r�rrr�set_server_titleLsz#XMLRPCDocGenerator.set_server_titlecCs
||_dS)z7Set the name of the generated HTML server documentationN)r�)r!r�rrr�set_server_nameQsz"XMLRPCDocGenerator.set_server_namecCs
||_dS)z3Set the documentation string for the entire server.N)r�)r!r�rrr�set_server_documentationVsz+XMLRPCDocGenerator.set_server_documentationcCs�i}x�|j�D]�}||jkr(|j|}n�|jdk	r�ddg}t|jd�rV|jj|�|d<t|jd�rr|jj|�|d<t|�}|dkr�|}q�t|jd�s�yt|j|�}Wq�tk
r�|}Yq�Xq�|}n|||<qWt	�}|j
|j|j|�}|j
tj|j�|�S)agenerate_html_documentation() => html documentation for the server

        Generates HTML documentation for the server using introspection for
        installed functions and instances that do not implement the
        _dispatch method. Alternatively, instances can choose to implement
        the _get_method_argstring(method_name) method to provide the
        argument string used in the documentation and the
        _methodHelp(method_name) method to provide the help text used
        in the documentation.N�_get_method_argstringrrFr.r0)NN)r(rrrBr�rFr�rrr�r�r�r�Zpage�htmlr�r�)r!rDrEr8Zmethod_infoZ
documenterZ
documentationrrr�generate_html_documentation[s8


z.XMLRPCDocGenerator.generate_html_documentationN)	r$rQrRrSr"r�r�r�r�rrrrr�=sr�c@seZdZdZdd�ZdS)�DocXMLRPCRequestHandlerz�XML-RPC and documentation request handler class.

    Handles all HTTP POST requests and attempts to decode them as
    XML-RPC requests.

    Handles all HTTP GET requests and interprets them as requests
    for documentation.
    cCsf|j�s|j�dS|jj�jd�}|jd�|jdd�|jdtt|���|j	�|j
j|�dS)z}Handles the HTTP GET request.

        Interpret all HTTP GET requests as requests for server
        documentation.
        Nzutf-8rkzContent-typez	text/htmlzContent-length)rdrnrur�r3rvrwrxrrr{r~r)r!r9rrr�do_GET�s
zDocXMLRPCRequestHandler.do_GETN)r$rQrRrSr�rrrrr��sr�c@s&eZdZdZedddddfdd�ZdS)�DocXMLRPCServerz�XML-RPC and HTML documentation server.

    Adds the ability to serve server documentation to the capabilities
    of SimpleXMLRPCServer.
    TFNc	Cs&tj||||||||�tj|�dS)N)r�r"r�)r!r�r�r�rrr�r rrrr"�szDocXMLRPCServer.__init__)r$rQrRrSr�r"rrrrr��sr�c@s eZdZdZdd�Zdd�ZdS)�DocCGIXMLRPCRequestHandlerzJHandler for XML-RPC data and documentation requests passed through
    CGIcCsT|j�jd�}td�tdt|��t�tjj�tjjj|�tjjj�dS)z}Handles the HTTP GET request.

        Interpret all HTTP GET requests as requests for server
        documentation.
        zutf-8zContent-Type: text/htmlzContent-Length: %dN)	r�r3r�rrr1r�r�r�r)r!r9rrrr��s
z%DocCGIXMLRPCRequestHandler.handle_getcCstj|�tj|�dS)N)r�r"r�)r!rrrr"�s
z#DocCGIXMLRPCRequestHandler.__init__N)r$rQrRrSr�r"rrrrr��sr��__main__c@s"eZdZdd�ZGdd�d�ZdS)�ExampleServicecCsdS)NZ42r)r!rrr�getData�szExampleService.getDatac@seZdZedd��ZdS)zExampleService.currentTimecCs
tjj�S)N)�datetimeZnowrrrr�getCurrentTime�sz)ExampleService.currentTime.getCurrentTimeN)r$rQrR�staticmethodr�rrrr�currentTime�sr�N)r$rQrRr�r�rrrrr��sr��	localhost�@cCs||S)Nr)�x�yrrr�<lambda>�sr��add)rz&Serving XML-RPC on localhost port 8000zKIt is advisable to run this example server within a secure, closed network.z&
Keyboard interrupt received, exiting.)T)r�r�).rSZ
xmlrpc.clientrrrrrZhttp.serverrr�r�r�r1r�r�rHr�ryZfcntl�ImportErrorrrrrTr�r�r�r�ZHTMLDocr�r�r�r�r�r$r�r�rur&�powr#r-r�Z
serve_forever�KeyboardInterrupt�exitrrrr�<module>fs`

,ErQ