8201315: (se) Allow SelectableChannel.register to be invoked while selection operation is in progress

Reviewed-by: bpb
This commit is contained in:
Alan Bateman 2018-04-18 10:20:09 +01:00
parent 76590dc009
commit 33b921f25d
6 changed files with 244 additions and 142 deletions

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -117,12 +117,6 @@ public abstract class SelectableChannel
*/ */
public abstract int validOps(); public abstract int validOps();
// Internal state:
// keySet, may be empty but is never null, typ. a tiny array
// boolean isRegistered, protected by key set
// regLock, lock object to prevent duplicate registrations
// blocking mode, protected by regLock
/** /**
* Tells whether or not this channel is currently registered with any * Tells whether or not this channel is currently registered with any
* selectors. A newly-created channel is not registered. * selectors. A newly-created channel is not registered.
@ -135,8 +129,6 @@ public abstract class SelectableChannel
* @return {@code true} if, and only if, this channel is registered * @return {@code true} if, and only if, this channel is registered
*/ */
public abstract boolean isRegistered(); public abstract boolean isRegistered();
//
// sync(keySet) { return isRegistered; }
/** /**
* Retrieves the key representing the channel's registration with the given * Retrieves the key representing the channel's registration with the given
@ -150,8 +142,6 @@ public abstract class SelectableChannel
* currently registered with that selector * currently registered with that selector
*/ */
public abstract SelectionKey keyFor(Selector sel); public abstract SelectionKey keyFor(Selector sel);
//
// sync(keySet) { return findKey(sel); }
/** /**
* Registers this channel with the given selector, returning a selection * Registers this channel with the given selector, returning a selection
@ -171,12 +161,12 @@ public abstract class SelectableChannel
* will be {@code att}. * will be {@code att}.
* *
* <p> This method may be invoked at any time. If this method is invoked * <p> This method may be invoked at any time. If this method is invoked
* while another invocation of this method or of the {@link * while a selection operation is in progress then it has no effect upon
* #configureBlocking(boolean) configureBlocking} method is in progress * that operation; the new registration or change to the key's interest set
* then it will first block until the other operation is complete. This * will be seen by the next selection operation. If this method is invoked
* method will then synchronize on the selector's key set and therefore may * while an invocation of {@link #configureBlocking(boolean) configureBlocking}
* block if invoked concurrently with another registration or selection * is in progress then it will block until the channel's blocking mode has
* operation involving the same selector. </p> * been adjusted.
* *
* <p> If this channel is closed while this operation is in progress then * <p> If this channel is closed while this operation is in progress then
* the key returned by this method will have been cancelled and will * the key returned by this method will have been cancelled and will
@ -218,16 +208,6 @@ public abstract class SelectableChannel
*/ */
public abstract SelectionKey register(Selector sel, int ops, Object att) public abstract SelectionKey register(Selector sel, int ops, Object att)
throws ClosedChannelException; throws ClosedChannelException;
//
// sync(regLock) {
// sync(keySet) { look for selector }
// if (channel found) { set interest ops -- may block in selector;
// return key; }
// create new key -- may block somewhere in selector;
// sync(keySet) { add key; }
// attach(attachment);
// return key;
// }
/** /**
* Registers this channel with the given selector, returning a selection * Registers this channel with the given selector, returning a selection
@ -314,11 +294,6 @@ public abstract class SelectableChannel
*/ */
public abstract SelectableChannel configureBlocking(boolean block) public abstract SelectableChannel configureBlocking(boolean block)
throws IOException; throws IOException;
//
// sync(regLock) {
// sync(keySet) { throw IBME if block && isRegistered; }
// change mode;
// }
/** /**
* Tells whether or not every I/O operation on this channel will block * Tells whether or not every I/O operation on this channel will block

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -86,15 +86,9 @@ import java.util.concurrent.atomic.AtomicReferenceFieldUpdater;
* attached via the {@link #attach attach} method and then later retrieved via * attached via the {@link #attach attach} method and then later retrieved via
* the {@link #attachment() attachment} method. * the {@link #attachment() attachment} method.
* *
* <p> Selection keys are safe for use by multiple concurrent threads. The * <p> Selection keys are safe for use by multiple concurrent threads. A
* operations of reading and writing the interest set will, in general, be * selection operation will always use the interest-set value that was current
* synchronized with certain operations of the selector. Exactly how this * at the moment that the operation began. </p>
* synchronization is performed is implementation-dependent: In a naive
* implementation, reading or writing the interest set may block indefinitely
* if a selection operation is already in progress; in a high-performance
* implementation, reading or writing the interest set may block briefly, if at
* all. In any case, a selection operation will always use the interest-set
* value that was current at the moment that the operation began. </p>
* *
* *
* @author Mark Reinhold * @author Mark Reinhold
@ -164,10 +158,7 @@ public abstract class SelectionKey {
* Retrieves this key's interest set. * Retrieves this key's interest set.
* *
* <p> It is guaranteed that the returned set will only contain operation * <p> It is guaranteed that the returned set will only contain operation
* bits that are valid for this key's channel. * bits that are valid for this key's channel. </p>
*
* <p> This method may be invoked at any time. Whether or not it blocks,
* and for how long, is implementation-dependent. </p>
* *
* @return This key's interest set * @return This key's interest set
* *
@ -179,8 +170,10 @@ public abstract class SelectionKey {
/** /**
* Sets this key's interest set to the given value. * Sets this key's interest set to the given value.
* *
* <p> This method may be invoked at any time. Whether or not it blocks, * <p> This method may be invoked at any time. If this method is invoked
* and for how long, is implementation-dependent. </p> * while a selection operation is in progress then it has no effect upon
* that operation; the change to the key's interest set will be seen by the
* next selection operation.
* *
* @param ops The new interest set * @param ops The new interest set
* *

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -84,11 +84,10 @@ import java.util.Set;
* operations. A key may be removed directly from the selected-key set by * operations. A key may be removed directly from the selected-key set by
* invoking the set's {@link java.util.Set#remove(java.lang.Object) remove} * invoking the set's {@link java.util.Set#remove(java.lang.Object) remove}
* method or by invoking the {@link java.util.Iterator#remove() remove} method * method or by invoking the {@link java.util.Iterator#remove() remove} method
* of an {@link java.util.Iterator iterator} obtained from the * of an {@link java.util.Iterator iterator} obtained from the set.
* set. Keys are never removed from the selected-key set in any other way; * All keys may be removed from the selected-key set by invoking the set's
* they are not, in particular, removed as a side effect of selection * {@link java.util.Set#clear() clear} method. Keys may not be added directly
* operations. Keys may not be added directly to the selected-key set. </p> * to the selected-key set. </p>
*
* *
* <a id="selop"></a> * <a id="selop"></a>
* <h2>Selection</h2> * <h2>Selection</h2>
@ -144,12 +143,12 @@ import java.util.Set;
* *
* <h2>Concurrency</h2> * <h2>Concurrency</h2>
* *
* <p> Selectors are themselves safe for use by multiple concurrent threads; * <p> A Selector and its key set are safe for use by multiple concurrent
* their key sets, however, are not. * threads. Its selected-key set and cancelled-key set, however, are not.
* *
* <p> The selection operations synchronize on the selector itself, on the key * <p> The selection operations synchronize on the selector itself, on the
* set, and on the selected-key set, in that order. They also synchronize on * selected-key set, in that order. They also synchronize on the cancelled-key
* the cancelled-key set during steps (1) and (3) above. * set during steps (1) and (3) above.
* *
* <p> Changes made to the interest sets of a selector's keys while a * <p> Changes made to the interest sets of a selector's keys while a
* selection operation is in progress have no effect upon that operation; they * selection operation is in progress have no effect upon that operation; they
@ -180,20 +179,27 @@ import java.util.Set;
* *
* </ul> * </ul>
* *
* <p> The {@link #close close} method synchronizes on the selector and all * <p> The {@link #close close} method synchronizes on the selector and its
* three key sets in the same order as in a selection operation. * selected-key set in the same order as in a selection operation.
* *
* <a id="ksc"></a> * <a id="ksc"></a>
* <p> A Selector's key set is safe for use by multiple concurrent threads.
* Retrieval operations from the key set do not generally block and so may
* overlap with new registrations that add to the set, or with the cancellation
* steps of selection operations that remove keys from the set. Iterators and
* spliterators return elements reflecting the state of the set at some point at
* or since the creation of the iterator/spliterator. They do not throw
* {@link java.util.ConcurrentModificationException ConcurrentModificationException}.
* *
* <p> A selector's key and selected-key sets are not, in general, safe for use * <a id="sksc"></a>
* by multiple concurrent threads. If such a thread might modify one of these * <p> A selector's selected-key set is not, in general, safe for use by
* sets directly then access should be controlled by synchronizing on the set * multiple concurrent threads. If such a thread might modify the set directly
* itself. The iterators returned by these sets' {@link * then access should be controlled by synchronizing on the set itself. The
* java.util.Set#iterator() iterator} methods are <i>fail-fast:</i> If the set * iterators returned by the set's {@link java.util.Set#iterator() iterator}
* is modified after the iterator is created, in any way except by invoking the * methods are <i>fail-fast:</i> If the set is modified after the iterator is
* iterator's own {@link java.util.Iterator#remove() remove} method, then a * created, in any way except by invoking the iterator's own {@link
* {@link java.util.ConcurrentModificationException} will be thrown. </p> * java.util.Iterator#remove() remove} method, then a {@link
* * java.util.ConcurrentModificationException} will be thrown. </p>
* *
* @author Mark Reinhold * @author Mark Reinhold
* @author JSR-51 Expert Group * @author JSR-51 Expert Group
@ -249,7 +255,8 @@ public abstract class Selector implements Closeable {
* attempt to modify the key set will cause an {@link * attempt to modify the key set will cause an {@link
* UnsupportedOperationException} to be thrown. * UnsupportedOperationException} to be thrown.
* *
* <p> The key set is <a href="#ksc">not thread-safe</a>. </p> * <p> The set is <a href="#ksc">safe</a> for use by multiple concurrent
* threads. </p>
* *
* @return This selector's key set * @return This selector's key set
* *
@ -265,7 +272,7 @@ public abstract class Selector implements Closeable {
* selected-key set. Any attempt to add an object to the key set will * selected-key set. Any attempt to add an object to the key set will
* cause an {@link UnsupportedOperationException} to be thrown. * cause an {@link UnsupportedOperationException} to be thrown.
* *
* <p> The selected-key set is <a href="#ksc">not thread-safe</a>. </p> * <p> The selected-key set is <a href="#sksc">not thread-safe</a>. </p>
* *
* @return This selector's selected-key set * @return This selector's selected-key set
* *
@ -326,8 +333,7 @@ public abstract class Selector implements Closeable {
* @throws IllegalArgumentException * @throws IllegalArgumentException
* If the value of the timeout argument is negative * If the value of the timeout argument is negative
*/ */
public abstract int select(long timeout) public abstract int select(long timeout) throws IOException;
throws IOException;
/** /**
* Selects a set of keys whose corresponding channels are ready for I/O * Selects a set of keys whose corresponding channels are ready for I/O

View file

@ -108,7 +108,7 @@ public abstract class AbstractSelectableChannel
if (keys[i] == null) if (keys[i] == null)
break; break;
} else if (keys == null) { } else if (keys == null) {
keys = new SelectionKey[3]; keys = new SelectionKey[2];
} else { } else {
// Grow key array // Grow key array
int n = keys.length * 2; int n = keys.length * 2;
@ -123,14 +123,14 @@ public abstract class AbstractSelectableChannel
} }
private SelectionKey findKey(Selector sel) { private SelectionKey findKey(Selector sel) {
synchronized (keyLock) { assert Thread.holdsLock(keyLock);
if (keys == null) if (keys == null)
return null;
for (int i = 0; i < keys.length; i++)
if ((keys[i] != null) && (keys[i].selector() == sel))
return keys[i];
return null; return null;
} for (int i = 0; i < keys.length; i++)
if ((keys[i] != null) && (keys[i].selector() == sel))
return keys[i];
return null;
} }
void removeKey(SelectionKey k) { // package-private void removeKey(SelectionKey k) { // package-private
@ -166,7 +166,9 @@ public abstract class AbstractSelectableChannel
} }
public final SelectionKey keyFor(Selector sel) { public final SelectionKey keyFor(Selector sel) {
return findKey(sel); synchronized (keyLock) {
return findKey(sel);
}
} }
/** /**
@ -195,32 +197,31 @@ public abstract class AbstractSelectableChannel
* *
* @throws IllegalArgumentException {@inheritDoc} * @throws IllegalArgumentException {@inheritDoc}
*/ */
public final SelectionKey register(Selector sel, int ops, public final SelectionKey register(Selector sel, int ops, Object att)
Object att)
throws ClosedChannelException throws ClosedChannelException
{ {
if ((ops & ~validOps()) != 0)
throw new IllegalArgumentException();
if (!isOpen())
throw new ClosedChannelException();
synchronized (regLock) { synchronized (regLock) {
if (!isOpen())
throw new ClosedChannelException();
if ((ops & ~validOps()) != 0)
throw new IllegalArgumentException();
if (isBlocking()) if (isBlocking())
throw new IllegalBlockingModeException(); throw new IllegalBlockingModeException();
SelectionKey k = findKey(sel); synchronized (keyLock) {
if (k != null) { // re-check if channel has been closed
k.interestOps(ops); if (!isOpen())
k.attach(att); throw new ClosedChannelException();
} SelectionKey k = findKey(sel);
if (k == null) { if (k != null) {
// New registration k.attach(att);
synchronized (keyLock) { k.interestOps(ops);
if (!isOpen()) } else {
throw new ClosedChannelException(); // New registration
k = ((AbstractSelector)sel).register(this, ops, att); k = ((AbstractSelector)sel).register(this, ops, att);
addKey(k); addKey(k);
} }
return k;
} }
return k;
} }
} }
@ -239,12 +240,20 @@ public abstract class AbstractSelectableChannel
*/ */
protected final void implCloseChannel() throws IOException { protected final void implCloseChannel() throws IOException {
implCloseSelectableChannel(); implCloseSelectableChannel();
// clone keys to avoid calling cancel when holding keyLock
SelectionKey[] copyOfKeys = null;
synchronized (keyLock) { synchronized (keyLock) {
int count = (keys == null) ? 0 : keys.length; if (keys != null) {
for (int i = 0; i < count; i++) { copyOfKeys = keys.clone();
SelectionKey k = keys[i]; }
if (k != null) }
k.cancel();
if (copyOfKeys != null) {
for (SelectionKey k : copyOfKeys) {
if (k != null) {
k.cancel(); // invalidate and adds key to cancelledKey set
}
} }
} }
} }

View file

@ -37,17 +37,18 @@ import java.util.Collections;
import java.util.HashSet; import java.util.HashSet;
import java.util.Iterator; import java.util.Iterator;
import java.util.Set; import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
/** /**
* Base Selector implementation class. * Base Selector implementation class.
*/ */
public abstract class SelectorImpl abstract class SelectorImpl
extends AbstractSelector extends AbstractSelector
{ {
// The set of keys registered with this Selector // The set of keys registered with this Selector
protected final Set<SelectionKey> keys; private final Set<SelectionKey> keys;
// The set of keys with data ready for an operation // The set of keys with data ready for an operation
protected final Set<SelectionKey> selectedKeys; protected final Set<SelectionKey> selectedKeys;
@ -58,7 +59,7 @@ public abstract class SelectorImpl
protected SelectorImpl(SelectorProvider sp) { protected SelectorImpl(SelectorProvider sp) {
super(sp); super(sp);
keys = new HashSet<>(); keys = ConcurrentHashMap.newKeySet();
selectedKeys = new HashSet<>(); selectedKeys = new HashSet<>();
publicKeys = Collections.unmodifiableSet(keys); publicKeys = Collections.unmodifiableSet(keys);
publicSelectedKeys = Util.ungrowableSet(selectedKeys); publicSelectedKeys = Util.ungrowableSet(selectedKeys);
@ -82,11 +83,8 @@ public abstract class SelectorImpl
} }
/** /**
* Returns the public view of the key sets * Returns the public view of the selected-key set
*/ */
protected final Set<SelectionKey> nioKeys() {
return publicKeys;
}
protected final Set<SelectionKey> nioSelectedKeys() { protected final Set<SelectionKey> nioSelectedKeys() {
return publicSelectedKeys; return publicSelectedKeys;
} }
@ -116,18 +114,14 @@ public abstract class SelectorImpl
private int lockAndDoSelect(long timeout) throws IOException { private int lockAndDoSelect(long timeout) throws IOException {
synchronized (this) { synchronized (this) {
ensureOpen(); ensureOpen();
synchronized (publicKeys) { synchronized (publicSelectedKeys) {
synchronized (publicSelectedKeys) { return doSelect(timeout);
return doSelect(timeout);
}
} }
} }
} }
@Override @Override
public final int select(long timeout) public final int select(long timeout) throws IOException {
throws IOException
{
if (timeout < 0) if (timeout < 0)
throw new IllegalArgumentException("Negative timeout"); throw new IllegalArgumentException("Negative timeout");
return lockAndDoSelect((timeout == 0) ? -1 : timeout); return lockAndDoSelect((timeout == 0) ? -1 : timeout);
@ -135,7 +129,7 @@ public abstract class SelectorImpl
@Override @Override
public final int select() throws IOException { public final int select() throws IOException {
return select(0); return lockAndDoSelect(-1);
} }
@Override @Override
@ -143,32 +137,33 @@ public abstract class SelectorImpl
return lockAndDoSelect(0); return lockAndDoSelect(0);
} }
/**
* Invoked by implCloseSelector to close the selector.
*/
protected abstract void implClose() throws IOException;
@Override @Override
public final void implCloseSelector() throws IOException { public final void implCloseSelector() throws IOException {
wakeup(); wakeup();
synchronized (this) { synchronized (this) {
implClose(); implClose();
synchronized (publicKeys) { synchronized (publicSelectedKeys) {
synchronized (publicSelectedKeys) { // Deregister channels
// Deregister channels Iterator<SelectionKey> i = keys.iterator();
Iterator<SelectionKey> i = keys.iterator(); while (i.hasNext()) {
while (i.hasNext()) { SelectionKeyImpl ski = (SelectionKeyImpl)i.next();
SelectionKeyImpl ski = (SelectionKeyImpl)i.next(); deregister(ski);
deregister(ski); SelectableChannel selch = ski.channel();
SelectableChannel selch = ski.channel(); if (!selch.isOpen() && !selch.isRegistered())
if (!selch.isOpen() && !selch.isRegistered()) ((SelChImpl)selch).kill();
((SelChImpl)selch).kill(); selectedKeys.remove(ski);
selectedKeys.remove(ski); i.remove();
i.remove();
}
assert selectedKeys.isEmpty() && keys.isEmpty();
} }
assert selectedKeys.isEmpty() && keys.isEmpty();
} }
} }
} }
protected abstract void implClose() throws IOException;
@Override @Override
protected final SelectionKey register(AbstractSelectableChannel ch, protected final SelectionKey register(AbstractSelectableChannel ch,
int ops, int ops,
@ -179,12 +174,21 @@ public abstract class SelectorImpl
SelectionKeyImpl k = new SelectionKeyImpl((SelChImpl)ch, this); SelectionKeyImpl k = new SelectionKeyImpl((SelChImpl)ch, this);
k.attach(attachment); k.attach(attachment);
// register with selector (if needed) before adding to key set // register (if needed) before adding to key set
implRegister(k); implRegister(k);
synchronized (publicKeys) {
keys.add(k); // add to the selector's key set, removing it immediately if the selector
// is closed. The key is not in the channel's key set at this point but
// it may be observed by a thread iterating over the selector's key set.
keys.add(k);
try {
k.interestOps(ops);
} catch (ClosedSelectorException e) {
assert ch.keyFor(this) == null;
keys.remove(k);
k.cancel();
throw e;
} }
k.interestOps(ops);
return k; return k;
} }
@ -198,11 +202,16 @@ public abstract class SelectorImpl
ensureOpen(); ensureOpen();
} }
/**
* Removes the key from the selector
*/
protected abstract void implDereg(SelectionKeyImpl ski) throws IOException; protected abstract void implDereg(SelectionKeyImpl ski) throws IOException;
/**
* Invoked by selection operations to process the cancelled-key set
*/
protected final void processDeregisterQueue() throws IOException { protected final void processDeregisterQueue() throws IOException {
assert Thread.holdsLock(this); assert Thread.holdsLock(this);
assert Thread.holdsLock(publicKeys);
assert Thread.holdsLock(publicSelectedKeys); assert Thread.holdsLock(publicSelectedKeys);
Set<SelectionKey> cks = cancelledKeys(); Set<SelectionKey> cks = cancelledKeys();
@ -231,7 +240,8 @@ public abstract class SelectorImpl
} }
/** /**
* Change the event set in the selector * Invoked by interestOps to ensure the interest ops are updated at the
* next selection operation.
*/ */
protected abstract void setEventOps(SelectionKeyImpl ski); protected abstract void setEventOps(SelectionKeyImpl ski);
} }

View file

@ -0,0 +1,109 @@
/*
* Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/* @test
* @bug 8201315
* @summary Test that channels can be registered, interest ops can changed,
* and keys cancelled while a selection operation is in progress.
*/
import java.io.IOException;
import java.nio.channels.Pipe;
import java.nio.channels.SelectionKey;
import java.nio.channels.Selector;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.concurrent.Phaser;
public class RegisterDuringSelect {
static Callable<Void> selectLoop(Selector sel, Phaser barrier) {
return new Callable<Void>() {
@Override
public Void call() throws IOException {
for (;;) {
sel.select();
if (sel.isOpen()) {
barrier.arriveAndAwaitAdvance();
} else {
// closed
return null;
}
}
}
};
}
/**
* Invoke register, interestOps, and cancel concurrently with a thread
* doing a selection operation
*/
public static void main(String args[]) throws Exception {
Future<Void> result;
ExecutorService pool = Executors.newFixedThreadPool(1);
try (Selector sel = Selector.open()) {
Phaser barrier = new Phaser(2);
// submit task to do the select loop
result = pool.submit(selectLoop(sel, barrier));
Pipe p = Pipe.open();
try {
Pipe.SourceChannel sc = p.source();
sc.configureBlocking(false);
System.out.println("register ...");
SelectionKey key = sc.register(sel, SelectionKey.OP_READ);
if (!sel.keys().contains(key))
throw new RuntimeException("key not in key set");
sel.wakeup();
barrier.arriveAndAwaitAdvance();
System.out.println("interestOps ...");
key.interestOps(0);
sel.wakeup();
barrier.arriveAndAwaitAdvance();
System.out.println("cancel ...");
key.cancel();
sel.wakeup();
barrier.arriveAndAwaitAdvance();
if (sel.keys().contains(key))
throw new RuntimeException("key not removed from key set");
} finally {
p.source().close();
p.sink().close();
}
} finally {
pool.shutdown();
}
// ensure selectLoop completes without exception
result.get();
}
}