/net/minecraft/src/SaveHandler.java

https://bitbucket.org/xXRogueCoderXx/expiration-1.3.2-v1r2 · Java · 349 lines · 248 code · 49 blank · 52 comment · 17 complexity · b1006f5cf1d0d13fec9f2a9d0b5514f2 MD5 · raw file

  1. package net.minecraft.src;
  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.util.logging.Logger;
  9. public class SaveHandler implements ISaveHandler, IPlayerFileData
  10. {
  11. /** Reference to the logger. */
  12. private static final Logger logger = Logger.getLogger("Minecraft");
  13. /** The path to the current savegame directory */
  14. private final File saveDirectory;
  15. /** The directory in which to save player information */
  16. private final File playersDirectory;
  17. private final File mapDataDir;
  18. /**
  19. * The time in milliseconds when this field was initialized. Stored in the session lock file.
  20. */
  21. private final long initializationTime = System.currentTimeMillis();
  22. /** The directory name of the world */
  23. private final String saveDirectoryName;
  24. public SaveHandler(File par1File, String par2Str, boolean par3)
  25. {
  26. this.saveDirectory = new File(par1File, par2Str);
  27. this.saveDirectory.mkdirs();
  28. this.playersDirectory = new File(this.saveDirectory, "players");
  29. this.mapDataDir = new File(this.saveDirectory, "data");
  30. this.mapDataDir.mkdirs();
  31. this.saveDirectoryName = par2Str;
  32. if (par3)
  33. {
  34. this.playersDirectory.mkdirs();
  35. }
  36. this.setSessionLock();
  37. }
  38. /**
  39. * Creates a session lock file for this process
  40. */
  41. private void setSessionLock()
  42. {
  43. try
  44. {
  45. File var1 = new File(this.saveDirectory, "session.lock");
  46. DataOutputStream var2 = new DataOutputStream(new FileOutputStream(var1));
  47. try
  48. {
  49. var2.writeLong(this.initializationTime);
  50. }
  51. finally
  52. {
  53. var2.close();
  54. }
  55. }
  56. catch (IOException var7)
  57. {
  58. var7.printStackTrace();
  59. throw new RuntimeException("Failed to check session lock, aborting");
  60. }
  61. }
  62. /**
  63. * gets the File object corresponding to the base directory of this save (saves/404 for a save called 404 etc)
  64. */
  65. protected File getSaveDirectory()
  66. {
  67. return this.saveDirectory;
  68. }
  69. /**
  70. * Checks the session lock to prevent save collisions
  71. */
  72. public void checkSessionLock() throws MinecraftException
  73. {
  74. try
  75. {
  76. File var1 = new File(this.saveDirectory, "session.lock");
  77. DataInputStream var2 = new DataInputStream(new FileInputStream(var1));
  78. try
  79. {
  80. if (var2.readLong() != this.initializationTime)
  81. {
  82. throw new MinecraftException("The save is being accessed from another location, aborting");
  83. }
  84. }
  85. finally
  86. {
  87. var2.close();
  88. }
  89. }
  90. catch (IOException var7)
  91. {
  92. throw new MinecraftException("Failed to check session lock, aborting");
  93. }
  94. }
  95. /**
  96. * Returns the chunk loader with the provided world provider
  97. */
  98. public IChunkLoader getChunkLoader(WorldProvider par1WorldProvider)
  99. {
  100. throw new RuntimeException("Old Chunk Storage is no longer supported.");
  101. }
  102. /**
  103. * Loads and returns the world info
  104. */
  105. public WorldInfo loadWorldInfo()
  106. {
  107. File var1 = new File(this.saveDirectory, "level.dat");
  108. NBTTagCompound var2;
  109. NBTTagCompound var3;
  110. if (var1.exists())
  111. {
  112. try
  113. {
  114. var2 = CompressedStreamTools.readCompressed(new FileInputStream(var1));
  115. var3 = var2.getCompoundTag("Data");
  116. return new WorldInfo(var3);
  117. }
  118. catch (Exception var5)
  119. {
  120. var5.printStackTrace();
  121. }
  122. }
  123. var1 = new File(this.saveDirectory, "level.dat_old");
  124. if (var1.exists())
  125. {
  126. try
  127. {
  128. var2 = CompressedStreamTools.readCompressed(new FileInputStream(var1));
  129. var3 = var2.getCompoundTag("Data");
  130. return new WorldInfo(var3);
  131. }
  132. catch (Exception var4)
  133. {
  134. var4.printStackTrace();
  135. }
  136. }
  137. return null;
  138. }
  139. /**
  140. * Saves the given World Info with the given NBTTagCompound as the Player.
  141. */
  142. public void saveWorldInfoWithPlayer(WorldInfo par1WorldInfo, NBTTagCompound par2NBTTagCompound)
  143. {
  144. NBTTagCompound var3 = par1WorldInfo.cloneNBTCompound(par2NBTTagCompound);
  145. NBTTagCompound var4 = new NBTTagCompound();
  146. var4.setTag("Data", var3);
  147. try
  148. {
  149. File var5 = new File(this.saveDirectory, "level.dat_new");
  150. File var6 = new File(this.saveDirectory, "level.dat_old");
  151. File var7 = new File(this.saveDirectory, "level.dat");
  152. CompressedStreamTools.writeCompressed(var4, new FileOutputStream(var5));
  153. if (var6.exists())
  154. {
  155. var6.delete();
  156. }
  157. var7.renameTo(var6);
  158. if (var7.exists())
  159. {
  160. var7.delete();
  161. }
  162. var5.renameTo(var7);
  163. if (var5.exists())
  164. {
  165. var5.delete();
  166. }
  167. }
  168. catch (Exception var8)
  169. {
  170. var8.printStackTrace();
  171. }
  172. }
  173. /**
  174. * Saves the passed in world info.
  175. */
  176. public void saveWorldInfo(WorldInfo par1WorldInfo)
  177. {
  178. NBTTagCompound var2 = par1WorldInfo.getNBTTagCompound();
  179. NBTTagCompound var3 = new NBTTagCompound();
  180. var3.setTag("Data", var2);
  181. try
  182. {
  183. File var4 = new File(this.saveDirectory, "level.dat_new");
  184. File var5 = new File(this.saveDirectory, "level.dat_old");
  185. File var6 = new File(this.saveDirectory, "level.dat");
  186. CompressedStreamTools.writeCompressed(var3, new FileOutputStream(var4));
  187. if (var5.exists())
  188. {
  189. var5.delete();
  190. }
  191. var6.renameTo(var5);
  192. if (var6.exists())
  193. {
  194. var6.delete();
  195. }
  196. var4.renameTo(var6);
  197. if (var4.exists())
  198. {
  199. var4.delete();
  200. }
  201. }
  202. catch (Exception var7)
  203. {
  204. var7.printStackTrace();
  205. }
  206. }
  207. /**
  208. * Writes the player data to disk from the specified PlayerEntityMP.
  209. */
  210. public void writePlayerData(EntityPlayer par1EntityPlayer)
  211. {
  212. try
  213. {
  214. NBTTagCompound var2 = new NBTTagCompound();
  215. par1EntityPlayer.writeToNBT(var2);
  216. File var3 = new File(this.playersDirectory, par1EntityPlayer.username + ".dat.tmp");
  217. File var4 = new File(this.playersDirectory, par1EntityPlayer.username + ".dat");
  218. CompressedStreamTools.writeCompressed(var2, new FileOutputStream(var3));
  219. if (var4.exists())
  220. {
  221. var4.delete();
  222. }
  223. var3.renameTo(var4);
  224. }
  225. catch (Exception var5)
  226. {
  227. logger.warning("Failed to save player data for " + par1EntityPlayer.username);
  228. }
  229. }
  230. /**
  231. * Reads the player data from disk into the specified PlayerEntityMP.
  232. */
  233. public void readPlayerData(EntityPlayer par1EntityPlayer)
  234. {
  235. NBTTagCompound var2 = this.getPlayerData(par1EntityPlayer.username);
  236. if (var2 != null)
  237. {
  238. par1EntityPlayer.readFromNBT(var2);
  239. }
  240. }
  241. /**
  242. * Gets the player data for the given playername as a NBTTagCompound.
  243. */
  244. public NBTTagCompound getPlayerData(String par1Str)
  245. {
  246. try
  247. {
  248. File var2 = new File(this.playersDirectory, par1Str + ".dat");
  249. if (var2.exists())
  250. {
  251. return CompressedStreamTools.readCompressed(new FileInputStream(var2));
  252. }
  253. }
  254. catch (Exception var3)
  255. {
  256. logger.warning("Failed to load player data for " + par1Str);
  257. }
  258. return null;
  259. }
  260. /**
  261. * returns null if no saveHandler is relevent (eg. SMP)
  262. */
  263. public IPlayerFileData getSaveHandler()
  264. {
  265. return this;
  266. }
  267. /**
  268. * Gets an array of Usernames there are available player.dat files for.
  269. */
  270. public String[] getAvailablePlayerDat()
  271. {
  272. String[] var1 = this.playersDirectory.list();
  273. for (int var2 = 0; var2 < var1.length; ++var2)
  274. {
  275. if (var1[var2].endsWith(".dat"))
  276. {
  277. var1[var2] = var1[var2].substring(0, var1[var2].length() - 4);
  278. }
  279. }
  280. return var1;
  281. }
  282. /**
  283. * Called to flush all changes to disk, waiting for them to complete.
  284. */
  285. public void flush() {}
  286. /**
  287. * Gets the file location of the given map
  288. */
  289. public File getMapFileFromName(String par1Str)
  290. {
  291. return new File(this.mapDataDir, par1Str + ".dat");
  292. }
  293. /**
  294. * Returns the name of the directory where world information is saved
  295. */
  296. public String getSaveDirectoryName()
  297. {
  298. return this.saveDirectoryName;
  299. }
  300. }