Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/nio/channels/Selector/Connect.java
41153 views
1
/*
2
* Copyright (c) 2001, 2018, 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 4511624
26
* @summary Test Making lots of Selectors
27
* @library .. /test/lib
28
* @build jdk.test.lib.Utils TestServers
29
* @run main Connect
30
*/
31
32
import java.net.*;
33
import java.nio.*;
34
import java.nio.channels.*;
35
import java.nio.channels.spi.SelectorProvider;
36
import java.util.*;
37
38
public class Connect {
39
40
static int success = 0;
41
static int LIMIT = 100;
42
43
public static void main(String[] args) throws Exception {
44
try (TestServers.DayTimeServer daytimeServer
45
= TestServers.DayTimeServer.startNewServer(50)) {
46
scaleTest(daytimeServer);
47
}
48
}
49
50
static void scaleTest(TestServers.DayTimeServer daytimeServer)
51
throws Exception
52
{
53
InetAddress myAddress = daytimeServer.getAddress();
54
InetSocketAddress isa
55
= new InetSocketAddress(myAddress, daytimeServer.getPort());
56
57
for (int j=0; j<LIMIT; j++) {
58
SocketChannel sc = SocketChannel.open();
59
sc.configureBlocking(false);
60
boolean connected = sc.connect(isa);
61
if (!connected) {
62
Selector RSelector = SelectorProvider.provider().openSelector();
63
SelectionKey RKey = sc.register (RSelector, SelectionKey.OP_CONNECT);
64
while (!connected) {
65
int keysAdded = RSelector.select(100);
66
if (keysAdded > 0) {
67
Set<SelectionKey> readyKeys = RSelector.selectedKeys();
68
Iterator<SelectionKey> i = readyKeys.iterator();
69
while (i.hasNext()) {
70
SelectionKey sk = i.next();
71
SocketChannel nextReady = (SocketChannel)sk.channel();
72
connected = nextReady.finishConnect();
73
}
74
readyKeys.clear();
75
}
76
}
77
RSelector.close();
78
}
79
readAndClose(sc);
80
}
81
}
82
83
static void readAndClose(SocketChannel sc) throws Exception {
84
ByteBuffer bb = ByteBuffer.allocateDirect(100);
85
int n = 0;
86
while (n == 0) // Note this is not a rigorous check for done reading
87
n = sc.read(bb);
88
//bb.position(bb.position() - 2);
89
//bb.flip();
90
//CharBuffer cb = Charset.forName("US-ASCII").newDecoder().decode(bb);
91
//System.out.println("Received: \"" + cb + "\"");
92
sc.close();
93
success++;
94
}
95
}
96
97