src/java.base/share/classes/sun/nio/ch/SocketChannelImpl.java
author alanb
Tue, 06 Feb 2018 16:04:46 +0000
changeset 48750 ffbb784a8873
parent 47216 71c04702a3d5
child 48761 74c1fa26435a
permissions -rw-r--r--
8196787: (ch) Moving network channels to use j.u.c locks Reviewed-by: prappo, rriggs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
     2
 * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2446
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: 2446
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: 2446
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2446
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2446
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 sun.nio.ch;
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;
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    30
import java.net.InetAddress;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    31
import java.net.InetSocketAddress;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    32
import java.net.ProtocolFamily;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    33
import java.net.Socket;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    34
import java.net.SocketAddress;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    35
import java.net.SocketOption;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    36
import java.net.StandardProtocolFamily;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    37
import java.net.StandardSocketOptions;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.nio.ByteBuffer;
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    39
import java.nio.channels.AlreadyBoundException;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    40
import java.nio.channels.AlreadyConnectedException;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    41
import java.nio.channels.AsynchronousCloseException;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    42
import java.nio.channels.ClosedChannelException;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    43
import java.nio.channels.ConnectionPendingException;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    44
import java.nio.channels.NoConnectionPendingException;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    45
import java.nio.channels.NotYetConnectedException;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    46
import java.nio.channels.SelectionKey;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    47
import java.nio.channels.SocketChannel;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    48
import java.nio.channels.spi.SelectorProvider;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    49
import java.util.Collections;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    50
import java.util.HashSet;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    51
import java.util.Set;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    52
import java.util.concurrent.locks.ReentrantLock;
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    53
2446
07047237e4d4 4890703: Support SDP (sol)
alanb
parents: 2057
diff changeset
    54
import sun.net.NetHooks;
37676
24ef455da1b0 8044773: Refactor jdk.net API so that it can be moved out of the base module
chegar
parents: 36115
diff changeset
    55
import sun.net.ext.ExtendedSocketOptions;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * An implementation of SocketChannels
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
class SocketChannelImpl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    extends SocketChannel
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    implements SelChImpl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    // Used to make native read and write calls
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    private static NativeDispatcher nd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    // Our file descriptor object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    private final FileDescriptor fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    // fd value needed for dev/poll. This value will remain valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    // even after the value in the file descriptor object has been set to -1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    private final int fdVal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    // IDs of native threads doing reads and writes, for signalling
34774
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 29986
diff changeset
    77
    private volatile long readerThread;
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 29986
diff changeset
    78
    private volatile long writerThread;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    // Lock held by current reading or connecting thread
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    81
    private final ReentrantLock readLock = new ReentrantLock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    // Lock held by current writing or connecting thread
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
    84
    private final ReentrantLock writeLock = new ReentrantLock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    // Lock held by any thread that modifies the state fields declared below
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    // DO NOT invoke a blocking I/O operation while holding this lock!
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    private final Object stateLock = new Object();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    // -- The following fields are protected by stateLock
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
18192
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 16921
diff changeset
    92
    // set true when exclusive binding is on and SO_REUSEADDR is emulated
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 16921
diff changeset
    93
    private boolean isReuseAddress;
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 16921
diff changeset
    94
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    // State, increases monotonically
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    private static final int ST_UNINITIALIZED = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    private static final int ST_UNCONNECTED = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    private static final int ST_PENDING = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    private static final int ST_CONNECTED = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    private static final int ST_KILLPENDING = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    private static final int ST_KILLED = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    private int state = ST_UNINITIALIZED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    // Binding
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
   105
    private InetSocketAddress localAddress;
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
   106
    private InetSocketAddress remoteAddress;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    // Input/Output open
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    private boolean isInputOpen = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    private boolean isOutputOpen = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    // Socket adaptor, created on demand
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   113
    private Socket socket;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    // -- End of fields protected by stateLock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    // Constructor for normal connecting sockets
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    SocketChannelImpl(SelectorProvider sp) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        super(sp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        this.fd = Net.socket(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        this.fdVal = IOUtil.fdVal(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        this.state = ST_UNCONNECTED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
6525
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 6301
diff changeset
   127
    SocketChannelImpl(SelectorProvider sp,
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 6301
diff changeset
   128
                      FileDescriptor fd,
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 6301
diff changeset
   129
                      boolean bound)
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 6301
diff changeset
   130
        throws IOException
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 6301
diff changeset
   131
    {
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 6301
diff changeset
   132
        super(sp);
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 6301
diff changeset
   133
        this.fd = fd;
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 6301
diff changeset
   134
        this.fdVal = IOUtil.fdVal(fd);
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 6301
diff changeset
   135
        this.state = ST_UNCONNECTED;
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 6301
diff changeset
   136
        if (bound)
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 6301
diff changeset
   137
            this.localAddress = Net.localAddress(fd);
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 6301
diff changeset
   138
    }
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 6301
diff changeset
   139
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    // Constructor for sockets obtained from server sockets
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    SocketChannelImpl(SelectorProvider sp,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
                      FileDescriptor fd, InetSocketAddress remote)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        super(sp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        this.fd = fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        this.fdVal = IOUtil.fdVal(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        this.state = ST_CONNECTED;
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   150
        this.localAddress = Net.localAddress(fd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        this.remoteAddress = remote;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    public Socket socket() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
            if (socket == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                socket = SocketAdaptor.create(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            return socket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   162
    @Override
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   163
    public SocketAddress getLocalAddress() throws IOException {
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   164
        synchronized (stateLock) {
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   165
            if (!isOpen())
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   166
                throw new ClosedChannelException();
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
   167
            return  Net.getRevealedLocalAddress(localAddress);
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   168
        }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   169
    }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   170
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   171
    @Override
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   172
    public SocketAddress getRemoteAddress() throws IOException {
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   173
        synchronized (stateLock) {
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   174
            if (!isOpen())
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   175
                throw new ClosedChannelException();
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   176
            return remoteAddress;
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   177
        }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   178
    }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   179
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   180
    @Override
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   181
    public <T> SocketChannel setOption(SocketOption<T> name, T value)
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   182
        throws IOException
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   183
    {
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   184
        if (name == null)
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   185
            throw new NullPointerException();
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   186
        if (!supportedOptions().contains(name))
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   187
            throw new UnsupportedOperationException("'" + name + "' not supported");
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   188
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   189
        synchronized (stateLock) {
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   190
            if (!isOpen())
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   191
                throw new ClosedChannelException();
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   192
9679
d98ae8bc45fc 7042979: Rename StandardSocketOption and StandardWatchEventKind
alanb
parents: 7668
diff changeset
   193
            if (name == StandardSocketOptions.IP_TOS) {
25170
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   194
                ProtocolFamily family = Net.isIPv6Available() ?
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   195
                    StandardProtocolFamily.INET6 : StandardProtocolFamily.INET;
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   196
                Net.setSocketOption(fd, family, name, value);
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   197
                return this;
25170
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   198
            }
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   199
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   200
            if (name == StandardSocketOptions.SO_REUSEADDR && Net.useExclusiveBind()) {
18192
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 16921
diff changeset
   201
                // SO_REUSEADDR emulated when using exclusive bind
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 16921
diff changeset
   202
                isReuseAddress = (Boolean)value;
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 16921
diff changeset
   203
                return this;
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   204
            }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   205
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   206
            // no options that require special handling
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   207
            Net.setSocketOption(fd, Net.UNSPEC, name, value);
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   208
            return this;
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   209
        }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   210
    }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   211
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   212
    @Override
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   213
    @SuppressWarnings("unchecked")
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   214
    public <T> T getOption(SocketOption<T> name)
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   215
        throws IOException
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   216
    {
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   217
        if (name == null)
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   218
            throw new NullPointerException();
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   219
        if (!supportedOptions().contains(name))
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   220
            throw new UnsupportedOperationException("'" + name + "' not supported");
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   221
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   222
        synchronized (stateLock) {
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   223
            if (!isOpen())
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   224
                throw new ClosedChannelException();
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   225
18192
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 16921
diff changeset
   226
            if (name == StandardSocketOptions.SO_REUSEADDR &&
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 16921
diff changeset
   227
                    Net.useExclusiveBind())
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 16921
diff changeset
   228
            {
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 16921
diff changeset
   229
                // SO_REUSEADDR emulated when using exclusive bind
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 16921
diff changeset
   230
                return (T)Boolean.valueOf(isReuseAddress);
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 16921
diff changeset
   231
            }
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 16921
diff changeset
   232
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   233
            // special handling for IP_TOS: always return 0 when IPv6
9679
d98ae8bc45fc 7042979: Rename StandardSocketOption and StandardWatchEventKind
alanb
parents: 7668
diff changeset
   234
            if (name == StandardSocketOptions.IP_TOS) {
25170
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   235
                ProtocolFamily family = Net.isIPv6Available() ?
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   236
                    StandardProtocolFamily.INET6 : StandardProtocolFamily.INET;
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   237
                return (T) Net.getSocketOption(fd, family, name);
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   238
            }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   239
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   240
            // no options that require special handling
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   241
            return (T) Net.getSocketOption(fd, Net.UNSPEC, name);
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   242
        }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   243
    }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   244
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   245
    private static class DefaultOptionsHolder {
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   246
        static final Set<SocketOption<?>> defaultOptions = defaultOptions();
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   247
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   248
        private static Set<SocketOption<?>> defaultOptions() {
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 25859
diff changeset
   249
            HashSet<SocketOption<?>> set = new HashSet<>(8);
9679
d98ae8bc45fc 7042979: Rename StandardSocketOption and StandardWatchEventKind
alanb
parents: 7668
diff changeset
   250
            set.add(StandardSocketOptions.SO_SNDBUF);
d98ae8bc45fc 7042979: Rename StandardSocketOption and StandardWatchEventKind
alanb
parents: 7668
diff changeset
   251
            set.add(StandardSocketOptions.SO_RCVBUF);
d98ae8bc45fc 7042979: Rename StandardSocketOption and StandardWatchEventKind
alanb
parents: 7668
diff changeset
   252
            set.add(StandardSocketOptions.SO_KEEPALIVE);
d98ae8bc45fc 7042979: Rename StandardSocketOption and StandardWatchEventKind
alanb
parents: 7668
diff changeset
   253
            set.add(StandardSocketOptions.SO_REUSEADDR);
36115
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 34774
diff changeset
   254
            if (Net.isReusePortAvailable()) {
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 34774
diff changeset
   255
                set.add(StandardSocketOptions.SO_REUSEPORT);
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 34774
diff changeset
   256
            }
9679
d98ae8bc45fc 7042979: Rename StandardSocketOption and StandardWatchEventKind
alanb
parents: 7668
diff changeset
   257
            set.add(StandardSocketOptions.SO_LINGER);
d98ae8bc45fc 7042979: Rename StandardSocketOption and StandardWatchEventKind
alanb
parents: 7668
diff changeset
   258
            set.add(StandardSocketOptions.TCP_NODELAY);
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   259
            // additional options required by socket adaptor
9679
d98ae8bc45fc 7042979: Rename StandardSocketOption and StandardWatchEventKind
alanb
parents: 7668
diff changeset
   260
            set.add(StandardSocketOptions.IP_TOS);
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   261
            set.add(ExtendedSocketOption.SO_OOBINLINE);
37676
24ef455da1b0 8044773: Refactor jdk.net API so that it can be moved out of the base module
chegar
parents: 36115
diff changeset
   262
            ExtendedSocketOptions extendedOptions =
24ef455da1b0 8044773: Refactor jdk.net API so that it can be moved out of the base module
chegar
parents: 36115
diff changeset
   263
                    ExtendedSocketOptions.getInstance();
24ef455da1b0 8044773: Refactor jdk.net API so that it can be moved out of the base module
chegar
parents: 36115
diff changeset
   264
            set.addAll(extendedOptions.options());
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   265
            return Collections.unmodifiableSet(set);
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   266
        }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   267
    }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   268
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   269
    @Override
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   270
    public final Set<SocketOption<?>> supportedOptions() {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   271
        return DefaultOptionsHolder.defaultOptions;
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   272
    }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   273
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    private boolean ensureReadOpen() throws ClosedChannelException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
            if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
                throw new ClosedChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
            if (!isConnected())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
                throw new NotYetConnectedException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
            if (!isInputOpen)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    private void ensureWriteOpen() throws ClosedChannelException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
            if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                throw new ClosedChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
            if (!isOutputOpen)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                throw new ClosedChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
            if (!isConnected())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                throw new NotYetConnectedException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    private void readerCleanup() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
            readerThread = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
            if (state == ST_KILLPENDING)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
                kill();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    private void writerCleanup() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
            writerThread = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
            if (state == ST_KILLPENDING)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
                kill();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    public int read(ByteBuffer buf) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
        if (buf == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   319
        readLock.lock();
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   320
        try {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
            if (!ensureReadOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
                return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
            int n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
                // Set up the interruption machinery; see
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
                // AbstractInterruptibleChannel for details
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
                //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
                begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
                synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
                    if (!isOpen()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
                    // Either the current thread is already interrupted, so
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
                    // begin() closed the channel, or another thread closed the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
                    // channel since we checked it a few bytecodes ago.  In
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
                    // either case the value returned here is irrelevant since
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
                    // the invocation of end() in the finally block will throw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
                    // an appropriate exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
                    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
                        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
                    // Save this thread so that it can be signalled on those
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
                    // platforms that require it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
                    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
                    readerThread = NativeThread.current();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
                // Between the previous test of isOpen() and the return of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
                // IOUtil.read invocation below, this channel might be closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
                // or this thread might be interrupted.  We rely upon the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
                // implicit synchronization point in the kernel read() call to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
                // make sure that the right thing happens.  In either case the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
                // implCloseSelectableChannel method is ultimately invoked in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
                // some other thread, so there are three possibilities:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
                //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
                //   - implCloseSelectableChannel() invokes nd.preClose()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
                //     before this thread invokes read(), in which case the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
                //     read returns immediately with either EOF or an error,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
                //     the latter of which will cause an IOException to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
                //     thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
                //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
                //   - implCloseSelectableChannel() invokes nd.preClose() after
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
                //     this thread is blocked in read().  On some operating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
                //     systems (e.g., Solaris and Windows) this causes the read
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
                //     to return immediately with either EOF or an error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
                //     indication.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
                //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
                //   - implCloseSelectableChannel() invokes nd.preClose() after
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
                //     this thread is blocked in read() but the operating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
                //     system (e.g., Linux) doesn't support preemptive close,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
                //     so implCloseSelectableChannel() proceeds to signal this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
                //     thread, thereby causing the read to return immediately
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
                //     with IOStatus.INTERRUPTED.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
                //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
                // In all three cases the invocation of end() in the finally
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
                // clause will notice that the channel has been closed and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
                // throw an appropriate exception (AsynchronousCloseException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
                // or ClosedByInterruptException) if necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
                //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
                // *There is A fourth possibility. implCloseSelectableChannel()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
                // invokes nd.preClose(), signals reader/writer thred and quickly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
                // moves on to nd.close() in kill(), which does a real close.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
                // Then a third thread accepts a new connection, opens file or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
                // whatever that causes the released "fd" to be recycled. All
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
                // above happens just between our last isOpen() check and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
                // next kernel read reached, with the recycled "fd". The solution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
                // is to postpone the real kill() if there is a reader or/and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
                // writer thread(s) over there "waiting", leave the cleanup/kill
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
                // to the reader or writer thread. (the preClose() still happens
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
                // so the connection gets cut off as usual).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
                //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
                // For socket channels there is the additional wrinkle that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
                // asynchronous shutdown works much like asynchronous close,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
                // except that the channel is shutdown rather than completely
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
                // closed.  This is analogous to the first two cases above,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
                // except that the shutdown operation plays the role of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
                // nd.preClose().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
                for (;;) {
16921
e70261f11307 8012019: (fc) Thread.interrupt triggers hang in FileChannelImpl.pread (win)
alanb
parents: 14025
diff changeset
   401
                    n = IOUtil.read(fd, buf, -1, nd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
                    if ((n == IOStatus.INTERRUPTED) && isOpen()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
                        // The system call was interrupted but the channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
                        // is still open, so retry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
                    return IOStatus.normalize(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
                readerCleanup();        // Clear reader thread
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
                // The end method, which is defined in our superclass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
                // AbstractInterruptibleChannel, resets the interruption
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
                // machinery.  If its argument is true then it returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                // normally; otherwise it checks the interrupt and open state
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
                // of this channel and throws an appropriate exception if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
                // necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
                //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
                // So, if we actually managed to do any I/O in the above try
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
                // block then we pass true to the end method.  We also pass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
                // true if the channel was in non-blocking mode when the I/O
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
                // operation was initiated but no data could be transferred;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
                // this prevents spurious exceptions from being thrown in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
                // rare event that a channel is closed or a thread is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
                // interrupted at the exact moment that a non-blocking I/O
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
                // request is made.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
                //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
                end(n > 0 || (n == IOStatus.UNAVAILABLE));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
                // Extra case for socket channels: Asynchronous shutdown
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
                //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
                synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
                    if ((n <= 0) && (!isInputOpen))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
                        return IOStatus.EOF;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
                assert IOStatus.check(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
            }
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   440
        } finally {
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   441
            readLock.unlock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
6301
c90a67d75c9f 6971825: (so) improve scatter/gather implementation
alanb
parents: 6117
diff changeset
   445
    public long read(ByteBuffer[] dsts, int offset, int length)
c90a67d75c9f 6971825: (so) improve scatter/gather implementation
alanb
parents: 6117
diff changeset
   446
        throws IOException
c90a67d75c9f 6971825: (so) improve scatter/gather implementation
alanb
parents: 6117
diff changeset
   447
    {
c90a67d75c9f 6971825: (so) improve scatter/gather implementation
alanb
parents: 6117
diff changeset
   448
        if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
c90a67d75c9f 6971825: (so) improve scatter/gather implementation
alanb
parents: 6117
diff changeset
   449
            throw new IndexOutOfBoundsException();
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   450
        readLock.lock();
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   451
        try {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
            if (!ensureReadOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
                return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
            long n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
                begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
                synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
                    if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
                        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
                    readerThread = NativeThread.current();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
                for (;;) {
6301
c90a67d75c9f 6971825: (so) improve scatter/gather implementation
alanb
parents: 6117
diff changeset
   464
                    n = IOUtil.read(fd, dsts, offset, length, nd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
                    if ((n == IOStatus.INTERRUPTED) && isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
                    return IOStatus.normalize(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
                readerCleanup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
                end(n > 0 || (n == IOStatus.UNAVAILABLE));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
                synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
                    if ((n <= 0) && (!isInputOpen))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
                        return IOStatus.EOF;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
                assert IOStatus.check(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
            }
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   478
        } finally {
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   479
            readLock.unlock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
    public int write(ByteBuffer buf) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
        if (buf == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
            throw new NullPointerException();
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   486
        writeLock.lock();
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   487
        try {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
            ensureWriteOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
            int n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
                begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
                synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
                    if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
                        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
                    writerThread = NativeThread.current();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
                for (;;) {
16921
e70261f11307 8012019: (fc) Thread.interrupt triggers hang in FileChannelImpl.pread (win)
alanb
parents: 14025
diff changeset
   498
                    n = IOUtil.write(fd, buf, -1, nd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
                    if ((n == IOStatus.INTERRUPTED) && isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
                    return IOStatus.normalize(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
                writerCleanup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
                end(n > 0 || (n == IOStatus.UNAVAILABLE));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
                synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
                    if ((n <= 0) && (!isOutputOpen))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
                        throw new AsynchronousCloseException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
                assert IOStatus.check(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
            }
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   512
        } finally {
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   513
            writeLock.unlock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
6301
c90a67d75c9f 6971825: (so) improve scatter/gather implementation
alanb
parents: 6117
diff changeset
   517
    public long write(ByteBuffer[] srcs, int offset, int length)
c90a67d75c9f 6971825: (so) improve scatter/gather implementation
alanb
parents: 6117
diff changeset
   518
        throws IOException
c90a67d75c9f 6971825: (so) improve scatter/gather implementation
alanb
parents: 6117
diff changeset
   519
    {
c90a67d75c9f 6971825: (so) improve scatter/gather implementation
alanb
parents: 6117
diff changeset
   520
        if ((offset < 0) || (length < 0) || (offset > srcs.length - length))
c90a67d75c9f 6971825: (so) improve scatter/gather implementation
alanb
parents: 6117
diff changeset
   521
            throw new IndexOutOfBoundsException();
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   522
        writeLock.lock();
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   523
        try {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
            ensureWriteOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
            long n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
                begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                    if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
                    writerThread = NativeThread.current();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
                for (;;) {
6301
c90a67d75c9f 6971825: (so) improve scatter/gather implementation
alanb
parents: 6117
diff changeset
   534
                    n = IOUtil.write(fd, srcs, offset, length, nd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
                    if ((n == IOStatus.INTERRUPTED) && isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
                    return IOStatus.normalize(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
                writerCleanup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
                end((n > 0) || (n == IOStatus.UNAVAILABLE));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
                synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
                    if ((n <= 0) && (!isOutputOpen))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
                        throw new AsynchronousCloseException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
                assert IOStatus.check(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
            }
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   548
        } finally {
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   549
            writeLock.unlock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
6117
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   553
    // package-private
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   554
    int sendOutOfBandData(byte b) throws IOException {
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   555
        writeLock.lock();
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   556
        try {
6117
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   557
            ensureWriteOpen();
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   558
            int n = 0;
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   559
            try {
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   560
                begin();
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   561
                synchronized (stateLock) {
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   562
                    if (!isOpen())
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   563
                        return 0;
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   564
                    writerThread = NativeThread.current();
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   565
                }
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   566
                for (;;) {
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   567
                    n = sendOutOfBandData(fd, b);
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   568
                    if ((n == IOStatus.INTERRUPTED) && isOpen())
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   569
                        continue;
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   570
                    return IOStatus.normalize(n);
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   571
                }
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   572
            } finally {
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   573
                writerCleanup();
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   574
                end((n > 0) || (n == IOStatus.UNAVAILABLE));
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   575
                synchronized (stateLock) {
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   576
                    if ((n <= 0) && (!isOutputOpen))
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   577
                        throw new AsynchronousCloseException();
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   578
                }
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   579
                assert IOStatus.check(n);
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   580
            }
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   581
        } finally {
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   582
            writeLock.unlock();
6117
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   583
        }
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   584
    }
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
   585
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
    protected void implConfigureBlocking(boolean block) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        IOUtil.configureBlocking(fd, block);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
   590
    public InetSocketAddress localAddress() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
            return localAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
    public SocketAddress remoteAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
            return remoteAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   602
    @Override
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   603
    public SocketChannel bind(SocketAddress local) throws IOException {
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   604
        readLock.lock();
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   605
        try {
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   606
            writeLock.lock();
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   607
            try {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
                synchronized (stateLock) {
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   609
                    if (!isOpen())
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   610
                        throw new ClosedChannelException();
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   611
                    if (state == ST_PENDING)
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   612
                        throw new ConnectionPendingException();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
                    if (localAddress != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
                        throw new AlreadyBoundException();
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   615
                    InetSocketAddress isa = (local == null) ?
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   616
                        new InetSocketAddress(0) : Net.checkAddress(local);
22339
e91bfaf4360d 8011786: Better applet networking
michaelm
parents: 19607
diff changeset
   617
                    SecurityManager sm = System.getSecurityManager();
e91bfaf4360d 8011786: Better applet networking
michaelm
parents: 19607
diff changeset
   618
                    if (sm != null) {
e91bfaf4360d 8011786: Better applet networking
michaelm
parents: 19607
diff changeset
   619
                        sm.checkListen(isa.getPort());
e91bfaf4360d 8011786: Better applet networking
michaelm
parents: 19607
diff changeset
   620
                    }
2446
07047237e4d4 4890703: Support SDP (sol)
alanb
parents: 2057
diff changeset
   621
                    NetHooks.beforeTcpBind(fd, isa.getAddress(), isa.getPort());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
                    Net.bind(fd, isa.getAddress(), isa.getPort());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
                    localAddress = Net.localAddress(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
                }
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   625
            } finally {
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   626
                writeLock.unlock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
            }
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   628
        } finally {
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   629
            readLock.unlock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
        }
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   631
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
    public boolean isConnected() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
            return (state == ST_CONNECTED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
    public boolean isConnectionPending() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
            return (state == ST_PENDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
    void ensureOpenAndUnconnected() throws IOException { // package-private
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
            if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
                throw new ClosedChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
            if (state == ST_CONNECTED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
                throw new AlreadyConnectedException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
            if (state == ST_PENDING)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
                throw new ConnectionPendingException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
    public boolean connect(SocketAddress sa) throws IOException {
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   658
        readLock.lock();
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   659
        try {
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   660
            writeLock.lock();
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   661
            try {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
                ensureOpenAndUnconnected();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
                InetSocketAddress isa = Net.checkAddress(sa);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
                SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
                if (sm != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
                    sm.checkConnect(isa.getAddress().getHostAddress(),
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   667
                            isa.getPort());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
                synchronized (blockingLock()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
                    int n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
                        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
                            begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
                            synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
                                if (!isOpen()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
                                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
                                }
2446
07047237e4d4 4890703: Support SDP (sol)
alanb
parents: 2057
diff changeset
   677
                                // notify hook only if unbound
07047237e4d4 4890703: Support SDP (sol)
alanb
parents: 2057
diff changeset
   678
                                if (localAddress == null) {
07047237e4d4 4890703: Support SDP (sol)
alanb
parents: 2057
diff changeset
   679
                                    NetHooks.beforeTcpConnect(fd,
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   680
                                            isa.getAddress(),
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   681
                                            isa.getPort());
2446
07047237e4d4 4890703: Support SDP (sol)
alanb
parents: 2057
diff changeset
   682
                                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
                                readerThread = NativeThread.current();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
                            for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
                                InetAddress ia = isa.getAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
                                if (ia.isAnyLocalAddress())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
                                    ia = InetAddress.getLocalHost();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
                                n = Net.connect(fd,
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   690
                                        ia,
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   691
                                        isa.getPort());
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   692
                                if ((n == IOStatus.INTERRUPTED) && isOpen())
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
                                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
                                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
                            }
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   696
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
                        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
                            readerCleanup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
                            end((n > 0) || (n == IOStatus.UNAVAILABLE));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
                            assert IOStatus.check(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
                    } catch (IOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
                        // If an exception was thrown, close the channel after
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
                        // invoking end() so as to avoid bogus
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
                        // AsynchronousCloseExceptions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
                        close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
                        throw x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
                    synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
                        remoteAddress = isa;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
                        if (n > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
                            // Connection succeeded; disallow further
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
                            // invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
                            state = ST_CONNECTED;
12683
5c743840dd8a 7096436: (sc) SocketChannel.connect fails on Windows 8 when channel configured non-blocking
khazra
parents: 12440
diff changeset
   716
                            if (isOpen())
5c743840dd8a 7096436: (sc) SocketChannel.connect fails on Windows 8 when channel configured non-blocking
khazra
parents: 12440
diff changeset
   717
                                localAddress = Net.localAddress(fd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
                            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
                        // If nonblocking and no exception then connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
                        // pending; disallow another invocation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
                        if (!isBlocking())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
                            state = ST_PENDING;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
                        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
                            assert false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
                return false;
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   729
            } finally {
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   730
                writeLock.unlock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
            }
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   732
        } finally {
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   733
            readLock.unlock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
    public boolean finishConnect() throws IOException {
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   738
        readLock.lock();
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   739
        try {
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   740
            writeLock.lock();
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   741
            try {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
                synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
                    if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
                        throw new ClosedChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
                    if (state == ST_CONNECTED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
                        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
                    if (state != ST_PENDING)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
                        throw new NoConnectionPendingException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
                int n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
                        begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
                        synchronized (blockingLock()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
                            synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
                                if (!isOpen()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
                                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
                                readerThread = NativeThread.current();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
                            if (!isBlocking()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
                                for (;;) {
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   763
                                    n = checkConnect(fd, false);
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   764
                                    if ((n == IOStatus.INTERRUPTED) && isOpen())
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
                                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
                                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
                            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
                                for (;;) {
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   770
                                    n = checkConnect(fd, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
                                    if (n == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
                                        // Loop in case of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
                                        // spurious notifications
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
                                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
                                    }
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   776
                                    if ((n == IOStatus.INTERRUPTED) && isOpen())
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
                                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
                                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
                    } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
                        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
                            readerThread = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
                            if (state == ST_KILLPENDING) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
                                kill();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
                                // poll()/getsockopt() does not report
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
                                // error (throws exception, with n = 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
                                // on Linux platform after dup2 and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
                                // signal-wakeup. Force n to 0 so the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
                                // end() can throw appropriate exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
                                n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
                        end((n > 0) || (n == IOStatus.UNAVAILABLE));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
                        assert IOStatus.check(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
                } catch (IOException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
                    // If an exception was thrown, close the channel after
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
                    // invoking end() so as to avoid bogus
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
                    // AsynchronousCloseExceptions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
                    close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
                    throw x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
                if (n > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
                    synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
                        state = ST_CONNECTED;
12683
5c743840dd8a 7096436: (sc) SocketChannel.connect fails on Windows 8 when channel configured non-blocking
khazra
parents: 12440
diff changeset
   808
                        if (isOpen())
5c743840dd8a 7096436: (sc) SocketChannel.connect fails on Windows 8 when channel configured non-blocking
khazra
parents: 12440
diff changeset
   809
                            localAddress = Net.localAddress(fd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
                return false;
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   814
            } finally {
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   815
                writeLock.unlock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
            }
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   817
        } finally {
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   818
            readLock.unlock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   822
    @Override
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   823
    public SocketChannel shutdownInput() throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
            if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
                throw new ClosedChannelException();
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   827
            if (!isConnected())
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   828
                throw new NotYetConnectedException();
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   829
            if (isInputOpen) {
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   830
                Net.shutdown(fd, Net.SHUT_RD);
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   831
                if (readerThread != 0)
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   832
                    NativeThread.signal(readerThread);
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   833
                isInputOpen = false;
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   834
            }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   835
            return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   839
    @Override
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   840
    public SocketChannel shutdownOutput() throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
            if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
                throw new ClosedChannelException();
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   844
            if (!isConnected())
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   845
                throw new NotYetConnectedException();
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   846
            if (isOutputOpen) {
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   847
                Net.shutdown(fd, Net.SHUT_WR);
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   848
                if (writerThread != 0)
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   849
                    NativeThread.signal(writerThread);
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   850
                isOutputOpen = false;
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   851
            }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   852
            return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
    public boolean isInputOpen() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
            return isInputOpen;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
    public boolean isOutputOpen() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
            return isOutputOpen;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
    // AbstractInterruptibleChannel synchronizes invocations of this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
    // using AbstractInterruptibleChannel.closeLock, and also ensures that this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
    // method is only ever invoked once.  Before we get to this method, isOpen
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
    // (which is volatile) will have been set to false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
    protected void implCloseSelectableChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
            isInputOpen = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
            isOutputOpen = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
            // Close the underlying file descriptor and dup it to a known fd
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
            // that's already closed.  This prevents other operations on this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
            // channel from using the old fd, which might be recycled in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
            // meantime and allocated to an entirely different channel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
            //
12440
2689ca179e22 7118373: (se) Potential leak file descriptor when deregistrating at around the same time as an async close
robm
parents: 9679
diff changeset
   883
            if (state != ST_KILLED)
2689ca179e22 7118373: (se) Potential leak file descriptor when deregistrating at around the same time as an async close
robm
parents: 9679
diff changeset
   884
                nd.preClose(fd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
            // Signal native threads, if needed.  If a target thread is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
            // currently blocked in an I/O operation then no harm is done since
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
            // the signal handler doesn't actually do anything.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
            //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
            if (readerThread != 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
                NativeThread.signal(readerThread);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
            if (writerThread != 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
                NativeThread.signal(writerThread);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
            // If this channel is not registered then it's safe to close the fd
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
            // immediately since we know at this point that no thread is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
            // blocked in an I/O operation upon the channel and, since the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
            // channel is marked closed, no thread will start another such
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
            // operation.  If this channel is registered then we don't close
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
            // the fd since it might be in use by a selector.  In that case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
            // closing this channel caused its keys to be cancelled, so the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
            // last selector to deregister a key for this channel will invoke
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
            // kill() to close the fd.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
            //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
            if (!isRegistered())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
                kill();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
    public void kill() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
            if (state == ST_KILLED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
            if (state == ST_UNINITIALIZED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
                state = ST_KILLED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
            assert !isOpen() && !isRegistered();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
            // Postpone the kill if there is a waiting reader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
            // or writer thread. See the comments in read() for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
            // more detailed explanation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
            if (readerThread == 0 && writerThread == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
                nd.close(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
                state = ST_KILLED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
                state = ST_KILLPENDING;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
     * Translates native poll revent ops into a ready operation ops
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
    public boolean translateReadyOps(int ops, int initialOps,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
                                     SelectionKeyImpl sk) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
        int intOps = sk.nioInterestOps(); // Do this just once, it synchronizes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
        int oldOps = sk.nioReadyOps();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
        int newOps = initialOps;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
22604
9b394795e216 8031997: PPC64: Make the various POLL constants system dependant
simonis
parents: 19607
diff changeset
   942
        if ((ops & Net.POLLNVAL) != 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
            // This should only happen if this channel is pre-closed while a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
            // selection operation is in progress
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
            // ## Throw an error if this channel has not been pre-closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
22604
9b394795e216 8031997: PPC64: Make the various POLL constants system dependant
simonis
parents: 19607
diff changeset
   949
        if ((ops & (Net.POLLERR | Net.POLLHUP)) != 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
            newOps = intOps;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
            sk.nioReadyOps(newOps);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
            return (newOps & ~oldOps) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
22604
9b394795e216 8031997: PPC64: Make the various POLL constants system dependant
simonis
parents: 19607
diff changeset
   955
        if (((ops & Net.POLLIN) != 0) &&
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
            ((intOps & SelectionKey.OP_READ) != 0) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
            (state == ST_CONNECTED))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
            newOps |= SelectionKey.OP_READ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
22604
9b394795e216 8031997: PPC64: Make the various POLL constants system dependant
simonis
parents: 19607
diff changeset
   960
        if (((ops & Net.POLLCONN) != 0) &&
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
            ((intOps & SelectionKey.OP_CONNECT) != 0) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
            ((state == ST_UNCONNECTED) || (state == ST_PENDING))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
            newOps |= SelectionKey.OP_CONNECT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
22604
9b394795e216 8031997: PPC64: Make the various POLL constants system dependant
simonis
parents: 19607
diff changeset
   966
        if (((ops & Net.POLLOUT) != 0) &&
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
            ((intOps & SelectionKey.OP_WRITE) != 0) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
            (state == ST_CONNECTED))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
            newOps |= SelectionKey.OP_WRITE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
        sk.nioReadyOps(newOps);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
        return (newOps & ~oldOps) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
    public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
        return translateReadyOps(ops, sk.nioReadyOps(), sk);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
    public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
        return translateReadyOps(ops, 0, sk);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
14025
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
   983
    // package-private
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
   984
    int poll(int events, long timeout) throws IOException {
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
   985
        assert Thread.holdsLock(blockingLock()) && !isBlocking();
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
   986
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   987
        readLock.lock();
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
   988
        try {
14025
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
   989
            int n = 0;
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
   990
            try {
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
   991
                begin();
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
   992
                synchronized (stateLock) {
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
   993
                    if (!isOpen())
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
   994
                        return 0;
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
   995
                    readerThread = NativeThread.current();
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
   996
                }
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
   997
                n = Net.poll(fd, events, timeout);
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
   998
            } finally {
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
   999
                readerCleanup();
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
  1000
                end(n > 0);
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
  1001
            }
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
  1002
            return n;
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
  1003
        } finally {
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
  1004
            readLock.unlock();
14025
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
  1005
        }
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
  1006
    }
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12683
diff changeset
  1007
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
     * Translates an interest operation set into a native poll event set
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
    public void translateAndSetInterestOps(int ops, SelectionKeyImpl sk) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
        int newOps = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
        if ((ops & SelectionKey.OP_READ) != 0)
22604
9b394795e216 8031997: PPC64: Make the various POLL constants system dependant
simonis
parents: 19607
diff changeset
  1014
            newOps |= Net.POLLIN;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
        if ((ops & SelectionKey.OP_WRITE) != 0)
22604
9b394795e216 8031997: PPC64: Make the various POLL constants system dependant
simonis
parents: 19607
diff changeset
  1016
            newOps |= Net.POLLOUT;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
        if ((ops & SelectionKey.OP_CONNECT) != 0)
22604
9b394795e216 8031997: PPC64: Make the various POLL constants system dependant
simonis
parents: 19607
diff changeset
  1018
            newOps |= Net.POLLCONN;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
        sk.selector.putEventOps(sk, newOps);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
    public FileDescriptor getFD() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
        return fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
    public int getFDVal() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
        return fdVal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
  1030
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
    public String toString() {
24969
afa6934dd8e8 8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents: 23879
diff changeset
  1032
        StringBuilder sb = new StringBuilder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
        sb.append(this.getClass().getSuperclass().getName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
        sb.append('[');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
        if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
            sb.append("closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
            synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
                switch (state) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
                case ST_UNCONNECTED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
                    sb.append("unconnected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
                case ST_PENDING:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
                    sb.append("connection-pending");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
                case ST_CONNECTED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
                    sb.append("connected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
                    if (!isInputOpen)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
                        sb.append(" ishut");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
                    if (!isOutputOpen)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
                        sb.append(" oshut");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
                }
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
  1054
                InetSocketAddress addr = localAddress();
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
  1055
                if (addr != null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
                    sb.append(" local=");
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
  1057
                    sb.append(Net.getRevealedLocalAddressAsString(addr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
                if (remoteAddress() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
                    sb.append(" remote=");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
                    sb.append(remoteAddress().toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
        sb.append(']');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
        return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
    // -- Native methods --
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
48750
ffbb784a8873 8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents: 47216
diff changeset
  1072
    private static native int checkConnect(FileDescriptor fd, boolean block)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
6117
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
  1075
    private static native int sendOutOfBandData(FileDescriptor fd, byte data)
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
  1076
        throws IOException;
471ae95609d5 6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents: 5506
diff changeset
  1077
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
    static {
19607
bee007586d06 8022594: Potential deadlock in <clinit> of sun.nio.ch.Util/IOUtil
alanb
parents: 18212
diff changeset
  1079
        IOUtil.load();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
        nd = new SocketDispatcher();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
}