/net/minecraft/server/DedicatedServerConnectionThread.java

https://bitbucket.org/agaricusb/mc-dev · Java · 119 lines · 98 code · 21 blank · 0 comment · 12 complexity · 7ea2d28f19758d678e03ddfe92a6f18c MD5 · raw file

  1. package net.minecraft.server;
  2. import java.io.IOException;
  3. import java.net.InetAddress;
  4. import java.net.ServerSocket;
  5. import java.net.Socket;
  6. import java.util.ArrayList;
  7. import java.util.Collections;
  8. import java.util.HashMap;
  9. import java.util.List;
  10. import java.util.logging.Level;
  11. import java.util.logging.Logger;
  12. public class DedicatedServerConnectionThread extends Thread {
  13. private static Logger a = Logger.getLogger("Minecraft");
  14. private final List b = Collections.synchronizedList(new ArrayList());
  15. private final HashMap c = new HashMap();
  16. private int d = 0;
  17. private final ServerSocket e;
  18. private ServerConnection f;
  19. private final InetAddress g;
  20. private final int h;
  21. public DedicatedServerConnectionThread(ServerConnection serverconnection, InetAddress inetaddress, int i) {
  22. super("Listen thread");
  23. this.f = serverconnection;
  24. this.h = i;
  25. this.e = new ServerSocket(i, 0, inetaddress);
  26. this.g = inetaddress == null ? this.e.getInetAddress() : inetaddress;
  27. this.e.setPerformancePreferences(0, 2, 1);
  28. }
  29. public void a() {
  30. List list = this.b;
  31. synchronized (this.b) {
  32. for (int i = 0; i < this.b.size(); ++i) {
  33. NetLoginHandler netloginhandler = (NetLoginHandler) this.b.get(i);
  34. try {
  35. netloginhandler.c();
  36. } catch (Exception exception) {
  37. netloginhandler.disconnect("Internal server error");
  38. a.log(Level.WARNING, "Failed to handle packet for " + netloginhandler.getName() + ": " + exception, exception);
  39. }
  40. if (netloginhandler.c) {
  41. this.b.remove(i--);
  42. }
  43. netloginhandler.networkManager.a();
  44. }
  45. }
  46. }
  47. public void run() {
  48. while (this.f.b) {
  49. try {
  50. Socket socket = this.e.accept();
  51. InetAddress inetaddress = socket.getInetAddress();
  52. long i = System.currentTimeMillis();
  53. HashMap hashmap = this.c;
  54. synchronized (this.c) {
  55. if (this.c.containsKey(inetaddress) && !b(inetaddress) && i - ((Long) this.c.get(inetaddress)).longValue() < 4000L) {
  56. this.c.put(inetaddress, Long.valueOf(i));
  57. socket.close();
  58. continue;
  59. }
  60. this.c.put(inetaddress, Long.valueOf(i));
  61. }
  62. NetLoginHandler netloginhandler = new NetLoginHandler(this.f.d(), socket, "Connection #" + this.d++);
  63. this.a(netloginhandler);
  64. } catch (IOException ioexception) {
  65. ioexception.printStackTrace();
  66. }
  67. }
  68. System.out.println("Closing listening thread");
  69. }
  70. private void a(NetLoginHandler netloginhandler) {
  71. if (netloginhandler == null) {
  72. throw new IllegalArgumentException("Got null pendingconnection!");
  73. } else {
  74. List list = this.b;
  75. synchronized (this.b) {
  76. this.b.add(netloginhandler);
  77. }
  78. }
  79. }
  80. private static boolean b(InetAddress inetaddress) {
  81. return "127.0.0.1".equals(inetaddress.getHostAddress());
  82. }
  83. public void a(InetAddress inetaddress) {
  84. if (inetaddress != null) {
  85. HashMap hashmap = this.c;
  86. synchronized (this.c) {
  87. this.c.remove(inetaddress);
  88. }
  89. }
  90. }
  91. public void b() {
  92. try {
  93. this.e.close();
  94. } catch (Throwable throwable) {
  95. ;
  96. }
  97. }
  98. }