jdk/src/java.base/share/classes/sun/nio/ch/SelectorImpl.java
author martin
Tue, 15 Sep 2015 21:56:04 -0700
changeset 32649 2ee9017c7597
parent 29986 97167d851fc4
child 46094 0c23b05caf7d
permissions -rw-r--r--
8136583: Core libraries should use blessed modifier order Summary: Run blessed-modifier-order script (see bug) Reviewed-by: psandoz, chegar, alanb, plevart
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
14342
8435a30053c1 7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents: 11823
diff changeset
     2
 * Copyright (c) 2000, 2012, 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;
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.net.SocketException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * Base Selector implementation class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
11823
ee83ae88512d 7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents: 10137
diff changeset
    39
public abstract class SelectorImpl
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    extends AbstractSelector
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    // The set of keys with data ready for an operation
895
67f1dc69ad10 6726309: Compiler warnings in nio code
alanb
parents: 843
diff changeset
    44
    protected Set<SelectionKey> selectedKeys;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    // The set of keys registered with this Selector
895
67f1dc69ad10 6726309: Compiler warnings in nio code
alanb
parents: 843
diff changeset
    47
    protected HashSet<SelectionKey> keys;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    // Public views of the key sets
895
67f1dc69ad10 6726309: Compiler warnings in nio code
alanb
parents: 843
diff changeset
    50
    private Set<SelectionKey> publicKeys;             // Immutable
67f1dc69ad10 6726309: Compiler warnings in nio code
alanb
parents: 843
diff changeset
    51
    private Set<SelectionKey> publicSelectedKeys;     // Removal allowed, but not addition
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    protected SelectorImpl(SelectorProvider sp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        super(sp);
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 25859
diff changeset
    55
        keys = new HashSet<>();
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 25859
diff changeset
    56
        selectedKeys = new HashSet<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        if (Util.atBugLevel("1.4")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
            publicKeys = keys;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
            publicSelectedKeys = selectedKeys;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
            publicKeys = Collections.unmodifiableSet(keys);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
            publicSelectedKeys = Util.ungrowableSet(selectedKeys);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
895
67f1dc69ad10 6726309: Compiler warnings in nio code
alanb
parents: 843
diff changeset
    66
    public Set<SelectionKey> keys() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        if (!isOpen() && !Util.atBugLevel("1.4"))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            throw new ClosedSelectorException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        return publicKeys;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
895
67f1dc69ad10 6726309: Compiler warnings in nio code
alanb
parents: 843
diff changeset
    72
    public Set<SelectionKey> selectedKeys() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        if (!isOpen() && !Util.atBugLevel("1.4"))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
            throw new ClosedSelectorException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        return publicSelectedKeys;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    protected abstract int doSelect(long timeout) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    private int lockAndDoSelect(long timeout) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
                throw new ClosedSelectorException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
            synchronized (publicKeys) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
                synchronized (publicSelectedKeys) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
                    return doSelect(timeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    public int select(long timeout)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        if (timeout < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            throw new IllegalArgumentException("Negative timeout");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        return lockAndDoSelect((timeout == 0) ? -1 : timeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    public int select() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        return select(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    public int selectNow() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        return lockAndDoSelect(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    public void implCloseSelector() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        wakeup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            synchronized (publicKeys) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
                synchronized (publicSelectedKeys) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                    implClose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    protected abstract void implClose() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
11823
ee83ae88512d 7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents: 10137
diff changeset
   121
    public void putEventOps(SelectionKeyImpl sk, int ops) { }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    protected final SelectionKey register(AbstractSelectableChannel ch,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                                          int ops,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
                                          Object attachment)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        if (!(ch instanceof SelChImpl))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            throw new IllegalSelectorException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        SelectionKeyImpl k = new SelectionKeyImpl((SelChImpl)ch, this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        k.attach(attachment);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        synchronized (publicKeys) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            implRegister(k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        k.interestOps(ops);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        return k;
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 abstract void implRegister(SelectionKeyImpl ski);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    void processDeregisterQueue() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        // Precondition: Synchronized on this, keys, and selectedKeys
10137
d92637d3d673 7068616: NIO libraries do not build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   142
        Set<SelectionKey> cks = cancelledKeys();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        synchronized (cks) {
843
e50aa264deca 6429289: (se) sun.nio.ch.SelectorImpl.processDeregisterQueue creates excessive garbage
sherman
parents: 2
diff changeset
   144
            if (!cks.isEmpty()) {
10137
d92637d3d673 7068616: NIO libraries do not build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   145
                Iterator<SelectionKey> i = cks.iterator();
843
e50aa264deca 6429289: (se) sun.nio.ch.SelectorImpl.processDeregisterQueue creates excessive garbage
sherman
parents: 2
diff changeset
   146
                while (i.hasNext()) {
e50aa264deca 6429289: (se) sun.nio.ch.SelectorImpl.processDeregisterQueue creates excessive garbage
sherman
parents: 2
diff changeset
   147
                    SelectionKeyImpl ski = (SelectionKeyImpl)i.next();
e50aa264deca 6429289: (se) sun.nio.ch.SelectorImpl.processDeregisterQueue creates excessive garbage
sherman
parents: 2
diff changeset
   148
                    try {
e50aa264deca 6429289: (se) sun.nio.ch.SelectorImpl.processDeregisterQueue creates excessive garbage
sherman
parents: 2
diff changeset
   149
                        implDereg(ski);
e50aa264deca 6429289: (se) sun.nio.ch.SelectorImpl.processDeregisterQueue creates excessive garbage
sherman
parents: 2
diff changeset
   150
                    } catch (SocketException se) {
10137
d92637d3d673 7068616: NIO libraries do not build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   151
                        throw new IOException("Error deregistering key", se);
843
e50aa264deca 6429289: (se) sun.nio.ch.SelectorImpl.processDeregisterQueue creates excessive garbage
sherman
parents: 2
diff changeset
   152
                    } finally {
e50aa264deca 6429289: (se) sun.nio.ch.SelectorImpl.processDeregisterQueue creates excessive garbage
sherman
parents: 2
diff changeset
   153
                        i.remove();
e50aa264deca 6429289: (se) sun.nio.ch.SelectorImpl.processDeregisterQueue creates excessive garbage
sherman
parents: 2
diff changeset
   154
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    protected abstract void implDereg(SelectionKeyImpl ski) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 29986
diff changeset
   162
    public abstract Selector wakeup();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
}