author | alanb |
Fri, 14 Sep 2018 16:56:09 +0100 | |
changeset 51745 | 90c1dcdebc64 |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
23010
6dadb192ad81
8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents:
20176
diff
changeset
|
2 |
* Copyright (c) 2002, 2013, 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 |
|
20176
59b7a49e7f8b
8024883: (se) SelectableChannel.register throws NPE if fd >= 64k (lnx)
alanb
parents:
7668
diff
changeset
|
25 |
* @bug 4503092 8024883 |
2 | 26 |
* @summary Tests that Windows Selector can use more than 63 channels |
20176
59b7a49e7f8b
8024883: (se) SelectableChannel.register throws NPE if fd >= 64k (lnx)
alanb
parents:
7668
diff
changeset
|
27 |
* @run main LotsOfChannels |
59b7a49e7f8b
8024883: (se) SelectableChannel.register throws NPE if fd >= 64k (lnx)
alanb
parents:
7668
diff
changeset
|
28 |
* @run main/othervm -Dsun.nio.ch.maxUpdateArraySize=64 LotsOfChannels |
2 | 29 |
* @author kladko |
30 |
*/ |
|
31 |
||
32 |
import java.net.*; |
|
33 |
import java.io.*; |
|
34 |
import java.nio.*; |
|
35 |
import java.nio.channels.*; |
|
36 |
||
37 |
public class LotsOfChannels { |
|
38 |
||
5970
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
39 |
private final static int PIPES_COUNT = 256; |
2 | 40 |
private final static int BUF_SIZE = 8192; |
41 |
private final static int LOOPS = 10; |
|
42 |
||
43 |
public static void main(String[] argv) throws Exception { |
|
44 |
Pipe[] pipes = new Pipe[PIPES_COUNT]; |
|
45 |
Pipe pipe = Pipe.open(); |
|
46 |
Pipe.SinkChannel sink = pipe.sink(); |
|
47 |
Pipe.SourceChannel source = pipe.source(); |
|
48 |
Selector sel = Selector.open(); |
|
49 |
source.configureBlocking(false); |
|
50 |
source.register(sel, SelectionKey.OP_READ); |
|
51 |
||
52 |
for (int i = 0; i< PIPES_COUNT; i++ ) { |
|
53 |
pipes[i]= Pipe.open(); |
|
54 |
Pipe.SourceChannel sc = pipes[i].source(); |
|
55 |
sc.configureBlocking(false); |
|
56 |
sc.register(sel, SelectionKey.OP_READ); |
|
57 |
Pipe.SinkChannel sc2 = pipes[i].sink(); |
|
58 |
sc2.configureBlocking(false); |
|
59 |
sc2.register(sel, SelectionKey.OP_WRITE); |
|
60 |
} |
|
61 |
||
62 |
for (int i = 0 ; i < LOOPS; i++ ) { |
|
63 |
sink.write(ByteBuffer.allocate(BUF_SIZE)); |
|
64 |
int x = sel.selectNow(); |
|
65 |
sel.selectedKeys().clear(); |
|
66 |
source.read(ByteBuffer.allocate(BUF_SIZE)); |
|
67 |
} |
|
5970
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
68 |
|
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
69 |
for (int i = 0; i < PIPES_COUNT; i++ ) { |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
70 |
pipes[i].sink().close(); |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
71 |
pipes[i].source().close(); |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
72 |
} |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
73 |
pipe.sink().close(); |
d4e98bbfb0be
6963027: TEST_BUG: channels and buffer tests need to run in samevm mode
alanb
parents:
5506
diff
changeset
|
74 |
pipe.source().close(); |
2 | 75 |
sel.close(); |
76 |
} |
|
77 |
} |