Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/java/nio/channels/Selector/CloseWhenKeyIdle.java
38828 views
1
/*
2
* Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
/* @test
25
* @bug 6403933
26
* @summary POLLHUP or POLLERR on "idle" key can cause Selector to spin
27
*/
28
29
import java.io.*;
30
import java.net.*;
31
import java.nio.*;
32
import java.nio.channels.*;
33
import java.net.*;
34
import java.nio.channels.*;
35
36
public class CloseWhenKeyIdle {
37
38
// indicates if the wakeup has happened
39
static volatile boolean wakeupDone = false;
40
41
// Wakes up a Selector after a given delay
42
static class Waker implements Runnable {
43
private Selector sel;
44
private long delay;
45
46
Waker(Selector sel, long delay) {
47
this.sel = sel;
48
this.delay = delay;
49
}
50
51
public void run() {
52
try {
53
Thread.sleep(delay);
54
wakeupDone = true;
55
sel.wakeup();
56
} catch (Exception x) {
57
x.printStackTrace();
58
}
59
}
60
}
61
62
63
public static void main(String[] args) throws Exception {
64
65
// Skip test on pre-2.6 kernels until the poll SelectorProvider
66
// is updated
67
String osname = System.getProperty("os.name");
68
if (osname.equals("Linux")) {
69
String[] ver = System.getProperty("os.version").split("\\.", 0);
70
if (ver.length >=2 ) {
71
int major = Integer.parseInt(ver[0]);
72
int minor = Integer.parseInt(ver[1]);
73
if (major < 2 || (major == 2 && minor < 6)) {
74
System.out.println("Test passing on pre-2.6 kernel");
75
return;
76
}
77
}
78
}
79
80
81
// establish loopback connection
82
83
ServerSocketChannel ssc = ServerSocketChannel.open();
84
ssc.socket().bind(new InetSocketAddress(0));
85
86
SocketAddress remote = new InetSocketAddress(InetAddress.getLocalHost(),
87
ssc.socket().getLocalPort());
88
89
SocketChannel sc1 = SocketChannel.open(remote);
90
SocketChannel sc2 = ssc.accept();
91
92
// register channel for one end with a Selector, interest set = 0
93
94
Selector sel = Selector.open();
95
96
sc1.configureBlocking(false);
97
SelectionKey k = sc1.register(sel, 0);
98
sel.selectNow();
99
100
// hard close to provoke POLLHUP
101
102
sc2.socket().setSoLinger(true, 0);
103
sc2.close();
104
105
// schedule wakeup after a few seconds
106
107
Thread t = new Thread(new Waker(sel, 5000));
108
t.setDaemon(true);
109
t.start();
110
111
// select should block
112
113
int spinCount = 0;
114
boolean failed = false;
115
for (;;) {
116
int n = sel.select();
117
if (n > 0) {
118
System.err.println("Channel should not be selected!!!");
119
failed = true;
120
break;
121
}
122
123
// wakeup
124
if (wakeupDone)
125
break;
126
127
// wakeup for no reason - if it happens a few times then we have a
128
// problem
129
spinCount++;
130
if (spinCount >= 3) {
131
System.err.println("Selector appears to be spinning");
132
failed = true;
133
break;
134
}
135
}
136
137
sc1.close();
138
sel.close();
139
140
if (failed)
141
throw new RuntimeException("Test failed");
142
143
System.out.println("PASS");
144
}
145
146
}
147
148