1
0

AsyncSceneObjectGroupDeleter.cs 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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 OpenSim 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.Reflection;
  30. using System.Timers;
  31. using log4net;
  32. using OpenMetaverse;
  33. using OpenMetaverse.Packets;
  34. using OpenSim.Framework;
  35. namespace OpenSim.Region.Environment.Scenes
  36. {
  37. class DeleteToInventoryHolder
  38. {
  39. public DeRezAction action;
  40. public IClientAPI remoteClient;
  41. public SceneObjectGroup objectGroup;
  42. public UUID folderID;
  43. public bool permissionToDelete;
  44. }
  45. /// <summary>
  46. /// Asynchronously derez objects. This is used to derez large number of objects to inventory without holding
  47. /// up the main client thread.
  48. /// </summary>
  49. public class AsyncSceneObjectGroupDeleter
  50. {
  51. private static readonly ILog m_log
  52. = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  53. /// <value>
  54. /// Is the deleter currently enabled?
  55. /// </value>
  56. public bool Enabled;
  57. private Timer m_inventoryTicker = new Timer(2000);
  58. private readonly Queue<DeleteToInventoryHolder> m_inventoryDeletes = new Queue<DeleteToInventoryHolder>();
  59. private Scene m_scene;
  60. public AsyncSceneObjectGroupDeleter(Scene scene)
  61. {
  62. m_scene = scene;
  63. m_inventoryTicker.AutoReset = false;
  64. m_inventoryTicker.Elapsed += InventoryRunDeleteTimer;
  65. }
  66. /// <summary>
  67. /// Delete the given object from the scene
  68. /// </summary>
  69. public void DeleteToInventory(DeRezAction action, UUID folderID,
  70. SceneObjectGroup objectGroup, IClientAPI remoteClient,
  71. bool permissionToDelete)
  72. {
  73. if (Enabled)
  74. m_inventoryTicker.Stop();
  75. lock (m_inventoryDeletes)
  76. {
  77. DeleteToInventoryHolder dtis = new DeleteToInventoryHolder();
  78. dtis.action = action;
  79. dtis.folderID = folderID;
  80. dtis.objectGroup = objectGroup;
  81. dtis.remoteClient = remoteClient;
  82. dtis.permissionToDelete = permissionToDelete;
  83. m_inventoryDeletes.Enqueue(dtis);
  84. }
  85. if (Enabled)
  86. m_inventoryTicker.Start();
  87. // Visually remove it, even if it isnt really gone yet. This means that if we crash before the object
  88. // has gone to inventory, it will reappear in the region again on restart instead of being lost.
  89. // This is not ideal since the object will still be available for manipulation when it should be, but it's
  90. // better than losing the object for now.
  91. if (permissionToDelete)
  92. objectGroup.DeleteGroup(false);
  93. }
  94. private void InventoryRunDeleteTimer(object sender, ElapsedEventArgs e)
  95. {
  96. m_log.Debug("[SCENE]: Starting send to inventory loop");
  97. while (InventoryDeQueueAndDelete())
  98. {
  99. m_log.Debug("[SCENE]: Sent item successfully to inventory, continuing...");
  100. }
  101. }
  102. /// <summary>
  103. /// Move the next object in the queue to inventory. Then delete it properly from the scene.
  104. /// </summary>
  105. /// <returns></returns>
  106. public bool InventoryDeQueueAndDelete()
  107. {
  108. DeleteToInventoryHolder x = null;
  109. try
  110. {
  111. lock (m_inventoryDeletes)
  112. {
  113. int left = m_inventoryDeletes.Count;
  114. if (left > 0)
  115. {
  116. m_log.DebugFormat(
  117. "[SCENE]: Sending object to user's inventory, {0} item(s) remaining.", left);
  118. x = m_inventoryDeletes.Dequeue();
  119. try
  120. {
  121. m_scene.DeleteToInventory(x.action, x.folderID, x.objectGroup, x.remoteClient);
  122. if (x.permissionToDelete)
  123. m_scene.DeleteSceneObject(x.objectGroup, false);
  124. }
  125. catch (Exception e)
  126. {
  127. m_log.DebugFormat("Exception background sending object: " + e);
  128. }
  129. return true;
  130. }
  131. }
  132. }
  133. catch (Exception e)
  134. {
  135. // We can't put the object group details in here since the root part may have disappeared (which is where these sit).
  136. // FIXME: This needs to be fixed.
  137. m_log.ErrorFormat(
  138. "[SCENE]: Queued sending of scene object to agent {0} {1} failed: {2}",
  139. (x != null ? x.remoteClient.Name : "unavailable"), (x != null ? x.remoteClient.AgentId.ToString() : "unavailable"), e.ToString());
  140. }
  141. m_log.Debug("[SCENE]: No objects left in inventory send queue.");
  142. return false;
  143. }
  144. }
  145. }