123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422 |
- /*
- * Copyright (c) Contributors, http://opensimulator.org/
- * See CONTRIBUTORS.TXT for a full list of copyright holders.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * * Neither the name of the OpenSimulator Project nor the
- * names of its contributors may be used to endorse or promote products
- * derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- using log4net;
- using Mono.Addins;
- using Nini.Config;
- using System;
- using System.Collections.Generic;
- using System.Reflection;
- using OpenSim.Framework;
- using OpenSim.Server.Base;
- using OpenSim.Region.Framework.Interfaces;
- using OpenSim.Region.Framework.Scenes;
- using OpenSim.Services.Interfaces;
- using OpenMetaverse;
- namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Asset
- {
- [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "HGAssetBroker")]
- public class HGAssetBroker : ISharedRegionModule, IAssetService
- {
- private static readonly ILog m_log =
- LogManager.GetLogger(
- MethodBase.GetCurrentMethod().DeclaringType);
- private IAssetCache m_Cache = null;
- private IAssetService m_GridService;
- private IAssetService m_HGService;
- private Scene m_aScene;
- private string m_LocalAssetServiceURI;
- private bool m_Enabled = false;
- private AssetPermissions m_AssetPerms;
- public Type ReplaceableInterface
- {
- get { return null; }
- }
- public string Name
- {
- get { return "HGAssetBroker"; }
- }
- public HGAssetBroker() {}
- public HGAssetBroker(IConfigSource config)
- {
- Initialise(config);
- }
- public void Initialise(IConfigSource source)
- {
- IConfig moduleConfig = source.Configs["Modules"];
- if (moduleConfig != null)
- {
- string name = moduleConfig.GetString("AssetServices", "");
- if (name == Name)
- {
- IConfig assetConfig = source.Configs["AssetService"];
- if (assetConfig == null)
- {
- m_log.Error("[HG ASSET CONNECTOR]: AssetService missing from OpenSim.ini");
- return;
- }
- string localDll = assetConfig.GetString("LocalGridAssetService",
- String.Empty);
- string HGDll = assetConfig.GetString("HypergridAssetService",
- String.Empty);
- if (localDll == String.Empty)
- {
- m_log.Error("[HG ASSET CONNECTOR]: No LocalGridAssetService named in section AssetService");
- return;
- }
- if (HGDll == String.Empty)
- {
- m_log.Error("[HG ASSET CONNECTOR]: No HypergridAssetService named in section AssetService");
- return;
- }
- Object[] args = new Object[] { source };
- m_GridService =
- ServerUtils.LoadPlugin<IAssetService>(localDll,
- args);
- m_HGService =
- ServerUtils.LoadPlugin<IAssetService>(HGDll,
- args);
- if (m_GridService == null)
- {
- m_log.Error("[HG ASSET CONNECTOR]: Can't load local asset service");
- return;
- }
- if (m_HGService == null)
- {
- m_log.Error("[HG ASSET CONNECTOR]: Can't load hypergrid asset service");
- return;
- }
- m_LocalAssetServiceURI = assetConfig.GetString("AssetServerURI", string.Empty);
- if (m_LocalAssetServiceURI == string.Empty)
- {
- IConfig netConfig = source.Configs["Network"];
- m_LocalAssetServiceURI = netConfig.GetString("asset_server_url", string.Empty);
- }
- if (m_LocalAssetServiceURI != string.Empty)
- m_LocalAssetServiceURI = m_LocalAssetServiceURI.Trim('/');
- IConfig hgConfig = source.Configs["HGAssetService"];
- m_AssetPerms = new AssetPermissions(hgConfig); // it's ok if arg is null
- m_Enabled = true;
- m_log.Info("[HG ASSET CONNECTOR]: HG asset broker enabled");
- }
- }
- }
- public void PostInitialise()
- {
- }
- public void Close()
- {
- }
- public void AddRegion(Scene scene)
- {
- if (!m_Enabled)
- return;
- m_aScene = scene;
- m_aScene.RegisterModuleInterface<IAssetService>(this);
- }
- public void RemoveRegion(Scene scene)
- {
- }
- public void RegionLoaded(Scene scene)
- {
- if (!m_Enabled)
- return;
- if (m_Cache == null)
- {
- m_Cache = scene.RequestModuleInterface<IAssetCache>();
- if (!(m_Cache is ISharedRegionModule))
- m_Cache = null;
- }
- m_log.InfoFormat("[HG ASSET CONNECTOR]: Enabled hypergrid asset broker for region {0}", scene.RegionInfo.RegionName);
- if (m_Cache != null)
- {
- m_log.InfoFormat("[HG ASSET CONNECTOR]: Enabled asset caching for region {0}", scene.RegionInfo.RegionName);
- }
- }
- private bool IsHG(string id)
- {
- Uri assetUri;
- if (Uri.TryCreate(id, UriKind.Absolute, out assetUri) &&
- assetUri.Scheme == Uri.UriSchemeHttp)
- return true;
- return false;
- }
- public AssetBase Get(string id)
- {
- //m_log.DebugFormat("[HG ASSET CONNECTOR]: Get {0}", id);
- AssetBase asset = null;
- if (m_Cache != null)
- {
- if (!m_Cache.Get(id, out asset))
- return null;
- if (asset != null)
- return asset;
- }
- if (IsHG(id))
- {
- asset = m_HGService.Get(id);
- if (asset != null)
- {
- // Now store it locally, if allowed
- if (m_AssetPerms.AllowedImport(asset.Type))
- m_GridService.Store(asset);
- else
- return null;
- }
- }
- else
- asset = m_GridService.Get(id);
- if (m_Cache != null)
- m_Cache.Cache(asset);
- return asset;
- }
- public AssetBase GetCached(string id)
- {
- AssetBase asset = null;
- if (m_Cache != null)
- m_Cache.Get(id, out asset);
- return asset;
- }
- public AssetMetadata GetMetadata(string id)
- {
- AssetBase asset = null;
- if (m_Cache != null)
- {
- if (!m_Cache.Get(id, out asset))
- return null;
- if (asset != null)
- return asset.Metadata;
- }
- AssetMetadata metadata;
- if (IsHG(id))
- metadata = m_HGService.GetMetadata(id);
- else
- metadata = m_GridService.GetMetadata(id);
- return metadata;
- }
- public byte[] GetData(string id)
- {
- AssetBase asset = null;
- if (m_Cache != null)
- {
- if (!m_Cache.Get(id, out asset))
- return null;
- if (asset != null)
- return asset.Data;
- }
- if (IsHG(id))
- return m_HGService.GetData(id);
- else
- return m_GridService.GetData(id);
- }
- public bool Get(string id, Object sender, AssetRetrieved handler)
- {
- AssetBase asset = null;
- if (m_Cache != null)
- {
- if (!m_Cache.Get(id, out asset))
- return false;
- }
- if (asset != null)
- {
- Util.FireAndForget(delegate { handler(id, sender, asset); }, null, "HGAssetBroker.GotFromCache");
- return true;
- }
- if (IsHG(id))
- {
- return m_HGService.Get(id, sender, delegate (string assetID, Object s, AssetBase a)
- {
- if (m_Cache != null)
- m_Cache.Cache(a);
- handler(assetID, s, a);
- });
- }
- else
- {
- return m_GridService.Get(id, sender, delegate (string assetID, Object s, AssetBase a)
- {
- if (m_Cache != null)
- m_Cache.Cache(a);
- handler(assetID, s, a);
- });
- }
- }
- public virtual bool[] AssetsExist(string[] ids)
- {
- int numHG = 0;
- foreach (string id in ids)
- {
- if (IsHG(id))
- ++numHG;
- }
- if (numHG == 0)
- return m_GridService.AssetsExist(ids);
- else if (numHG == ids.Length)
- return m_HGService.AssetsExist(ids);
- else
- throw new Exception("[HG ASSET CONNECTOR]: AssetsExist: all the assets must be either local or foreign");
- }
- public string Store(AssetBase asset)
- {
- if (asset.Local || asset.Temporary)
- {
- if (m_Cache != null)
- m_Cache.Cache(asset);
- return asset.ID;
- }
- bool isHG = IsHG(asset.ID);
- if ((m_Cache != null) && !isHG)
- // Don't store it in the cache if the asset is to
- // be sent to the other grid, because this is already
- // a copy of the local asset.
- m_Cache.Cache(asset);
- string id;
- if (isHG)
- {
- if (m_AssetPerms.AllowedExport(asset.Type))
- id = m_HGService.Store(asset);
- else
- return String.Empty;
- }
- else
- id = m_GridService.Store(asset);
- if (String.IsNullOrEmpty(id))
- return string.Empty;
- if(asset.ID != id)
- {
- asset.ID = id;
- if (m_Cache != null)
- m_Cache.Cache(asset);
- }
- return id;
- }
- public bool UpdateContent(string id, byte[] data)
- {
- AssetBase asset = null;
- if (m_Cache != null)
- m_Cache.Get(id, out asset);
- if (asset != null)
- {
- asset.Data = data;
- m_Cache.Cache(asset);
- }
- if (IsHG(id))
- return m_HGService.UpdateContent(id, data);
- else
- return m_GridService.UpdateContent(id, data);
- }
- public bool Delete(string id)
- {
- if (m_Cache != null)
- m_Cache.Expire(id);
- bool result = false;
- if (IsHG(id))
- result = m_HGService.Delete(id);
- else
- result = m_GridService.Delete(id);
- if (result && m_Cache != null)
- m_Cache.Expire(id);
- return result;
- }
- }
- }
|