author | alanb |
Fri, 10 Sep 2010 18:48:49 +0100 | |
changeset 6538 | cb0da65ba680 |
parent 5970 | d4e98bbfb0be |
child 7668 | d4a77089c587 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
5506 | 2 |
* Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
* |
|
5506 | 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. |
|
2 | 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; |
|
5970
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
114 |
boolean failed = false; |
2 | 115 |
for (;;) { |
116 |
int n = sel.select(); |
|
5970
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
117 |
if (n > 0) { |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
118 |
System.err.println("Channel should not be selected!!!"); |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
119 |
failed = true; |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
120 |
break; |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
121 |
} |
2 | 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++; |
|
5970
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
130 |
if (spinCount >= 3) { |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
131 |
System.err.println("Selector appears to be spinning"); |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
132 |
failed = true; |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
133 |
break; |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
134 |
} |
2 | 135 |
} |
136 |
||
5970
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
137 |
sc1.close(); |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
138 |
sel.close(); |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
139 |
|
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
140 |
if (failed) |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
141 |
throw new RuntimeException("Test failed"); |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
142 |
|
2 | 143 |
System.out.println("PASS"); |
144 |
} |
|
145 |
||
146 |
} |