/src/main/java/com/mcbouncer/auth/mcbauthserver/AuthServer.java

https://bitbucket.org/yetanotherx/mcbauthserver · Java · 99 lines · 74 code · 24 blank · 1 comment · 0 complexity · aa34004595326eebc7690c1d181ee29f MD5 · raw file

  1. package com.mcbouncer.auth.mcbauthserver;
  2. import com.beust.jcommander.JCommander;
  3. import com.mcbouncer.auth.mcbauthserver.console.ConsoleLogManager;
  4. import com.mcbouncer.auth.mcbauthserver.net.MinecraftPipelineFactory;
  5. import com.mcbouncer.auth.mcbauthserver.net.SessionRegistry;
  6. import java.net.InetSocketAddress;
  7. import java.net.SocketAddress;
  8. import java.util.Timer;
  9. import java.util.concurrent.ExecutorService;
  10. import java.util.concurrent.Executors;
  11. import java.util.logging.Logger;
  12. import org.jboss.netty.bootstrap.ServerBootstrap;
  13. import org.jboss.netty.channel.ChannelFactory;
  14. import org.jboss.netty.channel.ChannelPipelineFactory;
  15. import org.jboss.netty.channel.group.ChannelGroup;
  16. import org.jboss.netty.channel.group.DefaultChannelGroup;
  17. import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory;
  18. public final class AuthServer {
  19. public static final Logger log = Logger.getLogger("MCBAuthServer");
  20. public static CLIArgs settings;
  21. public static int PROTOCOL_VERSION;
  22. private final ExecutorService executor = Executors.newCachedThreadPool();
  23. private final ServerBootstrap bootstrap = new ServerBootstrap();
  24. private final ChannelGroup group = new DefaultChannelGroup();
  25. private final SessionRegistry sessions = new SessionRegistry();
  26. private Timer timer = new Timer();
  27. public static void main(String[] args) {
  28. AuthServer server = new AuthServer(args);
  29. }
  30. public AuthServer(String[] args) {
  31. ConsoleLogManager.init();
  32. log.info("Starting MCBouncer Authentication Server");
  33. log.info("Custom Written for MCBouncer by Yetanotherx");
  34. log.info("Based on code from Glowstone");
  35. log.info("Enjoy.");
  36. log.info(" ");
  37. log.info(" ");
  38. ChannelFactory factory = new NioServerSocketChannelFactory(executor, executor);
  39. bootstrap.setFactory(factory);
  40. ChannelPipelineFactory pipelineFactory = new MinecraftPipelineFactory(this);
  41. bootstrap.setPipelineFactory(pipelineFactory);
  42. settings = new CLIArgs();
  43. JCommander jcommander = new JCommander(settings, args);
  44. PROTOCOL_VERSION = settings.version;
  45. timer.scheduleAtFixedRate(new AuthServerTimerTask(this), 0, 50);
  46. bind(new InetSocketAddress(25565));
  47. log.info("Ready for connections.");
  48. Runtime.getRuntime().addShutdownHook(new ServerShutdownThread());
  49. }
  50. public void bind(SocketAddress address) {
  51. log.info("Listening to address " + address);
  52. group.add(bootstrap.bind(address));
  53. }
  54. public void stop() {
  55. log.info("Shutting down the server!");
  56. // Gracefully stop Netty
  57. group.close();
  58. bootstrap.getFactory().releaseExternalResources();
  59. }
  60. public ServerBootstrap getBootstrap() {
  61. return bootstrap;
  62. }
  63. public ExecutorService getExecutor() {
  64. return executor;
  65. }
  66. public ChannelGroup getChannelGroup() {
  67. return group;
  68. }
  69. public SessionRegistry getSessionRegistry() {
  70. return sessions;
  71. }
  72. public Logger getLogger() {
  73. return AuthServer.log;
  74. }
  75. }