org.eclipse.jetty.http.ssl
Class SslSelectChannelEndPoint

java.lang.Object
  extended by org.eclipse.jetty.io.nio.ChannelEndPoint
      extended by org.eclipse.jetty.io.nio.SelectChannelEndPoint
          extended by org.eclipse.jetty.http.ssl.SslSelectChannelEndPoint
All Implemented Interfaces:
Runnable, AsyncEndPoint, EndPoint

public class SslSelectChannelEndPoint
extends SelectChannelEndPoint

SslSelectChannelEndPoint

A SelectChannelEndPoint that uses an SSLEngine to handle an SSL connection.

There is a named logger "org.eclipse.jetty.http.ssl"


Field Summary
 
Fields inherited from class org.eclipse.jetty.io.nio.ChannelEndPoint
_channel, _gather2, _local, _remote, _socket
 
Constructor Summary
SslSelectChannelEndPoint(Buffers buffers, SocketChannel channel, SelectorManager.SelectSet selectSet, SelectionKey key, SSLEngine engine)
           
 
Method Summary
 void close()
          Close any backing stream associated with the buffer
protected  void doIdleExpired()
           
 void dump()
           
 int fill(Buffer buffer)
          Fill the buffer from the current putIndex to it's capacity from whatever byte source is backing the buffer.
 void flush()
          Flush any buffered output.
 int flush(Buffer buffer)
          Flush the buffer from the current getIndex to it's putIndex using whatever byte sink is backing the buffer.
 int flush(Buffer header, Buffer buffer, Buffer trailer)
          Flush the buffer from the current getIndex to it's putIndex using whatever byte sink is backing the buffer.
 SSLEngine getSSLEngine()
           
protected  void idleExpired()
           
 boolean isBufferingInput()
           
 boolean isBufferingOutput()
           
 boolean isBufferred()
           
 String toString()
           
 
Methods inherited from class org.eclipse.jetty.io.nio.SelectChannelEndPoint
blockReadable, blockWritable, cancelIdle, dispatch, getConnection, getSelectManager, getSelectSet, getTimeoutTask, isReadyForDispatch, run, schedule, scheduleIdle, scheduleWrite, setWritable
 
Methods inherited from class org.eclipse.jetty.io.nio.ChannelEndPoint
getChannel, getLocalAddr, getLocalHost, getLocalPort, getRemoteAddr, getRemoteHost, getRemotePort, getTransport, isBlocking, isOpen
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.eclipse.jetty.io.EndPoint
getLocalAddr, getLocalHost, getLocalPort, getRemoteAddr, getRemoteHost, getRemotePort, getTransport, isBlocking, isOpen
 

Constructor Detail

SslSelectChannelEndPoint

public SslSelectChannelEndPoint(Buffers buffers,
                                SocketChannel channel,
                                SelectorManager.SelectSet selectSet,
                                SelectionKey key,
                                SSLEngine engine)
                         throws IOException
Throws:
IOException
Method Detail

dump

public void dump()

idleExpired

protected void idleExpired()
Overrides:
idleExpired in class SelectChannelEndPoint

doIdleExpired

protected void doIdleExpired()

close

public void close()
           throws IOException
Description copied from interface: EndPoint
Close any backing stream associated with the buffer

Specified by:
close in interface EndPoint
Overrides:
close in class SelectChannelEndPoint
Throws:
IOException

fill

public int fill(Buffer buffer)
         throws IOException
Description copied from interface: EndPoint
Fill the buffer from the current putIndex to it's capacity from whatever byte source is backing the buffer. The putIndex is increased if bytes filled. The buffer may chose to do a compact before filling.

Specified by:
fill in interface EndPoint
Overrides:
fill in class ChannelEndPoint
Returns:
an int value indicating the number of bytes filled or -1 if EOF is reached.
Throws:
IOException

flush

public int flush(Buffer buffer)
          throws IOException
Description copied from interface: EndPoint
Flush the buffer from the current getIndex to it's putIndex using whatever byte sink is backing the buffer. The getIndex is updated with the number of bytes flushed. Any mark set is cleared. If the entire contents of the buffer are flushed, then an implicit empty() is done.

Specified by:
flush in interface EndPoint
Overrides:
flush in class SelectChannelEndPoint
Parameters:
buffer - The buffer to flush. This buffers getIndex is updated.
Returns:
the number of bytes written
Throws:
IOException

flush

public int flush(Buffer header,
                 Buffer buffer,
                 Buffer trailer)
          throws IOException
Description copied from interface: EndPoint
Flush the buffer from the current getIndex to it's putIndex using whatever byte sink is backing the buffer. The getIndex is updated with the number of bytes flushed. Any mark set is cleared. If the entire contents of the buffer are flushed, then an implicit empty() is done. The passed header/trailer buffers are written before/after the contents of this buffer. This may be done either as gather writes, as a poke into this buffer or as several writes. The implementation is free to select the optimal mechanism.

Specified by:
flush in interface EndPoint
Overrides:
flush in class SelectChannelEndPoint
Parameters:
header - A buffer to write before flushing this buffer. This buffers getIndex is updated.
buffer - The buffer to flush. This buffers getIndex is updated.
trailer - A buffer to write after flushing this buffer. This buffers getIndex is updated.
Returns:
the total number of bytes written.
Throws:
IOException

flush

public void flush()
           throws IOException
Description copied from interface: EndPoint
Flush any buffered output. May fail to write all data if endpoint is non-blocking

Specified by:
flush in interface EndPoint
Overrides:
flush in class ChannelEndPoint
Throws:
IOException

isBufferingInput

public boolean isBufferingInput()
Specified by:
isBufferingInput in interface EndPoint
Overrides:
isBufferingInput in class ChannelEndPoint
Returns:
True if the endpoint has some buffered input data

isBufferingOutput

public boolean isBufferingOutput()
Specified by:
isBufferingOutput in interface EndPoint
Overrides:
isBufferingOutput in class ChannelEndPoint
Returns:
True if the endpoint has some buffered output data

isBufferred

public boolean isBufferred()
Specified by:
isBufferred in interface EndPoint
Overrides:
isBufferred in class ChannelEndPoint

getSSLEngine

public SSLEngine getSSLEngine()

toString

public String toString()
Overrides:
toString in class SelectChannelEndPoint


Copyright © 1995-2009 Mort Bay Consulting. All Rights Reserved.