/net/minecraft/server/WorldNBTStorage.java

https://bitbucket.org/agaricusb/mc-dev · Java · 232 lines · 189 code · 43 blank · 0 comment · 17 complexity · 018a5d8dfa11380f3426dfb76f354fcf MD5 · raw file

  1. package net.minecraft.server;
  2. import java.io.DataInputStream;
  3. import java.io.DataOutputStream;
  4. import java.io.File;
  5. import java.io.FileInputStream;
  6. import java.io.FileOutputStream;
  7. import java.io.IOException;
  8. import java.io.InputStream;
  9. import java.io.OutputStream;
  10. import java.util.logging.Logger;
  11. public class WorldNBTStorage implements IDataManager, PlayerFileData {
  12. private static final Logger log = Logger.getLogger("Minecraft");
  13. private final File baseDir;
  14. private final File playerDir;
  15. private final File dataDir;
  16. private final long sessionId = System.currentTimeMillis();
  17. private final String f;
  18. public WorldNBTStorage(File file1, String s, boolean flag) {
  19. this.baseDir = new File(file1, s);
  20. this.baseDir.mkdirs();
  21. this.playerDir = new File(this.baseDir, "players");
  22. this.dataDir = new File(this.baseDir, "data");
  23. this.dataDir.mkdirs();
  24. this.f = s;
  25. if (flag) {
  26. this.playerDir.mkdirs();
  27. }
  28. this.h();
  29. }
  30. private void h() {
  31. try {
  32. File file1 = new File(this.baseDir, "session.lock");
  33. DataOutputStream dataoutputstream = new DataOutputStream(new FileOutputStream(file1));
  34. try {
  35. dataoutputstream.writeLong(this.sessionId);
  36. } finally {
  37. dataoutputstream.close();
  38. }
  39. } catch (IOException ioexception) {
  40. ioexception.printStackTrace();
  41. throw new RuntimeException("Failed to check session lock, aborting");
  42. }
  43. }
  44. protected File getDirectory() {
  45. return this.baseDir;
  46. }
  47. public void checkSession() {
  48. try {
  49. File file1 = new File(this.baseDir, "session.lock");
  50. DataInputStream datainputstream = new DataInputStream(new FileInputStream(file1));
  51. try {
  52. if (datainputstream.readLong() != this.sessionId) {
  53. throw new ExceptionWorldConflict("The save is being accessed from another location, aborting");
  54. }
  55. } finally {
  56. datainputstream.close();
  57. }
  58. } catch (IOException ioexception) {
  59. throw new ExceptionWorldConflict("Failed to check session lock, aborting");
  60. }
  61. }
  62. public IChunkLoader createChunkLoader(WorldProvider worldprovider) {
  63. throw new RuntimeException("Old Chunk Storage is no longer supported.");
  64. }
  65. public WorldData getWorldData() {
  66. File file1 = new File(this.baseDir, "level.dat");
  67. NBTTagCompound nbttagcompound;
  68. NBTTagCompound nbttagcompound1;
  69. if (file1.exists()) {
  70. try {
  71. nbttagcompound = NBTCompressedStreamTools.a((InputStream) (new FileInputStream(file1)));
  72. nbttagcompound1 = nbttagcompound.getCompound("Data");
  73. return new WorldData(nbttagcompound1);
  74. } catch (Exception exception) {
  75. exception.printStackTrace();
  76. }
  77. }
  78. file1 = new File(this.baseDir, "level.dat_old");
  79. if (file1.exists()) {
  80. try {
  81. nbttagcompound = NBTCompressedStreamTools.a((InputStream) (new FileInputStream(file1)));
  82. nbttagcompound1 = nbttagcompound.getCompound("Data");
  83. return new WorldData(nbttagcompound1);
  84. } catch (Exception exception1) {
  85. exception1.printStackTrace();
  86. }
  87. }
  88. return null;
  89. }
  90. public void saveWorldData(WorldData worlddata, NBTTagCompound nbttagcompound) {
  91. NBTTagCompound nbttagcompound1 = worlddata.a(nbttagcompound);
  92. NBTTagCompound nbttagcompound2 = new NBTTagCompound();
  93. nbttagcompound2.set("Data", nbttagcompound1);
  94. try {
  95. File file1 = new File(this.baseDir, "level.dat_new");
  96. File file2 = new File(this.baseDir, "level.dat_old");
  97. File file3 = new File(this.baseDir, "level.dat");
  98. NBTCompressedStreamTools.a(nbttagcompound2, (OutputStream) (new FileOutputStream(file1)));
  99. if (file2.exists()) {
  100. file2.delete();
  101. }
  102. file3.renameTo(file2);
  103. if (file3.exists()) {
  104. file3.delete();
  105. }
  106. file1.renameTo(file3);
  107. if (file1.exists()) {
  108. file1.delete();
  109. }
  110. } catch (Exception exception) {
  111. exception.printStackTrace();
  112. }
  113. }
  114. public void saveWorldData(WorldData worlddata) {
  115. NBTTagCompound nbttagcompound = worlddata.a();
  116. NBTTagCompound nbttagcompound1 = new NBTTagCompound();
  117. nbttagcompound1.set("Data", nbttagcompound);
  118. try {
  119. File file1 = new File(this.baseDir, "level.dat_new");
  120. File file2 = new File(this.baseDir, "level.dat_old");
  121. File file3 = new File(this.baseDir, "level.dat");
  122. NBTCompressedStreamTools.a(nbttagcompound1, (OutputStream) (new FileOutputStream(file1)));
  123. if (file2.exists()) {
  124. file2.delete();
  125. }
  126. file3.renameTo(file2);
  127. if (file3.exists()) {
  128. file3.delete();
  129. }
  130. file1.renameTo(file3);
  131. if (file1.exists()) {
  132. file1.delete();
  133. }
  134. } catch (Exception exception) {
  135. exception.printStackTrace();
  136. }
  137. }
  138. public void save(EntityHuman entityhuman) {
  139. try {
  140. NBTTagCompound nbttagcompound = new NBTTagCompound();
  141. entityhuman.d(nbttagcompound);
  142. File file1 = new File(this.playerDir, entityhuman.name + ".dat.tmp");
  143. File file2 = new File(this.playerDir, entityhuman.name + ".dat");
  144. NBTCompressedStreamTools.a(nbttagcompound, (OutputStream) (new FileOutputStream(file1)));
  145. if (file2.exists()) {
  146. file2.delete();
  147. }
  148. file1.renameTo(file2);
  149. } catch (Exception exception) {
  150. log.warning("Failed to save player data for " + entityhuman.name);
  151. }
  152. }
  153. public void load(EntityHuman entityhuman) {
  154. NBTTagCompound nbttagcompound = this.getPlayerData(entityhuman.name);
  155. if (nbttagcompound != null) {
  156. entityhuman.e(nbttagcompound);
  157. }
  158. }
  159. public NBTTagCompound getPlayerData(String s) {
  160. try {
  161. File file1 = new File(this.playerDir, s + ".dat");
  162. if (file1.exists()) {
  163. return NBTCompressedStreamTools.a((InputStream) (new FileInputStream(file1)));
  164. }
  165. } catch (Exception exception) {
  166. log.warning("Failed to load player data for " + s);
  167. }
  168. return null;
  169. }
  170. public PlayerFileData getPlayerFileData() {
  171. return this;
  172. }
  173. public String[] getSeenPlayers() {
  174. String[] astring = this.playerDir.list();
  175. for (int i = 0; i < astring.length; ++i) {
  176. if (astring[i].endsWith(".dat")) {
  177. astring[i] = astring[i].substring(0, astring[i].length() - 4);
  178. }
  179. }
  180. return astring;
  181. }
  182. public void a() {}
  183. public File getDataFile(String s) {
  184. return new File(this.dataDir, s + ".dat");
  185. }
  186. public String g() {
  187. return this.f;
  188. }
  189. }