src/java.base/share/classes/java/net/SocketImpl.java
author alanb
Mon, 06 May 2019 09:43:26 +0100
branchniosocketimpl-branch
changeset 57353 ddfb12ab18e1
parent 57347 16c087c9103e
child 57355 ceb5c3fd71d2
permissions -rw-r--r--
Align implNote with CSR text
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
54155
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
     2
 * Copyright (c) 1995, 2019, 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
57173
6692e71a4e9f Cleanup of system property handling
alanb
parents: 57172
diff changeset
    28
import java.io.FileDescriptor;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.InputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.OutputStream;
57174
899641440751 More cleanup
alanb
parents: 57173
diff changeset
    32
import java.security.AccessController;
899641440751 More cleanup
alanb
parents: 57173
diff changeset
    33
import java.security.PrivilegedAction;
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
    34
import java.util.Set;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
57174
899641440751 More cleanup
alanb
parents: 57173
diff changeset
    36
import sun.net.NetProperties;
54155
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
    37
import sun.net.PlatformSocketImpl;
57167
82874527373e Socket changes to support both NioSocketImpl and PlainSocketImpl switchable by net property
michaelm
parents: 47478
diff changeset
    38
import sun.nio.ch.NioSocketImpl;
54155
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
    39
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
/**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
    41
 * The abstract class {@code SocketImpl} is a common superclass
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * of all classes that actually implement sockets. It is used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * create both client and server sockets.
57275
222fa5ed1c91 Add @systemProperty ref to system property to configure old impl
alanb
parents: 57268
diff changeset
    44
 *
57353
ddfb12ab18e1 Align implNote with CSR text
alanb
parents: 57347
diff changeset
    45
 * @implNote Client and server sockets created with the {@code Socket} and
ddfb12ab18e1 Align implNote with CSR text
alanb
parents: 57347
diff changeset
    46
 * {@code SocketServer} public constructors create a system/platform default
ddfb12ab18e1 Align implNote with CSR text
alanb
parents: 57347
diff changeset
    47
 * {@code SocketImpl}. The JDK historically used a {@code SocketImpl}
ddfb12ab18e1 Align implNote with CSR text
alanb
parents: 57347
diff changeset
    48
 * implementation type named "PlainSocketImpl" that has since been replaced by a
ddfb12ab18e1 Align implNote with CSR text
alanb
parents: 57347
diff changeset
    49
 * newer implementation. The JDK continues to ship with the older implementation
ddfb12ab18e1 Align implNote with CSR text
alanb
parents: 57347
diff changeset
    50
 * to allow code to run that depends on unspecified behavior that differs between
ddfb12ab18e1 Align implNote with CSR text
alanb
parents: 57347
diff changeset
    51
 * the old and new implementations. The old implementation will be used if the
ddfb12ab18e1 Align implNote with CSR text
alanb
parents: 57347
diff changeset
    52
 * Java virtual machine is started with the system property {@systemProperty
ddfb12ab18e1 Align implNote with CSR text
alanb
parents: 57347
diff changeset
    53
 * jdk.net.usePlainSocketImpl} set on the command line. It may also be set in
ddfb12ab18e1 Align implNote with CSR text
alanb
parents: 57347
diff changeset
    54
 * the JDK's network configuration file, located in {@code
ddfb12ab18e1 Align implNote with CSR text
alanb
parents: 57347
diff changeset
    55
 * ${java.home}/conf/net.properties}, for cases where it needs to be set without
ddfb12ab18e1 Align implNote with CSR text
alanb
parents: 57347
diff changeset
    56
 * changing the command line. The value of the system property is the string
ddfb12ab18e1 Align implNote with CSR text
alanb
parents: 57347
diff changeset
    57
 * representation of a boolean. If set without a value then it defaults to {@code
ddfb12ab18e1 Align implNote with CSR text
alanb
parents: 57347
diff changeset
    58
 * true}, hence running with {@code -Djdk.net.usePlainSocketImpl} or {@code
ddfb12ab18e1 Align implNote with CSR text
alanb
parents: 57347
diff changeset
    59
 * -Djdk.net.usePlainSocketImpl=true} will configure the Java virtual machine
ddfb12ab18e1 Align implNote with CSR text
alanb
parents: 57347
diff changeset
    60
 * to use the old implementation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * @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
    63
 * @since   1.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
public abstract class SocketImpl implements SocketOptions {
57173
6692e71a4e9f Cleanup of system property handling
alanb
parents: 57172
diff changeset
    66
    private static final boolean USE_PLAINSOCKETIMPL = usePlainSocketImpl();
6692e71a4e9f Cleanup of system property handling
alanb
parents: 57172
diff changeset
    67
6692e71a4e9f Cleanup of system property handling
alanb
parents: 57172
diff changeset
    68
    private static boolean usePlainSocketImpl() {
57177
0b5ebb227a8d -Djdk.net.usePlainSocketImpl without value should use PlainSocketImpl
alanb
parents: 57176
diff changeset
    69
        PrivilegedAction<String> pa = () -> NetProperties.get("jdk.net.usePlainSocketImpl");
0b5ebb227a8d -Djdk.net.usePlainSocketImpl without value should use PlainSocketImpl
alanb
parents: 57176
diff changeset
    70
        String s = AccessController.doPrivileged(pa);
0b5ebb227a8d -Djdk.net.usePlainSocketImpl without value should use PlainSocketImpl
alanb
parents: 57176
diff changeset
    71
        return (s != null) && !s.equalsIgnoreCase("false");
57173
6692e71a4e9f Cleanup of system property handling
alanb
parents: 57172
diff changeset
    72
    }
54155
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
    73
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
    74
    /**
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
    75
     * Creates an instance of platform's SocketImpl
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
    76
     */
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
    77
    @SuppressWarnings("unchecked")
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
    78
    static <S extends SocketImpl & PlatformSocketImpl> S createPlatformSocketImpl(boolean server) {
57173
6692e71a4e9f Cleanup of system property handling
alanb
parents: 57172
diff changeset
    79
        if (USE_PLAINSOCKETIMPL) {
57347
alanb
parents: 57301 54689
diff changeset
    80
            return (S) new PlainSocketImpl(server);
57173
6692e71a4e9f Cleanup of system property handling
alanb
parents: 57172
diff changeset
    81
        } else {
57178
738431fa8fb2 Improve clarity of implAccept, align timeout messages with PSI
alanb
parents: 57177
diff changeset
    82
            return (S) new NioSocketImpl(server);
57173
6692e71a4e9f Cleanup of system property handling
alanb
parents: 57172
diff changeset
    83
        }
54155
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
    84
    }
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
    85
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * The file descriptor object for this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    protected FileDescriptor fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * The IP address of the remote end of this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    protected InetAddress address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * The port number on the remote host to which this socket is connected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    protected int port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * The local port number to which this socket is connected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    protected int localport;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    /**
54689
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   107
     * Whether this is a server or not.
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   108
     */
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   109
    final boolean isServer;
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   110
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   111
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   112
    SocketImpl(boolean isServer) {
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   113
        this.isServer = isServer;
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   114
    }
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   115
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   116
    /**
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   117
     * Initialize a new instance of this class
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   118
     */
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   119
    public SocketImpl() {
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   120
        this.isServer = false;
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   121
    }
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   122
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   123
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * Creates either a stream or a datagram socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   126
     * @param      stream   if {@code true}, create a stream socket;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *                      otherwise, create a datagram socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * @exception  IOException  if an I/O error occurs while creating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     *               socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    protected abstract void create(boolean stream) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * Connects this socket to the specified port on the named host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * @param      host   the name of the remote host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * @param      port   the port number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * @exception  IOException  if an I/O error occurs when connecting to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     *               remote host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    protected abstract void connect(String host, int port) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * Connects this socket to the specified port number on the specified host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * @param      address   the IP address of the remote host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * @param      port      the port number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * @exception  IOException  if an I/O error occurs when attempting a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     *               connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    protected abstract void connect(InetAddress address, int port) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * Connects this socket to the specified port number on the specified host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * A timeout of zero is interpreted as an infinite timeout. The connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * will then block until established or an error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * @param      address   the Socket address of the remote host.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * @param     timeout  the timeout value, in milliseconds, or zero for no timeout.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * @exception  IOException  if an I/O error occurs when attempting a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     *               connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    protected abstract void connect(SocketAddress address, int timeout) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * Binds this socket to the specified local IP address and port number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * @param      host   an IP address that belongs to a local interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * @param      port   the port number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * @exception  IOException  if an I/O error occurs when binding this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    protected abstract void bind(InetAddress host, int port) 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
     * Sets the maximum queue length for incoming connection indications
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   177
     * (a request to connect) to the {@code count} argument. If a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * connection indication arrives when the queue is full, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * connection is refused.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * @param      backlog   the maximum length of the queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * @exception  IOException  if an I/O error occurs when creating the queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    protected abstract void listen(int backlog) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * Accepts a connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * @param      s   the accepted connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * @exception  IOException  if an I/O error occurs when accepting the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     *               connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    protected abstract void accept(SocketImpl s) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * Returns an input stream for this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * @return     a stream for reading from this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * @exception  IOException  if an I/O error occurs when creating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     *               input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    protected abstract InputStream getInputStream() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * Returns an output stream for this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * @return     an output stream for writing to this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * @exception  IOException  if an I/O error occurs when creating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     *               output stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    protected abstract OutputStream getOutputStream() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * Returns the number of bytes that can be read from this socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * without blocking.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * @return     the number of bytes that can be read from this socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     *             without blocking.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * @exception  IOException  if an I/O error occurs when determining the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     *               number of bytes available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    protected abstract int available() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * Closes this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * @exception  IOException  if an I/O error occurs when closing this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    protected abstract void close() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    /**
54155
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   232
     * Closes this socket, ignoring any IOException that is thrown by close.
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   233
     */
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   234
    void closeQuietly() {
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   235
        try {
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   236
            close();
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   237
        } catch (IOException ignore) { }
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   238
    }
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   239
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   240
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * Places the input stream for this socket at "end of stream".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * Any data sent to this socket is acknowledged and then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     * silently discarded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     *
10421
2ee16a0f6df5 7014860: Socket.getInputStream().available() not clear for shutdown input
chegar
parents: 5506
diff changeset
   245
     * 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
   246
     * 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
   247
     * {@code read} methods will return {@code -1} (end of stream).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * @exception IOException if an I/O error occurs when shutting down this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * @see java.net.Socket#shutdownOutput()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * @see java.net.Socket#close()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * @see java.net.Socket#setSoLinger(boolean, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    protected void shutdownInput() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
      throw new IOException("Method not implemented!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * Disables the output stream for this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * For a TCP socket, any previously written data will be sent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * followed by TCP's normal connection termination sequence.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * If you write to a socket output stream after invoking
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * shutdownOutput() on the socket, the stream will throw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * an IOException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * @exception IOException if an I/O error occurs when shutting down this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * @see java.net.Socket#shutdownInput()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * @see java.net.Socket#close()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * @see java.net.Socket#setSoLinger(boolean, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    protected void shutdownOutput() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
      throw new IOException("Method not implemented!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   281
     * Returns the value of this socket's {@code fd} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   283
     * @return  the value of this socket's {@code fd} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * @see     java.net.SocketImpl#fd
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    protected FileDescriptor getFileDescriptor() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        return fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   291
     * Returns the value of this socket's {@code address} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   293
     * @return  the value of this socket's {@code address} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * @see     java.net.SocketImpl#address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
    protected InetAddress getInetAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        return address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   301
     * Returns the value of this socket's {@code port} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   303
     * @return  the value of this socket's {@code port} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * @see     java.net.SocketImpl#port
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    protected int getPort() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        return port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * Returns whether or not this SocketImpl supports sending
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * urgent data. By default, false is returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * unless the method is overridden in a sub-class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * @return  true if urgent data supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * @see     java.net.SocketImpl#address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
    protected boolean supportsUrgentData () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        return false; // must be overridden in sub-class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * Send one byte of urgent data on the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * The byte to be sent is the low eight bits of the parameter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * @param data The byte of data to send
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * @exception IOException if there is an error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     *  sending the data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
    protected abstract void sendUrgentData (int data) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   334
     * Returns the value of this socket's {@code localport} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   336
     * @return  the value of this socket's {@code localport} field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     * @see     java.net.SocketImpl#localport
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
    protected int getLocalPort() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        return localport;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   344
     * Returns the address and port of this socket as a {@code String}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * @return  a string representation of this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        return "Socket[addr=" + getInetAddress() +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
            ",port=" + getPort() + ",localport=" + getLocalPort()  + "]";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
54155
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   353
    void reset() {
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   354
        fd = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        address = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        port = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        localport = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * Sets performance preferences for this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * <p> Sockets use the TCP/IP protocol by default.  Some implementations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * may offer alternative protocols which have different performance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * characteristics than TCP/IP.  This method allows the application to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * express its own preferences as to how these tradeoffs should be made
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * when the implementation chooses from the available protocols.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     * <p> Performance preferences are described by three integers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     * whose values indicate the relative importance of short connection time,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * low latency, and high bandwidth.  The absolute values of the integers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * are irrelevant; in order to choose a protocol the values are simply
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * compared, with larger values indicating stronger preferences. Negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * values represent a lower priority than positive values. If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * application prefers short connection time over both low latency and high
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * 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
   377
     * {@code (1, 0, 0)}.  If the application prefers high bandwidth above low
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * latency, and low latency above short connection time, then it could
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   379
     * invoke this method with the values {@code (0, 1, 2)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     *
47478
438e0c9f2f17 8190382: fix small typographic errors in comments
smarks
parents: 47216
diff changeset
   381
     * By default, this method does nothing, unless it is overridden in
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * a sub-class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     * @param  connectionTime
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   385
     *         An {@code int} expressing the relative importance of a short
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     *         connection time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * @param  latency
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   389
     *         An {@code int} expressing the relative importance of low
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     *         latency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * @param  bandwidth
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 14342
diff changeset
   393
     *         An {@code int} expressing the relative importance of high
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     *         bandwidth
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    protected void setPerformancePreferences(int connectionTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
                                          int latency,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
                                          int bandwidth)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        /* Not implemented yet */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
    }
23879
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 set 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
     * @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
   412
     *              may be valid for some options.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   413
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   414
     * @throws UnsupportedOperationException if the SocketImpl does not
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   415
     *         support the option
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   416
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   417
     * @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
   418
     *
35302
e4d2275861c3 8136494: Update "@since 1.9" to "@since 9" to match java.version.specification
iris
parents: 34968
diff changeset
   419
     * @since 9
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   420
     */
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   421
    protected <T> void setOption(SocketOption<T> name, T value) throws IOException {
54689
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   422
        if (name == StandardSocketOptions.SO_KEEPALIVE && !isServer) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   423
            setOption(SocketOptions.SO_KEEPALIVE, value);
54689
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   424
        } else if (name == StandardSocketOptions.SO_SNDBUF && !isServer) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   425
            setOption(SocketOptions.SO_SNDBUF, value);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   426
        } else if (name == StandardSocketOptions.SO_RCVBUF) {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   427
            setOption(SocketOptions.SO_RCVBUF, value);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   428
        } else if (name == StandardSocketOptions.SO_REUSEADDR) {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   429
            setOption(SocketOptions.SO_REUSEADDR, value);
36115
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 35302
diff changeset
   430
        } else if (name == StandardSocketOptions.SO_REUSEPORT &&
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 35302
diff changeset
   431
            supportedOptions().contains(name)) {
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 35302
diff changeset
   432
            setOption(SocketOptions.SO_REUSEPORT, value);
54689
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   433
        } else if (name == StandardSocketOptions.SO_LINGER && !isServer) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   434
            setOption(SocketOptions.SO_LINGER, value);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   435
        } else if (name == StandardSocketOptions.IP_TOS) {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   436
            setOption(SocketOptions.IP_TOS, value);
54689
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   437
        } else if (name == StandardSocketOptions.TCP_NODELAY && !isServer) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   438
            setOption(SocketOptions.TCP_NODELAY, value);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   439
        } else {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   440
            throw new UnsupportedOperationException("unsupported option");
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   441
        }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   442
    }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   443
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   444
    /**
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   445
     * Called to get a socket option.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   446
     *
28852
a581c7868768 8041395: Doclint regression in java.net.SocketOption
darcy
parents: 27341
diff changeset
   447
     * @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
   448
     * @param name The socket option
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   449
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   450
     * @return the value of the named option
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   451
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   452
     * @throws UnsupportedOperationException if the SocketImpl does not
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   453
     *         support the option.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   454
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   455
     * @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
   456
     *
35302
e4d2275861c3 8136494: Update "@since 1.9" to "@since 9" to match java.version.specification
iris
parents: 34968
diff changeset
   457
     * @since 9
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   458
     */
24046
d1f6da65881a 8041397: Lint regression in java.net.SocketOption
michaelm
parents: 23879
diff changeset
   459
    @SuppressWarnings("unchecked")
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   460
    protected <T> T getOption(SocketOption<T> name) throws IOException {
54689
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   461
        if (name == StandardSocketOptions.SO_KEEPALIVE && !isServer) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   462
            return (T)getOption(SocketOptions.SO_KEEPALIVE);
54689
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   463
        } else if (name == StandardSocketOptions.SO_SNDBUF && !isServer) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   464
            return (T)getOption(SocketOptions.SO_SNDBUF);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   465
        } else if (name == StandardSocketOptions.SO_RCVBUF) {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   466
            return (T)getOption(SocketOptions.SO_RCVBUF);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   467
        } else if (name == StandardSocketOptions.SO_REUSEADDR) {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   468
            return (T)getOption(SocketOptions.SO_REUSEADDR);
36115
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 35302
diff changeset
   469
        } else if (name == StandardSocketOptions.SO_REUSEPORT &&
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 35302
diff changeset
   470
            supportedOptions().contains(name)) {
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 35302
diff changeset
   471
            return (T)getOption(SocketOptions.SO_REUSEPORT);
54689
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   472
        } else if (name == StandardSocketOptions.SO_LINGER && !isServer) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   473
            return (T)getOption(SocketOptions.SO_LINGER);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   474
        } else if (name == StandardSocketOptions.IP_TOS) {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   475
            return (T)getOption(SocketOptions.IP_TOS);
54689
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   476
        } else if (name == StandardSocketOptions.TCP_NODELAY && !isServer) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   477
            return (T)getOption(SocketOptions.TCP_NODELAY);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   478
        } else {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   479
            throw new UnsupportedOperationException("unsupported option");
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   480
        }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   481
    }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   482
54155
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   483
    /**
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   484
     * Attempts to copy socket options from this SocketImpl to a target SocketImpl.
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   485
     * At this time, only the SO_TIMEOUT make sense to copy.
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   486
     */
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   487
    void copyOptionsTo(SocketImpl target) {
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   488
        try {
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   489
            Object timeout = getOption(SocketOptions.SO_TIMEOUT);
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   490
            if (timeout instanceof Integer) {
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   491
                target.setOption(SocketOptions.SO_TIMEOUT, timeout);
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   492
            }
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   493
        } catch (IOException ignore) { }
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   494
    }
b5a73f22b2bd 8220493: Prepare Socket/ServerSocket for alternative platform SocketImpl
alanb
parents: 47478
diff changeset
   495
36228
a16a22218e23 8148609: socket impl supportedOptions() should return an immutable set
vtewari
parents: 36115
diff changeset
   496
    private static final Set<SocketOption<?>> socketOptions;
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   497
36228
a16a22218e23 8148609: socket impl supportedOptions() should return an immutable set
vtewari
parents: 36115
diff changeset
   498
    private static final Set<SocketOption<?>> serverSocketOptions;
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   499
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   500
    static {
36228
a16a22218e23 8148609: socket impl supportedOptions() should return an immutable set
vtewari
parents: 36115
diff changeset
   501
        socketOptions = Set.of(StandardSocketOptions.SO_KEEPALIVE,
a16a22218e23 8148609: socket impl supportedOptions() should return an immutable set
vtewari
parents: 36115
diff changeset
   502
                               StandardSocketOptions.SO_SNDBUF,
a16a22218e23 8148609: socket impl supportedOptions() should return an immutable set
vtewari
parents: 36115
diff changeset
   503
                               StandardSocketOptions.SO_RCVBUF,
a16a22218e23 8148609: socket impl supportedOptions() should return an immutable set
vtewari
parents: 36115
diff changeset
   504
                               StandardSocketOptions.SO_REUSEADDR,
a16a22218e23 8148609: socket impl supportedOptions() should return an immutable set
vtewari
parents: 36115
diff changeset
   505
                               StandardSocketOptions.SO_LINGER,
a16a22218e23 8148609: socket impl supportedOptions() should return an immutable set
vtewari
parents: 36115
diff changeset
   506
                               StandardSocketOptions.IP_TOS,
a16a22218e23 8148609: socket impl supportedOptions() should return an immutable set
vtewari
parents: 36115
diff changeset
   507
                               StandardSocketOptions.TCP_NODELAY);
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   508
36228
a16a22218e23 8148609: socket impl supportedOptions() should return an immutable set
vtewari
parents: 36115
diff changeset
   509
        serverSocketOptions = Set.of(StandardSocketOptions.SO_RCVBUF,
a16a22218e23 8148609: socket impl supportedOptions() should return an immutable set
vtewari
parents: 36115
diff changeset
   510
                                     StandardSocketOptions.SO_REUSEADDR,
a16a22218e23 8148609: socket impl supportedOptions() should return an immutable set
vtewari
parents: 36115
diff changeset
   511
                                     StandardSocketOptions.IP_TOS);
a16a22218e23 8148609: socket impl supportedOptions() should return an immutable set
vtewari
parents: 36115
diff changeset
   512
    }
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   513
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   514
    /**
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   515
     * 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
   516
     * 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
   517
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   518
     * @return a Set of SocketOptions
36228
a16a22218e23 8148609: socket impl supportedOptions() should return an immutable set
vtewari
parents: 36115
diff changeset
   519
     *
a16a22218e23 8148609: socket impl supportedOptions() should return an immutable set
vtewari
parents: 36115
diff changeset
   520
     * @since 9
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   521
     */
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   522
    protected Set<SocketOption<?>> supportedOptions() {
54689
b28b7f631301 8216978: Drop support for pre JDK 1.4 SocketImpl implementations
michaelm
parents: 54155
diff changeset
   523
        if (!isServer) {
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   524
            return socketOptions;
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   525
        } else {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   526
            return serverSocketOptions;
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   527
        }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 19069
diff changeset
   528
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
}