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