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