|
barchart-udt-core 2.3.0-SNAPSHOT / 2013-05-13T01:37:38.485-0500 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.net.Socket
com.barchart.udt.net.NetSocketUDT
public class NetSocketUDT
Socket - like wrapper for SocketUDT
| Field Summary | |
|---|---|
protected InputStream |
inputStream
|
protected OutputStream |
outputStream
|
protected SocketUDT |
socketUDT
|
| Constructor Summary | |
|---|---|
|
NetSocketUDT()
uses TypeUDT.STREAM socket in blocking mode |
protected |
NetSocketUDT(SocketUDT socketUDT)
uses provided socket keeping blocking mode |
| Method Summary | |
|---|---|
void |
bind(SocketAddress bindpoint)
Binds the socket to a local address. |
void |
close()
Closes this socket. |
void |
connect(SocketAddress endpoint)
Connects this socket to the server. |
void |
connect(SocketAddress endpoint,
int timeout)
Connects this socket to the server with a specified timeout value. |
SocketChannel |
getChannel()
Returns the unique SocketChannel
object associated with this socket, if any. |
InetAddress |
getInetAddress()
Returns the address to which the socket is connected. |
InputStream |
getInputStream()
Returns an input stream for this socket. |
boolean |
getKeepAlive()
Tests if SO_KEEPALIVE is enabled. |
InetAddress |
getLocalAddress()
Gets the local address to which the socket is bound. |
int |
getLocalPort()
Returns the local port to which this socket is bound. |
SocketAddress |
getLocalSocketAddress()
Returns the address of the endpoint this socket is bound to, or null if it is not bound yet. |
boolean |
getOOBInline()
Tests if OOBINLINE is enabled. |
OutputStream |
getOutputStream()
Returns an output stream for this socket. |
int |
getPort()
Returns the remote port to which this socket is connected. |
int |
getReceiveBufferSize()
Gets the value of the SO_RCVBUF option for this Socket, that is the buffer size used by the platform for input on this Socket. |
SocketAddress |
getRemoteSocketAddress()
Returns the address of the endpoint this socket is connected to, or null if it is unconnected. |
boolean |
getReuseAddress()
Tests if SO_REUSEADDR is enabled. |
int |
getSendBufferSize()
Get value of the SO_SNDBUF option for this Socket, that is the buffer size used by the platform for output on this Socket. |
int |
getSoLinger()
Returns setting for SO_LINGER. |
int |
getSoTimeout()
Returns setting for SO_TIMEOUT. |
boolean |
getTcpNoDelay()
Tests if TCP_NODELAY is enabled. |
int |
getTrafficClass()
Gets traffic class or type-of-service in the IP header for packets sent from this Socket |
boolean |
isBound()
Returns the binding state of the socket. |
boolean |
isClosed()
Returns the closed state of the socket. |
boolean |
isConnected()
Returns the connection state of the socket. |
boolean |
isInputShutdown()
Returns whether the read-half of the socket connection is closed. |
boolean |
isOutputShutdown()
Returns whether the write-half of the socket connection is closed. |
void |
sendUrgentData(int data)
Send one byte of urgent data on the socket. |
void |
setKeepAlive(boolean on)
Enable/disable SO_KEEPALIVE. |
void |
setOOBInline(boolean on)
Enable/disable OOBINLINE (receipt of TCP urgent data) By default, this option is disabled and TCP urgent data received on a socket is silently discarded. |
void |
setPerformancePreferences(int connectionTime,
int latency,
int bandwidth)
Sets performance preferences for this socket. |
void |
setReceiveBufferSize(int size)
Sets the SO_RCVBUF option to the specified value for this Socket . |
void |
setReuseAddress(boolean on)
Enable/disable the SO_REUSEADDR socket option. |
void |
setSendBufferSize(int size)
Sets the SO_SNDBUF option to the specified value for this Socket . |
void |
setSoLinger(boolean on,
int linger)
Enable/disable SO_LINGER with the specified linger time in seconds. |
void |
setSoTimeout(int timeout)
Enable/disable SO_TIMEOUT with the specified timeout, in milliseconds. |
void |
setTcpNoDelay(boolean on)
Enable/disable TCP_NODELAY (disable/enable Nagle's algorithm). |
void |
setTrafficClass(int tc)
Sets traffic class or type-of-service octet in the IP header for packets sent from this Socket. |
void |
shutdownInput()
Places the input stream for this socket at "end of stream". |
void |
shutdownOutput()
Disables the output stream for this socket. |
SocketUDT |
socketUDT()
expose underlying socket |
| Methods inherited from class java.net.Socket |
|---|
setSocketImplFactory, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface com.barchart.udt.net.IceSocket |
|---|
toString |
| Field Detail |
|---|
@ThreadSafe(value="this") protected InputStream inputStream
@ThreadSafe(value="this") protected OutputStream outputStream
protected final SocketUDT socketUDT
| Constructor Detail |
|---|
public NetSocketUDT()
throws ExceptionUDT
TypeUDT.STREAM socket in blocking mode
ExceptionUDTprotected NetSocketUDT(SocketUDT socketUDT)
| Method Detail |
|---|
public void bind(SocketAddress bindpoint)
throws IOException
IceSocket
If the address is null, then the system will pick up an
ephemeral port and a valid local address to bind the socket.
bind in interface IceSocketbind in class Socketbindpoint - the SocketAddress to bind to
IOException - if the bind operation fails, or if the socket is already
bound.IceSocket.isBound()
public void close()
throws IOException
IceSocket
Any thread currently blocked in an I/O operation upon this socket will
throw a SocketException.
Once a socket has been closed, it is not available for further networking use (i.e. can't be reconnected or rebound). A new socket needs to be created.
Closing this socket will also close the socket's
InputStream and OutputStream.
If this socket has an associated channel then the channel is closed as well.
close in interface IceSocketclose in class SocketIOException - if an I/O error occurs when closing this socket. revised
1.4 spec JSR-51IceSocket.isClosed()
public void connect(SocketAddress endpoint)
throws IOException
IceSocket
connect in interface IceSocketconnect in class Socketendpoint - the SocketAddress
IOException - if an error occurs during the connection
public void connect(SocketAddress endpoint,
int timeout)
throws IOException
IceSocket
connect in interface IceSocketconnect in class Socketendpoint - the SocketAddresstimeout - the timeout value to be used in milliseconds.
IOException - if an error occurs during the connection
SocketTimeoutException - if timeout expires before connectingpublic SocketChannel getChannel()
IceSocketSocketChannel
object associated with this socket, if any.
A socket will have a channel if, and only if, the channel itself was
created via the SocketChannel.open or
ServerSocketChannel.accept methods.
getChannel in interface IceSocketgetChannel in class Socketpublic InetAddress getInetAddress()
IceSocket
getInetAddress in interface IceSocketgetInetAddress in class Socketnull if the socket is not connected.
public InputStream getInputStream()
throws IOException
IceSocket
If this socket has an associated channel then the resulting input stream
delegates all of its operations to the channel. If the channel is in
non-blocking mode then the input stream's read operations will
throw an IllegalBlockingModeException.
Under abnormal conditions the underlying connection may be broken by the remote host or the network software (for example a connection reset in the case of TCP connections). When a broken connection is detected by the network software the following applies to the returned input stream :-
The network software may discard bytes that are buffered by the socket.
Bytes that aren't discarded by the network software can be read using
read.
If there are no bytes buffered on the socket, or all buffered bytes have
been consumed by read, then all
subsequent calls to read will throw an
IOException.
If there are no bytes buffered on the socket, and the socket has not been
closed using close, then
available will return
0.
Closing the returned InputStream will close
the associated socket.
getInputStream in interface IceSocketgetInputStream in class SocketIOException - if an I/O error occurs when creating the input stream, the
socket is closed, the socket is not connected, or the
socket input has been shutdown using
IceSocket.shutdownInput()
revised 1.4 spec JSR-51
public boolean getKeepAlive()
throws SocketException
IceSocket
getKeepAlive in interface IceSocketgetKeepAlive in class Socketboolean indicating whether or not SO_KEEPALIVE is
enabled.
SocketException - if there is an error in the underlying protocol, such as a
TCP error.IceSocket.setKeepAlive(boolean)public InetAddress getLocalAddress()
IceSocket
getLocalAddress in interface IceSocketgetLocalAddress in class SocketInetAddress.anyLocalAddress() if the socket is not
bound yet.public int getLocalPort()
IceSocket
getLocalPort in interface IceSocketgetLocalPort in class Socketpublic SocketAddress getLocalSocketAddress()
IceSocketnull if it is not bound yet.
getLocalSocketAddress in interface IceSocketgetLocalSocketAddress in class SocketSocketAddress representing the local endpoint of
this socket, or null if it is not bound yet.IceSocket.getLocalAddress(),
IceSocket.getLocalPort(),
IceSocket.bind(SocketAddress)
public boolean getOOBInline()
throws SocketException
IceSocket
getOOBInline in interface IceSocketgetOOBInline in class Socketboolean indicating whether or not OOBINLINE is
enabled.
SocketException - if there is an error in the underlying protocol, such as a
TCP error.IceSocket.setOOBInline(boolean)
public OutputStream getOutputStream()
throws IOException
IceSocket
If this socket has an associated channel then the resulting output stream
delegates all of its operations to the channel. If the channel is in
non-blocking mode then the output stream's write operations will
throw an IllegalBlockingModeException.
Closing the returned OutputStream will close
the associated socket.
getOutputStream in interface IceSocketgetOutputStream in class SocketIOException - if an I/O error occurs when creating the output stream or
if the socket is not connected. revised 1.4 spec JSR-51public int getPort()
IceSocket
getPort in interface IceSocketgetPort in class Socket
public int getReceiveBufferSize()
throws SocketException
IceSocket
getReceiveBufferSize in interface IceSocketgetReceiveBufferSize in class SocketSocketException - if there is an error in the underlying protocol, such as a
TCP error.IceSocket.setReceiveBufferSize(int)public SocketAddress getRemoteSocketAddress()
IceSocketnull if it is unconnected.
getRemoteSocketAddress in interface IceSocketgetRemoteSocketAddress in class SocketSocketAddress reprensenting the remote endpoint of
this socket, or null if it is not connected yet.IceSocket.getInetAddress(),
IceSocket.getPort(),
IceSocket.connect(SocketAddress, int),
IceSocket.connect(SocketAddress)
public boolean getReuseAddress()
throws SocketException
IceSocket
getReuseAddress in interface IceSocketgetReuseAddress in class Socketboolean indicating whether or not SO_REUSEADDR is
enabled.
SocketException - if there is an error in the underlying protocol, such as a
TCP error.IceSocket.setReuseAddress(boolean)
public int getSendBufferSize()
throws SocketException
IceSocket
getSendBufferSize in interface IceSocketgetSendBufferSize in class SocketSocketException - if there is an error in the underlying protocol, such as a
TCP error.IceSocket.setSendBufferSize(int)
public int getSoLinger()
throws SocketException
IceSocket
getSoLinger in interface IceSocketgetSoLinger in class SocketSocketException - if there is an error in the underlying protocol, such as a
TCP error.IceSocket.setSoLinger(boolean, int)
public int getSoTimeout()
throws SocketException
IceSocket
getSoTimeout in interface IceSocketgetSoTimeout in class SocketSocketException - if there is an error in the underlying protocol, such as a
TCP error.IceSocket.setSoTimeout(int)
public boolean getTcpNoDelay()
throws SocketException
IceSocket
getTcpNoDelay in interface IceSocketgetTcpNoDelay in class Socketboolean indicating whether or not TCP_NODELAY is
enabled.
SocketException - if there is an error in the underlying protocol, such as a
TCP error.IceSocket.setTcpNoDelay(boolean)
public int getTrafficClass()
throws SocketException
IceSocket
As the underlying network implementation may ignore the traffic class or
type-of-service set using IceSocket.setTrafficClass(int) this method may
return a different value than was previously set using the
IceSocket.setTrafficClass(int) method on this Socket.
getTrafficClass in interface IceSocketgetTrafficClass in class SocketSocketException - if there is an error obtaining the traffic class or
type-of-service value.IceSocket.setTrafficClass(int)public boolean isBound()
IceSocket
isBound in interface IceSocketisBound in class SocketIceSocket.bind(java.net.SocketAddress)public boolean isClosed()
IceSocket
isClosed in interface IceSocketisClosed in class SocketIceSocket.close()public boolean isConnected()
IceSocket
isConnected in interface IceSocketisConnected in class Socketpublic boolean isInputShutdown()
IceSocket
isInputShutdown in interface IceSocketisInputShutdown in class SocketIceSocket.shutdownInput()public boolean isOutputShutdown()
IceSocket
isOutputShutdown in interface IceSocketisOutputShutdown in class SocketIceSocket.shutdownOutput()
public void sendUrgentData(int data)
throws IOException
IceSocket
sendUrgentData in interface IceSocketsendUrgentData in class Socketdata - The byte of data to send
IOException - if there is an error sending the data.
public void setKeepAlive(boolean on)
throws SocketException
IceSocket
setKeepAlive in interface IceSocketsetKeepAlive in class Socketon - whether or not to have socket keep alive turned on.
SocketException - if there is an error in the underlying protocol, such as a
TCP error.IceSocket.getKeepAlive()
public void setOOBInline(boolean on)
throws SocketException
IceSocketNote, only limited support is provided for handling incoming urgent data. In particular, no notification of incoming urgent data is provided and there is no capability to distinguish between normal data and urgent data unless provided by a higher level protocol.
setOOBInline in interface IceSocketsetOOBInline in class Socketon - true to enable OOBINLINE, false to
disable.
SocketException - if there is an error in the underlying protocol, such as a
TCP error.IceSocket.getOOBInline()
public void setPerformancePreferences(int connectionTime,
int latency,
int bandwidth)
IceSocketSockets use the TCP/IP protocol by default. Some implementations may offer alternative protocols which have different performance characteristics than TCP/IP. This method allows the application to express its own preferences as to how these tradeoffs should be made when the implementation chooses from the available protocols.
Performance preferences are described by three integers whose values indicate the relative importance of short connection time, low latency, and high bandwidth. The absolute values of the integers are irrelevant; in order to choose a protocol the values are simply compared, with larger values indicating stronger preferences. Negative values represent a lower priority than positive values. If the application prefers short connection time over both low latency and high bandwidth, for example, then it could invoke this method with the values (1, 0, 0). If the application prefers high bandwidth above low latency, and low latency above short connection time, then it could invoke this method with the values (0, 1, 2).
Invoking this method after this socket has been connected will have no effect.
setPerformancePreferences in interface IceSocketsetPerformancePreferences in class SocketconnectionTime - An int expressing the relative importance of a short
connection timelatency - An int expressing the relative importance of low
latencybandwidth - An int expressing the relative importance of high
bandwidth
public void setReceiveBufferSize(int size)
throws SocketException
IceSocketIncreasing the receive buffer size can increase the performance of network I/O for high-volume connection, while decreasing it can help reduce the backlog of incoming data.
Because SO_RCVBUF is a hint, applications that want to verify what size
the buffers were set to should call IceSocket.getReceiveBufferSize().
The value of SO_RCVBUF is also used to set the TCP receive window that is advertized to the remote peer. Generally, the window size can be modified at any time when a socket is connected. However, if a receive window larger than 64K is required then this must be requested before the socket is connected to the remote peer. There are two cases to be aware of:
ServerSocket.setReceiveBufferSize(int) before the
ServerSocket is bound to a local address.
setReceiveBufferSize in interface IceSocketsetReceiveBufferSize in class Socketsize - the size to which to set the receive buffer size. This value
must be greater than 0.
SocketException - if there is an error in the underlying protocol, such as a
TCP error.IceSocket.getReceiveBufferSize(),
ServerSocket.setReceiveBufferSize(int)
public void setReuseAddress(boolean on)
throws SocketException
IceSocketWhen a TCP connection is closed the connection may remain in a timeout state for a period of time after the connection is closed (typically known as the TIME_WAIT state or 2MSL wait state). For applications using a well known socket address or port it may not be possible to bind a socket to the required SocketAddress if there is a connection in the timeout state involving the socket address or port.
Enabling SO_REUSEADDR prior to binding the socket using
IceSocket.bind(SocketAddress) allows the socket to be bound even though a
previous connection is in a timeout state.
When a Socket is created the initial setting of SO_REUSEADDR is disabled.
The behaviour when SO_REUSEADDR is enabled or disabled after a
socket is bound (See IceSocket.isBound()) is not defined.
setReuseAddress in interface IceSocketsetReuseAddress in class Socketon - whether to enable or disable the socket option
SocketException - if an error occurs enabling or disabling the
SO_RESUEADDR socket option, or the socket is
closed.IceSocket.getReuseAddress(),
IceSocket.bind(SocketAddress),
IceSocket.isClosed(),
IceSocket.isBound()
public void setSendBufferSize(int size)
throws SocketException
IceSocket
Because SO_SNDBUF is a hint, applications that want to verify what size
the buffers were set to should call IceSocket.getSendBufferSize().
setSendBufferSize in interface IceSocketsetSendBufferSize in class Socketsize - the size to which to set the send buffer size. This value must
be greater than 0.
SocketException - if there is an error in the underlying protocol, such as a
TCP error.IceSocket.getSendBufferSize()
public void setSoLinger(boolean on,
int linger)
throws SocketException
IceSocket
setSoLinger in interface IceSocketsetSoLinger in class Socketon - whether or not to linger on.linger - how long to linger for, if on is true.
SocketException - if there is an error in the underlying protocol, such as a
TCP error.IceSocket.getSoLinger()
public void setSoTimeout(int timeout)
throws SocketException
IceSocket
setSoTimeout in interface IceSocketsetSoTimeout in class Sockettimeout - the specified timeout, in milliseconds.
SocketException - if there is an error in the underlying protocol, such as a
TCP error.IceSocket.getSoTimeout()
public void setTcpNoDelay(boolean on)
throws SocketException
IceSocket
setTcpNoDelay in interface IceSocketsetTcpNoDelay in class Socketon - true to enable TCP_NODELAY, false to
disable.
SocketException - if there is an error in the underlying protocol, such as a
TCP error.IceSocket.getTcpNoDelay()
public void setTrafficClass(int tc)
throws SocketException
IceSocket
The tc must be in the range 0 <= tc <=
255 or an IllegalArgumentException will be thrown.
Notes:
For Internet Protocol v4 the value consists of an octet with precedence and TOS fields as detailed in RFC 1349. The TOS field is bitset created by bitwise-or'ing values such the following :-
IPTOS_LOWCOST (0x02)IPTOS_RELIABILITY (0x04)IPTOS_THROUGHPUT (0x08)IPTOS_LOWDELAY (0x10)Setting bits in the precedence field may result in a SocketException indicating that the operation is not permitted.
As RFC 1122 section 4.2.4.2 indicates, a compliant TCP implementation should, but is not required to, let application change the TOS field during the lifetime of a connection. So whether the type-of-service field can be changed after the TCP connection has been established depends on the implementation in the underlying platform. Applications should not assume that they can change the TOS field after the connection.
For Internet Protocol v6 tc is the value that would be
placed into the sin6_flowinfo field of the IP header.
setTrafficClass in interface IceSocketsetTrafficClass in class Sockettc - an int value for the bitset.
SocketException - if there is an error setting the traffic class or
type-of-serviceIceSocket.getTrafficClass()
public void shutdownInput()
throws IOException
IceSocketIf you read from a socket input stream after invoking shutdownInput() on the socket, the stream will return EOF.
shutdownInput in interface IceSocketshutdownInput in class SocketIOException - if an I/O error occurs when shutting down this socket.Socket.shutdownOutput(),
Socket.close(),
Socket.setSoLinger(boolean, int),
IceSocket.isInputShutdown()
public void shutdownOutput()
throws IOException
IceSocket
shutdownOutput in interface IceSocketshutdownOutput in class SocketIOException - if an I/O error occurs when shutting down this socket.Socket.shutdownInput(),
Socket.close(),
Socket.setSoLinger(boolean, int),
IceSocket.isOutputShutdown()public SocketUDT socketUDT()
IceCommon
socketUDT in interface IceCommon
|
barchart-udt-core 2.3.0-SNAPSHOT / 2013-05-13T01:37:38.485-0500 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||