/src/net/minecraft/server/WorldNBTStorage.java

https://bitbucket.org/agaricusb/mcpc-1.4.5 · Java · 295 lines · 238 code · 48 blank · 9 comment · 22 complexity · 456b5128487cf1a70c478ef9d64fdc03 MD5 · raw file

  1. package net.minecraft.server;
  2. import cpw.mods.fml.common.FMLCommonHandler;
  3. import java.io.DataInputStream;
  4. import java.io.DataOutputStream;
  5. import java.io.File;
  6. import java.io.FileInputStream;
  7. import java.io.FileOutputStream;
  8. import java.io.IOException;
  9. import java.io.InputStream;
  10. import java.io.OutputStream;
  11. import java.util.logging.Logger;
  12. // CraftBukkit start
  13. import java.util.UUID;
  14. import org.bukkit.craftbukkit.entity.CraftPlayer;
  15. // CraftBukkit end
  16. public class WorldNBTStorage implements IDataManager, PlayerFileData {
  17. private static final Logger log = Logger.getLogger("Minecraft");
  18. private final File baseDir;
  19. private final File playerDir;
  20. private final File dataDir;
  21. private final long sessionId = System.currentTimeMillis();
  22. private final String f;
  23. private UUID uuid = null; // CraftBukkit
  24. public WorldNBTStorage(File file1, String s, boolean flag) {
  25. this.baseDir = new File(file1, s);
  26. this.baseDir.mkdirs();
  27. this.playerDir = new File(this.baseDir, "players");
  28. this.dataDir = new File(this.baseDir, "data");
  29. this.dataDir.mkdirs();
  30. this.f = s;
  31. if (flag) {
  32. this.playerDir.mkdirs();
  33. }
  34. this.h();
  35. }
  36. private void h() {
  37. try {
  38. File file1 = new File(this.baseDir, "session.lock");
  39. DataOutputStream dataoutputstream = new DataOutputStream(new FileOutputStream(file1));
  40. try {
  41. dataoutputstream.writeLong(this.sessionId);
  42. } finally {
  43. dataoutputstream.close();
  44. }
  45. } catch (IOException ioexception) {
  46. ioexception.printStackTrace();
  47. throw new RuntimeException("Failed to check session lock, aborting");
  48. }
  49. }
  50. public File getDirectory() { // CraftBukkit - protected to public
  51. return this.baseDir;
  52. }
  53. public void checkSession() throws ExceptionWorldConflict { // CraftBukkit - throws ExceptionWorldConflict
  54. try {
  55. File file1 = new File(this.baseDir, "session.lock");
  56. DataInputStream datainputstream = new DataInputStream(new FileInputStream(file1));
  57. try {
  58. if (datainputstream.readLong() != this.sessionId) {
  59. throw new ExceptionWorldConflict("The save is being accessed from another location, aborting");
  60. }
  61. } finally {
  62. datainputstream.close();
  63. }
  64. } catch (IOException ioexception) {
  65. throw new ExceptionWorldConflict("Failed to check session lock, aborting");
  66. }
  67. }
  68. public IChunkLoader createChunkLoader(WorldProvider worldprovider) {
  69. throw new RuntimeException("Old Chunk Storage is no longer supported.");
  70. }
  71. /**
  72. * Loads and returns the world info
  73. */
  74. public WorldData getWorldData()
  75. {
  76. File var1 = new File(this.baseDir, "level.dat");
  77. WorldData var4 = null;
  78. NBTTagCompound var2;
  79. NBTTagCompound var3;
  80. if (var1.exists())
  81. {
  82. try
  83. {
  84. var2 = NBTCompressedStreamTools.a(new FileInputStream(var1));
  85. var3 = var2.getCompound("Data");
  86. var4 = new WorldData(var3);
  87. FMLCommonHandler.instance().handleWorldDataLoad(this, var4, var2);
  88. return var4;
  89. }
  90. catch (Exception var7)
  91. {
  92. var7.printStackTrace();
  93. }
  94. }
  95. var1 = new File(this.baseDir, "level.dat_old");
  96. if (var1.exists())
  97. {
  98. try
  99. {
  100. var2 = NBTCompressedStreamTools.a(new FileInputStream(var1));
  101. var3 = var2.getCompound("Data");
  102. var4 = new WorldData(var3);
  103. FMLCommonHandler.instance().handleWorldDataLoad(this, var4, var2);
  104. return var4;
  105. }
  106. catch (Exception var6)
  107. {
  108. var6.printStackTrace();
  109. }
  110. }
  111. return null;
  112. }
  113. public void saveWorldData(WorldData worlddata, NBTTagCompound nbttagcompound) {
  114. NBTTagCompound nbttagcompound1 = worlddata.a(nbttagcompound);
  115. NBTTagCompound nbttagcompound2 = new NBTTagCompound();
  116. nbttagcompound2.set("Data", nbttagcompound1);
  117. FMLCommonHandler.instance().handleWorldDataSave(this, worlddata, nbttagcompound2);
  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(nbttagcompound2, (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 saveWorldData(WorldData worlddata) {
  139. NBTTagCompound nbttagcompound = worlddata.a();
  140. NBTTagCompound nbttagcompound1 = new NBTTagCompound();
  141. nbttagcompound1.set("Data", nbttagcompound);
  142. FMLCommonHandler.instance().handleWorldDataSave(this, worlddata, nbttagcompound1);
  143. try {
  144. File file1 = new File(this.baseDir, "level.dat_new");
  145. File file2 = new File(this.baseDir, "level.dat_old");
  146. File file3 = new File(this.baseDir, "level.dat");
  147. NBTCompressedStreamTools.a(nbttagcompound1, (OutputStream) (new FileOutputStream(file1)));
  148. if (file2.exists()) {
  149. file2.delete();
  150. }
  151. file3.renameTo(file2);
  152. if (file3.exists()) {
  153. file3.delete();
  154. }
  155. file1.renameTo(file3);
  156. if (file1.exists()) {
  157. file1.delete();
  158. }
  159. } catch (Exception exception) {
  160. exception.printStackTrace();
  161. }
  162. }
  163. public void save(EntityHuman entityhuman) {
  164. try {
  165. NBTTagCompound nbttagcompound = new NBTTagCompound();
  166. entityhuman.d(nbttagcompound);
  167. File file1 = new File(this.playerDir, entityhuman.name + ".dat.tmp");
  168. File file2 = new File(this.playerDir, entityhuman.name + ".dat");
  169. NBTCompressedStreamTools.a(nbttagcompound, (OutputStream) (new FileOutputStream(file1)));
  170. if (file2.exists()) {
  171. file2.delete();
  172. }
  173. file1.renameTo(file2);
  174. } catch (Exception exception) {
  175. log.warning("Failed to save player data for " + entityhuman.name);
  176. }
  177. }
  178. public void load(EntityHuman entityhuman) {
  179. NBTTagCompound nbttagcompound = this.getPlayerData(entityhuman.name);
  180. if (nbttagcompound != null) {
  181. // CraftBukkit start
  182. if (entityhuman instanceof EntityPlayer) {
  183. CraftPlayer player = (CraftPlayer) entityhuman.bukkitEntity;
  184. player.setFirstPlayed(new File(playerDir, entityhuman.name + ".dat").lastModified());
  185. }
  186. // CraftBukkit end
  187. entityhuman.e(nbttagcompound);
  188. }
  189. }
  190. public NBTTagCompound getPlayerData(String s) {
  191. try {
  192. File file1 = new File(this.playerDir, s + ".dat");
  193. if (file1.exists()) {
  194. return NBTCompressedStreamTools.a((InputStream) (new FileInputStream(file1)));
  195. }
  196. } catch (Exception exception) {
  197. log.warning("Failed to load player data for " + s);
  198. }
  199. return null;
  200. }
  201. public PlayerFileData getPlayerFileData() {
  202. return this;
  203. }
  204. public String[] getSeenPlayers() {
  205. String[] astring = this.playerDir.list();
  206. for (int i = 0; i < astring.length; ++i) {
  207. if (astring[i].endsWith(".dat")) {
  208. astring[i] = astring[i].substring(0, astring[i].length() - 4);
  209. }
  210. }
  211. return astring;
  212. }
  213. public void a() {}
  214. public File getDataFile(String s) {
  215. return new File(this.dataDir, s + ".dat");
  216. }
  217. public String g() {
  218. return this.f;
  219. }
  220. // CraftBukkit start
  221. public UUID getUUID() {
  222. if (uuid != null) return uuid;
  223. try {
  224. File file1 = new File(this.baseDir, "uid.dat");
  225. if (!file1.exists()) {
  226. DataOutputStream dos = new DataOutputStream(new FileOutputStream(file1));
  227. uuid = UUID.randomUUID();
  228. dos.writeLong(uuid.getMostSignificantBits());
  229. dos.writeLong(uuid.getLeastSignificantBits());
  230. dos.close();
  231. }
  232. else {
  233. DataInputStream dis = new DataInputStream(new FileInputStream(file1));
  234. uuid = new UUID(dis.readLong(), dis.readLong());
  235. dis.close();
  236. }
  237. return uuid;
  238. }
  239. catch (IOException ex) {
  240. return null;
  241. }
  242. }
  243. public File getPlayerDir() {
  244. return playerDir;
  245. }
  246. // CraftBukkit end
  247. }