forked from marianobarrios/tls-channel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NonBlockingClient.java
107 lines (86 loc) · 4.41 KB
/
NonBlockingClient.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package tlschannel.example;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.SelectionKey;
import java.nio.channels.Selector;
import java.nio.channels.SocketChannel;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.security.GeneralSecurityException;
import java.util.Iterator;
import javax.net.ssl.SSLContext;
import tlschannel.ClientTlsChannel;
import tlschannel.NeedsReadException;
import tlschannel.NeedsWriteException;
import tlschannel.TlsChannel;
/** Client non-blocking example. Connects to a public TLS reporting service. */
public class NonBlockingClient {
private static final Charset utf8 = StandardCharsets.UTF_8;
public static void main(String[] args) throws IOException, GeneralSecurityException {
ByteBuffer requestBuffer = ByteBuffer.wrap(SimpleBlockingClient.httpLine.getBytes(StandardCharsets.US_ASCII));
ByteBuffer responseBuffer = ByteBuffer.allocate(1000); // use small buffer to cause selector loops
boolean requestSent = false;
// initialize the SSLContext, a configuration holder, reusable object
SSLContext sslContext = SSLContext.getDefault();
Selector selector = Selector.open();
// connect raw socket channel normally
try (SocketChannel rawChannel = SocketChannel.open()) {
rawChannel.configureBlocking(false);
rawChannel.connect(new InetSocketAddress(SimpleBlockingClient.domain, 443));
// Note that the raw channel (and not the wrapped one) is registered in the selector
rawChannel.register(selector, SelectionKey.OP_CONNECT);
// create TlsChannel builder, combining the raw channel and the SSLEngine, using minimal
// options
ClientTlsChannel.Builder builder = ClientTlsChannel.newBuilder(rawChannel, sslContext);
// instantiate TlsChannel
try (TlsChannel tlsChannel = builder.build()) {
mainloop:
while (true) {
// loop blocks here
selector.select();
Iterator<SelectionKey> iterator = selector.selectedKeys().iterator();
while (iterator.hasNext()) {
SelectionKey key = iterator.next();
iterator.remove();
if (key.isConnectable()) {
if (rawChannel.finishConnect()) {
// the channel is registered for writing, because TLS connections are initiated by
// clients.
rawChannel.register(selector, SelectionKey.OP_WRITE);
}
} else if (key.isReadable() || key.isWritable()) {
try {
if (!requestSent) {
// do HTTP request
tlsChannel.write(requestBuffer);
if (requestBuffer.remaining() == 0) {
requestSent = true;
}
} else {
// handle HTTP response
int c = tlsChannel.read(responseBuffer);
if (c > 0) {
responseBuffer.flip();
System.out.print(utf8.decode(responseBuffer));
responseBuffer.compact();
}
if (c < 0) {
tlsChannel.close();
break mainloop;
}
}
} catch (NeedsReadException e) {
key.interestOps(SelectionKey.OP_READ); // overwrites previous value
} catch (NeedsWriteException e) {
key.interestOps(SelectionKey.OP_WRITE); // overwrites previous value
}
} else {
throw new IllegalStateException();
}
}
}
}
}
}
}