XAssetService.cs 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  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 Nini.Config;
  32. using log4net;
  33. using OpenSim.Framework;
  34. using OpenSim.Data;
  35. using OpenSim.Services.Interfaces;
  36. using OpenMetaverse;
  37. namespace OpenSim.Services.AssetService
  38. {
  39. /// <summary>
  40. /// A de-duplicating asset service.
  41. /// </summary>
  42. [Obsolete]
  43. public class XAssetService : XAssetServiceBase, IAssetService
  44. {
  45. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  46. protected static XAssetService m_RootInstance;
  47. public XAssetService(IConfigSource config) : this(config, "AssetService") {}
  48. public XAssetService(IConfigSource config, string configName) : base(config, configName)
  49. {
  50. if (m_RootInstance == null)
  51. {
  52. m_RootInstance = this;
  53. if (m_AssetLoader != null)
  54. {
  55. IConfig assetConfig = config.Configs[configName];
  56. if (assetConfig == null)
  57. throw new Exception("No AssetService configuration");
  58. string loaderArgs = assetConfig.GetString("AssetLoaderArgs", String.Empty);
  59. bool assetLoaderEnabled = assetConfig.GetBoolean("AssetLoaderEnabled", true);
  60. if (assetLoaderEnabled && !HasChainedAssetService)
  61. {
  62. m_log.DebugFormat("[XASSET SERVICE]: Loading default asset set from {0}", loaderArgs);
  63. m_AssetLoader.ForEachDefaultXmlAsset(
  64. loaderArgs,
  65. a =>
  66. {
  67. AssetBase existingAsset = Get(a.ID);
  68. // AssetMetadata existingMetadata = GetMetadata(a.ID);
  69. if (existingAsset == null || Util.SHA1Hash(existingAsset.Data) != Util.SHA1Hash(a.Data))
  70. {
  71. // m_log.DebugFormat("[ASSET]: Storing {0} {1}", a.Name, a.ID);
  72. m_Database.StoreAsset(a);
  73. }
  74. });
  75. }
  76. m_log.Debug("[XASSET SERVICE]: Local asset service enabled");
  77. }
  78. }
  79. }
  80. public virtual AssetBase Get(string id)
  81. {
  82. // m_log.DebugFormat("[ASSET SERVICE]: Get asset for {0}", id);
  83. UUID assetID;
  84. if (!UUID.TryParse(id, out assetID))
  85. {
  86. m_log.WarnFormat("[XASSET SERVICE]: Could not parse requested asset id {0}", id);
  87. return null;
  88. }
  89. try
  90. {
  91. AssetBase asset = m_Database.GetAsset(assetID);
  92. if (asset != null)
  93. {
  94. return asset;
  95. }
  96. else if (HasChainedAssetService)
  97. {
  98. asset = m_ChainedAssetService.Get(id);
  99. if (asset != null)
  100. MigrateFromChainedService(asset);
  101. return asset;
  102. }
  103. return null;
  104. }
  105. catch (Exception e)
  106. {
  107. m_log.ErrorFormat("[XASSET SERVICE]: Exception getting asset {0} {1}", assetID, e);
  108. return null;
  109. }
  110. }
  111. public virtual AssetBase GetCached(string id)
  112. {
  113. return Get(id);
  114. }
  115. public virtual AssetMetadata GetMetadata(string id)
  116. {
  117. // m_log.DebugFormat("[XASSET SERVICE]: Get asset metadata for {0}", id);
  118. AssetBase asset = Get(id);
  119. if (asset != null)
  120. return asset.Metadata;
  121. else
  122. return null;
  123. }
  124. public virtual byte[] GetData(string id)
  125. {
  126. // m_log.DebugFormat("[XASSET SERVICE]: Get asset data for {0}", id);
  127. AssetBase asset = Get(id);
  128. if (asset != null)
  129. return asset.Data;
  130. else
  131. return null;
  132. }
  133. public virtual bool Get(string id, Object sender, AssetRetrieved handler)
  134. {
  135. //m_log.DebugFormat("[XASSET SERVICE]: Get asset async {0}", id);
  136. UUID assetID;
  137. if (!UUID.TryParse(id, out assetID))
  138. return false;
  139. AssetBase asset = Get(id);
  140. //m_log.DebugFormat("[XASSET SERVICE]: Got asset {0}", asset);
  141. handler(id, sender, asset);
  142. return true;
  143. }
  144. public virtual bool[] AssetsExist(string[] ids)
  145. {
  146. UUID[] uuid = Array.ConvertAll(ids, id => UUID.Parse(id));
  147. return m_Database.AssetsExist(uuid);
  148. }
  149. public virtual string Store(AssetBase asset)
  150. {
  151. bool exists = m_Database.AssetsExist(new[] { asset.FullID })[0];
  152. if (!exists)
  153. {
  154. // m_log.DebugFormat(
  155. // "[XASSET SERVICE]: Storing asset {0} {1}, bytes {2}", asset.Name, asset.FullID, asset.Data.Length);
  156. m_Database.StoreAsset(asset);
  157. }
  158. // else
  159. // {
  160. // m_log.DebugFormat(
  161. // "[XASSET SERVICE]: Not storing asset {0} {1}, bytes {2} as it already exists", asset.Name, asset.FullID, asset.Data.Length);
  162. // }
  163. return asset.ID;
  164. }
  165. public bool UpdateContent(string id, byte[] data)
  166. {
  167. return false;
  168. }
  169. public virtual bool Delete(string id)
  170. {
  171. // m_log.DebugFormat("[XASSET SERVICE]: Deleting asset {0}", id);
  172. UUID assetID;
  173. if (!UUID.TryParse(id, out assetID))
  174. return false;
  175. if (HasChainedAssetService)
  176. m_ChainedAssetService.Delete(id);
  177. return m_Database.Delete(id);
  178. }
  179. private void MigrateFromChainedService(AssetBase asset)
  180. {
  181. Store(asset);
  182. m_ChainedAssetService.Delete(asset.ID);
  183. }
  184. }
  185. }