Module swim.io
Package swim.io

Class IpSocketModem<I,O>

java.lang.Object
swim.io.IpSocketModem<I,O>
All Implemented Interfaces:
FlowContext, IpContext, IpModemContext<I,O>, IpSocket

public class IpSocketModem<I,O> extends Object implements IpSocket, IpModemContext<I,O>
Adapter from a flow-controlled IpSocket to a decoder/encoder controlled IpModem.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected IpSocketContext
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    become(IpSocket socket)
    Rebinds the underlying IpSocketContext to a new socket implementation, thereby changing the IpSocket handler that receives network I/O callbacks.
    Returns the cryptographic cipher suite used by the underlying network connection.
    void
    Closes the underlying network socket.
    void
    Lifecycle callback invoked by the socket context after it has become a new socket implementation.
    void
    Lifecycle callback invoked by the socket context after the underlying network socket has opened a connection.
    void
    Lifecycle callback invoked by the socket context after the underlying network connection has disconnected.
    void
    Lifecycle callback invoked by the socket context when the underlying network socket fails by throwing an error.
    void
    Lifecycle callback invoked by the socket context after the underlying network socket has established a secure connection.
    void
    Lifecycle callback invoked by the socket context after the underlying network connection has timed out.
    void
    I/O callback invoked by the socket context after the underlying network socket has completed writing all data in its outputBuffer.
    void
    I/O callback invoked by the socket context asking this IpSocket to read input data out of the socket context's inputBuffer.
    void
    I/O callback invoked by the socket context asking this IpSocket to write output data into the socket context's outputBuffer.
    Returns the current FlowControl state of the underlying network channel.
    void
    flowControl(FlowControl flowControl)
    Enqueues an atomic replacement of the underlying network channel's flow control state with a new flowControl.
    flowControl(FlowModifier flowModifier)
    Enqueues an atomic modification to the underlying network channel's flow control state by applying a flowModifier delta.
    long
    Returns the number of idle milliseconds after which this IpSocket should be closed due to inactivity.
    Returns the configuration parameters that govern the underlying network socket.
    Returns the network socket context to which this IpSocket is bound; returns null if this IpSocket is unbound.
    boolean
    Returns true if the underlying network channel initiated an outgoing connection.
    boolean
    Returns true if the underlying network channel is currently connected.
    boolean
    Returns true if the underlying network transport is encrypted.
    boolean
    Returns true if the underlying network channel accepted an incoming connection.
    Returns the IP address and port of the local endpoint of the underlying network connection.
    Returns the certificate chain used to authenticate the local endpoint of the underlying network connection.
    Returns the authenticated identity of the local endpoint of the underlying network connection.
    <I2 extends I>
    void
    read(Decoder<I2> reader)
    Enqueues a read decoder to which input data will be asynchronously fed.
    Returns the IP address and port of the remote endpoint of the underlying network connection.
    Returns the certificate chain used to authenticate the remote endpoint of the underlying network connection.
    Returns the authenticated identity of the remote endpoint of the underlying network connection.
    Returns the name of the transport-layer security protocol used by the underlying network connection.
    void
    Sets the network socket context to which this IpSocket is bound.
    void
    Lifecycle callback invoked by the socket context before it has become a new socket implementation.
    void
    Lifecycle callback invoked by the socket context before the underlying network socket attempts to open a connection.
    void
    Lifecycle callback invoked by the socket context before the underlying network socket establishes a secure connection.
    <O2 extends O>
    void
    write(Encoder<?,O2> writer)
    Enqueues a write encoder from which output data will be asynchronously pulled.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

    • IpSocketModem

      public IpSocketModem(IpModem<I,O> modem)
  • Method Details

    • ipSocketContext

      public IpSocketContext ipSocketContext()
      Description copied from interface: IpSocket
      Returns the network socket context to which this IpSocket is bound; returns null if this IpSocket is unbound.
      Specified by:
      ipSocketContext in interface IpSocket
    • setIpSocketContext

      public void setIpSocketContext(IpSocketContext context)
      Description copied from interface: IpSocket
      Sets the network socket context to which this IpSocket is bound.
      Specified by:
      setIpSocketContext in interface IpSocket
    • isConnected

      public boolean isConnected()
      Description copied from interface: IpContext
      Returns true if the underlying network channel is currently connected.
      Specified by:
      isConnected in interface IpContext
    • isClient

      public boolean isClient()
      Description copied from interface: IpContext
      Returns true if the underlying network channel initiated an outgoing connection.
      Specified by:
      isClient in interface IpContext
    • isServer

      public boolean isServer()
      Description copied from interface: IpContext
      Returns true if the underlying network channel accepted an incoming connection.
      Specified by:
      isServer in interface IpContext
    • isSecure

      public boolean isSecure()
      Description copied from interface: IpContext
      Returns true if the underlying network transport is encrypted.
      Specified by:
      isSecure in interface IpContext
    • securityProtocol

      public String securityProtocol()
      Description copied from interface: IpContext
      Returns the name of the transport-layer security protocol used by the underlying network connection. Returns null if the underlying network channel is not currently connected, or if the underlying network connection is not secure.
      Specified by:
      securityProtocol in interface IpContext
    • cipherSuite

      public String cipherSuite()
      Description copied from interface: IpContext
      Returns the cryptographic cipher suite used by the underlying network connection. Returns null if the underlying network channel is not currently connected, or if the underlying network connection is not secure.
      Specified by:
      cipherSuite in interface IpContext
    • localAddress

      public InetSocketAddress localAddress()
      Description copied from interface: IpContext
      Returns the IP address and port of the local endpoint of the underlying network connection. Returns null if the underlying network channel is not currently connected.
      Specified by:
      localAddress in interface IpContext
    • localPrincipal

      public Principal localPrincipal()
      Description copied from interface: IpContext
      Returns the authenticated identity of the local endpoint of the underlying network connection. Returns null if the underlying network channel is not currently connected, or if the underlying network connection is not authenticated.
      Specified by:
      localPrincipal in interface IpContext
    • localCertificates

      public Collection<Certificate> localCertificates()
      Description copied from interface: IpContext
      Returns the certificate chain used to authenticate the local endpoint of the underlying network connection. Returns null if the underlying network channel is not currently connected, or if the underlying network connection is not authenticated.
      Specified by:
      localCertificates in interface IpContext
    • remoteAddress

      public InetSocketAddress remoteAddress()
      Description copied from interface: IpContext
      Returns the IP address and port of the remote endpoint of the underlying network connection. Returns null if the underlying network channel is not currently connected.
      Specified by:
      remoteAddress in interface IpContext
    • remotePrincipal

      public Principal remotePrincipal()
      Description copied from interface: IpContext
      Returns the authenticated identity of the remote endpoint of the underlying network connection. Returns null if the underlying network channel is not currently connected, or if the underlying network connection is not authenticated.
      Specified by:
      remotePrincipal in interface IpContext
    • remoteCertificates

      public Collection<Certificate> remoteCertificates()
      Description copied from interface: IpContext
      Returns the certificate chain used to authenticate the remote endpoint of the underlying network connection. Returns null if the underlying network channel is not currently connected, or if the underlying network connection is not authenticated.
      Specified by:
      remoteCertificates in interface IpContext
    • ipSettings

      public IpSettings ipSettings()
      Description copied from interface: IpModemContext
      Returns the configuration parameters that govern the underlying network socket.
      Specified by:
      ipSettings in interface IpModemContext<I,O>
    • read

      public <I2 extends I> void read(Decoder<I2> reader)
      Description copied from interface: IpModemContext
      Enqueues a read decoder to which input data will be asynchronously fed. The read flow control of the underlying network socket is automatically managed using the state of the read decoder. When the read decoder transitions into the done state, the didRead callback of the bound IpModem will be invoked with the decoded result. If the read decoder transitions into the error state, then the didFail callback of the bound IpModem will be invoked with the decode error.
      Specified by:
      read in interface IpModemContext<I,O>
    • write

      public <O2 extends O> void write(Encoder<?,O2> writer)
      Description copied from interface: IpModemContext
      Enqueues a write encoder from which output data will be asynchronously pulled. The write flow control of the underlying network socket is automatically managed using the state of the write encoder. When the write encoder transitions into the done state, the didWrite callback of the bound IpModem will be invoked with the encoded result. If the write encoder transitions into the error state, then the didFail callback of the bound IpModem will be invoked with the encode error.
      Specified by:
      write in interface IpModemContext<I,O>
    • idleTimeout

      public long idleTimeout()
      Description copied from interface: IpSocket
      Returns the number of idle milliseconds after which this IpSocket should be closed due to inactivity. Returns -1 if a default idle timeout should be used. Returns 0 if the underlying network socket should not time out.
      Specified by:
      idleTimeout in interface IpSocket
    • doRead

      public void doRead()
      Description copied from interface: IpSocket
      I/O callback invoked by the socket context asking this IpSocket to read input data out of the socket context's inputBuffer. May be invoked concurrently to other I/O callbacks, but never concurrently with other doRead calls.
      Specified by:
      doRead in interface IpSocket
    • doWrite

      public void doWrite()
      Description copied from interface: IpSocket
      I/O callback invoked by the socket context asking this IpSocket to write output data into the socket context's outputBuffer. May be invoked concurrently to other I/O callbacks, but never concurrently with other doWrite or didWrite calls.
      Specified by:
      doWrite in interface IpSocket
    • didWrite

      public void didWrite()
      Description copied from interface: IpSocket
      I/O callback invoked by the socket context after the underlying network socket has completed writing all data in its outputBuffer. May be invoked concurrently to other I/O callbacks, but never concurrently with other doWrite or didWrite calls.
      Specified by:
      didWrite in interface IpSocket
    • willConnect

      public void willConnect()
      Description copied from interface: IpSocket
      Lifecycle callback invoked by the socket context before the underlying network socket attempts to open a connection.
      Specified by:
      willConnect in interface IpSocket
    • didConnect

      public void didConnect()
      Description copied from interface: IpSocket
      Lifecycle callback invoked by the socket context after the underlying network socket has opened a connection.
      Specified by:
      didConnect in interface IpSocket
    • willSecure

      public void willSecure()
      Description copied from interface: IpSocket
      Lifecycle callback invoked by the socket context before the underlying network socket establishes a secure connection.
      Specified by:
      willSecure in interface IpSocket
    • didSecure

      public void didSecure()
      Description copied from interface: IpSocket
      Lifecycle callback invoked by the socket context after the underlying network socket has established a secure connection.
      Specified by:
      didSecure in interface IpSocket
    • willBecome

      public void willBecome(IpSocket socket)
      Description copied from interface: IpSocket
      Lifecycle callback invoked by the socket context before it has become a new socket implementation.
      Specified by:
      willBecome in interface IpSocket
    • didBecome

      public void didBecome(IpSocket socket)
      Description copied from interface: IpSocket
      Lifecycle callback invoked by the socket context after it has become a new socket implementation.
      Specified by:
      didBecome in interface IpSocket
    • didTimeout

      public void didTimeout()
      Description copied from interface: IpSocket
      Lifecycle callback invoked by the socket context after the underlying network connection has timed out. The socket will automatically be closed.
      Specified by:
      didTimeout in interface IpSocket
    • didDisconnect

      public void didDisconnect()
      Description copied from interface: IpSocket
      Lifecycle callback invoked by the socket context after the underlying network connection has disconnected.
      Specified by:
      didDisconnect in interface IpSocket
    • didFail

      public void didFail(Throwable error)
      Description copied from interface: IpSocket
      Lifecycle callback invoked by the socket context when the underlying network socket fails by throwing an error. The socket will automatically be closed.
      Specified by:
      didFail in interface IpSocket
    • flowControl

      public FlowControl flowControl()
      Description copied from interface: FlowContext
      Returns the current FlowControl state of the underlying network channel.
      Specified by:
      flowControl in interface FlowContext
    • flowControl

      public void flowControl(FlowControl flowControl)
      Description copied from interface: FlowContext
      Enqueues an atomic replacement of the underlying network channel's flow control state with a new flowControl.
      Specified by:
      flowControl in interface FlowContext
    • flowControl

      public FlowControl flowControl(FlowModifier flowModifier)
      Description copied from interface: FlowContext
      Enqueues an atomic modification to the underlying network channel's flow control state by applying a flowModifier delta.
      Specified by:
      flowControl in interface FlowContext
    • become

      public void become(IpSocket socket)
      Description copied from interface: IpModemContext
      Rebinds the underlying IpSocketContext to a new socket implementation, thereby changing the IpSocket handler that receives network I/O callbacks.
      Specified by:
      become in interface IpModemContext<I,O>
    • close

      public void close()
      Description copied from interface: IpModemContext
      Closes the underlying network socket.
      Specified by:
      close in interface IpModemContext<I,O>