IceBox.Server Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icebox-compat Show documentation
Show all versions of icebox-compat Show documentation
IceBox is an easy-to-use framework for Ice application services
// **********************************************************************
//
// Copyright (c) 2003-2018 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 Server extends Ice.Application
{
private static void
usage()
{
System.err.println("Usage: IceBox.Server [options] --Ice.Config=\n");
System.err.println(
"Options:\n" +
"-h, --help Show this message.\n"
);
}
public static void
main(String[] args)
{
Ice.InitializationData initData = new Ice.InitializationData();
initData.properties = Ice.Util.createProperties();
initData.properties.setProperty("Ice.Admin.DelayCreation", "1");
Server server = new Server();
System.exit(server.main("IceBox.Server", args, initData));
}
@Override
public int
run(String[] args)
{
final String prefix = "IceBox.Service.";
Ice.Properties properties = communicator().getProperties();
java.util.Map services = properties.getPropertiesForPrefix(prefix);
java.util.List argSeq = new java.util.ArrayList(args.length);
for(String s : args)
{
argSeq.add(s);
}
for(java.util.Map.Entry entry : services.entrySet())
{
String name = entry.getKey().substring(prefix.length());
for(int i = 0; i < argSeq.size(); ++i)
{
if(argSeq.get(i).startsWith("--" + name))
{
argSeq.remove(i);
i--;
}
}
}
for(String arg : argSeq)
{
if(arg.equals("-h") || arg.equals("--help"))
{
usage();
return 0;
}
else
{
System.err.println("Server: unknown option `" + arg + "'");
usage();
return 1;
}
}
ServiceManagerI serviceManagerImpl = new ServiceManagerI(communicator(), args);
return serviceManagerImpl.run();
}
}