ACC SHELL

Path : /usr/lib/python/
File Upload :
Current File : //usr/lib/python/SocketServer.pyo

Ñò
nÄMc@s@dZdZddkZddkZddkZddkZyddkZWnej
oddkZnXdddddd	d
ddd
dgZ	e
edƒoe	iddddgƒndd%d„ƒYZdefd„ƒYZ
de
fd„ƒYZdd&d„ƒYZd
d'd„ƒYZdeefd„ƒYZdee
fd„ƒYZdeefd„ƒYZd	ee
fd„ƒYZe
edƒobde
fd„ƒYZdefd„ƒYZdeefd „ƒYZdeefd!„ƒYZnd
d(d"„ƒYZdefd#„ƒYZdefd$„ƒYZdS()s¡Generic 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 reqd 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 select() 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
- Standard framework for select-based multiplexing

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.

s0.4iÿÿÿÿNt	TCPServert	UDPServertForkingUDPServertForkingTCPServertThreadingUDPServertThreadingTCPServertBaseRequestHandlertStreamRequestHandlertDatagramRequestHandlertThreadingMixIntForkingMixIntAF_UNIXtUnixStreamServertUnixDatagramServertThreadingUnixStreamServertThreadingUnixDatagramServert
BaseServercBsŒeZdZdZd„Zd„Zdd„Zd„Zd„Z	d„Z
d„Zd	„Zd
„Z
d„Zd„Zd
„Zd„ZRS(s€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 select()

    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)
    - 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
    - allow_reuse_address

    Instance variables:

    - RequestHandlerClass
    - socket

    cCs.||_||_tiƒ|_t|_dS(s/Constructor.  May be extended, do not override.N(tserver_addresstRequestHandlerClasst	threadingtEventt_BaseServer__is_shut_downtFalset_BaseServer__serving(tselfRR((s"/usr/lib/python2.6/SocketServer.pyt__init__Ãs		cCsdS(sSCalled by constructor to activate the server.

        May be overridden.

        N((R((s"/usr/lib/python2.6/SocketServer.pytserver_activateÊsgà?cCsrt|_|iiƒxH|io=ti|ggg|ƒ\}}}|o|iƒqqW|iiƒdS(sÑ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.
        N(tTrueRRtcleartselectt_handle_request_noblocktset(Rt
poll_intervaltrtwte((s"/usr/lib/python2.6/SocketServer.pyt
serve_foreverÒs	

$cCst|_|iiƒdS(sÀ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.
        N(RRRtwait(R((s"/usr/lib/python2.6/SocketServer.pytshutdownås	cCs’|iiƒ}|djo
|i}n'|idj	ot||iƒ}nti|ggg|ƒ}|dp|iƒdS|iƒdS(sOHandle one request, possibly blocking.

        Respects self.timeout.
        iN(tsockett
gettimeouttNonettimeouttminRthandle_timeoutR(RR*tfd_sets((s"/usr/lib/python2.6/SocketServer.pythandle_requestús


c	Cs†y|iƒ\}}Wntij
odSX|i||ƒo?y|i||ƒWq‚|i||ƒ|i|ƒq‚XndS(sæHandle one request, without blocking.

        I assume that select.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(tget_requestR'terrortverify_requesttprocess_requestthandle_errort
close_request(Rtrequesttclient_address((s"/usr/lib/python2.6/SocketServer.pyRscCsdS(scCalled if no new request arrives within self.timeout.

        Overridden by ForkingMixIn.
        N((R((s"/usr/lib/python2.6/SocketServer.pyR,scCstS(snVerify the request.  May be overridden.

        Return True if we should proceed with this request.

        (R(RR5R6((s"/usr/lib/python2.6/SocketServer.pyR1%scCs!|i||ƒ|i|ƒdS(sVCall finish_request.

        Overridden by ForkingMixIn and ThreadingMixIn.

        N(tfinish_requestR4(RR5R6((s"/usr/lib/python2.6/SocketServer.pyR2-scCsdS(sDCalled to clean-up the server.

        May be overridden.

        N((R((s"/usr/lib/python2.6/SocketServer.pytserver_close6scCs|i|||ƒdS(s8Finish one request by instantiating RequestHandlerClass.N(R(RR5R6((s"/usr/lib/python2.6/SocketServer.pyR7>scCsdS(s)Called to clean up an individual request.N((RR5((s"/usr/lib/python2.6/SocketServer.pyR4BscCs5ddGHdG|GHddk}|iƒddGHdS(stHandle an error gracefully.  May be overridden.

        The default is to print a traceback and continue.

        t-i(s4Exception happened during processing of request fromiÿÿÿÿN(t	tracebackt	print_exc(RR5R6R:((s"/usr/lib/python2.6/SocketServer.pyR3Fs	
N(t__name__t
__module__t__doc__R)R*RRR$R&R.RR,R1R2R8R7R4R3(((s"/usr/lib/python2.6/SocketServer.pyR–s)												cBsneZdZeiZeiZdZe	Z
ed„Zd„Z
d„Zd„Zd„Zd„Zd„ZRS(	sBase 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 select()

    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)
    - 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

    icCsQti|||ƒti|i|iƒ|_|o|iƒ|iƒndS(s/Constructor.  May be extended, do not override.N(RRR'taddress_familytsocket_typetserver_bindR(RRRtbind_and_activate((s"/usr/lib/python2.6/SocketServer.pyRŠs
cCsS|io |iititidƒn|ii|iƒ|iiƒ|_dS(sOCalled by constructor to bind the socket.

        May be overridden.

        iN(tallow_reuse_addressR't
setsockoptt
SOL_SOCKETtSO_REUSEADDRtbindRtgetsockname(R((s"/usr/lib/python2.6/SocketServer.pyRA“s
 cCs|ii|iƒdS(sSCalled by constructor to activate the server.

        May be overridden.

        N(R'tlistentrequest_queue_size(R((s"/usr/lib/python2.6/SocketServer.pyRžscCs|iiƒdS(sDCalled to clean-up the server.

        May be overridden.

        N(R'tclose(R((s"/usr/lib/python2.6/SocketServer.pyR8¦scCs
|iiƒS(sMReturn socket file number.

        Interface required by select().

        (R'tfileno(R((s"/usr/lib/python2.6/SocketServer.pyRL®scCs
|iiƒS(sYGet the request and client address from the socket.

        May be overridden.

        (R'taccept(R((s"/usr/lib/python2.6/SocketServer.pyR/¶scCs|iƒdS(s)Called to clean up an individual request.N(RK(RR5((s"/usr/lib/python2.6/SocketServer.pyR4¾s(R<R=R>R'tAF_INETR?tSOCK_STREAMR@RJRRCRRRARR8RLR/R4(((s"/usr/lib/python2.6/SocketServer.pyRTs,								cBs>eZdZeZeiZdZd„Z	d„Z
d„ZRS(sUDP server class.i cCs.|ii|iƒ\}}||if|fS(N(R'trecvfromtmax_packet_size(Rtdatatclient_addr((s"/usr/lib/python2.6/SocketServer.pyR/ÍscCsdS(N((R((s"/usr/lib/python2.6/SocketServer.pyRÑscCsdS(N((RR5((s"/usr/lib/python2.6/SocketServer.pyR4Õs(R<R=R>RRCR't
SOCK_DGRAMR@RQR/RR4(((s"/usr/lib/python2.6/SocketServer.pyRÃs			cBs;eZdZdZdZdZd„Zd„Zd„Z	RS(s5Mix-in class to handle each request in a new process.i,i(c	CsG|idjodSx€t|iƒ|ijofytiddƒ\}}Wntij
o
d}nX||ijoqn|ii|ƒqWx¨|iD]}yti|tiƒ\}}Wntij
o
d}nX|pq¢ny|ii|ƒWq¢t	j
o(}t	d|i
||ifƒ‚q¢Xq¢WdS(s7Internal routine to wait for children that have exited.Nis%s. x=%d and list=%r(tactive_childrenR)tlentmax_childrentostwaitpidR0tremovetWNOHANGt
ValueErrortmessage(RtpidtstatustchildR#((s"/usr/lib/python2.6/SocketServer.pytcollect_childrenás0
cCs|iƒdS(snWait for zombies after self.timeout seconds of inactivity.

        May be extended, do not override.
        N(Ra(R((s"/usr/lib/python2.6/SocketServer.pyR,scCs°|iƒtiƒ}|o?|idjo
g|_n|ii|ƒ|i|ƒdSy!|i||ƒtidƒWn,z|i	||ƒWdtidƒXnXdS(s-Fork a new subprocess to process the request.Nii(
RaRXtforkRUR)tappendR4R7t_exitR3(RR5R6R^((s"/usr/lib/python2.6/SocketServer.pyR2s


N(
R<R=R>R*R)RURWRaR,R2(((s"/usr/lib/python2.6/SocketServer.pyR
Ùs	 	cBs&eZdZeZd„Zd„ZRS(s4Mix-in class to handle each request in a new thread.cCsLy!|i||ƒ|i|ƒWn$|i||ƒ|i|ƒnXdS(sgSame as in BaseServer but as a thread.

        In addition, exception handling is done here.

        N(R7R4R3(RR5R6((s"/usr/lib/python2.6/SocketServer.pytprocess_request_thread'scCsJtid|id||fƒ}|io|idƒn|iƒdS(s*Start a new thread to process the request.ttargettargsiN(RtThreadRetdaemon_threadst	setDaemontstart(RR5R6tt((s"/usr/lib/python2.6/SocketServer.pyR24s

(R<R=R>RRiReR2(((s"/usr/lib/python2.6/SocketServer.pyR	 s	
cBseZRS((R<R=(((s"/usr/lib/python2.6/SocketServer.pyR=scBseZRS((R<R=(((s"/usr/lib/python2.6/SocketServer.pyR>scBseZRS((R<R=(((s"/usr/lib/python2.6/SocketServer.pyR@scBseZRS((R<R=(((s"/usr/lib/python2.6/SocketServer.pyRAscBseZeiZRS((R<R=R'RR?(((s"/usr/lib/python2.6/SocketServer.pyREscBseZeiZRS((R<R=R'RR?(((s"/usr/lib/python2.6/SocketServer.pyR
HscBseZRS((R<R=(((s"/usr/lib/python2.6/SocketServer.pyRKscBseZRS((R<R=(((s"/usr/lib/python2.6/SocketServer.pyRMscBs2eZdZd„Zd„Zd„Zd„ZRS(s¨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 arbitrary other instance variariables.

    cCsN||_||_||_z"|iƒ|iƒ|iƒWddt_XdS(N(	R5R6tservertsetupthandletfinishR)tsyst
exc_traceback(RR5R6Rm((s"/usr/lib/python2.6/SocketServer.pyRas			

cCsdS(N((R((s"/usr/lib/python2.6/SocketServer.pyRnlscCsdS(N((R((s"/usr/lib/python2.6/SocketServer.pyRooscCsdS(N((R((s"/usr/lib/python2.6/SocketServer.pyRprs(R<R=R>RRnRoRp(((s"/usr/lib/python2.6/SocketServer.pyROs
			cBs,eZdZdZdZd„Zd„ZRS(s4Define self.rfile and self.wfile for stream sockets.iÿÿÿÿicCsF|i|_|iid|iƒ|_|iid|iƒ|_dS(Ntrbtwb(R5t
connectiontmakefiletrbufsizetrfiletwbufsizetwfile(R((s"/usr/lib/python2.6/SocketServer.pyRnŒscCs<|iip|iiƒn|iiƒ|iiƒdS(N(RztclosedtflushRKRx(R((s"/usr/lib/python2.6/SocketServer.pyRp‘s

(R<R=R>RwRyRnRp(((s"/usr/lib/python2.6/SocketServer.pyR~s
		cBs eZdZd„Zd„ZRS(s6Define self.rfile and self.wfile for datagram sockets.cCsqyddkl}Wn#tj
oddkl}nX|i\|_|_||iƒ|_|ƒ|_dS(Niÿÿÿÿ(tStringIO(t	cStringIOR}tImportErrorR5tpacketR'RxRz(RR}((s"/usr/lib/python2.6/SocketServer.pyRnŸscCs#|ii|iiƒ|iƒdS(N(R'tsendtoRztgetvalueR6(R((s"/usr/lib/python2.6/SocketServer.pyRp¨s(R<R=R>RnRp(((s"/usr/lib/python2.6/SocketServer.pyR˜s		(((((R>t__version__R'RRqRXRRtdummy_threadingt__all__thasattrtextendRRRR
R	RRRRRR
RRRRR(((s"/usr/lib/python2.6/SocketServer.pyt<module>xsD		¾oG/

ACC SHELL 2018