Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/nio/channels/SocketChannel/FinishConnect.java
41154 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 SocketChannel.finishConnect
26
* @library .. /test/lib
27
* @build jdk.test.lib.Utils TestServers
28
* @run main FinishConnect
29
*/
30
31
import java.net.*;
32
import java.nio.*;
33
import java.nio.channels.*;
34
import java.nio.channels.spi.SelectorProvider;
35
import java.nio.charset.*;
36
import java.util.*;
37
38
39
public class FinishConnect {
40
41
public static void main(String[] args) throws Exception {
42
try (TestServers.DayTimeServer dayTimeServer
43
= TestServers.DayTimeServer.startNewServer(100)) {
44
test1(dayTimeServer, true, true);
45
test1(dayTimeServer, true, false);
46
test1(dayTimeServer, false, true);
47
test1(dayTimeServer, false, false);
48
test2(dayTimeServer);
49
}
50
}
51
52
static void test1(TestServers.DayTimeServer daytimeServer,
53
boolean select,
54
boolean setBlocking)
55
throws Exception
56
{
57
InetSocketAddress isa
58
= new InetSocketAddress(daytimeServer.getAddress(),
59
daytimeServer.getPort());
60
SocketChannel sc = SocketChannel.open();
61
sc.configureBlocking(false);
62
boolean connected = sc.connect(isa);
63
int attempts = 0;
64
65
try {
66
sc.connect(isa);
67
throw new RuntimeException("Allowed another connect call");
68
} catch (IllegalStateException ise) {
69
// Correct behavior
70
}
71
72
if (setBlocking)
73
sc.configureBlocking(true);
74
75
if (!connected && select && !setBlocking) {
76
Selector selector = SelectorProvider.provider().openSelector();
77
sc.register(selector, SelectionKey.OP_CONNECT);
78
while (!connected) {
79
int keysAdded = selector.select(100);
80
if (keysAdded > 0) {
81
Set readyKeys = selector.selectedKeys();
82
Iterator i = readyKeys.iterator();
83
while (i.hasNext()) {
84
SelectionKey sk = (SelectionKey)i.next();
85
SocketChannel nextReady =
86
(SocketChannel)sk.channel();
87
connected = sc.finishConnect();
88
}
89
}
90
}
91
selector.close();
92
}
93
94
while (!connected) {
95
if (attempts++ > 30)
96
throw new RuntimeException("Failed to connect");
97
Thread.sleep(100);
98
connected = sc.finishConnect();
99
}
100
101
ByteBuffer bb = ByteBuffer.allocateDirect(100);
102
int bytesRead = 0;
103
int totalRead = 0;
104
while (totalRead < 20) {
105
bytesRead = sc.read(bb);
106
if (bytesRead > 0)
107
totalRead += bytesRead;
108
if (bytesRead < 0)
109
throw new RuntimeException("Message shorter than expected");
110
}
111
bb.position(bb.position() - 2); // Drop CRLF
112
bb.flip();
113
CharBuffer cb = Charset.forName("US-ASCII").newDecoder().decode(bb);
114
System.err.println(isa + " says: \"" + cb + "\"");
115
sc.close();
116
}
117
118
static void test2(TestServers.DayTimeServer daytimeServer) throws Exception {
119
InetSocketAddress isa
120
= new InetSocketAddress(daytimeServer.getAddress(),
121
daytimeServer.getPort());
122
boolean done = false;
123
int globalAttempts = 0;
124
int connectSuccess = 0;
125
while (!done) {
126
// When using a local daytime server it is not always possible
127
// to get a pending connection, as sc.connect(isa) may always
128
// return true.
129
// So we're going to throw the exception only if there was
130
// at least 1 case where we did not manage to connect.
131
if (globalAttempts++ > 50) {
132
if (globalAttempts == connectSuccess + 1) {
133
System.out.println("Can't fully test on "
134
+ System.getProperty("os.name"));
135
break;
136
}
137
throw new RuntimeException("Failed to connect");
138
}
139
SocketChannel sc = SocketChannel.open();
140
sc.configureBlocking(false);
141
boolean connected = sc.connect(isa);
142
int localAttempts = 0;
143
while (!connected) {
144
if (localAttempts++ > 500)
145
throw new RuntimeException("Failed to connect");
146
connected = sc.finishConnect();
147
if (connected) {
148
done = true;
149
break;
150
}
151
Thread.sleep(10);
152
}
153
if (connected) {
154
connectSuccess++;
155
}
156
sc.close();
157
}
158
}
159
160
}
161
162