2008-04-01 22:41:23 +00:00
|
|
|
/*
|
2012-07-17 18:01:44 +00:00
|
|
|
* Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2010-05-25 22:58:33 +00:00
|
|
|
* 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.
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
2013-12-20 23:10:11 +00:00
|
|
|
import java.rmi.NotBoundException;
|
2007-12-01 00:00:00 +00:00
|
|
|
import java.rmi.RemoteException;
|
|
|
|
import java.rmi.registry.Registry;
|
|
|
|
import java.rmi.registry.LocateRegistry;
|
|
|
|
import java.util.logging.Logger;
|
|
|
|
import java.util.logging.Level;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The ApplicationServer class provides the other server side of the "juicer"
|
|
|
|
* stress test of RMI.
|
|
|
|
*/
|
|
|
|
public class ApplicationServer implements Runnable {
|
2008-04-01 22:41:23 +00:00
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
/** number of remote Apple objects to export */
|
|
|
|
private static final Logger logger = Logger.getLogger("reliability.orange");
|
|
|
|
private static final int LOOKUP_ATTEMPTS = 5;
|
|
|
|
private static final int DEFAULT_NUMAPPLES = 10;
|
|
|
|
private static final String DEFAULT_REGISTRYHOST = "localhost";
|
2012-07-17 18:01:44 +00:00
|
|
|
private static final int DEFAULT_REGISTRYPORT = -1;
|
2007-12-01 00:00:00 +00:00
|
|
|
private final int numApples;
|
|
|
|
private final String registryHost;
|
2012-07-17 18:01:44 +00:00
|
|
|
private final int registryPort;
|
2007-12-01 00:00:00 +00:00
|
|
|
private final Apple[] apples;
|
|
|
|
private AppleUser user;
|
|
|
|
|
2012-07-17 18:01:44 +00:00
|
|
|
ApplicationServer(int registryPort) {
|
|
|
|
this(DEFAULT_NUMAPPLES, DEFAULT_REGISTRYHOST, registryPort);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2012-07-17 18:01:44 +00:00
|
|
|
ApplicationServer(int numApples, String registryHost, int registryPort) {
|
2007-12-01 00:00:00 +00:00
|
|
|
this.numApples = numApples;
|
|
|
|
this.registryHost = registryHost;
|
2012-07-17 18:01:44 +00:00
|
|
|
this.registryPort = registryPort;
|
2007-12-01 00:00:00 +00:00
|
|
|
apples = new Apple[numApples];
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* On initialization, export remote objects and register
|
|
|
|
* them with server.
|
|
|
|
*/
|
2013-12-20 23:10:11 +00:00
|
|
|
@Override
|
2007-12-01 00:00:00 +00:00
|
|
|
public void run() {
|
2008-04-01 22:41:23 +00:00
|
|
|
try {
|
|
|
|
int i = 0;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2008-04-01 22:41:23 +00:00
|
|
|
/*
|
2013-12-20 23:10:11 +00:00
|
|
|
* Locate apple user object in registry. The lookup will occur
|
|
|
|
* every 5 seconds until it is successful or timeout 50 seconds.
|
2008-04-01 22:41:23 +00:00
|
|
|
* These repeated attempts allow the ApplicationServer
|
|
|
|
* to be started before the AppleUserImpl.
|
|
|
|
*/
|
|
|
|
Exception exc = null;
|
2013-12-20 23:10:11 +00:00
|
|
|
long stopTime = System.currentTimeMillis() + LOOKUP_ATTEMPTS * 10000;
|
|
|
|
while (System.currentTimeMillis() < stopTime) {
|
2008-04-01 22:41:23 +00:00
|
|
|
try {
|
|
|
|
Registry registry = LocateRegistry.getRegistry(
|
2013-12-20 23:10:11 +00:00
|
|
|
registryHost, registryPort);
|
2008-04-01 22:41:23 +00:00
|
|
|
user = (AppleUser) registry.lookup("AppleUser");
|
|
|
|
user.startTest();
|
|
|
|
break; //successfully obtained AppleUser
|
2013-12-20 23:10:11 +00:00
|
|
|
} catch (RemoteException | NotBoundException e) {
|
2008-04-01 22:41:23 +00:00
|
|
|
exc = e;
|
2013-12-20 23:10:11 +00:00
|
|
|
Thread.sleep(5000); //sleep 5 seconds and try again
|
2008-04-01 22:41:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (user == null) {
|
|
|
|
logger.log(Level.SEVERE, "Failed to lookup AppleUser:", exc);
|
|
|
|
return;
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2008-04-01 22:41:23 +00:00
|
|
|
/*
|
|
|
|
* Create and export apple implementations.
|
|
|
|
*/
|
|
|
|
try {
|
|
|
|
for (i = 0; i < numApples; i++) {
|
|
|
|
apples[i] = new AppleImpl("AppleImpl #" + (i + 1));
|
|
|
|
}
|
|
|
|
} catch (RemoteException e) {
|
|
|
|
logger.log(Level.SEVERE,
|
|
|
|
"Failed to create AppleImpl #" + (i + 1) + ":", e);
|
|
|
|
user.reportException(e);
|
|
|
|
return;
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2008-04-01 22:41:23 +00:00
|
|
|
/*
|
|
|
|
* Hand apple objects to apple user.
|
|
|
|
*/
|
|
|
|
try {
|
|
|
|
for (i = 0; i < numApples; i++) {
|
|
|
|
user.useApple(apples[i]);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
2008-04-01 22:41:23 +00:00
|
|
|
} catch (RemoteException e) {
|
|
|
|
logger.log(Level.SEVERE,
|
|
|
|
"Failed to register callbacks for " + apples[i] + ":", e);
|
|
|
|
user.reportException(e);
|
|
|
|
}
|
2013-12-20 23:10:11 +00:00
|
|
|
} catch (InterruptedException | RemoteException e) {
|
2008-04-01 22:41:23 +00:00
|
|
|
logger.log(Level.SEVERE, "Unexpected exception:", e);
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private static void usage() {
|
2008-04-01 22:41:23 +00:00
|
|
|
System.err.println("Usage: ApplicationServer [-numApples <numApples>]");
|
|
|
|
System.err.println(" [-registryHost <host>]");
|
2012-07-17 18:01:44 +00:00
|
|
|
System.err.println(" -registryPort <port>");
|
2008-04-01 22:41:23 +00:00
|
|
|
System.err.println(" numApples The number of apples (threads) to use.");
|
|
|
|
System.err.println(" The default is 10 apples.");
|
|
|
|
System.err.println(" host The host running rmiregistry " +
|
|
|
|
"which contains AppleUser.");
|
|
|
|
System.err.println(" The default is \"localhost\".");
|
2012-07-17 18:01:44 +00:00
|
|
|
System.err.println(" port The port the rmiregistry is running" +
|
|
|
|
"on.");
|
2008-04-01 22:41:23 +00:00
|
|
|
System.err.println();
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
int num = DEFAULT_NUMAPPLES;
|
2012-07-17 18:01:44 +00:00
|
|
|
int port = -1;
|
2007-12-01 00:00:00 +00:00
|
|
|
String host = DEFAULT_REGISTRYHOST;
|
|
|
|
|
2008-04-01 22:41:23 +00:00
|
|
|
// parse command line args
|
|
|
|
try {
|
2007-12-01 00:00:00 +00:00
|
|
|
for (int i = 0; i < args.length ; i++ ) {
|
2008-04-01 22:41:23 +00:00
|
|
|
String arg = args[i];
|
2013-12-20 23:10:11 +00:00
|
|
|
switch (arg) {
|
|
|
|
case "-numApples":
|
|
|
|
i++;
|
|
|
|
num = Integer.parseInt(args[i]);
|
|
|
|
break;
|
|
|
|
case "-registryHost":
|
|
|
|
i++;
|
|
|
|
host = args[i];
|
|
|
|
break;
|
|
|
|
case "-registryPort":
|
|
|
|
i++;
|
|
|
|
port = Integer.parseInt(args[i]);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
break;
|
2008-04-01 22:41:23 +00:00
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
2012-07-17 18:01:44 +00:00
|
|
|
|
|
|
|
if (port == -1) {
|
|
|
|
usage();
|
|
|
|
throw new RuntimeException("Port must be specified.");
|
|
|
|
}
|
2008-04-01 22:41:23 +00:00
|
|
|
} catch (Throwable t) {
|
2007-12-01 00:00:00 +00:00
|
|
|
usage();
|
2008-04-01 22:41:23 +00:00
|
|
|
throw new RuntimeException("TEST FAILED: Bad argument");
|
|
|
|
}
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2008-04-01 22:41:23 +00:00
|
|
|
// start the client server
|
2012-07-17 18:01:44 +00:00
|
|
|
Thread server = new Thread(new ApplicationServer(num,host,port));
|
2008-04-01 22:41:23 +00:00
|
|
|
server.start();
|
|
|
|
// main should exit once all exported remote objects are gc'd
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
}
|