src/java.base/share/classes/sun/nio/ch/SelectorImpl.java
author alanb
Fri, 30 Mar 2018 08:28:09 +0100
changeset 49493 814bd31f8da0
parent 49290 07779973cbe2
child 49526 cad4c844902a
permissions -rw-r--r--
8200257: (se) More Selector cleanup Reviewed-by: 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) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
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: 1247
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: 1247
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
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;
46094
0c23b05caf7d 8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents: 32649
diff changeset
    29
import java.nio.channels.ClosedSelectorException;
0c23b05caf7d 8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents: 32649
diff changeset
    30
import java.nio.channels.IllegalSelectorException;
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    31
import java.nio.channels.SelectableChannel;
46094
0c23b05caf7d 8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents: 32649
diff changeset
    32
import java.nio.channels.SelectionKey;
0c23b05caf7d 8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents: 32649
diff changeset
    33
import java.nio.channels.spi.AbstractSelectableChannel;
0c23b05caf7d 8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents: 32649
diff changeset
    34
import java.nio.channels.spi.AbstractSelector;
0c23b05caf7d 8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents: 32649
diff changeset
    35
import java.nio.channels.spi.SelectorProvider;
0c23b05caf7d 8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents: 32649
diff changeset
    36
import java.util.Collections;
0c23b05caf7d 8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents: 32649
diff changeset
    37
import java.util.HashSet;
0c23b05caf7d 8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents: 32649
diff changeset
    38
import java.util.Iterator;
0c23b05caf7d 8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents: 32649
diff changeset
    39
import java.util.Set;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * Base Selector implementation class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
11823
ee83ae88512d 7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents: 10137
diff changeset
    46
public abstract class SelectorImpl
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    extends AbstractSelector
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
{
49248
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
    49
    // The set of keys registered with this Selector
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    50
    protected final Set<SelectionKey> keys;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    // The set of keys with data ready for an operation
49248
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
    53
    protected final Set<SelectionKey> selectedKeys;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    // Public views of the key sets
49248
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
    56
    private final Set<SelectionKey> publicKeys;             // Immutable
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
    57
    private final Set<SelectionKey> publicSelectedKeys;     // Removal allowed, but not addition
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    protected SelectorImpl(SelectorProvider sp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        super(sp);
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 25859
diff changeset
    61
        keys = new HashSet<>();
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 25859
diff changeset
    62
        selectedKeys = new HashSet<>();
46094
0c23b05caf7d 8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents: 32649
diff changeset
    63
        publicKeys = Collections.unmodifiableSet(keys);
0c23b05caf7d 8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents: 32649
diff changeset
    64
        publicSelectedKeys = Util.ungrowableSet(selectedKeys);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
49248
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
    67
    @Override
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
    68
    public final Set<SelectionKey> keys() {
46094
0c23b05caf7d 8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents: 32649
diff changeset
    69
        if (!isOpen())
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
            throw new ClosedSelectorException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        return publicKeys;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
49248
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
    74
    @Override
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
    75
    public final Set<SelectionKey> selectedKeys() {
46094
0c23b05caf7d 8184330: Remove sun.nio.ch.Util.atBugLevel() either completely or at least get rid of volatile field bugLevel
clanger
parents: 32649
diff changeset
    76
        if (!isOpen())
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
            throw new ClosedSelectorException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        return publicSelectedKeys;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
49290
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
    81
    /**
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
    82
     * Returns the public view of the key sets
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
    83
     */
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
    84
    protected final Set<SelectionKey> nioKeys() {
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
    85
        return publicKeys;
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
    86
    }
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
    87
    protected final Set<SelectionKey> nioSelectedKeys() {
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
    88
        return publicSelectedKeys;
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
    89
    }
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
    90
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    91
    /**
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    92
     * Marks the beginning of a select operation that might block
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    93
     */
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    94
    protected final void begin(boolean blocking) {
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    95
        if (blocking) begin();
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    96
    }
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    97
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    98
    /**
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    99
     * Marks the end of a select operation that may have blocked
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   100
     */
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   101
    protected final void end(boolean blocking) {
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   102
        if (blocking) end();
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   103
    }
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   104
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   105
    /**
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   106
     * Selects the keys for channels that are ready for I/O operations.
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   107
     *
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   108
     * @param timeout timeout in milliseconds to wait, 0 to not wait, -1 to
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   109
     *                wait indefinitely
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   110
     */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    protected abstract int doSelect(long timeout) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    private int lockAndDoSelect(long timeout) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                throw new ClosedSelectorException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            synchronized (publicKeys) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                synchronized (publicSelectedKeys) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
                    return doSelect(timeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
49248
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   125
    @Override
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   126
    public final int select(long timeout)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        if (timeout < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
            throw new IllegalArgumentException("Negative timeout");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        return lockAndDoSelect((timeout == 0) ? -1 : timeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
49248
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   134
    @Override
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   135
    public final int select() throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        return select(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
49248
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   139
    @Override
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   140
    public final int selectNow() throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        return lockAndDoSelect(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
49248
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   144
    @Override
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   145
    public final void implCloseSelector() throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        wakeup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        synchronized (this) {
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   148
            implClose();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            synchronized (publicKeys) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
                synchronized (publicSelectedKeys) {
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   151
                    // Deregister channels
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   152
                    Iterator<SelectionKey> i = keys.iterator();
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   153
                    while (i.hasNext()) {
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   154
                        SelectionKeyImpl ski = (SelectionKeyImpl)i.next();
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   155
                        deregister(ski);
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   156
                        SelectableChannel selch = ski.channel();
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   157
                        if (!selch.isOpen() && !selch.isRegistered())
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   158
                            ((SelChImpl)selch).kill();
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   159
                        selectedKeys.remove(ski);
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   160
                        i.remove();
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   161
                    }
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   162
                    assert selectedKeys.isEmpty() && keys.isEmpty();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    protected abstract void implClose() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
49248
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   170
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    protected final SelectionKey register(AbstractSelectableChannel ch,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                                          int ops,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                                          Object attachment)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        if (!(ch instanceof SelChImpl))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            throw new IllegalSelectorException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        SelectionKeyImpl k = new SelectionKeyImpl((SelChImpl)ch, this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        k.attach(attachment);
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   179
        // register before adding to key set
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   180
        implRegister(k);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        synchronized (publicKeys) {
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   182
            keys.add(k);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        k.interestOps(ops);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        return k;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    protected abstract void implRegister(SelectionKeyImpl ski);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
49248
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   190
    protected abstract void implDereg(SelectionKeyImpl ski) throws IOException;
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   191
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   192
    protected final void processDeregisterQueue() throws IOException {
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   193
        assert Thread.holdsLock(this);
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   194
        assert Thread.holdsLock(publicKeys);
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   195
        assert Thread.holdsLock(publicSelectedKeys);
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   196
10137
d92637d3d673 7068616: NIO libraries do not build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   197
        Set<SelectionKey> cks = cancelledKeys();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        synchronized (cks) {
843
e50aa264deca 6429289: (se) sun.nio.ch.SelectorImpl.processDeregisterQueue creates excessive garbage
sherman
parents: 2
diff changeset
   199
            if (!cks.isEmpty()) {
10137
d92637d3d673 7068616: NIO libraries do not build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   200
                Iterator<SelectionKey> i = cks.iterator();
843
e50aa264deca 6429289: (se) sun.nio.ch.SelectorImpl.processDeregisterQueue creates excessive garbage
sherman
parents: 2
diff changeset
   201
                while (i.hasNext()) {
e50aa264deca 6429289: (se) sun.nio.ch.SelectorImpl.processDeregisterQueue creates excessive garbage
sherman
parents: 2
diff changeset
   202
                    SelectionKeyImpl ski = (SelectionKeyImpl)i.next();
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   203
                    i.remove();
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   204
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   205
                    // remove the key from the selector
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   206
                    implDereg(ski);
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   207
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   208
                    selectedKeys.remove(ski);
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   209
                    keys.remove(ski);
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   210
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   211
                    // remove from channel's key set
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   212
                    deregister(ski);
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   213
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   214
                    SelectableChannel ch = ski.channel();
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   215
                    if (!ch.isOpen() && !ch.isRegistered())
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   216
                        ((SelChImpl)ch).kill();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    }
49290
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
   221
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
   222
    /**
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   223
     * Change the event set in the selector
49290
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
   224
     */
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   225
    protected abstract void putEventOps(SelectionKeyImpl ski, int events);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
}