|
@@ -7,9 +7,11 @@ import java.io.EOFException;
|
|
|
import java.io.IOException;
|
|
|
import java.net.StandardProtocolFamily;
|
|
|
import java.net.UnixDomainSocketAddress;
|
|
|
+import java.nio.channels.AlreadyBoundException;
|
|
|
import java.nio.channels.AsynchronousCloseException;
|
|
|
import java.nio.channels.ClosedChannelException;
|
|
|
import java.nio.channels.ServerSocketChannel;
|
|
|
+import java.nio.channels.UnsupportedAddressTypeException;
|
|
|
import java.nio.file.Files;
|
|
|
import java.nio.file.Path;
|
|
|
import java.util.concurrent.Executor;
|
|
@@ -29,10 +31,18 @@ class Server implements IpcCommunicator {
|
|
|
public static Server create(Path socketPath) throws IOException {
|
|
|
Files.createDirectories(socketPath.getParent());
|
|
|
var address = UnixDomainSocketAddress.of(socketPath);
|
|
|
- var serverSocketChannel = ServerSocketChannel.open(StandardProtocolFamily.UNIX);
|
|
|
- serverSocketChannel.bind(address);
|
|
|
- LOG.info("Spawning IPC server listening on socket {}", socketPath);
|
|
|
- return new Server(serverSocketChannel, socketPath);
|
|
|
+ ServerSocketChannel ch = null;
|
|
|
+ try {
|
|
|
+ ch = ServerSocketChannel.open(StandardProtocolFamily.UNIX);
|
|
|
+ ch.bind(address);
|
|
|
+ LOG.info("Spawning IPC server listening on socket {}", socketPath);
|
|
|
+ return new Server(ch, socketPath);
|
|
|
+ } catch (IOException | AlreadyBoundException | UnsupportedAddressTypeException e) {
|
|
|
+ if (ch != null) {
|
|
|
+ ch.close();
|
|
|
+ }
|
|
|
+ throw e;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@Override
|