/src/net/minecraft/server/DedicatedServerConnectionThread.java

https://bitbucket.org/agaricusb/mcpc-1.4.5 · Java · 132 lines · 106 code · 24 blank · 2 comment · 14 complexity · 8a679b324f1e9fb6327bc299d6ea1bec 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. import cpw.mods.fml.common.FMLLog;
  13. public class DedicatedServerConnectionThread extends Thread {
  14. private static Logger a = Logger.getLogger("Minecraft");
  15. private final List b = Collections.synchronizedList(new ArrayList());
  16. private final HashMap c = new HashMap();
  17. private int d = 0;
  18. private final ServerSocket e;
  19. private ServerConnection f;
  20. private final InetAddress g;
  21. private final int h;
  22. long connectionThrottle; // CraftBukkit
  23. public DedicatedServerConnectionThread(ServerConnection serverconnection, InetAddress inetaddress, int i) throws IOException { // CraftBukkit - added throws
  24. super("Listen thread");
  25. this.f = serverconnection;
  26. this.h = i;
  27. this.e = new ServerSocket(i, 0, inetaddress);
  28. this.g = inetaddress == null ? this.e.getInetAddress() : inetaddress;
  29. this.e.setPerformancePreferences(0, 2, 1);
  30. }
  31. public void a() {
  32. List list = this.b;
  33. synchronized (this.b) {
  34. for (int i = 0; i < this.b.size(); ++i) {
  35. NetLoginHandler netloginhandler = (NetLoginHandler) this.b.get(i);
  36. try {
  37. netloginhandler.c();
  38. } catch (Exception exception) {
  39. netloginhandler.disconnect("Internal server error");
  40. FMLLog.log(Level.SEVERE, exception, "Error handling login related packet - connection from %s refused", new Object[] {netloginhandler.h});
  41. a.log(Level.WARNING, "Failed to handle packet for " + netloginhandler.getName() + ": " + exception, exception);
  42. }
  43. if (netloginhandler.c) {
  44. this.b.remove(i--);
  45. }
  46. netloginhandler.networkManager.a();
  47. }
  48. }
  49. }
  50. public void run() {
  51. while (this.f.b) {
  52. try {
  53. Socket socket = this.e.accept();
  54. InetAddress inetaddress = socket.getInetAddress();
  55. long i = System.currentTimeMillis();
  56. HashMap hashmap = this.c;
  57. // CraftBukkit start
  58. if (((MinecraftServer) this.f.d()).server == null) {
  59. socket.close();
  60. continue;
  61. }
  62. connectionThrottle = ((MinecraftServer) this.f.d()).server.getConnectionThrottle();
  63. // CraftBukkit end
  64. synchronized (this.c) {
  65. if (this.c.containsKey(inetaddress) && !b(inetaddress) && i - ((Long) this.c.get(inetaddress)).longValue() < connectionThrottle) {
  66. this.c.put(inetaddress, Long.valueOf(i));
  67. socket.close();
  68. continue;
  69. }
  70. this.c.put(inetaddress, Long.valueOf(i));
  71. }
  72. NetLoginHandler netloginhandler = new NetLoginHandler(this.f.d(), socket, "Connection #" + this.d++);
  73. this.a(netloginhandler);
  74. } catch (IOException ioexception) {
  75. a.warning("DSCT: " + ioexception.getMessage()); // CraftBukkit
  76. }
  77. }
  78. System.out.println("Closing listening thread");
  79. }
  80. private void a(NetLoginHandler netloginhandler) {
  81. if (netloginhandler == null) {
  82. throw new IllegalArgumentException("Got null pendingconnection!");
  83. } else {
  84. List list = this.b;
  85. synchronized (this.b) {
  86. this.b.add(netloginhandler);
  87. }
  88. }
  89. }
  90. private static boolean b(InetAddress inetaddress) {
  91. return "127.0.0.1".equals(inetaddress.getHostAddress());
  92. }
  93. public void a(InetAddress inetaddress) {
  94. if (inetaddress != null) {
  95. HashMap hashmap = this.c;
  96. synchronized (this.c) {
  97. this.c.remove(inetaddress);
  98. }
  99. }
  100. }
  101. public void b() {
  102. try {
  103. this.e.close();
  104. } catch (Throwable throwable) {
  105. ;
  106. }
  107. }
  108. }