2010-09-11 17:59:11 +02:00
|
|
|
/*
|
|
|
|
|
* To change this template, choose Tools | Templates
|
|
|
|
|
* and open the template in the editor.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package sonia.scm.server;
|
|
|
|
|
|
|
|
|
|
//~--- non-JDK imports --------------------------------------------------------
|
|
|
|
|
|
2010-10-16 11:03:54 +02:00
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
|
2010-09-11 17:59:11 +02:00
|
|
|
import sonia.scm.cli.CliException;
|
|
|
|
|
import sonia.scm.cli.CliParser;
|
|
|
|
|
import sonia.scm.cli.DefaultCliHelpBuilder;
|
|
|
|
|
import sonia.scm.util.ServiceUtil;
|
|
|
|
|
|
|
|
|
|
//~--- JDK imports ------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.io.InputStream;
|
|
|
|
|
|
|
|
|
|
import javax.xml.bind.JAXB;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @author Sebastian Sdorra
|
|
|
|
|
*/
|
|
|
|
|
public class ServerApplication
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/** Field description */
|
|
|
|
|
public static final String APPINFO = "/app-info.xml";
|
|
|
|
|
|
|
|
|
|
/** Field description */
|
|
|
|
|
public static final int RETURNCODE_CLI_ERROR = 2;
|
|
|
|
|
|
|
|
|
|
/** Field description */
|
|
|
|
|
public static final int RETURNCODE_MISSING_APPINFO = 1;
|
|
|
|
|
|
|
|
|
|
/** Field description */
|
|
|
|
|
public static final int RETURNCODE_MISSING_SERVER_IMPLEMENTATION = 3;
|
|
|
|
|
|
|
|
|
|
/** Field description */
|
|
|
|
|
private static final Logger logger =
|
2010-10-16 11:03:54 +02:00
|
|
|
LoggerFactory.getLogger(ServerApplication.class.getName());
|
2010-09-11 17:59:11 +02:00
|
|
|
|
|
|
|
|
//~--- methods --------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param args
|
|
|
|
|
*
|
|
|
|
|
* @throws CliException
|
|
|
|
|
* @throws IOException
|
|
|
|
|
* @throws ServerException
|
|
|
|
|
*/
|
|
|
|
|
public static void main(String[] args)
|
|
|
|
|
throws CliException, ServerException, IOException
|
|
|
|
|
{
|
|
|
|
|
InputStream input = ServerApplication.class.getResourceAsStream(APPINFO);
|
|
|
|
|
|
|
|
|
|
if (input == null)
|
|
|
|
|
{
|
|
|
|
|
System.err.println("could not find /app-info.xml in classpath");
|
|
|
|
|
System.exit(RETURNCODE_MISSING_APPINFO);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ApplicationInformation appInfo = JAXB.unmarshal(input,
|
|
|
|
|
ApplicationInformation.class);
|
|
|
|
|
ServerConfig config = new ServerConfig();
|
|
|
|
|
CliParser parser = new CliParser();
|
|
|
|
|
|
|
|
|
|
parser.parse(parser, args);
|
|
|
|
|
|
|
|
|
|
if (config.getShowHelp())
|
|
|
|
|
{
|
|
|
|
|
printHelp(appInfo, parser, config);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
final Server server = ServiceUtil.getService(Server.class);
|
|
|
|
|
|
|
|
|
|
if (server == null)
|
|
|
|
|
{
|
|
|
|
|
System.err.println("could not find an server implementation");
|
|
|
|
|
System.exit(RETURNCODE_MISSING_SERVER_IMPLEMENTATION);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
File webapp = new File("webapp", appInfo.getAppName());
|
|
|
|
|
|
|
|
|
|
server.start(config, webapp);
|
|
|
|
|
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable()
|
|
|
|
|
{
|
|
|
|
|
@Override
|
|
|
|
|
public void run()
|
|
|
|
|
{
|
|
|
|
|
if (server.isRunning())
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
server.stop();
|
|
|
|
|
}
|
|
|
|
|
catch (ServerException ex)
|
|
|
|
|
{
|
2010-10-16 11:03:54 +02:00
|
|
|
logger.error(ex.getMessage(), ex);
|
2010-09-11 17:59:11 +02:00
|
|
|
}
|
|
|
|
|
catch (IOException ex)
|
|
|
|
|
{
|
2010-10-16 11:03:54 +02:00
|
|
|
logger.error(ex.getMessage(), ex);
|
2010-09-11 17:59:11 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
2010-10-16 11:03:54 +02:00
|
|
|
*
|
|
|
|
|
* @param appInfo
|
2010-09-11 17:59:11 +02:00
|
|
|
* @param parser
|
|
|
|
|
* @param config
|
|
|
|
|
*/
|
2010-10-16 11:03:54 +02:00
|
|
|
private static void printHelp(ApplicationInformation appInfo,
|
|
|
|
|
CliParser parser, ServerConfig config)
|
2010-09-11 17:59:11 +02:00
|
|
|
{
|
|
|
|
|
String s = System.getProperty("line.separator");
|
|
|
|
|
StringBuilder prefix = new StringBuilder(appInfo.getName());
|
|
|
|
|
|
2010-10-16 11:03:54 +02:00
|
|
|
prefix.append(" ").append(appInfo.getVersion());
|
2010-09-11 17:59:11 +02:00
|
|
|
prefix.append(s).append("usage: ");
|
|
|
|
|
prefix.append(s);
|
|
|
|
|
|
|
|
|
|
DefaultCliHelpBuilder helpBuilder =
|
|
|
|
|
new DefaultCliHelpBuilder(prefix.toString(), null);
|
|
|
|
|
|
|
|
|
|
System.err.println(parser.createHelp(helpBuilder, config));
|
|
|
|
|
System.exit(RETURNCODE_CLI_ERROR);
|
|
|
|
|
}
|
|
|
|
|
}
|