src/java.base/share/classes/sun/nio/ch/AbstractPollSelectorImpl.java
author alanb
Thu, 15 Mar 2018 10:47:58 +0000
changeset 49248 15a0e60c8b97
parent 47216 71c04702a3d5
permissions -rw-r--r--
8199611: (se) Minor selector implementation clean-up Reviewed-by: clanger, redestad, bpb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
49248
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
     2
 * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1639
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: 1639
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: 1639
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1639
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1639
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.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.nio.channels.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.nio.channels.spi.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * An abstract selector impl.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
abstract class AbstractPollSelectorImpl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    extends SelectorImpl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    // The poll fd array
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    PollArrayWrapper pollWrapper;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    // Initial capacity of the pollfd array
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    protected final int INIT_CAP = 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    // The list of SelectableChannels serviced by this Selector
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    protected SelectionKeyImpl[] channelArray;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    // In some impls the first entry of channelArray is bogus
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    protected int channelOffset = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    // The number of valid channels in this Selector's poll array
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    protected int totalChannels;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    // True if this Selector has been closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    private boolean closed = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
1449
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
    60
    // Lock for close and cleanup
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
    61
    private Object closeLock = new Object();
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
    62
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    AbstractPollSelectorImpl(SelectorProvider sp, int channels, int offset) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        super(sp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        this.totalChannels = channels;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        this.channelOffset = offset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
11823
ee83ae88512d 7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents: 5506
diff changeset
    69
    public void putEventOps(SelectionKeyImpl sk, int ops) {
1449
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
    70
        synchronized (closeLock) {
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
    71
            if (closed)
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
    72
                throw new ClosedSelectorException();
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
    73
            pollWrapper.putEventOps(sk.getIndex(), ops);
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
    74
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    public Selector wakeup() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        pollWrapper.interrupt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    protected abstract int doSelect(long timeout) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    protected void implClose() throws IOException {
1449
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
    85
        synchronized (closeLock) {
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
    86
            if (closed)
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
    87
                return;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            closed = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            // Deregister channels
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            for(int i=channelOffset; i<totalChannels; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                SelectionKeyImpl ski = channelArray[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                assert(ski.getIndex() != -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                ski.setIndex(-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
                deregister(ski);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                SelectableChannel selch = channelArray[i].channel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
                if (!selch.isOpen() && !selch.isRegistered())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
                    ((SelChImpl)selch).kill();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            implCloseInterrupt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            pollWrapper.free();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            pollWrapper = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            channelArray = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            totalChannels = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    protected abstract void implCloseInterrupt() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * Copy the information in the pollfd structs into the opss
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * of the corresponding Channels. Add the ready keys to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * ready queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    protected int updateSelectedKeys() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        int numKeysUpdated = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        // Skip zeroth entry; it is for interrupts only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        for (int i=channelOffset; i<totalChannels; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
            int rOps = pollWrapper.getReventOps(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            if (rOps != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                SelectionKeyImpl sk = channelArray[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                pollWrapper.putReventOps(i, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                if (selectedKeys.contains(sk)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                    if (sk.channel.translateAndSetReadyOps(rOps, sk)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                        numKeysUpdated++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
                    sk.channel.translateAndSetReadyOps(rOps, sk);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
                    if ((sk.nioReadyOps() & sk.nioInterestOps()) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
                        selectedKeys.add(sk);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
                        numKeysUpdated++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        return numKeysUpdated;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    protected void implRegister(SelectionKeyImpl ski) {
1449
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   139
        synchronized (closeLock) {
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   140
            if (closed)
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   141
                throw new ClosedSelectorException();
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   142
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   143
            // Check to see if the array is large enough
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   144
            if (channelArray.length == totalChannels) {
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   145
                // Make a larger array
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   146
                int newSize = pollWrapper.totalChannels * 2;
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   147
                SelectionKeyImpl temp[] = new SelectionKeyImpl[newSize];
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   148
                // Copy over
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   149
                for (int i=channelOffset; i<totalChannels; i++)
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   150
                    temp[i] = channelArray[i];
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   151
                channelArray = temp;
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   152
                // Grow the NativeObject poll array
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   153
                pollWrapper.grow(newSize);
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   154
            }
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   155
            channelArray[totalChannels] = ski;
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   156
            ski.setIndex(totalChannels);
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   157
            pollWrapper.addEntry(ski.channel);
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   158
            totalChannels++;
2ed6188288d6 5025260: Register methods should throw ClosedChannelException instead of NPE
sherman
parents: 2
diff changeset
   159
            keys.add(ski);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    protected void implDereg(SelectionKeyImpl ski) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        // Algorithm: Copy the sc from the end of the list and put it into
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        // the location of the sc to be removed (since order doesn't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        // matter). Decrement the sc count. Update the index of the sc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        // that is moved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        int i = ski.getIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        assert (i >= 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        if (i != totalChannels - 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
            // Copy end one over it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            SelectionKeyImpl endChannel = channelArray[totalChannels-1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            channelArray[i] = endChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
            endChannel.setIndex(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            pollWrapper.release(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            PollArrayWrapper.replaceEntry(pollWrapper, totalChannels - 1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                                          pollWrapper, i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            pollWrapper.release(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        // Destroy the last one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        channelArray[totalChannels-1] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        totalChannels--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        pollWrapper.totalChannels--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        ski.setIndex(-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        // Remove the key from keys and selectedKeys
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        keys.remove(ski);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        selectedKeys.remove(ski);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        deregister((AbstractSelectionKey)ski);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        SelectableChannel selch = ski.channel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        if (!selch.isOpen() && !selch.isRegistered())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
            ((SelChImpl)selch).kill();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
}