IInventoryArchiverModule.cs 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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.IO;
  29. using OpenSim.Framework.Communications.Cache;
  30. namespace OpenSim.Region.Framework.Interfaces
  31. {
  32. /// <summary>
  33. /// Used for the OnInventoryArchiveSaved event.
  34. /// </summary>
  35. /// <param name="id">Request id</param>
  36. /// <param name="succeeded">true if the save succeeded, false otherwise</param>
  37. /// <param name="userInfo">The user for whom the save was conducted</param>
  38. /// <param name="invPath">The inventory path saved</param>
  39. /// <param name="savePath">The stream to which the archive was saved</param>
  40. /// <param name="reportedException">Contains the exception generated if the save did not succeed</param>
  41. public delegate void InventoryArchiveSaved(
  42. Guid id, bool succeeded, CachedUserInfo userInfo, string invPath, Stream saveStream, Exception reportedException);
  43. public interface IInventoryArchiverModule
  44. {
  45. /// <summary>
  46. /// Fired when an archive inventory save has been completed.
  47. /// </summary>
  48. event InventoryArchiveSaved OnInventoryArchiveSaved;
  49. /// <summary>
  50. /// Dearchive a user's inventory folder from the given stream
  51. /// </summary>
  52. /// <param name="firstName"></param>
  53. /// <param name="lastName"></param>
  54. /// <param name="invPath">The inventory path in which to place the loaded folders and items</param>
  55. /// <param name="loadStream">The stream from which the inventory archive will be loaded</param>
  56. /// <returns>true if the first stage of the operation succeeded, false otherwise</returns>
  57. bool DearchiveInventory(string firstName, string lastName, string invPath, string pass, Stream loadStream);
  58. /// <summary>
  59. /// Archive a user's inventory folder to the given stream
  60. /// </summary>
  61. /// <param name="id">ID representing this request. This will later be returned in the save event</param>
  62. /// <param name="firstName"></param>
  63. /// <param name="lastName"></param>
  64. /// <param name="invPath">The inventory path from which the inventory should be saved.</param>
  65. /// <param name="saveStream">The stream to which the inventory archive will be saved</param>
  66. /// <returns>true if the first stage of the operation succeeded, false otherwise</returns>
  67. bool ArchiveInventory(Guid id, string firstName, string lastName, string invPath, string pass, Stream saveStream);
  68. }
  69. }