Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/nio/channels/Selector/BasicConnect.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
* @summary Test nonblocking connect and finishConnect
26
* @bug 4457776
27
* @library .. /test/lib
28
* @build jdk.test.lib.Utils TestServers
29
* @run main BasicConnect
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
39
/**
40
* Typically there would be more than one channel registered to select
41
* on, this test is just a very simple version with only one channel
42
* registered for the connectSelector.
43
*/
44
45
public class BasicConnect {
46
47
public static void main(String[] args) throws Exception {
48
Selector connectSelector =
49
SelectorProvider.provider().openSelector();
50
try (TestServers.EchoServer echoServer
51
= TestServers.EchoServer.startNewServer(100)) {
52
InetSocketAddress isa
53
= new InetSocketAddress(echoServer.getAddress(),
54
echoServer.getPort());
55
SocketChannel sc = SocketChannel.open();
56
sc.configureBlocking(false);
57
boolean result = sc.connect(isa);
58
if (result) {
59
System.out.println("Socket immediately connected on "
60
+ System.getProperty("os.name")
61
+ ": " + sc);
62
}
63
while (!result) {
64
SelectionKey connectKey = sc.register(connectSelector,
65
SelectionKey.OP_CONNECT);
66
int keysAdded = connectSelector.select();
67
if (keysAdded > 0) {
68
Set readyKeys = connectSelector.selectedKeys();
69
Iterator i = readyKeys.iterator();
70
while (i.hasNext()) {
71
SelectionKey sk = (SelectionKey)i.next();
72
i.remove();
73
SocketChannel nextReady = (SocketChannel)sk.channel();
74
result = nextReady.finishConnect();
75
if (result)
76
sk.cancel();
77
}
78
}
79
}
80
81
byte[] bs = new byte[] { (byte)0xca, (byte)0xfe,
82
(byte)0xba, (byte)0xbe };
83
ByteBuffer bb = ByteBuffer.wrap(bs);
84
sc.configureBlocking(true);
85
sc.write(bb);
86
bb.rewind();
87
88
ByteBuffer bb2 = ByteBuffer.allocateDirect(100);
89
int n = sc.read(bb2);
90
bb2.flip();
91
92
sc.close();
93
connectSelector.close();
94
95
if (!bb.equals(bb2))
96
throw new Exception("Echoed bytes incorrect: Sent "
97
+ bb + ", got " + bb2);
98
}
99
}
100
}
101
102