Your IP : 3.17.177.75


Current Path : /lib64/python3.6/__pycache__/
Upload File :
Current File : //lib64/python3.6/__pycache__/socketserver.cpython-36.pyc

3


 \�i�@sdZdZddlZddlZddlZddlZddlZyddlZWnek
rXddl	ZYnXddl
mZddlm
Zdddd	d
ddd
dg	Zeed�r�ejdddg�eed�r�ejddddg�eed�r�ejZnejZGdd�d�ZGdd�de�ZGdd�de�Zeed��rGdd�d�ZGdd�d�Zeed��r\Gdd�dee�ZGdd�dee�ZGd d	�d	ee�ZGd!d
�d
ee�Zeed��r�Gd"d�de�ZGd#d�de�ZGd$d�dee�ZGd%d�dee�Z Gd&d�d�Z!Gd'd�de!�Z"Gd(d)�d)e�Z#Gd*d
�d
e!�Z$dS)+apGeneric socket server classes.

This module tries to capture the various aspects of defining a server:

For socket-based servers:

- address family:
        - AF_INET{,6}: IP (Internet Protocol) sockets (default)
        - AF_UNIX: Unix domain sockets
        - others, e.g. AF_DECNET are conceivable (see <socket.h>
- socket type:
        - SOCK_STREAM (reliable stream, e.g. TCP)
        - SOCK_DGRAM (datagrams, e.g. UDP)

For request-based servers (including socket-based):

- client address verification before further looking at the request
        (This is actually a hook for any processing that needs to look
         at the request before anything else, e.g. logging)
- how to handle multiple requests:
        - synchronous (one request is handled at a time)
        - forking (each request is handled by a new process)
        - threading (each request is handled by a new thread)

The classes in this module favor the server type that is simplest to
write: a synchronous TCP/IP server.  This is bad class design, but
save some typing.  (There's also the issue that a deep class hierarchy
slows down method lookups.)

There are five classes in an inheritance diagram, four of which represent
synchronous servers of four types:

        +------------+
        | BaseServer |
        +------------+
              |
              v
        +-----------+        +------------------+
        | TCPServer |------->| UnixStreamServer |
        +-----------+        +------------------+
              |
              v
        +-----------+        +--------------------+
        | UDPServer |------->| UnixDatagramServer |
        +-----------+        +--------------------+

Note that UnixDatagramServer derives from UDPServer, not from
UnixStreamServer -- the only difference between an IP and a Unix
stream server is the address family, which is simply repeated in both
unix server classes.

Forking and threading versions of each type of server can be created
using the ForkingMixIn and ThreadingMixIn mix-in classes.  For
instance, a threading UDP server class is created as follows:

        class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass

The Mix-in class must come first, since it overrides a method defined
in UDPServer! Setting the various member variables also changes
the behavior of the underlying server mechanism.

To implement a service, you must derive a class from
BaseRequestHandler and redefine its handle() method.  You can then run
various versions of the service by combining one of the server classes
with your request handler class.

The request handler class must be different for datagram or stream
services.  This can be hidden by using the request handler
subclasses StreamRequestHandler or DatagramRequestHandler.

Of course, you still have to use your head!

For instance, it makes no sense to use a forking server if the service
contains state in memory that can be modified by requests (since the
modifications in the child process would never reach the initial state
kept in the parent process and passed to each child).  In this case,
you can use a threading server, but you will probably have to use
locks to avoid two requests that come in nearly simultaneous to apply
conflicting changes to the server state.

On the other hand, if you are building e.g. an HTTP server, where all
data is stored externally (e.g. in the file system), a synchronous
class will essentially render the service "deaf" while one request is
being handled -- which may be for a very long time if a client is slow
to read all the data it has requested.  Here a threading or forking
server is appropriate.

In some cases, it may be appropriate to process part of a request
synchronously, but to finish processing in a forked child depending on
the request data.  This can be implemented by using a synchronous
server and doing an explicit fork in the request handler class
handle() method.

Another approach to handling multiple simultaneous requests in an
environment that supports neither threads nor fork (or where these are
too expensive or inappropriate for the service) is to maintain an
explicit table of partially finished requests and to use a selector to
decide which request to work on next (or whether to handle a new
incoming request).  This is particularly important for stream services
where each client can potentially be connected for a long time (if
threads or subprocesses cannot be used).

Future work:
- Standard classes for Sun RPC (which uses either UDP or TCP)
- Standard mix-in classes to implement various authentication
  and encryption schemes

XXX Open problems:
- What to do with out-of-band data?

BaseServer:
- split generic "request" functionality out into BaseServer class.
  Copyright (C) 2000  Luke Kenneth Casson Leighton <lkcl@samba.org>

  example: read entries from a SQL database (requires overriding
  get_request() to return a table entry from the database).
  entry is processed by a RequestHandlerClass.

z0.4�N)�BufferedIOBase)�	monotonic�
BaseServer�	TCPServer�	UDPServer�ThreadingUDPServer�ThreadingTCPServer�BaseRequestHandler�StreamRequestHandler�DatagramRequestHandler�ThreadingMixIn�fork�ForkingUDPServer�ForkingTCPServer�ForkingMixIn�AF_UNIX�UnixStreamServer�UnixDatagramServer�ThreadingUnixStreamServer�ThreadingUnixDatagramServer�PollSelectorc@s�eZdZdZdZdd�Zdd�Zd&dd	�Zd
d�Zdd
�Z	dd�Z
dd�Zdd�Zdd�Z
dd�Zdd�Zdd�Zdd�Zdd�Zd d!�Zd"d#�Zd$d%�ZdS)'ra�Base class for server classes.

    Methods for the caller:

    - __init__(server_address, RequestHandlerClass)
    - serve_forever(poll_interval=0.5)
    - shutdown()
    - handle_request()  # if you do not use serve_forever()
    - fileno() -> int   # for selector

    Methods that may be overridden:

    - server_bind()
    - server_activate()
    - get_request() -> request, client_address
    - handle_timeout()
    - verify_request(request, client_address)
    - server_close()
    - process_request(request, client_address)
    - shutdown_request(request)
    - close_request(request)
    - service_actions()
    - handle_error()

    Methods for derived classes:

    - finish_request(request, client_address)

    Class variables that may be overridden by derived classes or
    instances:

    - timeout
    - address_family
    - socket_type
    - allow_reuse_address

    Instance variables:

    - RequestHandlerClass
    - socket

    NcCs ||_||_tj�|_d|_dS)z/Constructor.  May be extended, do not override.FN)�server_address�RequestHandlerClass�	threadingZEvent�_BaseServer__is_shut_down�_BaseServer__shutdown_request)�selfrr�r�$/usr/lib64/python3.6/socketserver.py�__init__�s
zBaseServer.__init__cCsdS)zSCalled by constructor to activate the server.

        May be overridden.

        Nr)rrrr�server_activate�szBaseServer.server_activate��?cCsx|jj�zVt��F}|j|tj�x0|jsR|j|�}|jr<P|rH|j�|j	�q$WWdQRXWdd|_|jj
�XdS)z�Handle one request at a time until shutdown.

        Polls for shutdown every poll_interval seconds. Ignores
        self.timeout. If you need to do periodic tasks, do them in
        another thread.
        NF)r�clear�_ServerSelector�register�	selectors�
EVENT_READr�select�_handle_request_noblock�service_actions�set)rZ
poll_interval�selector�readyrrr�
serve_forever�s

zBaseServer.serve_forevercCsd|_|jj�dS)z�Stops the serve_forever loop.

        Blocks until the loop has finished. This must be called while
        serve_forever() is running in another thread, or it will
        deadlock.
        TN)rr�wait)rrrr�shutdown�szBaseServer.shutdowncCsdS)z�Called by the serve_forever() loop.

        May be overridden by a subclass / Mixin to implement any code that
        needs to be run during the loop.
        Nr)rrrrr)szBaseServer.service_actionsc
Cs�|jj�}|dkr|j}n|jdk	r0t||j�}|dk	rBt�|}t��R}|j|tj�x<|j	|�}|rp|j
�S|dk	rZ|t�}|dkrZ|j�SqZWWdQRXdS)zOHandle one request, possibly blocking.

        Respects self.timeout.
        Nr)�socketZ
gettimeout�timeout�min�timer#r$r%r&r'r(�handle_timeout)rr1Zdeadliner+r,rrr�handle_requests"




zBaseServer.handle_requestcCs�y|j�\}}Wntk
r$dSX|j||�r�y|j||�Wq�tk
rl|j||�|j|�Yq�|j|��Yq�Xn
|j|�dS)z�Handle one request, without blocking.

        I assume that selector.select() has returned that the socket is
        readable before this function was called, so there should be no risk of
        blocking in get_request().
        N)�get_request�OSError�verify_request�process_request�	Exception�handle_error�shutdown_request)r�request�client_addressrrrr(3s

z"BaseServer._handle_request_noblockcCsdS)zcCalled if no new request arrives within self.timeout.

        Overridden by ForkingMixIn.
        Nr)rrrrr4JszBaseServer.handle_timeoutcCsdS)znVerify the request.  May be overridden.

        Return True if we should proceed with this request.

        Tr)rr=r>rrrr8QszBaseServer.verify_requestcCs|j||�|j|�dS)zVCall finish_request.

        Overridden by ForkingMixIn and ThreadingMixIn.

        N)�finish_requestr<)rr=r>rrrr9YszBaseServer.process_requestcCsdS)zDCalled to clean-up the server.

        May be overridden.

        Nr)rrrr�server_closebszBaseServer.server_closecCs|j|||�dS)z8Finish one request by instantiating RequestHandlerClass.N)r)rr=r>rrrr?jszBaseServer.finish_requestcCs|j|�dS)z3Called to shutdown and close an individual request.N)�
close_request)rr=rrrr<nszBaseServer.shutdown_requestcCsdS)z)Called to clean up an individual request.Nr)rr=rrrrArszBaseServer.close_requestcCsHtddtjd�td|tjd�ddl}|j�tddtjd�dS)ztHandle an error gracefully.  May be overridden.

        The default is to print a traceback and continue.

        �-�()�filez4Exception happened during processing of request fromrN)�print�sys�stderr�	traceback�	print_exc)rr=r>rHrrrr;vszBaseServer.handle_errorcCs|S)Nr)rrrr�	__enter__�szBaseServer.__enter__cGs|j�dS)N)r@)r�argsrrr�__exit__�szBaseServer.__exit__)r!)�__name__�
__module__�__qualname__�__doc__r1rr r-r/r)r5r(r4r8r9r@r?r<rAr;rJrLrrrrr�s&+

	
c@sfeZdZdZejZejZdZ	dZ
ddd�Zdd�Zd	d
�Z
dd�Zd
d�Zdd�Zdd�Zdd�ZdS)ra3Base class for various socket-based server classes.

    Defaults to synchronous IP stream (i.e., TCP).

    Methods for the caller:

    - __init__(server_address, RequestHandlerClass, bind_and_activate=True)
    - serve_forever(poll_interval=0.5)
    - shutdown()
    - handle_request()  # if you don't use serve_forever()
    - fileno() -> int   # for selector

    Methods that may be overridden:

    - server_bind()
    - server_activate()
    - get_request() -> request, client_address
    - handle_timeout()
    - verify_request(request, client_address)
    - process_request(request, client_address)
    - shutdown_request(request)
    - close_request(request)
    - handle_error()

    Methods for derived classes:

    - finish_request(request, client_address)

    Class variables that may be overridden by derived classes or
    instances:

    - timeout
    - address_family
    - socket_type
    - request_queue_size (only for stream sockets)
    - allow_reuse_address

    Instance variables:

    - server_address
    - RequestHandlerClass
    - socket

    �FTc	CsTtj|||�tj|j|j�|_|rPy|j�|j�Wn|j��YnXdS)z/Constructor.  May be extended, do not override.N)rrr0�address_family�socket_type�server_bindr r@)rrrZbind_and_activaterrrr�s
zTCPServer.__init__cCs8|jr|jjtjtjd�|jj|j�|jj�|_dS)zOCalled by constructor to bind the socket.

        May be overridden.

        �N)�allow_reuse_addressr0�
setsockoptZ
SOL_SOCKETZSO_REUSEADDRZbindrZgetsockname)rrrrrT�szTCPServer.server_bindcCs|jj|j�dS)zSCalled by constructor to activate the server.

        May be overridden.

        N)r0Zlisten�request_queue_size)rrrrr �szTCPServer.server_activatecCs|jj�dS)zDCalled to clean-up the server.

        May be overridden.

        N)r0�close)rrrrr@�szTCPServer.server_closecCs
|jj�S)zMReturn socket file number.

        Interface required by selector.

        )r0�fileno)rrrrrZ�szTCPServer.filenocCs
|jj�S)zYGet the request and client address from the socket.

        May be overridden.

        )r0Zaccept)rrrrr6�szTCPServer.get_requestcCs4y|jtj�Wntk
r$YnX|j|�dS)z3Called to shutdown and close an individual request.N)r/r0ZSHUT_WRr7rA)rr=rrrr<�s
zTCPServer.shutdown_requestcCs|j�dS)z)Called to clean up an individual request.N)rY)rr=rrrrAszTCPServer.close_requestN)T)rMrNrOrPr0ZAF_INETrRZSOCK_STREAMrSrXrVrrTr r@rZr6r<rArrrrr�s-


c@s>eZdZdZdZejZdZdd�Z	dd�Z
dd	�Zd
d�ZdS)
rzUDP server class.Fi cCs |jj|j�\}}||jf|fS)N)r0Zrecvfrom�max_packet_size)r�dataZclient_addrrrrr6szUDPServer.get_requestcCsdS)Nr)rrrrr szUDPServer.server_activatecCs|j|�dS)N)rA)rr=rrrr<szUDPServer.shutdown_requestcCsdS)Nr)rr=rrrrAszUDPServer.close_requestN)
rMrNrOrPrVr0Z
SOCK_DGRAMrSr[r6r r<rArrrrrscsVeZdZdZdZdZdZdZdd�dd�Zd	d
�Z	dd�Z
d
d�Z�fdd�Z�Z
S)rz5Mix-in class to handle each request in a new process.i,NrCF)�blockingcCs�|jdkrdSxht|j�|jkrvy tjdd�\}}|jj|�Wqtk
r^|jj�Yqtk
rrPYqXqWxt|jj	�D]f}y.|r�dntj
}tj||�\}}|jj|�Wq�tk
r�|jj|�Yq�tk
r�Yq�Xq�WdS)z7Internal routine to wait for children that have exited.NrUr���)�active_children�len�max_children�os�waitpid�discard�ChildProcessErrorr"r7�copy�WNOHANG)rr]�pid�_�flagsrrr�collect_children,s&
zForkingMixIn.collect_childrencCs|j�dS)zvWait for zombies after self.timeout seconds of inactivity.

            May be extended, do not override.
            N)rk)rrrrr4OszForkingMixIn.handle_timeoutcCs|j�dS)z�Collect the zombie child processes regularly in the ForkingMixIn.

            service_actions is called in the BaseServer's serve_forver loop.
            N)rk)rrrrr)VszForkingMixIn.service_actionscCs�tj�}|r8|jdkrt�|_|jj|�|j|�dSd}z:y|j||�d}Wn tk
rr|j||�YnXWdz|j	|�Wdtj
|�XXdS)z-Fork a new subprocess to process the request.NrUr)rbr
r_r*�addrAr?r:r;r<�_exit)rr=r>rhZstatusrrrr9]s 

zForkingMixIn.process_requestcst�j�|j|jd�dS)N)r])�superr@rk�_block_on_close)r)�	__class__rrr@vs
zForkingMixIn.server_close)rMrNrOrPr1r_rarorkr4r)r9r@�
__classcell__rr)rprr#s#cs<eZdZdZdZdZdZdd�Zdd�Z�fdd	�Z	�Z
S)
rz4Mix-in class to handle each request in a new thread.FNcCsHz6y|j||�Wn tk
r2|j||�YnXWd|j|�XdS)zgSame as in BaseServer but as a thread.

        In addition, exception handling is done here.

        N)r?r:r;r<)rr=r>rrr�process_request_thread�s
z%ThreadingMixIn.process_request_threadcCsRtj|j||fd�}|j|_|jrF|jrF|jdkr:g|_|jj|�|j�dS)z*Start a new thread to process the request.)�targetrKN)	rZThreadrr�daemon_threadsZdaemonro�_threads�append�start)rr=r>�trrrr9�s
zThreadingMixIn.process_requestcs:t�j�|jr6|j}d|_|r6x|D]}|j�q&WdS)N)rnr@roru�join)rZthreadsZthread)rprrr@�s

zThreadingMixIn.server_close)rMrNrOrPrtrorurrr9r@rqrr)rprr{s
c@seZdZdS)rN)rMrNrOrrrrr�sc@seZdZdS)rN)rMrNrOrrrrr�sc@seZdZdS)rN)rMrNrOrrrrr�sc@seZdZdS)rN)rMrNrOrrrrr�sc@seZdZejZdS)rN)rMrNrOr0rrRrrrrr�sc@seZdZejZdS)rN)rMrNrOr0rrRrrrrr�sc@seZdZdS)rN)rMrNrOrrrrr�sc@seZdZdS)rN)rMrNrOrrrrr�sc@s0eZdZdZdd�Zdd�Zdd�Zdd	�Zd
S)r	a�Base class for request handler classes.

    This class is instantiated for each request to be handled.  The
    constructor sets the instance variables request, client_address
    and server, and then calls the handle() method.  To implement a
    specific service, all you need to do is to derive a class which
    defines a handle() method.

    The handle() method can find the request as self.request, the
    client address as self.client_address, and the server (in case it
    needs access to per-server information) as self.server.  Since a
    separate instance is created for each request, the handle() method
    can define other arbitrary instance variables.

    c
Cs6||_||_||_|j�z|j�Wd|j�XdS)N)r=r>�server�setup�handle�finish)rr=r>rzrrrr�szBaseRequestHandler.__init__cCsdS)Nr)rrrrr{�szBaseRequestHandler.setupcCsdS)Nr)rrrrr|�szBaseRequestHandler.handlecCsdS)Nr)rrrrr}�szBaseRequestHandler.finishN)rMrNrOrPrr{r|r}rrrrr	�s

c@s0eZdZdZd
ZdZdZdZdd�Zdd	�Z	dS)r
z4Define self.rfile and self.wfile for stream sockets.rUrNFcCsz|j|_|jdk	r |jj|j�|jr:|jjtjtjd�|jj	d|j
�|_|jdkrdt
|j�|_n|jj	d|j�|_dS)NT�rbr�wb)r=Z
connectionr1Z
settimeout�disable_nagle_algorithmrWr0ZIPPROTO_TCPZTCP_NODELAY�makefile�rbufsize�rfile�wbufsize�
_SocketWriter�wfile)rrrrr{�s



zStreamRequestHandler.setupcCsF|jjs.y|jj�Wntjk
r,YnX|jj�|jj�dS)N)r��closed�flushr0�errorrYr�)rrrrr}s
zStreamRequestHandler.finishr^)
rMrNrOrPr�r�r1r�r{r}rrrrr
�s	
c@s0eZdZdZdd�Zdd�Zdd�Zdd	�Zd
S)r�z�Simple writable BufferedIOBase implementation for a socket

    Does not hold data in a buffer, avoiding any need to call flush().cCs
||_dS)N)�_sock)rZsockrrrrsz_SocketWriter.__init__cCsdS)NTr)rrrr�writablesz_SocketWriter.writablec	Cs&|jj|�t|��}|jSQRXdS)N)r�Zsendall�
memoryview�nbytes)r�bZviewrrr�write"s
z_SocketWriter.writecCs
|jj�S)N)r�rZ)rrrrrZ'sz_SocketWriter.filenoN)rMrNrOrPrr�r�rZrrrrr�s
r�c@s eZdZdZdd�Zdd�ZdS)rz6Define self.rfile and self.wfile for datagram sockets.cCs2ddlm}|j\|_|_||j�|_|�|_dS)Nr)�BytesIO)�ior�r=Zpacketr0r�r�)rr�rrrr{.szDatagramRequestHandler.setupcCs|jj|jj�|j�dS)N)r0Zsendtor��getvaluer>)rrrrr}4szDatagramRequestHandler.finishN)rMrNrOrPr{r}rrrrr*s)%rP�__version__r0r%rb�errnorFr�ImportErrorZdummy_threadingr�rr3r�__all__�hasattr�extendrr#ZSelectSelectorrrrrrrrrrrrrrr	r
r�rrrrr�<module>ws\


n~X..-