ArchiveWriteRequestExecution.cs 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSimulator Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using System;
  28. using System.Collections.Generic;
  29. using System.IO;
  30. using System.Reflection;
  31. using System.Xml;
  32. using log4net;
  33. using OpenMetaverse;
  34. using OpenSim.Framework;
  35. using OpenSim.Framework.Serialization;
  36. using OpenSim.Framework.Serialization.External;
  37. using OpenSim.Region.CoreModules.World.Terrain;
  38. using OpenSim.Region.Framework.Interfaces;
  39. using OpenSim.Region.Framework.Scenes;
  40. namespace OpenSim.Region.CoreModules.World.Archiver
  41. {
  42. /// <summary>
  43. /// Method called when all the necessary assets for an archive request have been received.
  44. /// </summary>
  45. public delegate void AssetsRequestCallback(
  46. ICollection<UUID> assetsFoundUuids, ICollection<UUID> assetsNotFoundUuids);
  47. /// <summary>
  48. /// Execute the write of an archive once we have received all the necessary data
  49. /// </summary>
  50. public class ArchiveWriteRequestExecution
  51. {
  52. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  53. protected ITerrainModule m_terrainModule;
  54. protected IRegionSerialiserModule m_serialiser;
  55. protected List<SceneObjectGroup> m_sceneObjects;
  56. protected Scene m_scene;
  57. protected TarArchiveWriter m_archiveWriter;
  58. protected Guid m_requestId;
  59. public ArchiveWriteRequestExecution(
  60. List<SceneObjectGroup> sceneObjects,
  61. ITerrainModule terrainModule,
  62. IRegionSerialiserModule serialiser,
  63. Scene scene,
  64. TarArchiveWriter archiveWriter,
  65. Guid requestId)
  66. {
  67. m_sceneObjects = sceneObjects;
  68. m_terrainModule = terrainModule;
  69. m_serialiser = serialiser;
  70. m_scene = scene;
  71. m_archiveWriter = archiveWriter;
  72. m_requestId = requestId;
  73. }
  74. protected internal void ReceivedAllAssets(
  75. ICollection<UUID> assetsFoundUuids, ICollection<UUID> assetsNotFoundUuids)
  76. {
  77. foreach (UUID uuid in assetsNotFoundUuids)
  78. {
  79. m_log.DebugFormat("[ARCHIVER]: Could not find asset {0}", uuid);
  80. }
  81. // m_log.InfoFormat(
  82. // "[ARCHIVER]: Received {0} of {1} assets requested",
  83. // assetsFoundUuids.Count, assetsFoundUuids.Count + assetsNotFoundUuids.Count);
  84. m_log.InfoFormat("[ARCHIVER]: Creating archive file. This may take some time.");
  85. // Write out control file
  86. m_archiveWriter.WriteFile(ArchiveConstants.CONTROL_FILE_PATH, Create0p2ControlFile());
  87. m_log.InfoFormat("[ARCHIVER]: Added control file to archive.");
  88. // Write out region settings
  89. string settingsPath
  90. = String.Format("{0}{1}.xml", ArchiveConstants.SETTINGS_PATH, m_scene.RegionInfo.RegionName);
  91. m_archiveWriter.WriteFile(settingsPath, RegionSettingsSerializer.Serialize(m_scene.RegionInfo.RegionSettings));
  92. m_log.InfoFormat("[ARCHIVER]: Added region settings to archive.");
  93. // Write out terrain
  94. string terrainPath
  95. = String.Format("{0}{1}.r32", ArchiveConstants.TERRAINS_PATH, m_scene.RegionInfo.RegionName);
  96. MemoryStream ms = new MemoryStream();
  97. m_terrainModule.SaveToStream(terrainPath, ms);
  98. m_archiveWriter.WriteFile(terrainPath, ms.ToArray());
  99. ms.Close();
  100. m_log.InfoFormat("[ARCHIVER]: Added terrain information to archive.");
  101. // Write out scene object metadata
  102. foreach (SceneObjectGroup sceneObject in m_sceneObjects)
  103. {
  104. //m_log.DebugFormat("[ARCHIVER]: Saving {0} {1}, {2}", entity.Name, entity.UUID, entity.GetType());
  105. Vector3 position = sceneObject.AbsolutePosition;
  106. string serializedObject = m_serialiser.SerializeGroupToXml2(sceneObject);
  107. string filename
  108. = string.Format(
  109. "{0}{1}_{2:000}-{3:000}-{4:000}__{5}.xml",
  110. ArchiveConstants.OBJECTS_PATH, sceneObject.Name,
  111. Math.Round(position.X), Math.Round(position.Y), Math.Round(position.Z),
  112. sceneObject.UUID);
  113. m_archiveWriter.WriteFile(filename, serializedObject);
  114. }
  115. m_log.InfoFormat("[ARCHIVER]: Added scene objects to archive.");
  116. m_archiveWriter.Close();
  117. m_log.InfoFormat("[ARCHIVER]: Finished writing out OAR for {0}", m_scene.RegionInfo.RegionName);
  118. m_scene.EventManager.TriggerOarFileSaved(m_requestId, String.Empty);
  119. }
  120. /// <summary>
  121. /// Create the control file for a 0.2 version archive
  122. /// </summary>
  123. /// <returns></returns>
  124. public static string Create0p2ControlFile()
  125. {
  126. StringWriter sw = new StringWriter();
  127. XmlTextWriter xtw = new XmlTextWriter(sw);
  128. xtw.Formatting = Formatting.Indented;
  129. xtw.WriteStartDocument();
  130. xtw.WriteStartElement("archive");
  131. xtw.WriteAttributeString("major_version", "0");
  132. xtw.WriteAttributeString("minor_version", "3");
  133. xtw.WriteStartElement("creation_info");
  134. DateTime now = DateTime.UtcNow;
  135. TimeSpan t = now - new DateTime(1970, 1, 1);
  136. xtw.WriteElementString("datetime", ((int)t.TotalSeconds).ToString());
  137. xtw.WriteElementString("id", UUID.Random().ToString());
  138. xtw.WriteEndElement();
  139. xtw.WriteEndElement();
  140. xtw.Flush();
  141. xtw.Close();
  142. String s = sw.ToString();
  143. sw.Close();
  144. return s;
  145. }
  146. }
  147. }