2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2019-03-16 19:44:12 +00:00
|
|
|
* Copyright (c) 1995, 2019, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 only, as
|
2010-05-25 15:58:33 -07:00
|
|
|
* published by the Free Software Foundation. Oracle designates this
|
2007-12-01 00:00:00 +00:00
|
|
|
* particular file as subject to the "Classpath" exception as provided
|
2010-05-25 15:58:33 -07:00
|
|
|
* by Oracle in the LICENSE file that accompanied this code.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
|
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
* accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License version
|
|
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
2010-05-25 15:58:33 -07:00
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package java.net;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.io.OutputStream;
|
|
|
|
import java.io.FileDescriptor;
|
2014-04-12 20:21:09 +01:00
|
|
|
import java.util.Set;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2019-03-16 19:44:12 +00:00
|
|
|
import sun.net.PlatformSocketImpl;
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
/**
|
2013-07-30 11:04:19 -07:00
|
|
|
* The abstract class {@code SocketImpl} is a common superclass
|
2007-12-01 00:00:00 +00:00
|
|
|
* of all classes that actually implement sockets. It is used to
|
|
|
|
* create both client and server sockets.
|
|
|
|
* <p>
|
|
|
|
* A "plain" socket implements these methods exactly as
|
|
|
|
* described, without attempting to go through a firewall or proxy.
|
|
|
|
*
|
|
|
|
* @author unascribed
|
2014-06-10 16:18:54 -07:00
|
|
|
* @since 1.0
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
public abstract class SocketImpl implements SocketOptions {
|
2019-03-16 19:44:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an instance of platform's SocketImpl
|
|
|
|
*/
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
static <S extends SocketImpl & PlatformSocketImpl> S createPlatformSocketImpl(boolean server) {
|
2019-05-02 17:29:10 +01:00
|
|
|
return (S) new PlainSocketImpl(server);
|
2019-03-16 19:44:12 +00:00
|
|
|
}
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
/**
|
|
|
|
* The file descriptor object for this socket.
|
|
|
|
*/
|
|
|
|
protected FileDescriptor fd;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The IP address of the remote end of this socket.
|
|
|
|
*/
|
|
|
|
protected InetAddress address;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The port number on the remote host to which this socket is connected.
|
|
|
|
*/
|
|
|
|
protected int port;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The local port number to which this socket is connected.
|
|
|
|
*/
|
|
|
|
protected int localport;
|
|
|
|
|
2019-05-02 17:29:10 +01:00
|
|
|
/**
|
|
|
|
* Whether this is a server or not.
|
|
|
|
*/
|
|
|
|
final boolean isServer;
|
|
|
|
|
|
|
|
|
|
|
|
SocketImpl(boolean isServer) {
|
|
|
|
this.isServer = isServer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize a new instance of this class
|
|
|
|
*/
|
|
|
|
public SocketImpl() {
|
|
|
|
this.isServer = false;
|
|
|
|
}
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
/**
|
|
|
|
* Creates either a stream or a datagram socket.
|
|
|
|
*
|
2013-07-30 11:04:19 -07:00
|
|
|
* @param stream if {@code true}, create a stream socket;
|
2007-12-01 00:00:00 +00:00
|
|
|
* otherwise, create a datagram socket.
|
|
|
|
* @exception IOException if an I/O error occurs while creating the
|
|
|
|
* socket.
|
|
|
|
*/
|
|
|
|
protected abstract void create(boolean stream) throws IOException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Connects this socket to the specified port on the named host.
|
|
|
|
*
|
|
|
|
* @param host the name of the remote host.
|
|
|
|
* @param port the port number.
|
|
|
|
* @exception IOException if an I/O error occurs when connecting to the
|
|
|
|
* remote host.
|
|
|
|
*/
|
|
|
|
protected abstract void connect(String host, int port) throws IOException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Connects this socket to the specified port number on the specified host.
|
|
|
|
*
|
|
|
|
* @param address the IP address of the remote host.
|
|
|
|
* @param port the port number.
|
|
|
|
* @exception IOException if an I/O error occurs when attempting a
|
|
|
|
* connection.
|
|
|
|
*/
|
|
|
|
protected abstract void connect(InetAddress address, int port) throws IOException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Connects this socket to the specified port number on the specified host.
|
|
|
|
* A timeout of zero is interpreted as an infinite timeout. The connection
|
|
|
|
* will then block until established or an error occurs.
|
|
|
|
*
|
|
|
|
* @param address the Socket address of the remote host.
|
|
|
|
* @param timeout the timeout value, in milliseconds, or zero for no timeout.
|
|
|
|
* @exception IOException if an I/O error occurs when attempting a
|
|
|
|
* connection.
|
|
|
|
* @since 1.4
|
|
|
|
*/
|
|
|
|
protected abstract void connect(SocketAddress address, int timeout) throws IOException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Binds this socket to the specified local IP address and port number.
|
|
|
|
*
|
|
|
|
* @param host an IP address that belongs to a local interface.
|
|
|
|
* @param port the port number.
|
|
|
|
* @exception IOException if an I/O error occurs when binding this socket.
|
|
|
|
*/
|
|
|
|
protected abstract void bind(InetAddress host, int port) throws IOException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the maximum queue length for incoming connection indications
|
2013-07-30 11:04:19 -07:00
|
|
|
* (a request to connect) to the {@code count} argument. If a
|
2007-12-01 00:00:00 +00:00
|
|
|
* connection indication arrives when the queue is full, the
|
|
|
|
* connection is refused.
|
|
|
|
*
|
|
|
|
* @param backlog the maximum length of the queue.
|
|
|
|
* @exception IOException if an I/O error occurs when creating the queue.
|
|
|
|
*/
|
|
|
|
protected abstract void listen(int backlog) throws IOException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Accepts a connection.
|
|
|
|
*
|
|
|
|
* @param s the accepted connection.
|
|
|
|
* @exception IOException if an I/O error occurs when accepting the
|
|
|
|
* connection.
|
|
|
|
*/
|
|
|
|
protected abstract void accept(SocketImpl s) throws IOException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an input stream for this socket.
|
|
|
|
*
|
|
|
|
* @return a stream for reading from this socket.
|
|
|
|
* @exception IOException if an I/O error occurs when creating the
|
|
|
|
* input stream.
|
|
|
|
*/
|
|
|
|
protected abstract InputStream getInputStream() throws IOException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an output stream for this socket.
|
|
|
|
*
|
|
|
|
* @return an output stream for writing to this socket.
|
|
|
|
* @exception IOException if an I/O error occurs when creating the
|
|
|
|
* output stream.
|
|
|
|
*/
|
|
|
|
protected abstract OutputStream getOutputStream() throws IOException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the number of bytes that can be read from this socket
|
|
|
|
* without blocking.
|
|
|
|
*
|
|
|
|
* @return the number of bytes that can be read from this socket
|
|
|
|
* without blocking.
|
|
|
|
* @exception IOException if an I/O error occurs when determining the
|
|
|
|
* number of bytes available.
|
|
|
|
*/
|
|
|
|
protected abstract int available() throws IOException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Closes this socket.
|
|
|
|
*
|
|
|
|
* @exception IOException if an I/O error occurs when closing this socket.
|
|
|
|
*/
|
|
|
|
protected abstract void close() throws IOException;
|
|
|
|
|
2019-03-16 19:44:12 +00:00
|
|
|
/**
|
|
|
|
* Closes this socket, ignoring any IOException that is thrown by close.
|
|
|
|
*/
|
|
|
|
void closeQuietly() {
|
|
|
|
try {
|
|
|
|
close();
|
|
|
|
} catch (IOException ignore) { }
|
|
|
|
}
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
/**
|
|
|
|
* Places the input stream for this socket at "end of stream".
|
|
|
|
* Any data sent to this socket is acknowledged and then
|
|
|
|
* silently discarded.
|
|
|
|
*
|
2011-09-01 06:45:00 +01:00
|
|
|
* If you read from a socket input stream after invoking this method on the
|
|
|
|
* socket, the stream's {@code available} method will return 0, and its
|
|
|
|
* {@code read} methods will return {@code -1} (end of stream).
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
|
|
|
* @exception IOException if an I/O error occurs when shutting down this
|
|
|
|
* socket.
|
|
|
|
* @see java.net.Socket#shutdownOutput()
|
|
|
|
* @see java.net.Socket#close()
|
|
|
|
* @see java.net.Socket#setSoLinger(boolean, int)
|
|
|
|
* @since 1.3
|
|
|
|
*/
|
|
|
|
protected void shutdownInput() throws IOException {
|
|
|
|
throw new IOException("Method not implemented!");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disables the output stream for this socket.
|
|
|
|
* For a TCP socket, any previously written data will be sent
|
|
|
|
* followed by TCP's normal connection termination sequence.
|
|
|
|
*
|
|
|
|
* If you write to a socket output stream after invoking
|
|
|
|
* shutdownOutput() on the socket, the stream will throw
|
|
|
|
* an IOException.
|
|
|
|
*
|
|
|
|
* @exception IOException if an I/O error occurs when shutting down this
|
|
|
|
* socket.
|
|
|
|
* @see java.net.Socket#shutdownInput()
|
|
|
|
* @see java.net.Socket#close()
|
|
|
|
* @see java.net.Socket#setSoLinger(boolean, int)
|
|
|
|
* @since 1.3
|
|
|
|
*/
|
|
|
|
protected void shutdownOutput() throws IOException {
|
|
|
|
throw new IOException("Method not implemented!");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-07-30 11:04:19 -07:00
|
|
|
* Returns the value of this socket's {@code fd} field.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
2013-07-30 11:04:19 -07:00
|
|
|
* @return the value of this socket's {@code fd} field.
|
2007-12-01 00:00:00 +00:00
|
|
|
* @see java.net.SocketImpl#fd
|
|
|
|
*/
|
|
|
|
protected FileDescriptor getFileDescriptor() {
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-07-30 11:04:19 -07:00
|
|
|
* Returns the value of this socket's {@code address} field.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
2013-07-30 11:04:19 -07:00
|
|
|
* @return the value of this socket's {@code address} field.
|
2007-12-01 00:00:00 +00:00
|
|
|
* @see java.net.SocketImpl#address
|
|
|
|
*/
|
|
|
|
protected InetAddress getInetAddress() {
|
|
|
|
return address;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-07-30 11:04:19 -07:00
|
|
|
* Returns the value of this socket's {@code port} field.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
2013-07-30 11:04:19 -07:00
|
|
|
* @return the value of this socket's {@code port} field.
|
2007-12-01 00:00:00 +00:00
|
|
|
* @see java.net.SocketImpl#port
|
|
|
|
*/
|
|
|
|
protected int getPort() {
|
|
|
|
return port;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether or not this SocketImpl supports sending
|
|
|
|
* urgent data. By default, false is returned
|
|
|
|
* unless the method is overridden in a sub-class
|
|
|
|
*
|
|
|
|
* @return true if urgent data supported
|
|
|
|
* @see java.net.SocketImpl#address
|
|
|
|
* @since 1.4
|
|
|
|
*/
|
|
|
|
protected boolean supportsUrgentData () {
|
|
|
|
return false; // must be overridden in sub-class
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send one byte of urgent data on the socket.
|
|
|
|
* The byte to be sent is the low eight bits of the parameter
|
|
|
|
* @param data The byte of data to send
|
|
|
|
* @exception IOException if there is an error
|
|
|
|
* sending the data.
|
|
|
|
* @since 1.4
|
|
|
|
*/
|
|
|
|
protected abstract void sendUrgentData (int data) throws IOException;
|
|
|
|
|
|
|
|
/**
|
2013-07-30 11:04:19 -07:00
|
|
|
* Returns the value of this socket's {@code localport} field.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
2013-07-30 11:04:19 -07:00
|
|
|
* @return the value of this socket's {@code localport} field.
|
2007-12-01 00:00:00 +00:00
|
|
|
* @see java.net.SocketImpl#localport
|
|
|
|
*/
|
|
|
|
protected int getLocalPort() {
|
|
|
|
return localport;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-07-30 11:04:19 -07:00
|
|
|
* Returns the address and port of this socket as a {@code String}.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
|
|
|
* @return a string representation of this socket.
|
|
|
|
*/
|
|
|
|
public String toString() {
|
|
|
|
return "Socket[addr=" + getInetAddress() +
|
|
|
|
",port=" + getPort() + ",localport=" + getLocalPort() + "]";
|
|
|
|
}
|
|
|
|
|
2019-03-16 19:44:12 +00:00
|
|
|
void reset() {
|
|
|
|
fd = null;
|
2007-12-01 00:00:00 +00:00
|
|
|
address = null;
|
|
|
|
port = 0;
|
|
|
|
localport = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets performance preferences for this socket.
|
|
|
|
*
|
|
|
|
* <p> Sockets 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.
|
|
|
|
*
|
|
|
|
* <p> 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
|
2013-07-30 11:04:19 -07:00
|
|
|
* {@code (1, 0, 0)}. If the application prefers high bandwidth above low
|
2007-12-01 00:00:00 +00:00
|
|
|
* latency, and low latency above short connection time, then it could
|
2013-07-30 11:04:19 -07:00
|
|
|
* invoke this method with the values {@code (0, 1, 2)}.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
2017-10-30 17:49:33 -07:00
|
|
|
* By default, this method does nothing, unless it is overridden in
|
2007-12-01 00:00:00 +00:00
|
|
|
* a sub-class.
|
|
|
|
*
|
|
|
|
* @param connectionTime
|
2013-07-30 11:04:19 -07:00
|
|
|
* An {@code int} expressing the relative importance of a short
|
2007-12-01 00:00:00 +00:00
|
|
|
* connection time
|
|
|
|
*
|
|
|
|
* @param latency
|
2013-07-30 11:04:19 -07:00
|
|
|
* An {@code int} expressing the relative importance of low
|
2007-12-01 00:00:00 +00:00
|
|
|
* latency
|
|
|
|
*
|
|
|
|
* @param bandwidth
|
2013-07-30 11:04:19 -07:00
|
|
|
* An {@code int} expressing the relative importance of high
|
2007-12-01 00:00:00 +00:00
|
|
|
* bandwidth
|
|
|
|
*
|
|
|
|
* @since 1.5
|
|
|
|
*/
|
|
|
|
protected void setPerformancePreferences(int connectionTime,
|
|
|
|
int latency,
|
|
|
|
int bandwidth)
|
|
|
|
{
|
|
|
|
/* Not implemented yet */
|
|
|
|
}
|
2014-04-12 20:21:09 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called to set a socket option.
|
|
|
|
*
|
2015-02-09 15:33:56 -08:00
|
|
|
* @param <T> The type of the socket option value
|
2014-04-12 20:21:09 +01:00
|
|
|
* @param name The socket option
|
|
|
|
*
|
|
|
|
* @param value The value of the socket option. A value of {@code null}
|
|
|
|
* may be valid for some options.
|
|
|
|
*
|
|
|
|
* @throws UnsupportedOperationException if the SocketImpl does not
|
|
|
|
* support the option
|
|
|
|
*
|
|
|
|
* @throws IOException if an I/O error occurs, or if the socket is closed.
|
|
|
|
*
|
2016-01-20 11:02:36 -08:00
|
|
|
* @since 9
|
2014-04-12 20:21:09 +01:00
|
|
|
*/
|
|
|
|
protected <T> void setOption(SocketOption<T> name, T value) throws IOException {
|
2019-05-02 17:29:10 +01:00
|
|
|
if (name == StandardSocketOptions.SO_KEEPALIVE && !isServer) {
|
2014-04-12 20:21:09 +01:00
|
|
|
setOption(SocketOptions.SO_KEEPALIVE, value);
|
2019-05-02 17:29:10 +01:00
|
|
|
} else if (name == StandardSocketOptions.SO_SNDBUF && !isServer) {
|
2014-04-12 20:21:09 +01:00
|
|
|
setOption(SocketOptions.SO_SNDBUF, value);
|
|
|
|
} else if (name == StandardSocketOptions.SO_RCVBUF) {
|
|
|
|
setOption(SocketOptions.SO_RCVBUF, value);
|
|
|
|
} else if (name == StandardSocketOptions.SO_REUSEADDR) {
|
|
|
|
setOption(SocketOptions.SO_REUSEADDR, value);
|
2016-02-23 17:41:00 +00:00
|
|
|
} else if (name == StandardSocketOptions.SO_REUSEPORT &&
|
|
|
|
supportedOptions().contains(name)) {
|
|
|
|
setOption(SocketOptions.SO_REUSEPORT, value);
|
2019-05-02 17:29:10 +01:00
|
|
|
} else if (name == StandardSocketOptions.SO_LINGER && !isServer) {
|
2014-04-12 20:21:09 +01:00
|
|
|
setOption(SocketOptions.SO_LINGER, value);
|
|
|
|
} else if (name == StandardSocketOptions.IP_TOS) {
|
|
|
|
setOption(SocketOptions.IP_TOS, value);
|
2019-05-02 17:29:10 +01:00
|
|
|
} else if (name == StandardSocketOptions.TCP_NODELAY && !isServer) {
|
2014-04-12 20:21:09 +01:00
|
|
|
setOption(SocketOptions.TCP_NODELAY, value);
|
|
|
|
} else {
|
|
|
|
throw new UnsupportedOperationException("unsupported option");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called to get a socket option.
|
|
|
|
*
|
2015-02-09 15:33:56 -08:00
|
|
|
* @param <T> The type of the socket option value
|
2014-04-12 20:21:09 +01:00
|
|
|
* @param name The socket option
|
|
|
|
*
|
|
|
|
* @return the value of the named option
|
|
|
|
*
|
|
|
|
* @throws UnsupportedOperationException if the SocketImpl does not
|
|
|
|
* support the option.
|
|
|
|
*
|
|
|
|
* @throws IOException if an I/O error occurs, or if the socket is closed.
|
|
|
|
*
|
2016-01-20 11:02:36 -08:00
|
|
|
* @since 9
|
2014-04-12 20:21:09 +01:00
|
|
|
*/
|
2014-04-23 17:29:51 +01:00
|
|
|
@SuppressWarnings("unchecked")
|
2014-04-12 20:21:09 +01:00
|
|
|
protected <T> T getOption(SocketOption<T> name) throws IOException {
|
2019-05-02 17:29:10 +01:00
|
|
|
if (name == StandardSocketOptions.SO_KEEPALIVE && !isServer) {
|
2014-04-12 20:21:09 +01:00
|
|
|
return (T)getOption(SocketOptions.SO_KEEPALIVE);
|
2019-05-02 17:29:10 +01:00
|
|
|
} else if (name == StandardSocketOptions.SO_SNDBUF && !isServer) {
|
2014-04-12 20:21:09 +01:00
|
|
|
return (T)getOption(SocketOptions.SO_SNDBUF);
|
|
|
|
} else if (name == StandardSocketOptions.SO_RCVBUF) {
|
|
|
|
return (T)getOption(SocketOptions.SO_RCVBUF);
|
|
|
|
} else if (name == StandardSocketOptions.SO_REUSEADDR) {
|
|
|
|
return (T)getOption(SocketOptions.SO_REUSEADDR);
|
2016-02-23 17:41:00 +00:00
|
|
|
} else if (name == StandardSocketOptions.SO_REUSEPORT &&
|
|
|
|
supportedOptions().contains(name)) {
|
|
|
|
return (T)getOption(SocketOptions.SO_REUSEPORT);
|
2019-05-02 17:29:10 +01:00
|
|
|
} else if (name == StandardSocketOptions.SO_LINGER && !isServer) {
|
2014-04-12 20:21:09 +01:00
|
|
|
return (T)getOption(SocketOptions.SO_LINGER);
|
|
|
|
} else if (name == StandardSocketOptions.IP_TOS) {
|
|
|
|
return (T)getOption(SocketOptions.IP_TOS);
|
2019-05-02 17:29:10 +01:00
|
|
|
} else if (name == StandardSocketOptions.TCP_NODELAY && !isServer) {
|
2014-04-12 20:21:09 +01:00
|
|
|
return (T)getOption(SocketOptions.TCP_NODELAY);
|
|
|
|
} else {
|
|
|
|
throw new UnsupportedOperationException("unsupported option");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-16 19:44:12 +00:00
|
|
|
/**
|
|
|
|
* Attempts to copy socket options from this SocketImpl to a target SocketImpl.
|
|
|
|
* At this time, only the SO_TIMEOUT make sense to copy.
|
|
|
|
*/
|
|
|
|
void copyOptionsTo(SocketImpl target) {
|
|
|
|
try {
|
|
|
|
Object timeout = getOption(SocketOptions.SO_TIMEOUT);
|
|
|
|
if (timeout instanceof Integer) {
|
|
|
|
target.setOption(SocketOptions.SO_TIMEOUT, timeout);
|
|
|
|
}
|
|
|
|
} catch (IOException ignore) { }
|
|
|
|
}
|
|
|
|
|
2016-03-03 17:21:08 +00:00
|
|
|
private static final Set<SocketOption<?>> socketOptions;
|
2014-04-12 20:21:09 +01:00
|
|
|
|
2016-03-03 17:21:08 +00:00
|
|
|
private static final Set<SocketOption<?>> serverSocketOptions;
|
2014-04-12 20:21:09 +01:00
|
|
|
|
|
|
|
static {
|
2016-03-03 17:21:08 +00:00
|
|
|
socketOptions = Set.of(StandardSocketOptions.SO_KEEPALIVE,
|
|
|
|
StandardSocketOptions.SO_SNDBUF,
|
|
|
|
StandardSocketOptions.SO_RCVBUF,
|
|
|
|
StandardSocketOptions.SO_REUSEADDR,
|
|
|
|
StandardSocketOptions.SO_LINGER,
|
|
|
|
StandardSocketOptions.IP_TOS,
|
|
|
|
StandardSocketOptions.TCP_NODELAY);
|
|
|
|
|
|
|
|
serverSocketOptions = Set.of(StandardSocketOptions.SO_RCVBUF,
|
|
|
|
StandardSocketOptions.SO_REUSEADDR,
|
|
|
|
StandardSocketOptions.IP_TOS);
|
|
|
|
}
|
2014-04-12 20:21:09 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a set of SocketOptions supported by this impl
|
|
|
|
* and by this impl's socket (Socket or ServerSocket)
|
|
|
|
*
|
|
|
|
* @return a Set of SocketOptions
|
2016-03-03 17:21:08 +00:00
|
|
|
*
|
|
|
|
* @since 9
|
2014-04-12 20:21:09 +01:00
|
|
|
*/
|
|
|
|
protected Set<SocketOption<?>> supportedOptions() {
|
2019-05-02 17:29:10 +01:00
|
|
|
if (!isServer) {
|
2014-04-12 20:21:09 +01:00
|
|
|
return socketOptions;
|
|
|
|
} else {
|
|
|
|
return serverSocketOptions;
|
|
|
|
}
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|