src/java.base/share/classes/java/net/ServerSocket.java
author rriggs
Fri, 02 Feb 2018 14:17:07 -0500
changeset 48737 7c12219870fd
parent 47216 71c04702a3d5
child 52371 ae4967993e17
permissions -rw-r--r--
8195059: Update java.net Socket and DatagramSocket implementations to use Cleaner Reviewed-by: chegar, plevart
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
48737
7c12219870fd 8195059: Update java.net Socket and DatagramSocket implementations to use Cleaner
rriggs
parents: 47216
diff changeset
     2
 * Copyright (c) 1995, 2018, 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: 1096
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: 1096
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: 1096
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1096
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1096
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
40696
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
    28
import jdk.internal.misc.JavaNetSocketAccess;
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
    29
import jdk.internal.misc.SharedSecrets;
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
    30
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.FileDescriptor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.io.IOException;
40696
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
    33
import java.lang.reflect.Constructor;
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
    34
import java.lang.reflect.InvocationTargetException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.nio.channels.ServerSocketChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.security.PrivilegedExceptionAction;
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
    38
import java.util.Set;
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
    39
import java.util.Collections;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * This class implements server sockets. A server socket waits for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * requests to come in over the network. It performs some operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * based on that request, and then possibly returns a result to the requester.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * The actual work of the server socket is performed by an instance
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
    47
 * of the {@code SocketImpl} class. An application can
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * change the socket factory that creates the socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * implementation to configure itself to create sockets
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * appropriate to the local firewall.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * @author  unascribed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * @see     java.net.SocketImpl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * @see     java.net.ServerSocket#setSocketFactory(java.net.SocketImplFactory)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * @see     java.nio.channels.ServerSocketChannel
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 23879
diff changeset
    56
 * @since   1.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
class ServerSocket implements java.io.Closeable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * Various states of this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    private boolean created = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    private boolean bound = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    private boolean closed = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    private Object closeLock = new Object();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * The implementation of this Socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    private SocketImpl impl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * Are we using an older SocketImpl?
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    private boolean oldImpl = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    /**
6525
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
    79
     * Package-private constructor to create a ServerSocket associated with
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
    80
     * the given SocketImpl.
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
    81
     */
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
    82
    ServerSocket(SocketImpl impl) {
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
    83
        this.impl = impl;
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
    84
        impl.setServerSocket(this);
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
    85
    }
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
    86
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
    87
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * Creates an unbound server socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * @exception IOException IO error when opening the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * @revised 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    public ServerSocket() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        setImpl();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * Creates a server socket, bound to the specified port. A port number
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
    99
     * of {@code 0} means that the port number is automatically
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * allocated, typically from an ephemeral port range. This port
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * number can then be retrieved by calling {@link #getLocalPort getLocalPort}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * The maximum queue length for incoming connection indications (a
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   104
     * request to connect) is set to {@code 50}. If a connection
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * indication arrives when the queue is full, the connection is refused.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * If the application has specified a server socket factory, that
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   108
     * factory's {@code createSocketImpl} method is called to create
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * the actual socket implementation. Otherwise a "plain" socket is created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * If there is a security manager,
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   112
     * its {@code checkListen} method is called
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   113
     * with the {@code port} argument
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * as its argument to ensure the operation is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * This could result in a SecurityException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   118
     * @param      port  the port number, or {@code 0} to use a port
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     *                   number that is automatically allocated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * @exception  IOException  if an I/O error occurs when opening the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * @exception  SecurityException
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   123
     * if a security manager exists and its {@code checkListen}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * method doesn't allow the operation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * @exception  IllegalArgumentException if the port parameter is outside
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     *             the specified range of valid port values, which is between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *             0 and 65535, inclusive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * @see        java.net.SocketImpl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * @see        java.net.SocketImplFactory#createSocketImpl()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * @see        java.net.ServerSocket#setSocketFactory(java.net.SocketImplFactory)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * @see        SecurityManager#checkListen
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    public ServerSocket(int port) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        this(port, 50, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * Creates a server socket and binds it to the specified local port
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * number, with the specified backlog.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   141
     * A port number of {@code 0} means that the port number is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * automatically allocated, typically from an ephemeral port range.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * This port number can then be retrieved by calling
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * {@link #getLocalPort getLocalPort}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * The maximum queue length for incoming connection indications (a
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   147
     * request to connect) is set to the {@code backlog} parameter. If
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * a connection indication arrives when the queue is full, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * connection is refused.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * If the application has specified a server socket factory, that
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   152
     * factory's {@code createSocketImpl} method is called to create
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * the actual socket implementation. Otherwise a "plain" socket is created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * If there is a security manager,
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   156
     * its {@code checkListen} method is called
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   157
     * with the {@code port} argument
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * as its argument to ensure the operation is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * This could result in a SecurityException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   161
     * The {@code backlog} argument is the requested maximum number of
1096
7906d13db4eb 6258215: Num of backlog in ServerSocket(int, int) should be mentioned more explicitly
michaelm
parents: 715
diff changeset
   162
     * pending connections on the socket. Its exact semantics are implementation
7906d13db4eb 6258215: Num of backlog in ServerSocket(int, int) should be mentioned more explicitly
michaelm
parents: 715
diff changeset
   163
     * specific. In particular, an implementation may impose a maximum length
7906d13db4eb 6258215: Num of backlog in ServerSocket(int, int) should be mentioned more explicitly
michaelm
parents: 715
diff changeset
   164
     * or may choose to ignore the parameter altogther. The value provided
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   165
     * should be greater than {@code 0}. If it is less than or equal to
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   166
     * {@code 0}, then an implementation specific default will be used.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   168
     * @param      port     the port number, or {@code 0} to use a port
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     *                      number that is automatically allocated.
1096
7906d13db4eb 6258215: Num of backlog in ServerSocket(int, int) should be mentioned more explicitly
michaelm
parents: 715
diff changeset
   170
     * @param      backlog  requested maximum length of the queue of incoming
7906d13db4eb 6258215: Num of backlog in ServerSocket(int, int) should be mentioned more explicitly
michaelm
parents: 715
diff changeset
   171
     *                      connections.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * @exception  IOException  if an I/O error occurs when opening the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * @exception  SecurityException
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   175
     * if a security manager exists and its {@code checkListen}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * method doesn't allow the operation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * @exception  IllegalArgumentException if the port parameter is outside
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     *             the specified range of valid port values, which is between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     *             0 and 65535, inclusive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * @see        java.net.SocketImpl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * @see        java.net.SocketImplFactory#createSocketImpl()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * @see        java.net.ServerSocket#setSocketFactory(java.net.SocketImplFactory)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * @see        SecurityManager#checkListen
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    public ServerSocket(int port, int backlog) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        this(port, backlog, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * Create a server with the specified port, listen backlog, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * local IP address to bind to.  The <i>bindAddr</i> argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * can be used on a multi-homed host for a ServerSocket that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * will only accept connect requests to one of its addresses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * If <i>bindAddr</i> is null, it will default accepting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * connections on any/all local addresses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * The port must be between 0 and 65535, inclusive.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   198
     * A port number of {@code 0} means that the port number is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * automatically allocated, typically from an ephemeral port range.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * This port number can then be retrieved by calling
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * {@link #getLocalPort getLocalPort}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * <P>If there is a security manager, this method
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   204
     * calls its {@code checkListen} method
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   205
     * with the {@code port} argument
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * as its argument to ensure the operation is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * This could result in a SecurityException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   209
     * The {@code backlog} argument is the requested maximum number of
1096
7906d13db4eb 6258215: Num of backlog in ServerSocket(int, int) should be mentioned more explicitly
michaelm
parents: 715
diff changeset
   210
     * pending connections on the socket. Its exact semantics are implementation
7906d13db4eb 6258215: Num of backlog in ServerSocket(int, int) should be mentioned more explicitly
michaelm
parents: 715
diff changeset
   211
     * specific. In particular, an implementation may impose a maximum length
7906d13db4eb 6258215: Num of backlog in ServerSocket(int, int) should be mentioned more explicitly
michaelm
parents: 715
diff changeset
   212
     * or may choose to ignore the parameter altogther. The value provided
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   213
     * should be greater than {@code 0}. If it is less than or equal to
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   214
     * {@code 0}, then an implementation specific default will be used.
23720
7d5147c21927 8039172: Tidy warnings cleanup for java.net, java.math, java.time, java.rmi
yan
parents: 21278
diff changeset
   215
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   216
     * @param port  the port number, or {@code 0} to use a port
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     *              number that is automatically allocated.
1096
7906d13db4eb 6258215: Num of backlog in ServerSocket(int, int) should be mentioned more explicitly
michaelm
parents: 715
diff changeset
   218
     * @param backlog requested maximum length of the queue of incoming
7906d13db4eb 6258215: Num of backlog in ServerSocket(int, int) should be mentioned more explicitly
michaelm
parents: 715
diff changeset
   219
     *                connections.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * @param bindAddr the local InetAddress the server will bind to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * @throws  SecurityException if a security manager exists and
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   223
     * its {@code checkListen} method doesn't allow the operation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * @throws  IOException if an I/O error occurs when opening the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * @exception  IllegalArgumentException if the port parameter is outside
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     *             the specified range of valid port values, which is between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     *             0 and 65535, inclusive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * @see SocketOptions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * @see SocketImpl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * @see SecurityManager#checkListen
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 23879
diff changeset
   233
     * @since   1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    public ServerSocket(int port, int backlog, InetAddress bindAddr) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        setImpl();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        if (port < 0 || port > 0xFFFF)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            throw new IllegalArgumentException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
                       "Port value out of range: " + port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        if (backlog < 1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
          backlog = 50;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            bind(new InetSocketAddress(bindAddr, port), backlog);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        } catch(SecurityException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
            close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
            throw e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        } catch(IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
            close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
            throw e;
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
    /**
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   254
     * Get the {@code SocketImpl} attached to this socket, creating
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * it if necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   257
     * @return  the {@code SocketImpl} attached to that ServerSocket.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * @throws SocketException if creation fails.
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
    SocketImpl getImpl() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        if (!created)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
            createImpl();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        return impl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    private void checkOldImpl() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        if (impl == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        // SocketImpl.connect() is a protected method, therefore we need to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        // getDeclaredMethod, therefore we need permission to access the member
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        try {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   273
            AccessController.doPrivileged(
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   274
                new PrivilegedExceptionAction<Void>() {
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   275
                    public Void run() throws NoSuchMethodException {
10882
7ddadf2b8b4c 7104650: rawtype warnings in several net, nio and security source files
chegar
parents: 10140
diff changeset
   276
                        impl.getClass().getDeclaredMethod("connect",
7ddadf2b8b4c 7104650: rawtype warnings in several net, nio and security source files
chegar
parents: 10140
diff changeset
   277
                                                          SocketAddress.class,
7ddadf2b8b4c 7104650: rawtype warnings in several net, nio and security source files
chegar
parents: 10140
diff changeset
   278
                                                          int.class);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
                        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
                });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        } catch (java.security.PrivilegedActionException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
            oldImpl = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    private void setImpl() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        if (factory != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
            impl = factory.createSocketImpl();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
            checkOldImpl();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
            // No need to do a checkOldImpl() here, we know it's an up to date
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
            // SocketImpl!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
            impl = new SocksSocketImpl();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        if (impl != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
            impl.setServerSocket(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * Creates the socket implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * @throws IOException if creation fails
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    void createImpl() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        if (impl == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
            setImpl();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
            impl.create(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
            created = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
            throw new SocketException(e.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        }
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
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   319
     * Binds the {@code ServerSocket} to a specific address
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * (IP address and port number).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * <p>
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   322
     * If the address is {@code null}, then the system will pick up
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * an ephemeral port and a valid local address to bind the socket.
23720
7d5147c21927 8039172: Tidy warnings cleanup for java.net, java.math, java.time, java.rmi
yan
parents: 21278
diff changeset
   324
     *
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17469
diff changeset
   325
     * @param   endpoint        The IP address and port number to bind to.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * @throws  IOException if the bind operation fails, or if the socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     *                     is already bound.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   328
     * @throws  SecurityException       if a {@code SecurityManager} is present and
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   329
     * its {@code checkListen} method doesn't allow the operation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * @throws  IllegalArgumentException if endpoint is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     *          SocketAddress subclass not supported by this socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    public void bind(SocketAddress endpoint) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        bind(endpoint, 50);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   340
     * Binds the {@code ServerSocket} to a specific address
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * (IP address and port number).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * <p>
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   343
     * If the address is {@code null}, then the system will pick up
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * an ephemeral port and a valid local address to bind the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * <P>
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   346
     * The {@code backlog} argument is the requested maximum number of
1096
7906d13db4eb 6258215: Num of backlog in ServerSocket(int, int) should be mentioned more explicitly
michaelm
parents: 715
diff changeset
   347
     * pending connections on the socket. Its exact semantics are implementation
7906d13db4eb 6258215: Num of backlog in ServerSocket(int, int) should be mentioned more explicitly
michaelm
parents: 715
diff changeset
   348
     * specific. In particular, an implementation may impose a maximum length
7906d13db4eb 6258215: Num of backlog in ServerSocket(int, int) should be mentioned more explicitly
michaelm
parents: 715
diff changeset
   349
     * or may choose to ignore the parameter altogther. The value provided
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   350
     * should be greater than {@code 0}. If it is less than or equal to
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   351
     * {@code 0}, then an implementation specific default will be used.
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17469
diff changeset
   352
     * @param   endpoint        The IP address and port number to bind to.
1096
7906d13db4eb 6258215: Num of backlog in ServerSocket(int, int) should be mentioned more explicitly
michaelm
parents: 715
diff changeset
   353
     * @param   backlog         requested maximum length of the queue of
7906d13db4eb 6258215: Num of backlog in ServerSocket(int, int) should be mentioned more explicitly
michaelm
parents: 715
diff changeset
   354
     *                          incoming connections.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * @throws  IOException if the bind operation fails, or if the socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     *                     is already bound.
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   357
     * @throws  SecurityException       if a {@code SecurityManager} is present and
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   358
     * its {@code checkListen} method doesn't allow the operation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * @throws  IllegalArgumentException if endpoint is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     *          SocketAddress subclass not supported by this socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
    public void bind(SocketAddress endpoint, int backlog) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        if (isClosed())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
            throw new SocketException("Socket is closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        if (!oldImpl && isBound())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
            throw new SocketException("Already bound");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        if (endpoint == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
            endpoint = new InetSocketAddress(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        if (!(endpoint instanceof InetSocketAddress))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
            throw new IllegalArgumentException("Unsupported address type");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        InetSocketAddress epoint = (InetSocketAddress) endpoint;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        if (epoint.isUnresolved())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
            throw new SocketException("Unresolved address");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        if (backlog < 1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
          backlog = 50;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
            SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
            if (security != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
                security.checkListen(epoint.getPort());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
            getImpl().bind(epoint.getAddress(), epoint.getPort());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
            getImpl().listen(backlog);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
            bound = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        } catch(SecurityException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
            bound = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
            throw e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        } catch(IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
            bound = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
            throw e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * Returns the local address of this server socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * If the socket was bound prior to being {@link #close closed},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * then this method will continue to return the local address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * after the socket is closed.
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   399
     * <p>
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   400
     * If there is a security manager set, its {@code checkConnect} method is
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   401
     * called with the local address and {@code -1} as its arguments to see
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   402
     * if the operation is allowed. If the operation is not allowed,
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   403
     * the {@link InetAddress#getLoopbackAddress loopback} address is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * @return  the address to which this socket is bound,
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   406
     *          or the loopback address if denied by the security manager,
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   407
     *          or {@code null} if the socket is unbound.
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   408
     *
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   409
     * @see SecurityManager#checkConnect
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
    public InetAddress getInetAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        if (!isBound())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        try {
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   415
            InetAddress in = getImpl().getInetAddress();
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   416
            SecurityManager sm = System.getSecurityManager();
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   417
            if (sm != null)
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   418
                sm.checkConnect(in.getHostAddress(), -1);
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   419
            return in;
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   420
        } catch (SecurityException e) {
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   421
            return InetAddress.getLoopbackAddress();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        } catch (SocketException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
            // nothing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
            // If we're bound, the impl has been created
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
            // so we shouldn't get here
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * Returns the port number on which this socket is listening.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * If the socket was bound prior to being {@link #close closed},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     * then this method will continue to return the port number
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * after the socket is closed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * @return  the port number to which this socket is listening or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     *          -1 if the socket is not bound yet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
    public int getLocalPort() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
        if (!isBound())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
            return getImpl().getLocalPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        } catch (SocketException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
            // nothing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
            // If we're bound, the impl has been created
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
            // so we shouldn't get here
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
    /**
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   454
     * Returns the address of the endpoint this socket is bound to.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * If the socket was bound prior to being {@link #close closed},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     * then this method will continue to return the address of the endpoint
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     * after the socket is closed.
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   459
     * <p>
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   460
     * If there is a security manager set, its {@code checkConnect} method is
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   461
     * called with the local address and {@code -1} as its arguments to see
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   462
     * if the operation is allowed. If the operation is not allowed,
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   463
     * a {@code SocketAddress} representing the
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   464
     * {@link InetAddress#getLoopbackAddress loopback} address and the local
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   465
     * port to which the socket is bound is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     *
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   467
     * @return a {@code SocketAddress} representing the local endpoint of
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   468
     *         this socket, or a {@code SocketAddress} representing the
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   469
     *         loopback address if denied by the security manager,
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   470
     *         or {@code null} if the socket is not bound yet.
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   471
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * @see #getInetAddress()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     * @see #getLocalPort()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     * @see #bind(SocketAddress)
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   475
     * @see SecurityManager#checkConnect
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
    public SocketAddress getLocalSocketAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        if (!isBound())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        return new InetSocketAddress(getInetAddress(), getLocalPort());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     * Listens for a connection to be made to this socket and accepts
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * it. The method blocks until a connection is made.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   489
     * <p>A new Socket {@code s} is created and, if there
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * is a security manager,
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   491
     * the security manager's {@code checkAccept} method is called
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   492
     * with {@code s.getInetAddress().getHostAddress()} and
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   493
     * {@code s.getPort()}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     * as its arguments to ensure the operation is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * This could result in a SecurityException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * @exception  IOException  if an I/O error occurs when waiting for a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     *               connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     * @exception  SecurityException  if a security manager exists and its
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   500
     *             {@code checkAccept} method doesn't allow the operation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * @exception  SocketTimeoutException if a timeout was previously set with setSoTimeout and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     *             the timeout has been reached.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * @exception  java.nio.channels.IllegalBlockingModeException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     *             if this socket has an associated channel, the channel is in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     *             non-blocking mode, and there is no connection ready to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     *             accepted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * @return the new Socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     * @see SecurityManager#checkAccept
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     * @revised 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
    public Socket accept() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        if (isClosed())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
            throw new SocketException("Socket is closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
        if (!isBound())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
            throw new SocketException("Socket is not bound yet");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        Socket s = new Socket((SocketImpl) null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
        implAccept(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
        return s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * Subclasses of ServerSocket use this method to override accept()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     * to return their own subclass of socket.  So a FooServerSocket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     * will typically hand this method an <i>empty</i> FooSocket.  On
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * return from implAccept the FooSocket will be connected to a client.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     * @param s the Socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     * @throws java.nio.channels.IllegalBlockingModeException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     *         if this socket has an associated channel,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     *         and the channel is in non-blocking mode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     * @throws IOException if an I/O error occurs when waiting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * for a connection.
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 23879
diff changeset
   535
     * @since   1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     * @revised 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
    protected final void implAccept(Socket s) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
        SocketImpl si = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
            if (s.impl == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
              s.setImpl();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
            else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
                s.impl.reset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
            si = s.impl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
            s.impl = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
            si.address = new InetAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
            si.fd = new FileDescriptor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
            getImpl().accept(si);
48737
7c12219870fd 8195059: Update java.net Socket and DatagramSocket implementations to use Cleaner
rriggs
parents: 47216
diff changeset
   552
            SocketCleanable.register(si.fd);   // raw fd has been set
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
            SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
            if (security != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
                security.checkAccept(si.getInetAddress().getHostAddress(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
                                     si.getPort());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
            if (si != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
                si.reset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
            s.impl = si;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
            throw e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
        } catch (SecurityException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
            if (si != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                si.reset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
            s.impl = si;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
            throw e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        s.impl = si;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
        s.postAccept();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * Closes this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * Any thread currently blocked in {@link #accept()} will throw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * a {@link SocketException}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     * <p> If this socket has an associated channel then the channel is closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * as well.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * @exception  IOException  if an I/O error occurs when closing the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     * @revised 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
    public void close() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
        synchronized(closeLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
            if (isClosed())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
            if (created)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
                impl.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
            closed = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
     * Returns the unique {@link java.nio.channels.ServerSocketChannel} object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
     * associated with this socket, if any.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
     * <p> A server socket will have a channel if, and only if, the channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     * itself was created via the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     * java.nio.channels.ServerSocketChannel#open ServerSocketChannel.open}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
     * method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     * @return  the server-socket channel associated with this socket,
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   607
     *          or {@code null} if this socket was not created
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     *          for a channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     * @spec JSR-51
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
    public ServerSocketChannel getChannel() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     * Returns the binding state of the ServerSocket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     *
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 19069
diff changeset
   620
     * @return true if the ServerSocket successfully bound to an address
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
    public boolean isBound() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
        // Before 1.3 ServerSockets were always bound during creation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
        return bound || oldImpl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
     * Returns the closed state of the ServerSocket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     * @return true if the socket has been closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
    public boolean isClosed() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
        synchronized(closeLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
            return closed;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
    /**
17469
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   641
     * Enable/disable {@link SocketOptions#SO_TIMEOUT SO_TIMEOUT} with the
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   642
     * specified timeout, in milliseconds.  With this option set to a non-zero
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   643
     * timeout, a call to accept() for this ServerSocket
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
     * will block for only this amount of time.  If the timeout expires,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
     * a <B>java.net.SocketTimeoutException</B> is raised, though the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     * ServerSocket is still valid.  The option <B>must</B> be enabled
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
     * prior to entering the blocking operation to have effect.  The
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 17469
diff changeset
   648
     * timeout must be {@code > 0}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     * A timeout of zero is interpreted as an infinite timeout.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
     * @param timeout the specified timeout, in milliseconds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
     * @exception SocketException if there is an error in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
     * the underlying protocol, such as a TCP error.
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 23879
diff changeset
   653
     * @since   1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
     * @see #getSoTimeout()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
    public synchronized void setSoTimeout(int timeout) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
        if (isClosed())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
            throw new SocketException("Socket is closed");
25522
10d789df41bb 8049892: Replace uses of 'new Integer()' with appropriate alternative across core classes
prr
parents: 24865
diff changeset
   659
        getImpl().setOption(SocketOptions.SO_TIMEOUT, timeout);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    /**
17469
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   663
     * Retrieve setting for {@link SocketOptions#SO_TIMEOUT SO_TIMEOUT}.
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   664
     * 0 returns implies that the option is disabled (i.e., timeout of infinity).
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   665
     * @return the {@link SocketOptions#SO_TIMEOUT SO_TIMEOUT} value
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     * @exception IOException if an I/O error occurs
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 23879
diff changeset
   667
     * @since   1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     * @see #setSoTimeout(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    public synchronized int getSoTimeout() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
        if (isClosed())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
            throw new SocketException("Socket is closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
        Object o = getImpl().getOption(SocketOptions.SO_TIMEOUT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
        /* extra type safety */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
        if (o instanceof Integer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
            return ((Integer) o).intValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    /**
17469
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   683
     * Enable/disable the {@link SocketOptions#SO_REUSEADDR SO_REUSEADDR}
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   684
     * socket option.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     * When a TCP connection is closed the connection may remain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * in a timeout state for a period of time after the connection
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   688
     * is closed (typically known as the {@code TIME_WAIT} state
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   689
     * or {@code 2MSL} wait state).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     * For applications using a well known socket address or port
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * it may not be possible to bind a socket to the required
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   692
     * {@code SocketAddress} if there is a connection in the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     * timeout state involving the socket address or port.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     * <p>
17469
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   695
     * Enabling {@link SocketOptions#SO_REUSEADDR SO_REUSEADDR} prior to
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   696
     * binding the socket using {@link #bind(SocketAddress)} allows the socket
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   697
     * to be bound even though a previous connection is in a timeout state.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     * <p>
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   699
     * When a {@code ServerSocket} is created the initial setting
17469
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   700
     * of {@link SocketOptions#SO_REUSEADDR SO_REUSEADDR} is not defined.
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   701
     * Applications can use {@link #getReuseAddress()} to determine the initial
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   702
     * setting of {@link SocketOptions#SO_REUSEADDR SO_REUSEADDR}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * <p>
17469
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   704
     * The behaviour when {@link SocketOptions#SO_REUSEADDR SO_REUSEADDR} is
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   705
     * enabled or disabled after a socket is bound (See {@link #isBound()})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     * is not defined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     * @param on  whether to enable or disable the socket option
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     * @exception SocketException if an error occurs enabling or
17469
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   710
     *            disabling the {@link SocketOptions#SO_REUSEADDR SO_REUSEADDR}
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   711
     *            socket option, or the socket is closed.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     * @see #getReuseAddress()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
     * @see #bind(SocketAddress)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
     * @see #isBound()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     * @see #isClosed()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
    public void setReuseAddress(boolean on) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
        if (isClosed())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
            throw new SocketException("Socket is closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
        getImpl().setOption(SocketOptions.SO_REUSEADDR, Boolean.valueOf(on));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
    /**
17469
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   725
     * Tests if {@link SocketOptions#SO_REUSEADDR SO_REUSEADDR} is enabled.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   727
     * @return a {@code boolean} indicating whether or not
17469
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   728
     *         {@link SocketOptions#SO_REUSEADDR SO_REUSEADDR} is enabled.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     * @exception SocketException if there is an error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * in the underlying protocol, such as a TCP error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     * @since   1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     * @see #setReuseAddress(boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
    public boolean getReuseAddress() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
        if (isClosed())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
            throw new SocketException("Socket is closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        return ((Boolean) (getImpl().getOption(SocketOptions.SO_REUSEADDR))).booleanValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
     * Returns the implementation address and implementation port of
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   742
     * this socket as a {@code String}.
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   743
     * <p>
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   744
     * If there is a security manager set, its {@code checkConnect} method is
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   745
     * called with the local address and {@code -1} as its arguments to see
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   746
     * if the operation is allowed. If the operation is not allowed,
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   747
     * an {@code InetAddress} representing the
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   748
     * {@link InetAddress#getLoopbackAddress loopback} address is returned as
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   749
     * the implementation address.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     * @return  a string representation of this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
        if (!isBound())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
            return "ServerSocket[unbound]";
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   756
        InetAddress in;
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   757
        if (System.getSecurityManager() != null)
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   758
            in = InetAddress.getLoopbackAddress();
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   759
        else
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   760
            in = impl.getInetAddress();
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 14342
diff changeset
   761
        return "ServerSocket[addr=" + in +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
                ",localport=" + impl.getLocalPort()  + "]";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
    void setBound() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
        bound = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
    void setCreated() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
        created = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
     * The factory for all server sockets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
    private static SocketImplFactory factory = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
     * Sets the server socket implementation factory for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
     * application. The factory can be specified only once.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
     * When an application creates a new server socket, the socket
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   783
     * implementation factory's {@code createSocketImpl} method is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
     * called to create the actual socket implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
     * <p>
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   786
     * Passing {@code null} to the method is a no-op unless the factory
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     * was already set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     * If there is a security manager, this method first calls
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   790
     * the security manager's {@code checkSetFactory} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     * to ensure the operation is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
     * This could result in a SecurityException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
     * @param      fac   the desired factory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
     * @exception  IOException  if an I/O error occurs when setting the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
     *               socket factory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
     * @exception  SocketException  if the factory has already been defined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
     * @exception  SecurityException  if a security manager exists and its
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   799
     *             {@code checkSetFactory} method doesn't allow the operation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
     * @see        java.net.SocketImplFactory#createSocketImpl()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
     * @see        SecurityManager#checkSetFactory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
    public static synchronized void setSocketFactory(SocketImplFactory fac) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
        if (factory != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
            throw new SocketException("factory already defined");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
        SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
        if (security != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
            security.checkSetFactory();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
        factory = fac;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
    /**
17469
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   815
     * Sets a default proposed value for the
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   816
     * {@link SocketOptions#SO_RCVBUF SO_RCVBUF} option for sockets
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   817
     * accepted from this {@code ServerSocket}. The value actually set
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
     * in the accepted socket must be determined by calling
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
     * {@link Socket#getReceiveBufferSize()} after the socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
     * is returned by {@link #accept()}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
     * <p>
17469
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   822
     * The value of {@link SocketOptions#SO_RCVBUF SO_RCVBUF} is used both to
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   823
     * set the size of the internal socket receive buffer, and to set the size
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   824
     * of the TCP receive window that is advertized to the remote peer.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
     * It is possible to change the value subsequently, by calling
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
     * {@link Socket#setReceiveBufferSize(int)}. However, if the application
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
     * wishes to allow a receive window larger than 64K bytes, as defined by RFC1323
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
     * then the proposed value must be set in the ServerSocket <B>before</B>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
     * it is bound to a local address. This implies, that the ServerSocket must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
     * created with the no-argument constructor, then setReceiveBufferSize() must
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
     * be called and lastly the ServerSocket is bound to an address by calling bind().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
     * Failure to do this will not cause an error, and the buffer size may be set to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
     * requested value but the TCP receive window in sockets accepted from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
     * this ServerSocket will be no larger than 64K bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
     * @exception SocketException if there is an error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
     * in the underlying protocol, such as a TCP error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
     * @param size the size to which to set the receive buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
     * size. This value must be greater than 0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
     * @exception IllegalArgumentException if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
     * value is 0 or is negative.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
     * @see #getReceiveBufferSize
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
     public synchronized void setReceiveBufferSize (int size) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
        if (!(size > 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
            throw new IllegalArgumentException("negative receive size");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
        if (isClosed())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
            throw new SocketException("Socket is closed");
25522
10d789df41bb 8049892: Replace uses of 'new Integer()' with appropriate alternative across core classes
prr
parents: 24865
diff changeset
   856
        getImpl().setOption(SocketOptions.SO_RCVBUF, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
    /**
17469
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   860
     * Gets the value of the {@link SocketOptions#SO_RCVBUF SO_RCVBUF} option
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   861
     * for this {@code ServerSocket}, that is the proposed buffer size that
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   862
     * will be used for Sockets accepted from this {@code ServerSocket}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
     * <p>Note, the value actually set in the accepted socket is determined by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
     * calling {@link Socket#getReceiveBufferSize()}.
17469
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   866
     * @return the value of the {@link SocketOptions#SO_RCVBUF SO_RCVBUF}
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   867
     *         option for this {@code Socket}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
     * @exception SocketException if there is an error
17469
e00a02431a8b 6328537: Improve javadocs for Socket class by adding references to SocketOptions
khazra
parents: 14342
diff changeset
   869
     *            in the underlying protocol, such as a TCP error.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
     * @see #setReceiveBufferSize(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
    public synchronized int getReceiveBufferSize()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
    throws SocketException{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
        if (isClosed())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
            throw new SocketException("Socket is closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
        int result = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
        Object o = getImpl().getOption(SocketOptions.SO_RCVBUF);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
        if (o instanceof Integer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
            result = ((Integer)o).intValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
     * Sets performance preferences for this ServerSocket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
     * <p> Sockets use the TCP/IP protocol by default.  Some implementations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
     * may offer alternative protocols which have different performance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
     * characteristics than TCP/IP.  This method allows the application to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
     * express its own preferences as to how these tradeoffs should be made
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
     * when the implementation chooses from the available protocols.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
     * <p> Performance preferences are described by three integers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
     * whose values indicate the relative importance of short connection time,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
     * low latency, and high bandwidth.  The absolute values of the integers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
     * are irrelevant; in order to choose a protocol the values are simply
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
     * compared, with larger values indicating stronger preferences.  If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
     * application prefers short connection time over both low latency and high
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
     * bandwidth, for example, then it could invoke this method with the values
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   901
     * {@code (1, 0, 0)}.  If the application prefers high bandwidth above low
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
     * latency, and low latency above short connection time, then it could
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   903
     * invoke this method with the values {@code (0, 1, 2)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
     * <p> Invoking this method after this socket has been bound
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
     * will have no effect. This implies that in order to use this capability
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
     * requires the socket to be created with the no-argument constructor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
     * @param  connectionTime
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   910
     *         An {@code int} expressing the relative importance of a short
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
     *         connection time
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
     * @param  latency
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   914
     *         An {@code int} expressing the relative importance of low
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
     *         latency
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
     * @param  bandwidth
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 18274
diff changeset
   918
     *         An {@code int} expressing the relative importance of high
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
     *         bandwidth
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
    public void setPerformancePreferences(int connectionTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
                                          int latency,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
                                          int bandwidth)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
        /* Not implemented yet */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   930
    /**
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   931
     * Sets the value of a socket option.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   932
     *
28852
a581c7868768 8041395: Doclint regression in java.net.SocketOption
darcy
parents: 25859
diff changeset
   933
     * @param <T> The type of the socket option value
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   934
     * @param name The socket option
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   935
     * @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: 23720
diff changeset
   936
     *              may be valid for some options.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   937
     * @return this ServerSocket
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   938
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   939
     * @throws UnsupportedOperationException if the server socket does not
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   940
     *         support the option.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   941
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   942
     * @throws IllegalArgumentException if the value is not valid for
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   943
     *         the option.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   944
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   945
     * @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: 23720
diff changeset
   946
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   947
     * @throws NullPointerException if name is {@code null}
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   948
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   949
     * @throws SecurityException if a security manager is set and if the socket
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   950
     *         option requires a security permission and if the caller does
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   951
     *         not have the required permission.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   952
     *         {@link java.net.StandardSocketOptions StandardSocketOptions}
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   953
     *         do not require any security permission.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   954
     *
35302
e4d2275861c3 8136494: Update "@since 1.9" to "@since 9" to match java.version.specification
iris
parents: 28852
diff changeset
   955
     * @since 9
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   956
     */
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   957
    public <T> ServerSocket setOption(SocketOption<T> name, T value)
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   958
        throws IOException
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   959
    {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   960
        getImpl().setOption(name, value);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   961
        return this;
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   962
    }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   963
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   964
    /**
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   965
     * Returns the value of a socket option.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   966
     *
28852
a581c7868768 8041395: Doclint regression in java.net.SocketOption
darcy
parents: 25859
diff changeset
   967
     * @param <T> The type of the socket option value
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   968
     * @param name The socket option
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   969
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   970
     * @return The value of the socket option.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   971
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   972
     * @throws UnsupportedOperationException if the server socket does not
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   973
     *         support the option.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   974
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   975
     * @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: 23720
diff changeset
   976
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   977
     * @throws NullPointerException if name is {@code null}
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   978
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   979
     * @throws SecurityException if a security manager is set and if the socket
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   980
     *         option requires a security permission and if the caller does
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   981
     *         not have the required permission.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   982
     *         {@link java.net.StandardSocketOptions StandardSocketOptions}
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   983
     *         do not require any security permission.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   984
     *
35302
e4d2275861c3 8136494: Update "@since 1.9" to "@since 9" to match java.version.specification
iris
parents: 28852
diff changeset
   985
     * @since 9
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   986
     */
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   987
    public <T> T getOption(SocketOption<T> name) throws IOException {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   988
        return getImpl().getOption(name);
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   989
    }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   990
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   991
    private static Set<SocketOption<?>> options;
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   992
    private static boolean optionsSet = false;
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   993
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   994
    /**
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   995
     * Returns a set of the socket options supported by this server socket.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   996
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   997
     * This method will continue to return the set of options even after
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   998
     * the socket has been closed.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
   999
     *
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1000
     * @return A set of the socket options supported by this socket. This set
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1001
     *         may be empty if the socket's SocketImpl cannot be created.
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1002
     *
35302
e4d2275861c3 8136494: Update "@since 1.9" to "@since 9" to match java.version.specification
iris
parents: 28852
diff changeset
  1003
     * @since 9
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1004
     */
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1005
    public Set<SocketOption<?>> supportedOptions() {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1006
        synchronized (ServerSocket.class) {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1007
            if (optionsSet) {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1008
                return options;
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1009
            }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1010
            try {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1011
                SocketImpl impl = getImpl();
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1012
                options = Collections.unmodifiableSet(impl.supportedOptions());
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1013
            } catch (IOException e) {
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1014
                options = Collections.emptySet();
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1015
            }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1016
            optionsSet = true;
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1017
            return options;
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1018
        }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 23720
diff changeset
  1019
    }
40696
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1020
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1021
    static {
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1022
        SharedSecrets.setJavaNetSocketAccess(
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1023
            new JavaNetSocketAccess() {
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1024
                @Override
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1025
                public ServerSocket newServerSocket(SocketImpl impl) {
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1026
                    return new ServerSocket(impl);
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1027
                }
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1028
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1029
                @Override
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1030
                public SocketImpl newSocketImpl(Class<? extends SocketImpl> implClass) {
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1031
                    try {
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1032
                        Constructor<? extends SocketImpl> ctor =
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1033
                            implClass.getDeclaredConstructor();
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1034
                        return ctor.newInstance();
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1035
                    } catch (NoSuchMethodException | InstantiationException |
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1036
                             IllegalAccessException | InvocationTargetException e) {
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1037
                        throw new AssertionError(e);
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1038
                    }
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1039
                }
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1040
            }
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1041
        );
d38ae985f810 8165180: Provide a shared secret to access non-public ServerSocket constructor
mchung
parents: 35302
diff changeset
  1042
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
}