org.mortbay.io.nio
Class SelectChannelEndPoint

java.lang.Object
  extended by org.mortbay.io.nio.ChannelEndPoint
      extended by org.mortbay.io.nio.SelectChannelEndPoint
All Implemented Interfaces:
Runnable, AsyncEndPoint, EndPoint
Direct Known Subclasses:
SslHttpChannelEndPoint

public class SelectChannelEndPoint
extends ChannelEndPoint
implements Runnable, AsyncEndPoint

An Endpoint that can be scheduled by SelectorManager.

Author:
gregw

Nested Class Summary
 class SelectChannelEndPoint.IdleTask
           
 
Field Summary
protected  Connection _connection
           
protected  boolean _dispatched
           
protected  int _interestOps
           
protected  SelectionKey _key
           
protected  SelectorManager _manager
           
protected  boolean _readBlocked
           
protected  boolean _redispatched
           
protected  SelectorManager.SelectSet _selectSet
           
protected  boolean _writable
           
protected  boolean _writeBlocked
           
 
Fields inherited from class org.mortbay.io.nio.ChannelEndPoint
_channel, _gather2, _local, _remote, _socket
 
Constructor Summary
SelectChannelEndPoint(SocketChannel channel, SelectorManager.SelectSet selectSet, SelectionKey key)
           
 
Method Summary
 boolean blockReadable(long timeoutMs)
           
 boolean blockWritable(long timeoutMs)
           
 void cancelIdle()
           
 void close()
          Close any backing stream associated with the buffer
 boolean dispatch()
          Dispatch the endpoint to a thread to attend to it.
 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.
 Connection getConnection()
           
 SelectorManager.SelectSet getSelectSet()
           
 Timeout.Task getTimeoutTask()
           
protected  void idleExpired()
           
 boolean isReadyForDispatch()
           
 void run()
           
 void schedule()
          Called by selectSet to schedule handling
 void scheduleIdle()
           
 void scheduleWrite()
           
 void setWritable(boolean writable)
           
 String toString()
           
protected  boolean undispatch()
          Called when a dispatched thread is no longer handling the endpoint.
 
Methods inherited from class org.mortbay.io.nio.ChannelEndPoint
fill, flush, getChannel, getLocalAddr, getLocalHost, getLocalPort, getRemoteAddr, getRemoteHost, getRemotePort, getTransport, isBlocking, isBufferingInput, isBufferingOutput, isBufferred, isOpen
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.mortbay.io.EndPoint
fill, flush, getLocalAddr, getLocalHost, getLocalPort, getRemoteAddr, getRemoteHost, getRemotePort, getTransport, isBlocking, isBufferingInput, isBufferingOutput, isBufferred, isOpen
 

Field Detail

_manager

protected SelectorManager _manager

_selectSet

protected SelectorManager.SelectSet _selectSet

_dispatched

protected boolean _dispatched

_redispatched

protected boolean _redispatched

_writable

protected boolean _writable

_key

protected SelectionKey _key

_interestOps

protected int _interestOps

_readBlocked

protected boolean _readBlocked

_writeBlocked

protected boolean _writeBlocked

_connection

protected Connection _connection
Constructor Detail

SelectChannelEndPoint

public SelectChannelEndPoint(SocketChannel channel,
                             SelectorManager.SelectSet selectSet,
                             SelectionKey key)
Method Detail

getConnection

public Connection getConnection()

schedule

public void schedule()
              throws IOException
Called by selectSet to schedule handling

Throws:
IOException

dispatch

public boolean dispatch()
Description copied from interface: AsyncEndPoint
Dispatch the endpoint to a thread to attend to it.

Specified by:
dispatch in interface AsyncEndPoint
Returns:
True If the dispatched succeeded

undispatch

protected boolean undispatch()
Called when a dispatched thread is no longer handling the endpoint. The selection key operations are updated.


scheduleIdle

public void scheduleIdle()

cancelIdle

public void cancelIdle()

idleExpired

protected void idleExpired()

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 ChannelEndPoint
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 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 ChannelEndPoint
Parameters:
buffer - The buffer to flush. This buffers getIndex is updated.
Returns:
the number of bytes written
Throws:
IOException

isReadyForDispatch

public boolean isReadyForDispatch()
Specified by:
isReadyForDispatch in interface AsyncEndPoint
Returns:
true if this endpoint can accept a dispatch. False if the endpoint cannot accept a dispatched (eg is suspended or already dispatched)

blockReadable

public boolean blockReadable(long timeoutMs)
                      throws IOException
Specified by:
blockReadable in interface EndPoint
Overrides:
blockReadable in class ChannelEndPoint
Throws:
IOException

blockWritable

public boolean blockWritable(long timeoutMs)
                      throws IOException
Specified by:
blockWritable in interface EndPoint
Overrides:
blockWritable in class ChannelEndPoint
Throws:
IOException

setWritable

public void setWritable(boolean writable)

scheduleWrite

public void scheduleWrite()

run

public void run()
Specified by:
run in interface Runnable

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 ChannelEndPoint
Throws:
IOException

toString

public String toString()
Overrides:
toString in class Object

getTimeoutTask

public Timeout.Task getTimeoutTask()

getSelectSet

public SelectorManager.SelectSet getSelectSet()


Copyright © 2008 Mort Bay Consulting. All Rights Reserved.