com.mongodb.client.internal.KeyManagementService Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2008-present MongoDB, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.mongodb.client.internal;
import com.mongodb.ServerAddress;
import javax.net.ssl.SSLContext;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.Socket;
import java.nio.ByteBuffer;
class KeyManagementService {
private final SSLContext sslContext;
private final int defaultPort;
private final int timeoutMillis;
KeyManagementService(final SSLContext sslContext, final int defaultPort, final int timeoutMillis) {
this.sslContext = sslContext;
this.defaultPort = defaultPort;
this.timeoutMillis = timeoutMillis;
}
public InputStream stream(final String host, final ByteBuffer message) throws IOException {
ServerAddress serverAddress = host.contains(":") ? new ServerAddress(host) : new ServerAddress(host, defaultPort);
Socket socket = sslContext.getSocketFactory().createSocket();
try {
socket.setSoTimeout(timeoutMillis);
socket.connect(serverAddress.getSocketAddress(), timeoutMillis);
} catch (IOException e) {
closeSocket(socket);
throw e;
}
try {
OutputStream outputStream = socket.getOutputStream();
byte[] bytes = new byte[message.remaining()];
message.get(bytes);
outputStream.write(bytes);
} catch (IOException e) {
closeSocket(socket);
throw e;
}
try {
return socket.getInputStream();
} catch (IOException e) {
closeSocket(socket);
throw e;
}
}
public int getDefaultPort() {
return defaultPort;
}
private void closeSocket(final Socket socket) {
try {
socket.close();
} catch (IOException e) {
// ignore
}
}
}