gdata.tlslite.integration.TLSAsyncDispatcherMixIn
index
/usr/lib/python2.7/dist-packages/gdata/tlslite/integration/TLSAsyncDispatcherMixIn.py

TLS Lite + asyncore.

 
Modules
       
asyncore

 
Classes
       
gdata.tlslite.integration.AsyncStateMachine.AsyncStateMachine
TLSAsyncDispatcherMixIn

 
class TLSAsyncDispatcherMixIn(gdata.tlslite.integration.AsyncStateMachine.AsyncStateMachine)
    This class can be "mixed in" with an
L{asyncore.dispatcher} to add TLS support.
 
This class essentially sits between the dispatcher and the select
loop, intercepting events and only calling the dispatcher when
applicable.
 
In the case of handle_read(), a read operation will be activated,
and when it completes, the bytes will be placed in a buffer where
the dispatcher can retrieve them by calling recv(), and the
dispatcher's handle_read() will be called.
 
In the case of handle_write(), the dispatcher's handle_write() will
be called, and when it calls send(), a write operation will be
activated.
 
To use this class, you must combine it with an asyncore.dispatcher,
and pass in a handshake operation with setServerHandshakeOp().
 
Below is an example of using this class with medusa.  This class is
mixed in with http_channel to create http_tls_channel.  Note:
 1. the mix-in is listed first in the inheritance list
 
 2. the input buffer size must be at least 16K, otherwise the
   dispatcher might not read all the bytes from the TLS layer,
   leaving some bytes in limbo.
 
 3. IE seems to have a problem receiving a whole HTTP response in a
 single TLS record, so HTML pages containing '\r\n\r\n' won't
 be displayed on IE.
 
Add the following text into 'start_medusa.py', in the 'HTTP Server'
section::
 
    from tlslite.api import *
    s = open("./serverX509Cert.pem").read()
    x509 = X509()
    x509.parse(s)
    certChain = X509CertChain([x509])
 
    s = open("./serverX509Key.pem").read()
    privateKey = parsePEMKey(s, private=True)
 
    class http_tls_channel(TLSAsyncDispatcherMixIn,
                           http_server.http_channel):
        ac_in_buffer_size = 16384
 
        def __init__ (self, server, conn, addr):
            http_server.http_channel.__init__(self, server, conn, addr)
            TLSAsyncDispatcherMixIn.__init__(self, conn)
            self.tlsConnection.ignoreAbruptClose = True
            setServerHandshakeOp(certChain=certChain,
                                      privateKey=privateKey)
 
    hs.channel_class = http_tls_channel
 
If the TLS layer raises an exception, the exception will be caught
in asyncore.dispatcher, which will call close() on this class.  The
TLS layer always closes the TLS connection before raising an
exception, so the close operation will complete right away, causing
asyncore.dispatcher.close() to be called, which closes the socket
and removes this instance from the asyncore loop.
 
  Methods defined here:
__init__(self, sock=None)
close(self)
handle_read(self)
handle_write(self)
outCloseEvent(self)
outConnectEvent(self)
outReadEvent(self, readBuffer)
outWriteEvent(self)
readable(self)
recv(self, bufferSize=16384)
send(self, writeBuffer)
writable(self)

Methods inherited from gdata.tlslite.integration.AsyncStateMachine.AsyncStateMachine:
inReadEvent(self)
Tell the state machine it can read from the socket.
inWriteEvent(self)
Tell the state machine it can write to the socket.
setCloseOp(self)
Start a close operation.
setHandshakeOp(self, handshaker)
Start a handshake operation.
 
@type handshaker: generator
@param handshaker: A generator created by using one of the
asynchronous handshake functions (i.e. handshakeServerAsync, or
handshakeClientxxx(..., async=True).
setServerHandshakeOp(self, **args)
Start a handshake operation.
 
The arguments passed to this function will be forwarded to
L{tlslite.TLSConnection.TLSConnection.handshakeServerAsync}.
setWriteOp(self, writeBuffer)
Start a write operation.
 
@type writeBuffer: str
@param writeBuffer: The string to transmit.
wantsReadEvent(self)
If the state machine wants to read.
 
If an operation is active, this returns whether or not the
operation wants to read from the socket.  If an operation is
not active, this returns None.
 
@rtype: bool or None
@return: If the state machine wants to read.
wantsWriteEvent(self)
If the state machine wants to write.
 
If an operation is active, this returns whether or not the
operation wants to write to the socket.  If an operation is
not active, this returns None.
 
@rtype: bool or None
@return: If the state machine wants to write.