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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
/*
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
import java.io.*;
import java.net.BindException;
import java.net.InetSocketAddress;
import java.net.ProtocolFamily;
import java.nio.channels.Channel;
import java.nio.channels.DatagramChannel;
import java.nio.channels.Pipe;
import java.nio.channels.ServerSocketChannel;
import java.nio.channels.SocketChannel;
import java.nio.channels.spi.AbstractSelector;
import java.nio.channels.spi.SelectorProvider;
import java.time.LocalTime;
import static java.net.StandardSocketOptions.SO_REUSEADDR;
import static java.net.StandardSocketOptions.SO_REUSEPORT;
/**
* A SelectorProvider, that can be loaded by the child rmid process, whose
* inheritedChannel method will create a new server socket channel and report
* it back to the parent process, over stdout.
*/
public class RMIDSelectorProvider extends SelectorProvider {
private final SelectorProvider provider;
private ServerSocketChannel channel;
public RMIDSelectorProvider() {
provider = sun.nio.ch.DefaultSelectorProvider.create();
}
public DatagramChannel openDatagramChannel()
throws IOException
{
return provider.openDatagramChannel();
}
public DatagramChannel openDatagramChannel(ProtocolFamily family)
throws IOException
{
return provider.openDatagramChannel(family);
}
public Pipe openPipe()
throws IOException
{
return provider.openPipe();
}
public AbstractSelector openSelector()
throws IOException
{
return provider.openSelector();
}
public ServerSocketChannel openServerSocketChannel()
throws IOException
{
return provider.openServerSocketChannel();
}
public SocketChannel openSocketChannel()
throws IOException
{
return provider.openSocketChannel();
}
public synchronized Channel inheritedChannel() throws IOException {
System.out.println("RMIDSelectorProvider.inheritedChannel");
if (channel == null) {
// Create and bind a new server socket channel
channel = ServerSocketChannel.open();
// Enable SO_REUSEADDR before binding
channel.setOption(SO_REUSEADDR, true);
// Enable SO_REUSEPORT, if supported, before binding
if (channel.supportedOptions().contains(SO_REUSEPORT)) {
channel.setOption(SO_REUSEPORT, true);
}
// when it comes here, these properties should have been set with
// a valid value, but assign a default value anyway.
long timeout = Long.getLong(
"test.java.rmi.testlibrary.RMIDSelectorProvider.timeout",
200_000);
long deadline = System.currentTimeMillis() + timeout;
int port = Integer.getInteger(
"test.java.rmi.testlibrary.RMIDSelectorProvider.port", 0);
while (true) {
try {
channel.bind(new InetSocketAddress(port));
break;
} catch (BindException ex) {
System.out.format("RMIDSelectorProvider: "
+ "failed to bind to port %d due to \"%s\", at %s%n",
port, ex.getMessage(), LocalTime.now());
}
if (System.currentTimeMillis() > deadline) {
System.out.format("RMIDSelectorProvider: "
+ "fail to bind to port %d after trying for "
+ "%d seconds, exiting rmid process, at %s%n",
port, timeout/1000, LocalTime.now());
channel.close();
// can not start rmid on specific port,
// there is no need to continue run rmid.
System.exit(1);
}
try {
Thread.sleep(1000);
} catch(InterruptedException ignore) { }
}
System.out.println(RMID.EPHEMERAL_MSG + channel.socket().getLocalPort());
}
return channel;
}
}
|