/autosave/AutoSaveThread.java

https://bitbucket.org/agaricusb/autoworldsave · Java · 168 lines · 144 code · 22 blank · 2 comment · 18 complexity · 58a4741508c4e3d339aaf06c20c4a7b5 MD5 · raw file

  1. package autosave;
  2. import autosave.AutoSave;
  3. import autosave.AutoSaveConfig;
  4. import autosave.AutoSaveConfigMSG;
  5. import autosave.Generic;
  6. import autosave.Mode;
  7. import java.util.Date;
  8. import java.util.Iterator;
  9. import java.util.logging.Logger;
  10. public class AutoSaveThread extends Thread
  11. {
  12. protected final Logger log = Logger.getLogger("Minecraft");
  13. private boolean run = true;
  14. private AutoSave plugin = null;
  15. private AutoSaveConfig config;
  16. private AutoSaveConfigMSG configmsg;
  17. // $FF: synthetic field
  18. private static int[] $SWITCH_TABLE$autosave$Mode;
  19. AutoSaveThread(AutoSave plugin, AutoSaveConfig config, AutoSaveConfigMSG configmsg)
  20. {
  21. this.plugin = plugin;
  22. this.config = config;
  23. this.configmsg = configmsg;
  24. }
  25. public void setRun(boolean run)
  26. {
  27. this.run = run;
  28. }
  29. public void run()
  30. {
  31. if (this.config != null)
  32. {
  33. this.log.info(String.format("[%s] AutoSaveThread Started: Interval is %d seconds, Warn Times are %s", new Object[] {this.plugin.getDescription().getName(), Integer.valueOf(this.config.varInterval), Generic.join(",", this.config.varWarnTimes)}));
  34. while (this.run)
  35. {
  36. if (this.config.varInterval == 0)
  37. {
  38. try
  39. {
  40. Thread.sleep(5000L);
  41. }
  42. catch (InterruptedException var5)
  43. {
  44. ;
  45. }
  46. }
  47. else
  48. {
  49. for (int i = 0; i < this.config.varInterval; ++i)
  50. {
  51. try
  52. {
  53. if (!this.run)
  54. {
  55. if (this.config.varDebug)
  56. {
  57. this.log.info(String.format("[%s] Graceful quit of AutoSaveThread", new Object[] {this.plugin.getDescription().getName()}));
  58. }
  59. return;
  60. }
  61. boolean e = false;
  62. Iterator var4 = this.config.varWarnTimes.iterator();
  63. while (var4.hasNext())
  64. {
  65. int w = ((Integer)var4.next()).intValue();
  66. if (w != 0 && w + i == this.config.varInterval)
  67. {
  68. e = true;
  69. }
  70. }
  71. if (e)
  72. {
  73. if (this.config.varDebug)
  74. {
  75. this.log.info(String.format("[%s] Warning Time Reached: %d seconds to go.", new Object[] {this.plugin.getDescription().getName(), Integer.valueOf(this.config.varInterval - i)}));
  76. }
  77. this.plugin.getServer().broadcastMessage(Generic.parseColor(this.configmsg.messageWarning));
  78. this.log.info(String.format("[%s] %s", new Object[] {this.plugin.getDescription().getName(), this.configmsg.messageWarning}));
  79. }
  80. Thread.sleep(1000L);
  81. }
  82. catch (InterruptedException var6)
  83. {
  84. this.log.info("Could not sleep!");
  85. }
  86. }
  87. switch ($SWITCH_TABLE$autosave$Mode()[this.config.varMode.ordinal()])
  88. {
  89. case 1:
  90. this.plugin.getServer().getScheduler().runTaskAsynchronously(this.plugin, new Runnable()
  91. {
  92. public void run()
  93. {
  94. AutoSaveThread.this.plugin.performSave();
  95. AutoSaveThread.this.plugin.lastSave = new Date();
  96. }
  97. });
  98. break;
  99. case 2:
  100. this.plugin.getServer().getScheduler().scheduleSyncDelayedTask(this.plugin, new Runnable()
  101. {
  102. public void run()
  103. {
  104. AutoSaveThread.this.plugin.performSave();
  105. AutoSaveThread.this.plugin.lastSave = new Date();
  106. }
  107. });
  108. break;
  109. default:
  110. this.log.warning(String.format("[%s] Invalid configuration mode!", new Object[] {this.plugin.getDescription().getName()}));
  111. }
  112. }
  113. }
  114. }
  115. }
  116. // $FF: synthetic method
  117. static int[] $SWITCH_TABLE$autosave$Mode()
  118. {
  119. if ($SWITCH_TABLE$autosave$Mode != null)
  120. {
  121. return $SWITCH_TABLE$autosave$Mode;
  122. }
  123. else
  124. {
  125. int[] var0 = new int[Mode.values().length];
  126. try
  127. {
  128. var0[Mode.ASYNCHRONOUS.ordinal()] = 1;
  129. }
  130. catch (NoSuchFieldError var2)
  131. {
  132. ;
  133. }
  134. try
  135. {
  136. var0[Mode.SYNCHRONOUS.ordinal()] = 2;
  137. }
  138. catch (NoSuchFieldError var1)
  139. {
  140. ;
  141. }
  142. $SWITCH_TABLE$autosave$Mode = var0;
  143. return var0;
  144. }
  145. }
  146. }