tzh
2024-08-22 c7d0944258c7d0943aa7b2211498fd612971ce27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
K\¬Qc@szdZddlZddlmZddlZddlZddlZddlZddlZddlZyddl    Z    Wne
k
r“e Z    nXe d„Z d„Zd„Zdfd„ƒYZd    ejfd
„ƒYZd ejefd „ƒYZd efd„ƒYZdefd„ƒYZedkrvdGHeddfƒZejeƒejd„dƒejƒndS(s; Simple XML-RPC Server.
 
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.
 
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 string functions available through
        # string.func_name
        import string
        self.string = string
    def _listMethods(self):
        # implement this method so that system.listMethods
        # knows to advertise the strings methods
        return list_public_methods(self) + \
                ['string.' + method for method in list_public_methods(self.string)]
    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 '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()
iÿÿÿÿN(tFaultcCsg|r|jdƒ}n    |g}x?|D]7}|jdƒrPtd|ƒ‚q(t||ƒ}q(W|S(sGresolve_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).
    t.t_s(attempt to access private attribute "%s"(tsplitt
startswithtAttributeErrortgetattr(tobjtattrtallow_dotted_namestattrsti((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pytresolve_dotted_attributess
     cCsEgt|ƒD]4}|jdƒ r tt||ƒdƒr |^q S(skReturns a list of attribute strings, found in the specified
    object, which represent callable attributesRt__call__(tdirRthasattrR(Rtmember((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pytlist_public_methods‹scCs+i}x|D]}d||<q W|jƒS(sÌremove_duplicates([2,2,2,1,3,3]) => [3,1,2]
 
    Returns a copy of a list without duplicates. Every list
    item must be hashable and the order of the items in the
    resulting list is not defined.
    i(tkeys(tlsttutx((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pytremove_duplicates“s tSimpleXMLRPCDispatchercBsƒeZdZed d„Zed„Zd d„Zd„Zd„Z    d d d„Z
d„Z d„Z d    „Z d
„Zd „ZRS( s'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.
    cCs(i|_d|_||_||_dS(N(tfuncstNonetinstancet
allow_nonetencoding(tselfRR((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyt__init__©s            cCs||_||_dS(sRegisters 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 a 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    (RRR    ((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pytregister_instance¯s!    cCs)|dkr|j}n||j|<dS(s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(Rt__name__R(Rtfunctiontname((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pytregister_functionÓs  cCs2|jji|jd6|jd6|jd6ƒdS(sRegisters the XML-RPC introspection methods in the system
        namespace.
 
        see http://xmlrpc.usefulinc.com/doc/reserved.html
        ssystem.listMethodsssystem.methodSignaturessystem.methodHelpN(Rtupdatetsystem_listMethodstsystem_methodSignaturetsystem_methodHelp(R((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyt register_introspection_functionsÞs
cCs|jji|jd6ƒdS(sRegisters the XML-RPC multicall method in the system
        namespace.
 
        see http://www.xmlrpc.com/discuss/msgReader$1208ssystem.multicallN(RR$tsystem_multicall(R((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pytregister_multicall_functionsésc Csyytj|ƒ\}}|dk    r6|||ƒ}n|j||ƒ}|f}tj|ddd|jd|jƒ}Wn†tk
r¯}tj|d|jd|jƒ}nStj    ƒ\}}    }
tjtjdd||    fƒd|jd|jƒ}nX|S(sú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.
        tmethodresponseiRRs%s:%sN(
t    xmlrpclibtloadsRt    _dispatchtdumpsRRRtsystexc_info( Rtdatatdispatch_methodtpathtparamstmethodtresponsetfaulttexc_typet    exc_valuetexc_tb((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyt_marshaled_dispatchñs"      cCs‹|jjƒ}|jdk    r}t|jdƒrLt||jjƒƒ}q}t|jdƒs}t|t|jƒƒ}q}n|jƒ|S(swsystem.listMethods() => ['add', 'subtract', 'multiple']
 
        Returns a list of the methods supported by the server.t _listMethodsR.N(    RRRRRRR=Rtsort(Rtmethods((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyR%s
cCsdS(s#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.ssignatures not supported((Rt method_name((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyR&-s cCsËd}||jkr%|j|}ny|jdk    ržt|jdƒrV|jj|ƒSt|jdƒsžyt|j||jƒ}Wq›tk
r—q›Xqžn|dkr®dSddl}|j    |ƒSdS(s…system.methodHelp('add') => "Adds two integers together"
 
        Returns a string containing documentation for the specified method.t _methodHelpR.tiÿÿÿÿN(
RRRRRAR R    Rtpydoctgetdoc(RR@R6RC((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyR':s$ 
  c
CsÆg}x¹|D]±}|d}|d}y |j|j||ƒgƒWq tk
r}}|ji|jd6|jd6ƒq tjƒ\}}}    |jidd6d||fd6ƒq Xq W|S(sí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
        t
methodNameR5t    faultCodet faultStringis%s:%s(tappendR.RRFRGR0R1(
Rt    call_listtresultstcallR@R5R8R9R:R;((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyR)Zs 
 
 
  
cCs¼d}y|j|}Wnxtk
r‘|jdk    r’t|jdƒr[|jj||ƒSyt|j||jƒ}WqŽtk
rŠqŽXq’nX|dk    r¨||ŒSt    d|ƒ‚dS(só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.
        R.smethod "%s" is not supportedN(
RRtKeyErrorRRR.R R    Rt    Exception(RR6R5tfunc((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyR.zs"    
N(R t
__module__t__doc__tFalseRRRR#R(R*R<R%R&R'R)R.(((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyR s $        %                  tSimpleXMLRPCRequestHandlercBs~eZdZd ZdZdZeZej    dej
ej BƒZ d„Z d„Zd„Zd    „Zd
„Zd d d „ZRS(sƒSimple XML-RPC request handler class.
 
    Handles all HTTP POST requests and attempts to decode them as
    XML-RPC requests.
    t/s/RPC2ixiÿÿÿÿs¢
                            \s* ([^\s;]+) \s*            #content-coding
                            (;\s* q \s*=\s* ([0-9\.]+))? #q
                            cCsŽi}|jjddƒ}xl|jdƒD][}|jj|ƒ}|r+|jdƒ}|rjt|ƒnd}|||jdƒ<q+q+W|S(NsAccept-EncodingRBt,igð?i(theaderstgetRt    aepatterntmatchtgrouptfloat(RtrtaeteRXtv((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pytaccept_encodingsÁscCs!|jr|j|jkStSdS(N(t    rpc_pathsR4tTrue(R((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pytis_rpc_path_validÌs    c
CsN|jƒs|jƒdSyÑd}t|jdƒ}g}xV|r”t||ƒ}|jj|ƒ}|spPn|j|ƒ|t|dƒ8}q?Wdj    |ƒ}|j
|ƒ}|dkrÃdS|j j |t|ddƒ|jƒ}Wn‡tk
rt}|jdƒt|j d    ƒrW|j jrW|jd
t|ƒƒ|jd tjƒƒn|jd d ƒ|jƒnÖX|jdƒ|jddƒ|jdk    rt|ƒ|jkr|jƒjddƒ}    |    ry#tj|ƒ}|jddƒWqtk
r
qXqqn|jd tt|ƒƒƒ|jƒ|jj |ƒdS(sº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
iscontent-lengthiÿÿÿÿRBR.iôt_send_traceback_headers X-exceptions X-tracebacksContent-lengtht0iÈs Content-typestext/xmltgzipisContent-Encodingi(i (!Rbt
report_404tintRUtmintrfiletreadRHtlentjointdecode_request_contentRtserverR<RR4RMt send_responseRRct send_headertstrt    tracebackt
format_exct end_headerstencode_thresholdR_RVR,t gzip_encodetNotImplementedErrortwfiletwrite(
Rtmax_chunk_sizetsize_remainingtLt
chunk_sizetchunkR2R7R]tq((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pytdo_POSTÓsT 
          "     
cCsÅ|jjddƒjƒ}|dkr+|S|dkr“ytj|ƒSWq§tk
ro|jdd|ƒq§tk
r|jddƒq§Xn|jdd|ƒ|jdd    ƒ|j    ƒdS(
Nscontent-encodingtidentityReiõsencoding %r not supportediserror decoding gzip contentsContent-lengthRd(
RURVtlowerR,t gzip_decodeRwRot
ValueErrorRpRt(RR2R((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyRms    cCs]|jdƒd}|jddƒ|jdtt|ƒƒƒ|jƒ|jj|ƒdS(Ni”s No such pages Content-types
text/plainsContent-length(RoRpRqRkRtRxRy(RR7((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyRf*s  
t-cCs)|jjr%tjj|||ƒndS(s$Selectively log an accepted request.N(Rnt logRequeststBaseHTTPServertBaseHTTPRequestHandlert log_request(Rtcodetsize((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyR‰3s (RSs/RPC2(R RORPR`RutwbufsizeRatdisable_nagle_algorithmtretcompiletVERBOSEt
IGNORECASERWR_RbR€RmRfR‰(((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyRR¨s            F            tSimpleXMLRPCServercBs2eZdZeZeZeeeded„Z    RS(sgSimple 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 inhereted
    from SimpleXMLRPCDispatcher to change this behavior.
    cCs›||_tj|||ƒtjj||||ƒtdk    r—ttdƒr—tj|jƒtj    ƒ}|tj
O}tj|jƒtj |ƒndS(Nt
FD_CLOEXEC( R†RRt SocketServert    TCPServertfcntlRRtfilenotF_GETFDR“tF_SETFD(RtaddrtrequestHandlerR†RRtbind_and_activatetflags((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyRLs     N(
R RORPRatallow_reuse_addressRQRcRRRR(((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyR’9s
    tMultiPathXMLRPCServercBsGeZdZeeeded„Zd„Zd„Z    ddd„Z
RS(s\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.
    cCs>tj|||||||ƒi|_||_||_dS(N(R’Rt dispatchersRR(RRšR›R†RRRœ((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyRcs
 
        cCs||j|<|S(N(R (RR4t
dispatcher((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pytadd_dispatcherls cCs |j|S(N(R (RR4((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pytget_dispatcherpscCs{y |j|j|||ƒ}WnTtjƒd \}}tjtjdd||fƒd|jd|jƒ}nX|S(Niis%s:%sRR(    R R<R0R1R,R/RRR(RR2R3R4R7R9R:((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyR<ss N( R RORPRRRaRQRRR¢R£R<(((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyRŸ[s         tCGIXMLRPCRequestHandlercBs;eZdZedd„Zd„Zd„Zdd„ZRS(s3Simple handler for XML-RPC data passed through CGI.cCstj|||ƒdS(N(RR(RRR((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyR„scCs8|j|ƒ}dGHdt|ƒGHHtjj|ƒdS(sHandle a single XML-RPC requestsContent-Type: text/xmlsContent-Length: %dN(R<RkR0tstdoutRy(Rt request_textR7((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyt handle_xmlrpc‡s
cCs}d}tjj|\}}tji|d6|d6|d6}d||fGHdtjGHdt|ƒGHHtjj|ƒdS(    s‹Handle a single HTTP GET request.
 
        Default implementation indicates an error because
        XML-RPC uses the POST method.
        iRŠtmessagetexplains Status: %d %ssContent-Type: %ssContent-Length: %dN(    R‡Rˆt    responsestDEFAULT_ERROR_MESSAGEtDEFAULT_ERROR_CONTENT_TYPERkR0R¥Ry(RRŠR¨R©R7((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyt
handle_get‘s  cCs¥|dkr4tjjddƒdkr4|jƒnmyttjjddƒƒ}Wnttfk
rrd}nX|dkr”tj    j
|ƒ}n|j |ƒdS(sð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.
        tREQUEST_METHODtGETtCONTENT_LENGTHiÿÿÿÿN( RtostenvironRVR­Rgt    TypeErrorR„R0tstdinRjR§(RR¦tlength((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pythandle_request¨s  
 N(    R RORPRQRRR§R­R¶(((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyR¤s
    
   t__main__s#Running XML-RPC server on port 8000t    localhosti@cCs||S(N((Rty((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyt<lambda>Âstadd(RPR,RR”R‡R0R±RrRŽR–t ImportErrorRRaR RRRRˆRRR•R’RŸR¤R RnR#tpowt serve_forever(((sZ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/SimpleXMLRPCServer.pyt<module>as8        
          ÿ    ‘    !&=