/framework/src/play/server/Server.java

http://github.com/playframework/play · Java · 177 lines · 148 code · 28 blank · 1 comment · 47 complexity · 2a41ec5f2dd27a9394dc4021b8532015 MD5 · raw file

  1. package play.server;
  2. import java.io.File;
  3. import java.lang.management.ManagementFactory;
  4. import java.net.InetAddress;
  5. import java.net.InetSocketAddress;
  6. import java.util.Properties;
  7. import java.util.concurrent.Executors;
  8. import org.jboss.netty.bootstrap.ServerBootstrap;
  9. import org.jboss.netty.channel.ChannelException;
  10. import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory;
  11. import play.Logger;
  12. import play.Play;
  13. import play.Play.Mode;
  14. import play.libs.IO;
  15. import play.server.ssl.SslHttpServerPipelineFactory;
  16. public class Server {
  17. public static int httpPort;
  18. public static int httpsPort;
  19. public static final String PID_FILE = "server.pid";
  20. public Server(String[] args) {
  21. System.setProperty("file.encoding", "utf-8");
  22. Properties p = Play.configuration;
  23. httpPort = Integer.parseInt(getOpt(args, "http.port", p.getProperty("http.port", "-1")));
  24. httpsPort = Integer.parseInt(getOpt(args, "https.port", p.getProperty("https.port", "-1")));
  25. if (httpPort == -1 && httpsPort == -1) {
  26. httpPort = 9000;
  27. }
  28. if (httpPort == httpsPort) {
  29. Logger.error("Could not bind on https and http on the same port " + httpPort);
  30. Play.fatalServerErrorOccurred();
  31. }
  32. InetAddress address = null;
  33. InetAddress secureAddress = null;
  34. try {
  35. if (p.getProperty("http.address") != null) {
  36. address = InetAddress.getByName(p.getProperty("http.address"));
  37. } else if (System.getProperties().containsKey("http.address")) {
  38. address = InetAddress.getByName(System.getProperty("http.address"));
  39. }
  40. } catch (Exception e) {
  41. Logger.error(e, "Could not understand http.address");
  42. Play.fatalServerErrorOccurred();
  43. }
  44. try {
  45. if (p.getProperty("https.address") != null) {
  46. secureAddress = InetAddress.getByName(p.getProperty("https.address"));
  47. } else if (System.getProperties().containsKey("https.address")) {
  48. secureAddress = InetAddress.getByName(System.getProperty("https.address"));
  49. }
  50. } catch (Exception e) {
  51. Logger.error(e, "Could not understand https.address");
  52. Play.fatalServerErrorOccurred();
  53. }
  54. try {
  55. if (httpPort != -1) {
  56. ServerBootstrap bootstrap = new ServerBootstrap(new NioServerSocketChannelFactory(
  57. Executors.newCachedThreadPool(), Executors.newCachedThreadPool())
  58. );
  59. bootstrap.setPipelineFactory(new HttpServerPipelineFactory());
  60. bootstrap.bind(new InetSocketAddress(address, httpPort));
  61. bootstrap.setOption("child.tcpNoDelay", true);
  62. if (Play.mode == Mode.DEV) {
  63. if (address == null) {
  64. Logger.info("Listening for HTTP on port %s (Waiting a first request to start) ...", httpPort);
  65. } else {
  66. Logger.info("Listening for HTTP at %2$s:%1$s (Waiting a first request to start) ...", httpPort, address);
  67. }
  68. } else {
  69. if (address == null) {
  70. Logger.info("Listening for HTTP on port %s ...", httpPort);
  71. } else {
  72. Logger.info("Listening for HTTP at %2$s:%1$s ...", httpPort, address);
  73. }
  74. }
  75. }
  76. } catch (ChannelException e) {
  77. Logger.error("Could not bind on port " + httpPort, e);
  78. Play.fatalServerErrorOccurred();
  79. }
  80. try {
  81. if (httpsPort != -1) {
  82. ServerBootstrap bootstrap = new ServerBootstrap(new NioServerSocketChannelFactory(
  83. Executors.newCachedThreadPool(), Executors.newCachedThreadPool())
  84. );
  85. bootstrap.setPipelineFactory(new SslHttpServerPipelineFactory());
  86. bootstrap.bind(new InetSocketAddress(secureAddress, httpsPort));
  87. bootstrap.setOption("child.tcpNoDelay", true);
  88. if (Play.mode == Mode.DEV) {
  89. if (secureAddress == null) {
  90. Logger.info("Listening for HTTPS on port %s (Waiting a first request to start) ...", httpsPort);
  91. } else {
  92. Logger.info("Listening for HTTPS at %2$s:%1$s (Waiting a first request to start) ...", httpsPort, secureAddress);
  93. }
  94. } else {
  95. if (secureAddress == null) {
  96. Logger.info("Listening for HTTPS on port %s ...", httpsPort);
  97. } else {
  98. Logger.info("Listening for HTTPS at %2$s:%1$s ...", httpsPort, secureAddress);
  99. }
  100. }
  101. }
  102. } catch (ChannelException e) {
  103. Logger.error("Could not bind on port " + httpsPort, e);
  104. Play.fatalServerErrorOccurred();
  105. }
  106. if (Play.mode == Mode.DEV || Play.runningInTestMode()) {
  107. // print this line to STDOUT - not using logger, so auto test runner will not block if logger is misconfigured (see #1222)
  108. System.out.println("~ Server is up and running");
  109. }
  110. }
  111. private String getOpt(String[] args, String arg, String defaultValue) {
  112. String s = "--" + arg + "=";
  113. for (String a : args) {
  114. if (a.startsWith(s)) {
  115. return a.substring(s.length());
  116. }
  117. }
  118. return defaultValue;
  119. }
  120. private static void writePID(File root) {
  121. String pid = ManagementFactory.getRuntimeMXBean().getName().split("@")[0];
  122. File pidfile = new File(root, PID_FILE);
  123. if (pidfile.exists()) {
  124. throw new RuntimeException("The " + PID_FILE + " already exists. Is the server already running?");
  125. }
  126. IO.write(pid.getBytes(), pidfile);
  127. }
  128. public static void main(String[] args) throws Exception {
  129. try {
  130. File root = new File(System.getProperty("application.path", "."));
  131. if (System.getProperty("precompiled", "false").equals("true")) {
  132. Play.usePrecompiled = true;
  133. }
  134. if (System.getProperty("writepid", "false").equals("true")) {
  135. writePID(root);
  136. }
  137. Play.init(root, System.getProperty("play.id", ""));
  138. if (System.getProperty("precompile") == null) {
  139. new Server(args);
  140. } else {
  141. Logger.info("Done.");
  142. }
  143. }
  144. catch (Throwable e) {
  145. Logger.fatal(e, "Failed to start");
  146. System.exit(1);
  147. }
  148. }
  149. }