jdk/src/java.base/share/classes/java/net/SocketImpl.java
author alanb
Tue, 23 Feb 2016 17:41:00 +0000
changeset 36115 0676e37a0b9c
parent 35302 e4d2275861c3
child 36228 a16a22218e23
permissions -rw-r--r--
6432031: Add support for SO_REUSEPORT Reviewed-by: alanb, simonis, chegar Contributed-by: yingqi.lu@intel.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
36115
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 35302
diff changeset
     2
 * Copyright (c) 1995, 2016, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.net;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.InputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.OutputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.FileDescriptor;
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
    32
import java.util.Set;
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
    33
import java.util.HashSet;
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
    34
import java.util.Collections;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
/**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
    37
 * The abstract class {@code SocketImpl} is a common superclass
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * of all classes that actually implement sockets. It is used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * create both client and server sockets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * A "plain" socket implements these methods exactly as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * described, without attempting to go through a firewall or proxy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * @author  unascribed
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24046
diff changeset
    45
 * @since   1.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
public abstract class SocketImpl implements SocketOptions {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
     * The actual Socket object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    Socket socket = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    ServerSocket serverSocket = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * The file descriptor object for this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    protected FileDescriptor fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     * The IP address of the remote end of this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    protected InetAddress address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * The port number on the remote host to which this socket is connected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    protected int port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * The local port number to which this socket is connected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    protected int localport;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * Creates either a stream or a datagram socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
    77
     * @param      stream   if {@code true}, create a stream socket;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     *                      otherwise, create a datagram socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * @exception  IOException  if an I/O error occurs while creating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     *               socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    protected abstract void create(boolean stream) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * Connects this socket to the specified port on the named host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * @param      host   the name of the remote host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * @param      port   the port number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * @exception  IOException  if an I/O error occurs when connecting to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     *               remote host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    protected abstract void connect(String host, int port) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * Connects this socket to the specified port number on the specified host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * @param      address   the IP address of the remote host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * @param      port      the port number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * @exception  IOException  if an I/O error occurs when attempting a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     *               connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    protected abstract void connect(InetAddress address, int port) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * Connects this socket to the specified port number on the specified host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * A timeout of zero is interpreted as an infinite timeout. The connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * will then block until established or an error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * @param      address   the Socket address of the remote host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * @param     timeout  the timeout value, in milliseconds, or zero for no timeout.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * @exception  IOException  if an I/O error occurs when attempting a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     *               connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    protected abstract void connect(SocketAddress address, int timeout) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * Binds this socket to the specified local IP address and port number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * @param      host   an IP address that belongs to a local interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * @param      port   the port number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * @exception  IOException  if an I/O error occurs when binding this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    protected abstract void bind(InetAddress host, int port) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * Sets the maximum queue length for incoming connection indications
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   128
     * (a request to connect) to the {@code count} argument. If a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * connection indication arrives when the queue is full, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * connection is refused.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * @param      backlog   the maximum length of the queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * @exception  IOException  if an I/O error occurs when creating the queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    protected abstract void listen(int backlog) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * Accepts a connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * @param      s   the accepted connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * @exception  IOException  if an I/O error occurs when accepting the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     *               connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    protected abstract void accept(SocketImpl s) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * Returns an input stream for this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * @return     a stream for reading from this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * @exception  IOException  if an I/O error occurs when creating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     *               input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    protected abstract InputStream getInputStream() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * Returns an output stream for this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * @return     an output stream for writing to this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * @exception  IOException  if an I/O error occurs when creating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     *               output stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    protected abstract OutputStream getOutputStream() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * Returns the number of bytes that can be read from this socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * without blocking.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * @return     the number of bytes that can be read from this socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     *             without blocking.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * @exception  IOException  if an I/O error occurs when determining the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     *               number of bytes available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    protected abstract int available() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * Closes this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * @exception  IOException  if an I/O error occurs when closing this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    protected abstract void close() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * Places the input stream for this socket at "end of stream".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * Any data sent to this socket is acknowledged and then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * silently discarded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     *
10421
2ee16a0f6df5 7014860: Socket.getInputStream().available() not clear for shutdown input
chegar
parents: 5506
diff changeset
   187
     * If you read from a socket input stream after invoking this method on the
2ee16a0f6df5 7014860: Socket.getInputStream().available() not clear for shutdown input
chegar
parents: 5506
diff changeset
   188
     * socket, the stream's {@code available} method will return 0, and its
2ee16a0f6df5 7014860: Socket.getInputStream().available() not clear for shutdown input
chegar
parents: 5506
diff changeset
   189
     * {@code read} methods will return {@code -1} (end of stream).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * @exception IOException if an I/O error occurs when shutting down this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * @see java.net.Socket#shutdownOutput()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * @see java.net.Socket#close()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * @see java.net.Socket#setSoLinger(boolean, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    protected void shutdownInput() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
      throw new IOException("Method not implemented!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * Disables the output stream for this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * For a TCP socket, any previously written data will be sent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * followed by TCP's normal connection termination sequence.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * If you write to a socket output stream after invoking
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * shutdownOutput() on the socket, the stream will throw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * an IOException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * @exception IOException if an I/O error occurs when shutting down this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * @see java.net.Socket#shutdownInput()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * @see java.net.Socket#close()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * @see java.net.Socket#setSoLinger(boolean, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    protected void shutdownOutput() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
      throw new IOException("Method not implemented!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   223
     * Returns the value of this socket's {@code fd} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   225
     * @return  the value of this socket's {@code fd} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * @see     java.net.SocketImpl#fd
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    protected FileDescriptor getFileDescriptor() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        return fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   233
     * Returns the value of this socket's {@code address} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   235
     * @return  the value of this socket's {@code address} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     * @see     java.net.SocketImpl#address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    protected InetAddress getInetAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        return address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   243
     * Returns the value of this socket's {@code port} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   245
     * @return  the value of this socket's {@code port} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * @see     java.net.SocketImpl#port
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    protected int getPort() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        return port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * Returns whether or not this SocketImpl supports sending
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * urgent data. By default, false is returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * unless the method is overridden in a sub-class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * @return  true if urgent data supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * @see     java.net.SocketImpl#address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    protected boolean supportsUrgentData () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        return false; // must be overridden in sub-class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * Send one byte of urgent data on the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * The byte to be sent is the low eight bits of the parameter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * @param data The byte of data to send
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * @exception IOException if there is an error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     *  sending the data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    protected abstract void sendUrgentData (int data) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   276
     * Returns the value of this socket's {@code localport} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   278
     * @return  the value of this socket's {@code localport} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * @see     java.net.SocketImpl#localport
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
    protected int getLocalPort() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        return localport;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
    void setSocket(Socket soc) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        this.socket = soc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    Socket getSocket() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
        return socket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    void setServerSocket(ServerSocket soc) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        this.serverSocket = soc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
    ServerSocket getServerSocket() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        return serverSocket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   302
     * Returns the address and port of this socket as a {@code String}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * @return  a string representation of this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        return "Socket[addr=" + getInetAddress() +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
            ",port=" + getPort() + ",localport=" + getLocalPort()  + "]";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
    void reset() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        address = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        port = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        localport = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * Sets performance preferences for this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * <p> Sockets use the TCP/IP protocol by default.  Some implementations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * may offer alternative protocols which have different performance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * characteristics than TCP/IP.  This method allows the application to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * express its own preferences as to how these tradeoffs should be made
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * when the implementation chooses from the available protocols.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * <p> Performance preferences are described by three integers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * whose values indicate the relative importance of short connection time,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * low latency, and high bandwidth.  The absolute values of the integers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * are irrelevant; in order to choose a protocol the values are simply
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * compared, with larger values indicating stronger preferences. Negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * values represent a lower priority than positive values. If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * application prefers short connection time over both low latency and high
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * bandwidth, for example, then it could invoke this method with the values
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   334
     * {@code (1, 0, 0)}.  If the application prefers high bandwidth above low
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * latency, and low latency above short connection time, then it could
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   336
     * invoke this method with the values {@code (0, 1, 2)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * By default, this method does nothing, unless it is overridden in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * a sub-class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * @param  connectionTime
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   342
     *         An {@code int} expressing the relative importance of a short
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     *         connection time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * @param  latency
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   346
     *         An {@code int} expressing the relative importance of low
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     *         latency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * @param  bandwidth
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   350
     *         An {@code int} expressing the relative importance of high
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     *         bandwidth
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
    protected void setPerformancePreferences(int connectionTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
                                          int latency,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
                                          int bandwidth)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        /* Not implemented yet */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    }
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   361
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   362
    /**
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   363
     * Called to set a socket option.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   364
     *
28852
a581c7868768 8041395: Doclint regression in java.net.SocketOption
darcy
parents: 27341
diff changeset
   365
     * @param <T> The type of the socket option value
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   366
     * @param name The socket option
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   367
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   368
     * @param value The value of the socket option. A value of {@code null}
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   369
     *              may be valid for some options.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   370
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   371
     * @throws UnsupportedOperationException if the SocketImpl does not
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   372
     *         support the option
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   373
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   374
     * @throws IOException if an I/O error occurs, or if the socket is closed.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   375
     *
35302
e4d2275861c3 8136494: Update "@since 1.9" to "@since 9" to match java.version.specification
iris
parents: 34968
diff changeset
   376
     * @since 9
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   377
     */
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   378
    protected <T> void setOption(SocketOption<T> name, T value) throws IOException {
34968
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 28852
diff changeset
   379
        if (name == StandardSocketOptions.SO_KEEPALIVE &&
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 28852
diff changeset
   380
                (getSocket() != null)) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   381
            setOption(SocketOptions.SO_KEEPALIVE, value);
34968
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 28852
diff changeset
   382
        } else if (name == StandardSocketOptions.SO_SNDBUF &&
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 28852
diff changeset
   383
                (getSocket() != null)) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   384
            setOption(SocketOptions.SO_SNDBUF, value);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   385
        } else if (name == StandardSocketOptions.SO_RCVBUF) {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   386
            setOption(SocketOptions.SO_RCVBUF, value);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   387
        } else if (name == StandardSocketOptions.SO_REUSEADDR) {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   388
            setOption(SocketOptions.SO_REUSEADDR, value);
36115
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 35302
diff changeset
   389
        } else if (name == StandardSocketOptions.SO_REUSEPORT &&
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 35302
diff changeset
   390
            supportedOptions().contains(name)) {
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 35302
diff changeset
   391
            setOption(SocketOptions.SO_REUSEPORT, value);
34968
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 28852
diff changeset
   392
        } else if (name == StandardSocketOptions.SO_LINGER &&
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 28852
diff changeset
   393
                (getSocket() != null)) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   394
            setOption(SocketOptions.SO_LINGER, value);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   395
        } else if (name == StandardSocketOptions.IP_TOS) {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   396
            setOption(SocketOptions.IP_TOS, value);
34968
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 28852
diff changeset
   397
        } else if (name == StandardSocketOptions.TCP_NODELAY &&
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 28852
diff changeset
   398
                (getSocket() != null)) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   399
            setOption(SocketOptions.TCP_NODELAY, value);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   400
        } else {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   401
            throw new UnsupportedOperationException("unsupported option");
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   402
        }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   403
    }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   404
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   405
    /**
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   406
     * Called to get a socket option.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   407
     *
28852
a581c7868768 8041395: Doclint regression in java.net.SocketOption
darcy
parents: 27341
diff changeset
   408
     * @param <T> The type of the socket option value
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   409
     * @param name The socket option
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   410
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   411
     * @return the value of the named option
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   412
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   413
     * @throws UnsupportedOperationException if the SocketImpl does not
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   414
     *         support the option.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   415
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   416
     * @throws IOException if an I/O error occurs, or if the socket is closed.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   417
     *
35302
e4d2275861c3 8136494: Update "@since 1.9" to "@since 9" to match java.version.specification
iris
parents: 34968
diff changeset
   418
     * @since 9
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   419
     */
24046
d1f6da65881a 8041397: Lint regression in java.net.SocketOption
michaelm
parents: 23879
diff changeset
   420
    @SuppressWarnings("unchecked")
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   421
    protected <T> T getOption(SocketOption<T> name) throws IOException {
34968
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 28852
diff changeset
   422
        if (name == StandardSocketOptions.SO_KEEPALIVE &&
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 28852
diff changeset
   423
                (getSocket() != null)) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   424
            return (T)getOption(SocketOptions.SO_KEEPALIVE);
34968
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 28852
diff changeset
   425
        } else if (name == StandardSocketOptions.SO_SNDBUF &&
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 28852
diff changeset
   426
                (getSocket() != null)) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   427
            return (T)getOption(SocketOptions.SO_SNDBUF);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   428
        } else if (name == StandardSocketOptions.SO_RCVBUF) {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   429
            return (T)getOption(SocketOptions.SO_RCVBUF);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   430
        } else if (name == StandardSocketOptions.SO_REUSEADDR) {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   431
            return (T)getOption(SocketOptions.SO_REUSEADDR);
36115
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 35302
diff changeset
   432
        } else if (name == StandardSocketOptions.SO_REUSEPORT &&
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 35302
diff changeset
   433
            supportedOptions().contains(name)) {
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 35302
diff changeset
   434
            return (T)getOption(SocketOptions.SO_REUSEPORT);
34968
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 28852
diff changeset
   435
        } else if (name == StandardSocketOptions.SO_LINGER &&
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 28852
diff changeset
   436
                (getSocket() != null)) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   437
            return (T)getOption(SocketOptions.SO_LINGER);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   438
        } else if (name == StandardSocketOptions.IP_TOS) {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   439
            return (T)getOption(SocketOptions.IP_TOS);
34968
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 28852
diff changeset
   440
        } else if (name == StandardSocketOptions.TCP_NODELAY &&
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 28852
diff changeset
   441
                (getSocket() != null)) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   442
            return (T)getOption(SocketOptions.TCP_NODELAY);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   443
        } else {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   444
            throw new UnsupportedOperationException("unsupported option");
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   445
        }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   446
    }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   447
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   448
    private static final  Set<SocketOption<?>> socketOptions =
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   449
        new HashSet<>();
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   450
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   451
    private static final  Set<SocketOption<?>> serverSocketOptions =
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   452
        new HashSet<>();
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   453
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   454
    static {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   455
        socketOptions.add(StandardSocketOptions.SO_KEEPALIVE);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   456
        socketOptions.add(StandardSocketOptions.SO_SNDBUF);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   457
        socketOptions.add(StandardSocketOptions.SO_RCVBUF);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   458
        socketOptions.add(StandardSocketOptions.SO_REUSEADDR);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   459
        socketOptions.add(StandardSocketOptions.SO_LINGER);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   460
        socketOptions.add(StandardSocketOptions.IP_TOS);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   461
        socketOptions.add(StandardSocketOptions.TCP_NODELAY);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   462
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   463
        serverSocketOptions.add(StandardSocketOptions.SO_RCVBUF);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   464
        serverSocketOptions.add(StandardSocketOptions.SO_REUSEADDR);
27341
9a5b45530ed4 8062744: jdk.net.Sockets.setOption/getOption does not support IP_TOS
michaelm
parents: 25859
diff changeset
   465
        serverSocketOptions.add(StandardSocketOptions.IP_TOS);
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   466
    };
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   467
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   468
    /**
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   469
     * Returns a set of SocketOptions supported by this impl
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   470
     * and by this impl's socket (Socket or ServerSocket)
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   471
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   472
     * @return a Set of SocketOptions
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   473
     */
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   474
    protected Set<SocketOption<?>> supportedOptions() {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   475
        if (getSocket() != null) {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   476
            return socketOptions;
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   477
        } else {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   478
            return serverSocketOptions;
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   479
        }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   480
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
}