summaryrefslogtreecommitdiff
path: root/java/src/IceBox/Admin.java
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2014-10-20 11:40:05 -0230
committerMatthew Newhook <matthew@zeroc.com>2014-10-20 11:40:05 -0230
commitb51469b41167fb86ae2059a15cf0475c53fdda7b (patch)
treefc85d6ca2efd89c67e1e4e7438f437c3e08313f4 /java/src/IceBox/Admin.java
parentFixed (ICE-5695) - IceSSL: misleading exception (diff)
downloadice-b51469b41167fb86ae2059a15cf0475c53fdda7b.tar.bz2
ice-b51469b41167fb86ae2059a15cf0475c53fdda7b.tar.xz
ice-b51469b41167fb86ae2059a15cf0475c53fdda7b.zip
Down with ant. From the gradle to the grave.
Diffstat (limited to 'java/src/IceBox/Admin.java')
-rw-r--r--java/src/IceBox/Admin.java182
1 files changed, 0 insertions, 182 deletions
diff --git a/java/src/IceBox/Admin.java b/java/src/IceBox/Admin.java
deleted file mode 100644
index 6432bd849b9..00000000000
--- a/java/src/IceBox/Admin.java
+++ /dev/null
@@ -1,182 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice is licensed to you under the terms described in the
-// ICE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-package IceBox;
-
-public final class Admin
-{
- private static class Client extends Ice.Application
- {
- private void
- usage()
- {
- System.err.println(
- "Usage: " + appName() + " [options] [command...]\n" +
- "Options:\n" +
- "-h, --help Show this message.\n" +
- "\n" +
- "Commands:\n" +
- "start SERVICE Start a service.\n" +
- "stop SERVICE Stop a service.\n" +
- "shutdown Shutdown the server.");
- }
-
- @Override
- public int
- run(String[] args)
- {
- java.util.List<String> commands = new java.util.ArrayList<String>();
-
- int idx = 0;
- while(idx < args.length)
- {
- if(args[idx].equals("-h") || args[idx].equals("--help"))
- {
- usage();
- return 1;
- }
- else if(args[idx].charAt(0) == '-')
- {
- System.err.println(appName() + ": unknown option `" + args[idx] + "'");
- usage();
- return 1;
- }
- else
- {
- commands.add(args[idx]);
- ++idx;
- }
- }
-
- if(commands.isEmpty())
- {
- usage();
- return 0;
- }
-
- Ice.ObjectPrx base = communicator().propertyToProxy("IceBoxAdmin.ServiceManager.Proxy");
-
- if(base == null)
- {
- //
- // The old deprecated way to retrieve the service manager proxy
- //
-
- Ice.Properties properties = communicator().getProperties();
-
- Ice.Identity managerIdentity = new Ice.Identity();
- managerIdentity.category = properties.getPropertyWithDefault("IceBox.InstanceName", "IceBox");
- managerIdentity.name = "ServiceManager";
-
- String managerProxy;
- if(properties.getProperty("Ice.Default.Locator").length() == 0)
- {
- String managerEndpoints = properties.getProperty("IceBox.ServiceManager.Endpoints");
- if(managerEndpoints.length() == 0)
- {
- System.err.println(appName() + ": property `IceBoxAdmin.ServiceManager.Proxy' is not set");
- return 1;
- }
-
- managerProxy = "\"" + communicator().identityToString(managerIdentity) + "\" :" + managerEndpoints;
- }
- else
- {
- String managerAdapterId = properties.getProperty("IceBox.ServiceManager.AdapterId");
- if(managerAdapterId.length() == 0)
- {
- System.err.println(appName() + ": property `IceBoxAdmin.ServiceManager.Proxy' is not set");
- return 1;
- }
-
- managerProxy = "\"" + communicator().identityToString(managerIdentity) + "\" @" + managerAdapterId;
- }
-
- base = communicator().stringToProxy(managerProxy);
- }
-
- IceBox.ServiceManagerPrx manager = IceBox.ServiceManagerPrxHelper.checkedCast(base);
- if(manager == null)
- {
- System.err.println(appName() + ": `" + base.toString() + "' is not an IceBox::ServiceManager");
- return 1;
- }
-
- for(int i = 0; i < commands.size(); i++)
- {
- String command = commands.get(i);
- if(command.equals("shutdown"))
- {
- manager.shutdown();
- }
- else if(command.equals("start"))
- {
- if(++i >= commands.size())
- {
- System.err.println(appName() + ": no service name specified.");
- return 1;
- }
-
- String service = commands.get(i);
- try
- {
- manager.startService(service);
- }
- catch(IceBox.NoSuchServiceException ex)
- {
- System.err.println(appName() + ": unknown service `" + service + "'");
- }
- catch(IceBox.AlreadyStartedException ex)
- {
- System.err.println(appName() + "service already started.");
- }
- }
- else if(command.equals("stop"))
- {
- if(++i >= commands.size())
- {
- System.err.println(appName() + ": no service name specified.");
- return 1;
- }
-
- String service = commands.get(i);
- try
- {
- manager.stopService(service);
- }
- catch(IceBox.NoSuchServiceException ex)
- {
- System.err.println(appName() + ": unknown service `" + service + "'");
- }
- catch(IceBox.AlreadyStoppedException ex)
- {
- System.err.println(appName() + "service already stopped.");
- }
- }
- else
- {
- System.err.println(appName() + ": unknown command `" + command + "'");
- usage();
- return 1;
- }
- }
-
- return 0;
- }
- }
-
- public static void
- main(String[] args)
- {
- Client app = new Client();
- int rc = app.main("IceBox.Admin", args);
-
- System.exit(rc);
- }
-}