src/java.base/share/classes/sun/nio/ch/SelectionKeyImpl.java
author alanb
Wed, 20 Nov 2019 08:35:53 +0000
changeset 59146 455612b3161a
parent 50439 c5c827f3bf72
permissions -rw-r--r--
8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS) Reviewed-by: dfuchs, chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
59146
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
     2
 * Copyright (c) 2000, 2019, 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: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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
50439
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
    28
import java.lang.invoke.ConstantBootstraps;
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
    29
import java.lang.invoke.MethodHandles;
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
    30
import java.lang.invoke.VarHandle;
49248
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
    31
import java.nio.channels.CancelledKeyException;
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
    32
import java.nio.channels.SelectableChannel;
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
    33
import java.nio.channels.SelectionKey;
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
    34
import java.nio.channels.Selector;
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
    35
import java.nio.channels.spi.AbstractSelectionKey;
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
/**
49290
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
    39
 * An implementation of SelectionKey.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
49290
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
    42
public final class SelectionKeyImpl
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    extends AbstractSelectionKey
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
{
50439
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
    45
    private static final VarHandle INTERESTOPS =
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
    46
            ConstantBootstraps.fieldVarHandle(
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
    47
                    MethodHandles.lookup(),
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
    48
                    "interestOps",
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
    49
                    VarHandle.class,
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
    50
                    SelectionKeyImpl.class, int.class);
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
    51
49526
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
    52
    private final SelChImpl channel;
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    53
    private final SelectorImpl selector;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    private volatile int interestOps;
49248
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
    56
    private volatile int readyOps;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    58
    // registered events in kernel, used by some Selector implementations
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    59
    private int registeredEvents;
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    60
59146
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
    61
    // registered events need to be reset, used by some Selector implementations
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
    62
    private volatile boolean reset;
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
    63
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    64
    // index of key in pollfd array, used by some Selector implementations
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    65
    private int index;
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    66
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    SelectionKeyImpl(SelChImpl ch, SelectorImpl sel) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        channel = ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        selector = sel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    72
    private void ensureValid() {
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    73
        if (!isValid())
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    74
            throw new CancelledKeyException();
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    75
    }
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    76
49526
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
    77
    int getFDVal() {
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
    78
        return channel.getFDVal();
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
    79
    }
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
    80
49290
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
    81
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    public SelectableChannel channel() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        return (SelectableChannel)channel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
49290
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
    86
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    public Selector selector() {
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
    88
        return selector;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
49290
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
    91
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    public int interestOps() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        ensureValid();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        return interestOps;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
49290
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
    97
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    public SelectionKey interestOps(int ops) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        ensureValid();
50439
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   100
        if ((ops & ~channel().validOps()) != 0)
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   101
            throw new IllegalArgumentException();
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   102
        int oldOps = (int) INTERESTOPS.getAndSet(this, ops);
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   103
        if (ops != oldOps) {
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   104
            selector.setEventOps(this);
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   105
        }
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   106
        return this;
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   107
    }
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   108
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   109
    @Override
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   110
    public int interestOpsOr(int ops) {
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   111
        ensureValid();
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   112
        if ((ops & ~channel().validOps()) != 0)
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   113
            throw new IllegalArgumentException();
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   114
        int oldVal = (int) INTERESTOPS.getAndBitwiseOr(this, ops);
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   115
        if (oldVal != (oldVal | ops)) {
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   116
            selector.setEventOps(this);
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   117
        }
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   118
        return oldVal;
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   119
    }
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   120
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   121
    @Override
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   122
    public int interestOpsAnd(int ops) {
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   123
        ensureValid();
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   124
        int oldVal = (int) INTERESTOPS.getAndBitwiseAnd(this, ops);
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   125
        if (oldVal != (oldVal & ops)) {
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   126
            selector.setEventOps(this);
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   127
        }
c5c827f3bf72 6350055: (se) SelectionKey.interestOps variants to atomically update interest ops
alanb
parents: 49526
diff changeset
   128
        return oldVal;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
49290
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
   131
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    public int readyOps() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        ensureValid();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        return readyOps;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    // The nio versions of these operations do not care if a key
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    // has been invalidated. They are for internal use by nio code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
11823
ee83ae88512d 7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents: 5506
diff changeset
   140
    public void nioReadyOps(int ops) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        readyOps = ops;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
11823
ee83ae88512d 7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents: 5506
diff changeset
   144
    public int nioReadyOps() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        return readyOps;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
11823
ee83ae88512d 7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents: 5506
diff changeset
   148
    public SelectionKey nioInterestOps(int ops) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        if ((ops & ~channel().validOps()) != 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        interestOps = ops;
49526
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
   152
        selector.setEventOps(this);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        return this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
11823
ee83ae88512d 7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents: 5506
diff changeset
   156
    public int nioInterestOps() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        return interestOps;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
49526
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
   160
    int translateInterestOps() {
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
   161
        return channel.translateInterestOps(interestOps);
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
   162
    }
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
   163
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
   164
    boolean translateAndSetReadyOps(int ops) {
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
   165
        return channel.translateAndSetReadyOps(ops, this);
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
   166
    }
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
   167
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
   168
    boolean translateAndUpdateReadyOps(int ops) {
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
   169
        return channel.translateAndUpdateReadyOps(ops, this);
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
   170
    }
cad4c844902a 8200583: (se) Selector clean-up, part 4
alanb
parents: 49493
diff changeset
   171
49493
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   172
    void registeredEvents(int events) {
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   173
        // assert Thread.holdsLock(selector);
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   174
        this.registeredEvents = events;
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   175
    }
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   176
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   177
    int registeredEvents() {
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   178
        // assert Thread.holdsLock(selector);
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   179
        return registeredEvents;
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   180
    }
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   181
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   182
    int getIndex() {
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   183
        return index;
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   184
    }
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   185
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   186
    void setIndex(int i) {
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   187
        index = i;
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   188
    }
814bd31f8da0 8200257: (se) More Selector cleanup
alanb
parents: 49290
diff changeset
   189
59146
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   190
    /**
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   191
     * Sets the reset flag, re-queues the key, and wakeups up the Selector
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   192
     */
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   193
    void reset() {
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   194
        reset = true;
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   195
        selector.setEventOps(this);
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   196
        selector.wakeup();
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   197
    }
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   198
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   199
    /**
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   200
     * Clears the reset flag, returning the previous value of the flag
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   201
     */
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   202
    boolean getAndClearReset() {
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   203
        assert Thread.holdsLock(selector);
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   204
        boolean r = reset;
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   205
        if (r)
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   206
            reset = false;
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   207
        return r;
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   208
    }
455612b3161a 8231259: (dc) DatagramChannel::disconnect re-binds socket to the wildcard address (macOS)
alanb
parents: 50439
diff changeset
   209
49248
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   210
    @Override
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   211
    public String toString() {
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   212
        StringBuilder sb = new StringBuilder();
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   213
        sb.append("channel=")
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   214
          .append(channel)
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   215
          .append(", selector=")
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   216
          .append(selector);
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   217
        if (isValid()) {
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   218
            sb.append(", interestOps=")
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   219
              .append(interestOps)
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   220
              .append(", readyOps=")
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   221
              .append(readyOps);
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   222
        } else {
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   223
            sb.append(", invalid");
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   224
        }
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   225
        return sb.toString();
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   226
    }
15a0e60c8b97 8199611: (se) Minor selector implementation clean-up
alanb
parents: 47216
diff changeset
   227
49290
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
   228
    // used by Selector implementations to record when the key was selected
07779973cbe2 8199791: (se) More Selector cleanup
alanb
parents: 49248
diff changeset
   229
    int lastPolled;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
}