/Client/src/net/minecraft/src/SaveHandler.java

http://phantom-labs-mc.googlecode.com/ · Java · 251 lines · 181 code · 36 blank · 34 comment · 11 complexity · ba2edf938cfcc670f35ad10272d90dff MD5 · raw file

  1. package net.minecraft.src;
  2. import java.io.*;
  3. import java.util.List;
  4. import java.util.logging.Logger;
  5. public class SaveHandler implements ISaveHandler
  6. {
  7. /** Reference to the logger. */
  8. private static final Logger logger = Logger.getLogger("Minecraft");
  9. /** The path to the current savegame directory */
  10. private final File saveDirectory;
  11. /** The directory in which to save player information */
  12. private final File playersDirectory;
  13. private final File mapDataDir;
  14. /**
  15. * The time in milliseconds when this field was initialized. Stored in the session lock file.
  16. */
  17. private final long initializationTime = System.currentTimeMillis();
  18. /** The directory name of the world */
  19. private final String saveDirectoryName;
  20. public SaveHandler(File par1File, String par2Str, boolean par3)
  21. {
  22. saveDirectory = new File(par1File, par2Str);
  23. saveDirectory.mkdirs();
  24. playersDirectory = new File(saveDirectory, "players");
  25. mapDataDir = new File(saveDirectory, "data");
  26. mapDataDir.mkdirs();
  27. saveDirectoryName = par2Str;
  28. if (par3)
  29. {
  30. playersDirectory.mkdirs();
  31. }
  32. setSessionLock();
  33. }
  34. /**
  35. * Creates a session lock file for this process
  36. */
  37. private void setSessionLock()
  38. {
  39. try
  40. {
  41. File file = new File(saveDirectory, "session.lock");
  42. DataOutputStream dataoutputstream = new DataOutputStream(new FileOutputStream(file));
  43. try
  44. {
  45. dataoutputstream.writeLong(initializationTime);
  46. }
  47. finally
  48. {
  49. dataoutputstream.close();
  50. }
  51. }
  52. catch (IOException ioexception)
  53. {
  54. ioexception.printStackTrace();
  55. throw new RuntimeException("Failed to check session lock, aborting");
  56. }
  57. }
  58. /**
  59. * gets the File object corresponding to the base directory of this save (saves/404 for a save called 404 etc)
  60. */
  61. protected File getSaveDirectory()
  62. {
  63. return saveDirectory;
  64. }
  65. /**
  66. * Checks the session lock to prevent save collisions
  67. */
  68. public void checkSessionLock()
  69. {
  70. try
  71. {
  72. File file = new File(saveDirectory, "session.lock");
  73. DataInputStream datainputstream = new DataInputStream(new FileInputStream(file));
  74. try
  75. {
  76. if (datainputstream.readLong() != initializationTime)
  77. {
  78. throw new MinecraftException("The save is being accessed from another location, aborting");
  79. }
  80. }
  81. finally
  82. {
  83. datainputstream.close();
  84. }
  85. }
  86. catch (IOException ioexception)
  87. {
  88. throw new MinecraftException("Failed to check session lock, aborting");
  89. }
  90. }
  91. /**
  92. * Returns the chunk loader with the provided world provider
  93. */
  94. public IChunkLoader getChunkLoader(WorldProvider par1WorldProvider)
  95. {
  96. throw new RuntimeException("Old Chunk Storage is no longer supported.");
  97. }
  98. /**
  99. * Loads and returns the world info
  100. */
  101. public WorldInfo loadWorldInfo()
  102. {
  103. File file = new File(saveDirectory, "level.dat");
  104. if (file.exists())
  105. {
  106. try
  107. {
  108. NBTTagCompound nbttagcompound = CompressedStreamTools.readCompressed(new FileInputStream(file));
  109. NBTTagCompound nbttagcompound2 = nbttagcompound.getCompoundTag("Data");
  110. return new WorldInfo(nbttagcompound2);
  111. }
  112. catch (Exception exception)
  113. {
  114. exception.printStackTrace();
  115. }
  116. }
  117. file = new File(saveDirectory, "level.dat_old");
  118. if (file.exists())
  119. {
  120. try
  121. {
  122. NBTTagCompound nbttagcompound1 = CompressedStreamTools.readCompressed(new FileInputStream(file));
  123. NBTTagCompound nbttagcompound3 = nbttagcompound1.getCompoundTag("Data");
  124. return new WorldInfo(nbttagcompound3);
  125. }
  126. catch (Exception exception1)
  127. {
  128. exception1.printStackTrace();
  129. }
  130. }
  131. return null;
  132. }
  133. /**
  134. * saves level.dat and backs up the existing one to level.dat_old
  135. */
  136. public void saveWorldInfoAndPlayer(WorldInfo par1WorldInfo, List par2List)
  137. {
  138. NBTTagCompound nbttagcompound = par1WorldInfo.getNBTTagCompoundWithPlayers(par2List);
  139. NBTTagCompound nbttagcompound1 = new NBTTagCompound();
  140. nbttagcompound1.setTag("Data", nbttagcompound);
  141. try
  142. {
  143. File file = new File(saveDirectory, "level.dat_new");
  144. File file1 = new File(saveDirectory, "level.dat_old");
  145. File file2 = new File(saveDirectory, "level.dat");
  146. CompressedStreamTools.writeCompressed(nbttagcompound1, new FileOutputStream(file));
  147. if (file1.exists())
  148. {
  149. file1.delete();
  150. }
  151. file2.renameTo(file1);
  152. if (file2.exists())
  153. {
  154. file2.delete();
  155. }
  156. file.renameTo(file2);
  157. if (file.exists())
  158. {
  159. file.delete();
  160. }
  161. }
  162. catch (Exception exception)
  163. {
  164. exception.printStackTrace();
  165. }
  166. }
  167. /**
  168. * Saves the passed in world info.
  169. */
  170. public void saveWorldInfo(WorldInfo par1WorldInfo)
  171. {
  172. NBTTagCompound nbttagcompound = par1WorldInfo.getNBTTagCompound();
  173. NBTTagCompound nbttagcompound1 = new NBTTagCompound();
  174. nbttagcompound1.setTag("Data", nbttagcompound);
  175. try
  176. {
  177. File file = new File(saveDirectory, "level.dat_new");
  178. File file1 = new File(saveDirectory, "level.dat_old");
  179. File file2 = new File(saveDirectory, "level.dat");
  180. CompressedStreamTools.writeCompressed(nbttagcompound1, new FileOutputStream(file));
  181. if (file1.exists())
  182. {
  183. file1.delete();
  184. }
  185. file2.renameTo(file1);
  186. if (file2.exists())
  187. {
  188. file2.delete();
  189. }
  190. file.renameTo(file2);
  191. if (file.exists())
  192. {
  193. file.delete();
  194. }
  195. }
  196. catch (Exception exception)
  197. {
  198. exception.printStackTrace();
  199. }
  200. }
  201. /**
  202. * Gets the file location of the given map
  203. */
  204. public File getMapFileFromName(String par1Str)
  205. {
  206. return new File(mapDataDir, (new StringBuilder()).append(par1Str).append(".dat").toString());
  207. }
  208. /**
  209. * Returns the name of the directory where world information is saved
  210. */
  211. public String getSaveDirectoryName()
  212. {
  213. return saveDirectoryName;
  214. }
  215. }