test/jdk/java/nio/channels/Selector/LotsOfChannels.java
author alanb
Fri, 14 Sep 2018 16:56:09 +0100
changeset 51745 90c1dcdebc64
parent 47216 71c04702a3d5
permissions -rw-r--r--
8208780: (se) test SelectWithConsumer.testReadableAndWriteable(): failure Reviewed-by: bpb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     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
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/* @test
20176
59b7a49e7f8b 8024883: (se) SelectableChannel.register throws NPE if fd >= 64k (lnx)
alanb
parents: 7668
diff changeset
    25
 * @bug 4503092 8024883
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * @author kladko
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.net.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.nio.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.nio.channels.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
public class LotsOfChannels {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    private final static int BUF_SIZE = 8192;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    private final static int LOOPS = 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    public static void main(String[] argv) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
        Pipe[] pipes = new Pipe[PIPES_COUNT];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
        Pipe pipe = Pipe.open();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        Pipe.SinkChannel sink = pipe.sink();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        Pipe.SourceChannel source = pipe.source();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        Selector sel = Selector.open();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        source.configureBlocking(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
        source.register(sel, SelectionKey.OP_READ);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        for (int i = 0; i< PIPES_COUNT; i++ ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
            pipes[i]= Pipe.open();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
            Pipe.SourceChannel sc = pipes[i].source();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
            sc.configureBlocking(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            sc.register(sel, SelectionKey.OP_READ);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
            Pipe.SinkChannel sc2 = pipes[i].sink();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
            sc2.configureBlocking(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
            sc2.register(sel, SelectionKey.OP_WRITE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        for (int i = 0 ; i < LOOPS; i++ ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
            sink.write(ByteBuffer.allocate(BUF_SIZE));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
            int x = sel.selectNow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            sel.selectedKeys().clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
            source.read(ByteBuffer.allocate(BUF_SIZE));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        sel.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
}