IAssetService.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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 OpenSim.Framework;
  29. namespace OpenSim.Services.Interfaces
  30. {
  31. public delegate void AssetRetrieved(string id, Object sender, AssetBase asset);
  32. public interface IAssetService
  33. {
  34. /// <summary>
  35. /// Get an asset synchronously.
  36. /// </summary>
  37. /// <param name="id"></param>
  38. /// <returns></returns>
  39. AssetBase Get(string id);
  40. AssetBase Get(string id, string ForeignAssetService, bool StoreOnLocalGrid);
  41. /// <summary>
  42. /// Get an asset's metadata
  43. /// </summary>
  44. /// <param name="id"></param>
  45. /// <returns></returns>
  46. AssetMetadata GetMetadata(string id);
  47. /// <summary>
  48. /// Get an asset's data, ignoring the metadata.
  49. /// </summary>
  50. /// <param name="id"></param>
  51. /// <returns>null if there is no such asset</returns>
  52. byte[] GetData(string id);
  53. /// <summary>
  54. /// Synchronously fetches an asset from the local cache only.
  55. /// </summary>
  56. /// <param name="id">Asset ID</param>
  57. /// <returns>The fetched asset, or null if it did not exist in the local cache</returns>
  58. AssetBase GetCached(string id);
  59. /// <summary>
  60. /// Get an asset synchronously or asynchronously (depending on whether
  61. /// it is locally cached) and fire a callback with the fetched asset
  62. /// </summary>
  63. /// <param name="id">The asset id</param>
  64. /// <param name="sender">Represents the requester. Passed back via the handler</param>
  65. /// <param name="handler">
  66. /// The handler to call back once the asset has been retrieved. This will be called back with a null AssetBase
  67. /// if the asset could not be found for some reason (e.g. if it does not exist, if a remote asset service
  68. /// was not contactable, if it is not in the database, etc.).
  69. /// </param>
  70. /// <returns>True if the id was parseable, false otherwise</returns>
  71. bool Get(string id, Object sender, AssetRetrieved handler);
  72. /// <summary>
  73. /// Check if assets exist in the database.
  74. /// </summary>
  75. /// <param name="ids">The assets' IDs</param>
  76. /// <returns>For each asset: true if it exists, false otherwise</returns>
  77. bool[] AssetsExist(string[] ids);
  78. /// <summary>
  79. /// Creates a new asset
  80. /// </summary>
  81. /// <remarks>
  82. /// Returns a random ID if none is passed via the asset argument.
  83. /// </remarks>
  84. /// <param name="asset"></param>
  85. /// <returns>The Asset ID, or string.Empty if an error occurred</returns>
  86. string Store(AssetBase asset);
  87. /// <summary>
  88. /// Update an asset's content
  89. /// </summary>
  90. /// <remarks>
  91. /// Attachments and bare scripts need this!!
  92. /// </remarks>
  93. /// <param name="id"> </param>
  94. /// <param name="data"></param>
  95. /// <returns></returns>
  96. bool UpdateContent(string id, byte[] data);
  97. /// <summary>
  98. /// Delete an asset
  99. /// </summary>
  100. /// <param name="id"></param>
  101. /// <returns></returns>
  102. bool Delete(string id);
  103. }
  104. }